@import url("https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@300;400;700&family=Manrope:wght@200;400;700&display=swap");
:root {
  --primary: #001a48;
  --primary-light: #033283;
  --primary-dark: #000f29;
  --secondary: #e31231;
  --secondary-dark: #aa0e26;
  --gradient: linear-gradient(to right, #001a48, #000f29);
  --gradient2: linear-gradient(to right, #e31231, #aa0e26);
  --dark-bg: #121212;
}
*,
html {
  box-sizing: border-box;
  /* font-family: "Cinzel", serif; */
  font-family: "Manrope", sans-serif;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
}

.dark {
  background: #121212;
}

* {
  scroll-behavior: smooth;
}
.bg-light {
  background: #f5f5f5;
}
.dark .bg-light {
  background: #000000;
  color: white;
}
.header {
  padding: 15px 10px;
  /* background: white; */
  position: fixed;
  top: 0;
  width: 100%;
  /* box-shadow: 0 5px 20px 5px rgba(80, 193, 233, 0.15); */
  z-index: 2;
}

.header .header-menu a {
  /* color: black; */
  color: white;
}

a.logo {
  font-size: 34px !important;
}

.header a,
.btn,
a.logo {
  float: left;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 22px;
  line-height: 25px;
  border-radius: 4px;
  font-family: "Smooch Sans", sans-serif;
  transition: all 0.3s;
}
.dark .header a.logo,
.dark .header.sticky a.logo {
  color: white;
}
.btn {
  color: white !important;
}
.header.sticky .header-menu a {
  color: black;
}
.dark .header.sticky a {
  color: white;
}
.header-menu a {
  padding: 12px;
  border-bottom: 2px solid transparent;
}

.header-menu a:hover,
.header-menu a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--secondary);
}
.dark .header-menu a:hover,
.dark .header-menu a.active {
  color: white;
}
.dark .header-menu a {
  color: white;
}

.header.sticky {
  background: white;
  box-shadow: 0 5px 20px 5px rgba(80, 193, 233, 0.15);
}
.dark .header.sticky {
  background: var(--dark-bg);
  box-shadow: 0 5px 20px 5px rgba(55, 55, 55, 0.3);
}

.header.sticky a,
.header.sticky .btn,
.header.sticky a.logo {
  float: left;
  color: black;
  text-align: center;
  text-decoration: none;
  font-size: 22px;
  line-height: 25px;
  border-radius: 4px;
  font-family: "Smooch Sans", sans-serif;
  transition: all 0.3s;
}

.dark #services {
  color: white;
}
.dark #companies {
  background: var(--dark-bg);
  color: #fff;
}
.owl-nav {
  display: none !important;
}
.owl-item {
  display: flex;
  justify-content: center;
}
#client-logo div {
  display: flex;
  align-items: center;
}
.dark #client-logo div {
  background: #f5f5f5;
}

