@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Ubuntu', sans-serif;
  color: #222;
  background-color: #eee;
  letter-spacing: 1.5px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.nav {
  position: fixed;
  background-color: #0061a8;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.nav .container {
  display: flex;
  height: 90px;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  transition: all 0.3s ease-in-out;
}

.nav ul {
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: center;
}

.nav a {
  color: #fff;
  text-decoration: none;
  padding: 0px 15px;
  transition: all 0.3s ease-in-out;
}

.nav.active {
  background-color: #364547;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav.active a {
  color: #f7f3e9;
}

.nav.active .container {
  padding: 10px 0;
}

.nav a.current,
.nav a:hover {
  color: #f7f3e9;
  font-weight: bold;
}

.side-nav,
.mobile-nav {
  display: none;
}

section.container {
  margin: 100px auto;
}

.hero {
  background-image: url('https://images.unsplash.com/photo-1612831197310-ff5cf7a211b6?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  z-index: 0;
}

.hero::before,
.overview .background-image {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -2;
}

.logo a .my-logo {
  background-image: url('https://s3.amazonaws.com/araglobaltech.com/images/Ara+New+Logo+2+(400+X+225).png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50px;
  width: 80px;
}

.logo a {
  height: 70px;
  width: 100px;
  margin: 0;
}

.hero h1 {
  font-size: 60px;
  margin: -20px 0 20px;
}

.hero {
  font-size: 20px;
  letter-spacing: 1.5px;
}

.btn {
  text-decoration: none;
  background-color: #0061a8;
  padding: 20px 40px;
  color: #fff;
  border: none;
  border-radius: 8px;
  position: absolute;
  bottom: 20%;
  font-family: inherit;
  font-size: 18px;
  cursor: pointer;
}

.btn:hover {
  background-color: #364547;
  transition: all 0.6s ease-in;
}

.btn.left {
  left: 25%;
  cursor: pointer;
}

.btn.right {
  right: 20%;
}

section.my-cards,
section.works {
  background-image: url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1087&q=80');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: contain;
  width: 100%;
  color: #fff;
  border-radius: 12px;
  padding: 40px 0;
}

.cards .card i {
  color: #eee;
}

.card-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards .card {
  width: 300px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.works,
.cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.works .card {
  padding: 40px;

  color: #fff;
  width: 250px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.works .card .card-title {
  text-decoration: underline;
}

.works .card ul {
  list-style-type: none;
  text-align: center;
}

.work.card {
  position: relative;
  z-index: 0;
  padding-top: 150px;
}

.work i {
  position: absolute;
  left: 50%;
  top: 25px;
  transform: translateX(-50%);
  height: 100px;
  width: 100px;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 15px;
}

.work i:hover {
  color: #222;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: all 0.5s ease;
}

.work.card .card-title:hover,
.card-content ul li:hover {
  color: #222;
  cursor: pointer;
  transition: all 0.5s ease;
}

.my-cards h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.card {
  padding: 35px 15px;
  margin: 15px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 30px;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.card i {
  font-size: 48px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.card .card-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.card .card-content p {
  font-size: 18px;
  margin-bottom: 25px;
  text-align: justify;
  overflow: hidden;
}

.card .card-content .card-btn {
  background-color: #0061a8;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.card .card-image {
  overflow: hidden;
  width: 100%;
}

.about-container {
  background-image: url('https://images.unsplash.com/photo-1519810755548-39cd217da494?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: contain;
}

.about .main {
  font-size: 48px;
}

.about .card {
  color: #fff;
}

.about-content .card,
.about .card {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #eee;
}

.about-content .row .card.text {
  width: 800px !important;
}

.about-content .card .card-image img,
.about-content .card .card-image {
  height: 350px;
  width: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-content .img .plus-icon i,
.about-content .sm-card-title,
.about-content .sm-card-content,
.about-content .close-icon i {
  display: none;
}

.container .text-center {
  margin-top: 200px;
  text-align: center;
  font-size: 60px;
  color: #0061a8;
}

.content h2,
.content h3 {
  font-size: 150%;
  margin: 20px 0;
}

.content p {
  color: #555;
  line-height: 40px;
  letter-spacing: 1.5px;
}

.about-content .card-content ul {
  padding: 0 20px;
}

.about-content .card-content ul li {
  line-height: 40px;
  margin: 5px 0;
}

.background-image-error {
  background-image: url('https://images.unsplash.com/photo-1584824486509-112e4181ff6b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-color: #0061a8;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain;
}

.background-image-error h2 {
  font-size: 100px;
}

.overview .background-image {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1593642632823-8f785ba67e45?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1489&q=80');
  height: 550px;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: contain;
  /* z-index: -2; */
}

.overview .overview-content {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #693c72;
  color: #fff;
  padding: 25px;
  max-width: 45%;
  height: 450px;
  border-radius: 12px;
  transform: rotate(5deg);
  transition: transform 0.6s ease;
}

.overview-content h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 25px;
}

.overview-content li {
  font-size: 14px;
  text-align: justify;
  margin-top: 10px;
}

.overview-btn {
  display: none;
}

.services {
  background-image: url('https://images.unsplash.com/photo-1507400492013-162706c8c05e?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=609&q=80');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
  border-radius: 12px;
  object-fit: contain;
}

.services .card {
  position: relative;
  height: 400px;
  width: 320px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.services .card-title i {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 60px;
  background-color: #51adcf;
  height: 150px;
  width: 150px;
  z-index: -2;
}

.services .card-title h3 {
  position: absolute;
  top: 210px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: -10;
  color: #fff;
}
.services .card-title h4 {
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: -2;
  color: #fff;
}

.services .card .veil {
  text-align: justify;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
  background-color: #0062a8a6;
  font-size: 17px;
  color: #fff;
  height: 400px;
  width: 320px;
  z-index: -1;
  padding: 20px;
  transform: translateY(400px);
  opacity: 0;
}

.services .card .veil:hover {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in;
}

.services .card .close-veil i {
  display: none;
  z-index: -1;
}
.services .card .modal button {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 15px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.services .card .modal button:hover {
  transform: scale(1.1);
  transition: transform 0.4s ease-in;
}

.services .card .modal button i {
  color: #51adcf;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.project-cover {
  background-image: url('https://images.unsplash.com/photo-1505312926838-645f295a20e1?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 40px 0;
  margin-top: 15px;
  object-fit: contain;
}

.projects {
  padding: 0 20px;
}

.projects .live-sites {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.projects .box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 15px 0;
}

.projects .project-title {
  font-size: 26px;
  margin: 25px 0 30px 50px;
  color: #eee;
}

.projects .card {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: -2;
}

.projects .img.live:hover {
  background-color: rgba(255, 255, 255, 0.75);
  transition: all 0.4s ease;
}

.projects .card .img {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 230px;
  width: 230px;
  border-radius: 50%;
  z-index: -1;
}

.aaf-background-image {
  background-image: url('https://s3.amazonaws.com/aaflegalpractice.com/images/AAF_logo_edit.jpg');
  background-color: rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.foot-me-background-image {
  background-image: url('https://s3.amazonaws.com/footme.org/images/Footme+Logo.png');
  background-color: rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.braids-background-image {
  background-image: url('https://s3.amazonaws.com/braidsbytobi.com/Logo/BBT_Original_Logo.png');
  background-color: rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.contact-keeper-app-image {
  background-image: url('https://images.unsplash.com/photo-1599557041284-7e2a15610388?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=687&q=80');
  background-color: rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.github-finder-app-image {
  background-image: url('https://images.unsplash.com/photo-1618401479427-c8ef9465fbe1?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1143&q=80');
  background-color: rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.projects a {
  text-decoration: none;
}

.projects .img.apps {
  background-color: #0061a8;
  color: #fff;
  height: 230px;
  width: 230px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 40px;
  margin: 5px;
  border: 5px solid #51adcf;
}

.projects .img.apps.designs {
  border-radius: 12px;
  height: 150px;
  width: 200px;
}

.projects .img.apps:hover {
  background-color: #693c72;
  border: 5px solid #9ab3f5;
  transition: all 0.5s ease-in-out;
}

.projects .card .aaf-background-image::before {
  content: '';
  background-color: rgba(255, 255, 255, 0.5);
  height: 280px;
  width: 280px;
  border-radius: 50%;
  z-index: -2;
}

.projects .card a {
  height: 280px;
  width: 280px;
  border-radius: 50%;
}

.projects .card .circle {
  height: 15px;
  width: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #54e346;
  position: absolute;
  bottom: 60px;
  right: 20%;
  z-index: -1;
  opacity: 1;
  animation: fade 5s linear infinite normal both;
}

/* .contact {
  margin-top: -200px;
} */

.contact-container {
  background-image: url('https://images.unsplash.com/photo-1505312926838-645f295a20e1?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 40px 0;
  position: relative;
  object-fit: contain;
}

.contact-container #success {
  position: fixed;
  bottom: 20%;
  right: 10px;
  padding: 20px 40px;
  text-align: center;
  background-color: #fff;
  color: #222;
  border-radius: 5px;
  opacity: 0;
}

.contact-container #success.active {
  opacity: 1;
  transition: all 0.5s ease;
}

.contact-container .container h1 {
  color: #eee;
}

.contact .contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-box form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 550px;
  background-color: rgba(255, 255, 255, 0.25);
  color: #eee;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 80px;
  box-shadow: 4px 10px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: rgba(255, 255, 255, 0.18);
}

.contact-box form label {
  font-size: 18px;
  letter-spacing: 2px;
  margin: 15px;
  font-family: inherit;
  text-align: center;
}

.contact-box form input {
  height: 50px;
  width: 80%;
  padding: 0 5px;
  border: none;
  border-radius: 8px;
}

.contact-box form textarea {
  height: 150px;
  width: 80%;
  padding: 0 5px;
  border: none;
  border-radius: 8px;
}

.contact-box form input:focus,
.contact-box form textarea:focus {
  outline: none;
}

.contact-box form input::placeholder,
.contact-box form textarea::placeholder {
  font-size: 16px;
  font-family: inherit;
}

.contact .error {
  margin-top: 5px;
  font-size: 14px;
  color: #f7b3b3;
  list-style-type: none;
}

.submit-btn {
  margin: 25px auto;
  padding: 12px 35px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  color: #fff;
  background-color: #0061a8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.submit-btn:focus {
  outline: none;
}

.submit-btn:hover {
  transform: scale(1.1);
  transition: transform 0.4s ease-in;
  animation: shrink 1s ease forwards alternate;
}

.footer-menu {
  background-color: #364547;
  color: #fff;
  width: 100%;
  padding: 40px 350px;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-menu h4 {
  font-size: 28px;
}

.footer-menu ul {
  list-style-type: none;
}

.footer-menu ul li {
  color: #fff;
  font-size: 20px;
  margin: 25px 0;
}

.footer-menu ul li a {
  text-decoration: none;
  appearance: none;
  color: #fff;
}

.btn-footer {
  background-color: #fff;
  color: #0061a8 !important;
  padding: 10px 15px;
  margin: 15px 0;
  border-radius: 12px;
  box-shadow: 10px 15px 15px rgba(0, 0, 0, 0.3);
  font-size: 16px;
}

.btn-footer:hover {
  background-color: #0061a8;
  color: #fff !important;
  transition: all 0.4s ease;
}

.social {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
}

.social a .fab {
  font-size: 28px;
}

.footer-note {
  display: flex;
  align-items: center;
  background-color: #222;
  color: #fff;
  width: 100%;
  padding: 10px 350px;
}

.footer-note .date {
  margin-left: 10px;
}

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  right: 15px !important;
  bottom: 10% !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

@media (max-width: 1065px) {
  body {
    overflow-x: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .nav {
    overflow: hidden;
  }
  .overview,
  footer {
    overflow-x: hidden;
  }
  .nav .container ul {
    display: none;
  }
  .nav .container .mobile-nav {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #eee;
    font-size: 24px;
    height: 30px;
    width: 32px;
    z-index: 2;
    cursor: pointer;
  }
  .side-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    width: 300px;
    padding-top: 50px;
    opacity: 0;
    z-index: 5;
  }

  .side-nav.active {
    opacity: 1;
    transition: all 0.4s ease-in;
    display: flex;
    height: 100vh;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
  }

  .side-nav li {
    list-style-type: none;
    font-size: 20px;
    padding: 14px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.5);
    color: #eee;
  }

  .side-nav li:hover {
    background-color: rgba(9, 107, 172, 0.5);
    transition: all 0.4s ease-in;
  }

  .side-nav li a {
    appearance: none;
    text-decoration: none;
    color: #eee;
  }

  .hero {
    height: 100vh;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .action-btn .btn {
    padding: 10px;
    font-size: 14px;
    text-align: center;
  }

  .btn {
    padding: 10px 20px;
  }

  .btn.left {
    bottom: 25%;
    cursor: pointer;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }

  .btn.right {
    bottom: 10%;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }

  .overview {
    height: 650px;
    padding: auto;
  }

  .overview .card {
    height: 600px;
    padding: auto;
  }

  .overview .overview-content {
    top: 25px;
    max-width: 80%;
    height: 500px;
    overflow-y: hidden;
  }

  .overview .overview-content h2 {
    font-size: 24px;
  }

  .overview .overview-content li {
    font-size: 16px;
    margin-top: -5px;
    line-height: 35px;
  }

  .overview-btn {
    display: none;
  }

  .about .main {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-content .text {
    display: none;
  }

  .about-content .card .card-image,
  .about-content .card .card-image img {
    height: 300px;
    width: 350px;
  }

  .about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }

  .about-content .row {
    height: 400px;
    width: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-content .card {
    position: relative;
    height: 380px;
    width: 380px;
  }

  .about-content .card-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -10;
  }

  .about-content .img.sm img {
    width: 345px;
    height: 400px;
  }

  .about-content .img .plus-icon i {
    display: block;
    position: absolute;
    bottom: 0;
    right: 12px;
    color: salmon;
    opacity: 0.85;
    z-index: 0;
    font-size: 40px;
    cursor: pointer;
  }

  .about-content .img .plus-icon i:hover {
    color: #364547;
    transition: all 0.4s ease-in;
    opacity: 1;
  }

  .about-content .sm-card-title {
    display: block;
    color: #fff;
    font-size: 22px;
    position: absolute;
    bottom: 8%;
    left: 5px;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 25px;
  }

  .about-content .sm-card-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 380px;
    background-color: rgba(0, 97, 168, 0.95);
    color: #fff;
    padding: 30px;
    text-align: justify;
    word-spacing: 1px;
    border-radius: 12px;
    opacity: 0;
    display: none;
    overflow-y: scroll;
  }

  .about-content .sm-card-content.active,
  .about-content .close-icon i.active {
    opacity: 1;
    display: block;
    transition: all 0.6s ease-in;
  }

  .about-content .close-icon i {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    display: none;
  }

  .services .card .modal button {
    display: inline-block;
    z-index: 0;
  }
  .services .card .close-veil i {
    display: block;
    cursor: pointer;
    color: #fff;
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 20px;
    z-index: 1;
    transition: all 0.5s ease-in;
    opacity: 0;
  }

  .services .card .close-veil i.active {
    opacity: 1;
    transition: all 0.5s ease-in;
  }

  .services .card .close-veil i:hover {
    opacity: 1;
    transition: all 0.5s ease-in;
  }

  .projects .live-sites a .img {
    font-size: 1.6rem;
  }

  .projects .img.apps.designs {
    font-size: 1.4rem;
  }

  .contact .contact-box form {
    width: 90%;
  }

  .contact .contact-box form input,
  .contact .contact-box form textarea {
    width: 95%;
  }
  .footer-menu {
    width: 100%;
    padding: 40px 50px;
  }
  .footer-note {
    width: 100%;
    padding: 10px 50px;
  }
}

@media (max-width: 812px) {
  .btn.left {
    bottom: 23%;
    cursor: pointer;
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
  }

  .btn.right {
    bottom: 5%;
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 574px) {
  .overview .overview-content {
    top: 25px;
    max-width: 80%;
    height: 570px;
    overflow-y: hidden;
  }

  .overview .overview-content li {
    font-size: 12px;
  }

  /* .overview-btn {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transform: scale(1.1);
     animation: shrink 1s ease forwards alternate; 
  }*/

  /* .overview-btn:hover {
    transform: scale(1.1);
    animation: shrink 1s ease forwards alternate;
  }  */
}

@media (max-width: 574px) {
  .overview .overview-content li {
    font-size: 10px;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes shrink {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