.header-menu {
  float: right;
}
.icon {
  color: black !important;
  display: none;
}
.dark .icon {
  color: white !important;
}
.btn {
  background-color: var(--secondary);
}
.btn:hover {
  background-color: var(--secondary-dark);
}
.text-white {
  color: white;
}
.fw-light {
  font-weight: 200;
}
.fw-normal {
  font-weight: 400;
}
.text-center {
  text-align: center;
}
.bg-img {
  min-height: 200px;
  background: linear-gradient(
    -45deg,
    var(--primary-light),
    var(--primary-dark),
    var(--primary),
    var(--secondary-dark)
  );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.pills {
  display: flex;
  flex-wrap: wrap;
}
.pill {
  margin: 4px;
  padding: 2px 10px;
  background: #ccc;
  border-radius: 5px;
  color: black;
}
.photo {
  width: 100%;
  filter: drop-shadow(10px -10px 20px #00000080);
  animation: photoAnim 4s ease-in-out infinite;
}

@keyframes photoAnim {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(8px);
  }
}

.owl-carousel img {
  padding: 0 10px;
  max-height: 80px;
  object-fit: contain;
}
.line {
  width: 70px;
  height: 3px;
  background: var(--gradient2);
}
.line.white {
  background: #fff;
}
.card {
  border-radius: 20px;
  transition: all 0.3s;
  box-shadow: 0 5px 10px 5px rgba(80, 193, 233, 0.15);
}
.card p {
  font-weight: 200;
}
.card span {
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  text-align: center;
  margin: 10px;
}
.dark .card span {
  background: var(--primary-light);
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px 10px rgba(80, 193, 233, 0.15);
}
.hire-photo {
  background: var(--gradient);
  border-radius: 10%;
  box-shadow: 0 5px 20px 10px rgba(80, 193, 233, 0.2);
  border: 4px solid var(--secondary);
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  object-fit: cover;
}
footer {
  background: var(--gradient);
}
.pt-6 {
  padding-top: 4rem !important;
}
.whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
footer h3 a {
  color: white;
  text-decoration: none;
}

/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 0;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 4; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0, 0, 0); /* Black fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 10px;
  text-decoration: none;
  font-size: 36px;
  color: #e1e1e1;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
  font-family: "Smooch Sans", serif;
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
  color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 10px;
  right: 40px;
  font-size: 80px;
}
.contact-card {
  border-radius: 20px;
  background: white;
  box-shadow: 0 5px 20px 10px rgba(80, 193, 233, 0.15);
}
#contact a {
  text-decoration: none;
}
input[type="text"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: none;
}
input[type="text"]:disabled,
textarea:disabled {
  background: #eeeeee;
}
input[type="button"] {
  background-color: var(--primary-light);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

input[type="button"]:hover {
  background-color: var(--primary-dark);
}
input[type="button"]:disabled {
  background-color: var(--primary-dark);
  cursor: not-allowed;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100%;
}

.carousel-indicators {
  position: relative;
  margin: 20px 0;
}

.carousel-navigation {
  margin: auto;
}
.carousel-navigation [class*="prev"],
.carousel-navigation button[class*="prev"] {
  background-color: var(--primary);
  color: white;
}
.carousel-navigation [class*="prev"],
.carousel-navigation [class*="next"] {
  text-align: center;
  border-radius: 50%;
  padding: 10px 0;
  height: 40px;
  width: 40px;
  margin: 5px;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  box-shadow: 0 5px 20px 1px rgba(61, 61, 61, 0.2);
  display: inline-block;
  cursor: pointer;
}
.carousel-navigation [class*="prev"]::before,
.carousel-navigation button[class*="prev"]::before {
  content: "\f30a";
}
.carousel-navigation [class*="next"],
.carousel-navigation button[class*="next"] {
  background-color: white;
  color: var(--primary);
}
.carousel-navigation [class*="prev"],
.carousel-navigation [class*="next"] {
  text-align: center;
  border-radius: 50%;
  padding: 10px 0;
  height: 40px;
  width: 40px;
  margin: 5px;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  box-shadow: 0 5px 20px 1px rgba(61, 61, 61, 0.2);
  display: inline-block;
  cursor: pointer;
}
.carousel-navigation [class*="next"]::before,
.carousel-navigation button[class*="next"]::before {
  content: "\f30b";
}
.tech-card {
  background: var(--primary-light);
  color: white;
  border-radius: 18px;
}
.tech-card.secondary {
  background: var(--primary);
}
#technologies ul {
  margin: 0;
}
#technologies li {
  font-weight: 200;
  margin-bottom: 0.5rem;
}
.slick-prev:before,
.slick-next:before {
  color: red !important;
}
.slick-dotted.slick-slider {
  margin-bottom: 40px !important;
}
.slick-dots li {
  margin: 0 2px !important;
}
.slick-dots li button:before {
  font-size: 14px !important;
  opacity: 0.1 !important;
  color: black;
}
.slick-dots li.slick-active button:before {
  opacity: 1 !important;
  color: var(--primary) !important;
}

#client-logo img {
  cursor: pointer;
  transition: transform ease 0.5s;
}
#client-logo img:hover {
  transform: scale(1.1);
}

#frame {
  position: relative;
}
#screen {
  display: none;
  transition: none;
  background: #000;
  width: 73.4%;
  position: absolute;
  top: 6.6%;
  left: 13.4%;
  aspect-ratio: 15/9.3 auto;
}
#frame img {
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.3));
}
#screen img {
  width: 100%;
  height: 100%;
}
#phone-frame {
  position: relative;
  max-width: 360px;
  margin: auto;
}
#phone-frame img {
  -webkit-filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.3));
}
#phone-screen {
  /* display: none;
  transition: none; */
  background: #303030;
  width: 75.6%;
  position: absolute;
  top: 5%;
  left: 12.5%;
  aspect-ratio: 9/19.6 auto;
  border-radius: 28px;
  overflow: hidden;
}
#phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lang {
  width: 120px;
  height: 120px;
  padding: 20px;
  margin: 8px;
  border-radius: 20px;
  box-shadow: 0 5px 20px 10px rgba(80, 193, 233, 0.15);
}
.lang img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.w-fit {
  width: fit-content;
}
.grecaptcha-badge {
  display: none !important;
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
@media screen and (max-width: 500px) {
  /* Mobile only*/
  .header-menu a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-menu {
    float: none;
    display: none;
  }
  .icon {
    display: block;
  }
  .tech-card span {
    display: none;
  }
  .tech-card h2 {
    text-align: center;
  }
  .typewrite {
    font-size: 23px !important;
  }
}

@media screen and (min-width: 992px) {
  /* Large screens only */
  .name {
    font-size: 50px;
  }
  .photo {
    width: 100%;
    z-index: 2;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  /* Tablets and above */
  .slick-prev:before,
  .slick-next:before {
    font-size: 30px !important;
  }
  .slick-prev {
    left: -35px !important;
  }
}

#demo {
  margin: auto;
}
#demo img {
  max-width: 200px;
  transition: all 0.3s;
  filter: drop-shadow(5px 5px 5px #dfdfdf);
}
#demo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(5px 5px 10px #aeaeae);
}
.btn.btn-primary {
  background-color: var(--primary-light);
}
.btn.btn-primary:hover {
  background-color: var(--primary);
}

.hero-photo {
  background: black;
  border-radius: 50%;
  border: 4px solid var(--secondary);
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  object-fit: cover;
}