@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Outfit:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: #00060EFF; */
}

nav {
  position: fixed;
  top: 2vh;
  width: 96%;
  background-color: white;
  border-radius: 8px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  z-index: 99;
}
nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav ul .logo {
  font-size: 20px;
  font-weight: 600;
}
nav ul .logo span {
  font-weight: 600;
}
nav ul .logo span:first-child {
  color: #023371;
}
nav ul .logo span:last-child {
  color: #4e027f;
}
nav li {
  height: 50px;
  cursor: pointer;
}
nav li:first-child {
  margin-right: auto;
}
nav a,
nav p {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: black;
}
nav a:hover,
nav p:hover {
  background-color: #f0f0f0;
}
nav .sidebar {
  position: fixed;
  top: 0;
  right: -100vh;
  height: 100vh;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: 0.5s ease;
}
nav .sidebar li {
  width: 100%;
}
nav .sidebar a {
  width: 100%;
}
nav .active-sidebar {
  right: 0;
  transition: 0.5s ease;
}
nav .menu-button {
  display: none;
}
@media (max-width: 800px) {
  nav .hideOnMobile {
    display: none;
  }
  nav .menu-button {
    display: block;
  }
  nav .menubar li:not(:first-child, :last-child) {
    display: none;
  }
}
@media (max-width: 400px) {
  nav .sidebar {
    width: 100%;
  }
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  height: 80vh;
  background-repeat: no-repeat;
  text-align: center;
}
.header h1 {
  width: 100%;
  font-size: 5vh;
  font-weight: 500;
  color: #000;
}
.header h1 span {
  color: #4e027f;
}
.header p {
  color: #1d1d1d;
}

.about {
  padding: 2rem 2rem 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.about img {
  width: 50%;
  height: 40%;
  border-radius: 8px;
}
.about .about-box {
  width: 50%;
}
.about .about-box .title {
  font-weight: 600;
  color: #6d2ef2;
}
.about .about-box .description {
  color: #626262;
}
.about .about-box .btn {
  padding: 0.7rem 3.5rem;
  color: #6d2ef2;
  background-color: transparent;
  border: 2px solid #6d2ef2;
  border-radius: 20px;
  color: #6d2ef2;
  cursor: pointer;
  transition: 0.5s ease;
}
.about .about-box .btn:hover {
  background-color: #6d2ef2;
  color: #fff;
  transition: 0.5s ease;
}

.project {
  width: 100%;
  padding: 2rem;
  background-color: whitesmoke;
}
.project .title {
  font-weight: 600;
  color: #6d2ef2;
}
.project .project-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.project .project-container .project-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.project .project-container .project-box::-webkit-scrollbar {
  width: 12px;
}
.project .project-container .project-box::-webkit-scrollbar-track {
  background: #dbdbdb;
  border-radius: 10px;
}
.project .project-container .project-box::-webkit-scrollbar-thumb {
  background: #6d2ef2;
  border-radius: 10px;
  transition: 0.5s ease;
  cursor: pointer;
}
.project .project-container .project-box .project-card {
  padding: 6px;
  background: -moz-linear-gradient(0deg, rgb(109, 46, 242) 0%, rgb(47, 98, 255) 100%);
  background: -webkit-linear-gradient(0deg, rgb(109, 46, 242) 0%, rgb(47, 98, 255) 100%);
  background: linear-gradient(0deg, rgb(109, 46, 242) 0%, rgb(47, 98, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6d2ef2",endColorstr="#2f62ff",GradientType=1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 12px;
}
.project .project-container .project-box .project-card .project-image {
  width: 100%;
}
.project .project-container .project-box .project-card .project1 {
  background-image: url(../images/project1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
}
.project .project-container .project-box .project-card .project2 {
  background-image: url(../images/project2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.project .project-container .project-box .project-card .project3 {
  background-image: url(../images/project3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.project .project-container .project-box .project-card .project-title {
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  color: #fff;
}
.project .project-container .project-box .project-card .card-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: 0.5s ease;
}
.project .project-container .project-box .project-card .card-btn:hover {
  background-color: #fff;
}
.project .project-container .project-box .project-card .card-btn:hover svg path {
  fill: #6d2ef2;
}
.project .project-container .more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-weight: 400;
  color: #626262;
  text-decoration: none;
  transition: 0.5s ease;
}
.project .project-container .more-btn:hover {
  color: #6d2ef2;
  transition: 0.5s ease;
}
.project .project-container .more-btn:hover svg path {
  stroke: #6d2ef2;
}

.services {
  width: 100%;
  padding: 0 2rem 2rem;
  background-color: whitesmoke;
}
.services .services-container {
  position: relative;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background-color: #6d2ef2;
  border-radius: 12px;
  gap: 2rem;
}
.services .services-container .dec-item {
  width: 18%;
  position: absolute;
  top: 1.2rem;
  left: 0;
  display: none;
}
.services .services-container .title {
  font-weight: 600;
  color: #fff;
}
.services .services-container .pattern {
  position: absolute;
  top: 0;
  right: 50%;
  width: 7.5rem;
  min-height: 100%;
  background-image: url(../images/pattern.png);
  background-size: 50%;
  display: none;
}
.services .services-container .services-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.services .services-container .services-box a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #ba9aff;
  transition: 0.5s ease;
}
.services .services-container .services-box a svg {
  opacity: 0;
  transition: 0.5s ease;
}
.services .services-container .services-box a:hover {
  color: #fff;
  transition: 0.5s ease;
}
.services .services-container .services-box a:hover svg {
  opacity: 1;
}
.services .services-container .services-box .line {
  width: 100%;
  min-height: 1px;
  background-color: #ba9aff;
}

.blog {
  width: 100%;
  padding: 2rem;
}
.blog .title {
  font-weight: 600;
  color: #6d2ef2;
}
.blog .blog-container {
  width: 100%;
}
.blog .blog-container h3 {
  font-weight: 600;
}

.contact {
  position: relative;
  padding: 4rem 2rem;
  width: 100%;
  background-color: whitesmoke;
}
.contact .contact-container {
  width: 100%;
  margin-bottom: 2rem;
}
.contact .contact-container .title {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #6d2ef2;
}
.contact .contact-container .description {
  font-family: "Orbitron", sans-serif;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #3f3f3f;
}
.contact .contact-container .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.contact .contact-container .contact-form input {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-bottom: 1px solid #3f3f3f;
  background-color: transparent;
  font-family: "Orbitron", sans-serif;
  outline: none;
  transition: 0.5s ease;
}
.contact .contact-container .contact-form input:focus {
  border-bottom: 1px solid #6d2ef2;
  transition: 0.5s ease;
}
.contact .contact-container .contact-form input:focus::placeholder {
  color: #6d2ef2;
  transition: 0.5s ease;
}
.contact .contact-container .contact-form input:hover {
  border-bottom: 1px solid #6d2ef2;
  transition: 0.5s ease;
}
.contact .contact-container .contact-form input:hover::placeholder {
  color: #6d2ef2;
  transition: 0.5s ease;
}
.contact .contact-container .contact-form textarea {
  width: 100%;
  height: 3rem;
  padding: 0.5rem;
  border: none;
  border-bottom: 1px solid #3f3f3f;
  background-color: transparent;
  font-family: "Orbitron", sans-serif;
  outline: none;
  resize: none;
  transition: 0.5s ease;
}
.contact .contact-container .contact-form textarea:focus {
  border-bottom: 1px solid #6d2ef2;
  transition: 0.5s ease;
}
.contact .contact-container .contact-form textarea:focus::placeholder {
  color: #6d2ef2;
  transition: 0.5s ease;
}
.contact .contact-container .contact-form textarea:hover {
  border-bottom: 1px solid #6d2ef2;
  transition: 0.5s ease;
}
.contact .contact-container .contact-form textarea:hover::placeholder {
  color: #6d2ef2;
  transition: 0.5s ease;
}
.contact .contact-container .contact-form button {
  width: 100%;
  height: 3rem;
  padding: 0.5rem;
  background-color: transparent;
  border: 2px solid #6d2ef2;
  border-radius: 2rem;
  background-color: transparent;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  color: #6d2ef2;
  transition: 0.5s ease;
}
.contact .contact-container .contact-form button:hover {
  background-color: #6d2ef2;
  color: #fff;
  transition: 0.5s ease;
  cursor: pointer;
}
.contact .info {
  width: 100%;
}
.contact .info p {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  color: #9363fa;
  margin-bottom: 0.2rem;
}
.contact .info h4 {
  display: flex;
  font-family: "Orbitron", sans-serif;
  flex-direction: column;
  margin-bottom: 1rem;
  color: #3f3f3f;
}
.contact .frame {
  display: none;
}

.footer {
  padding: 2rem;
  width: 100%;
  background-color: #6d2ef2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer .logo {
  width: 10rem;
}
.footer .social-media-btns a {
  text-decoration: none;
}
.footer .social-media-btns a img {
  width: 10px;
  height: 10px;
}
.footer p {
  color: #fff;
  text-align: center;
}

/* For mobile devices (0px - 600px) */
@media (max-width: 600px) {
  /* Styles for small screens */
  .header {
    height: 42.5rem;
    background-image: url(../images/mobile_background.png);
    background-size: 60%;
    background-position: center 23rem;
    text-align: center;
    padding: 8rem 4% 0 4%;
  }
  .header h1 {
    width: 80%;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
  .header p {
    font-size: 1rem;
  }
  .about {
    flex-direction: column-reverse;
    align-items: center;
  }
  .about img {
    width: 100%;
  }
  .about .about-box {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .about .about-box .title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .about .about-box .description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .project .title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .project .project-container .project-box {
    overflow: auto;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .project .project-container .project-box .project-card {
    min-width: 15rem;
    max-width: 30%;
    min-height: 15rem;
    max-height: 40%;
  }
  .project .project-container .project-box .project-card .project-image {
    min-height: 9rem;
    border-radius: 8px;
  }
  .project .project-container .project-box .project-card .project-title {
    font-size: 16px;
  }
  .project .project-container .project-box .project-card .card-btn {
    width: 2.6rem;
    height: 2.6rem;
  }
  .services .services-container .title {
    font-size: 1.7rem;
  }
  .services .services-container .services-box a {
    font-size: 1.2rem;
  }
  .blog .title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .blog .blog-container {
    width: 100%;
  }
  .blog .blog-container h3 {
    font-size: 2rem;
    text-align: center;
  }
  .contact {
    width: 100%;
  }
  .contact .contact-container {
    width: 100%;
    margin-bottom: 2rem;
  }
  .contact .contact-container .title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  .contact .contact-container .description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .contact .contact-container .contact-form {
    width: 100%;
    gap: 1rem;
  }
  .contact .contact-container .contact-form input {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.9rem;
  }
  .contact .contact-container .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.9rem;
  }
  .contact .contact-container .contact-form button {
    width: 100%;
    height: 3rem;
    padding: 0.5rem;
    font-size: 1rem;
  }
  .contact .info {
    width: 100%;
  }
  .contact .info p {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }
  .contact .info h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .footer {
    gap: 1rem;
  }
  .footer .logo {
    width: 8.5rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.2rem;
    height: 1.2rem;
  }
  .footer p {
    font-size: 0.8rem;
  }
}
/* For small tablets (600px - 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  /* Styles for small tablets */
  .header {
    height: 48.5rem;
    background-image: url(../images/mobile_background.png);
    background-size: 50%;
    background-position: center 24rem;
    text-align: center;
    padding: 8rem 4% 0 4%;
  }
  .header h1 {
    width: 74%;
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  .header p {
    font-size: 1.4rem;
  }
  .about {
    flex-direction: column-reverse;
    align-items: center;
  }
  .about img {
    width: 100%;
  }
  .about .about-box {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .about .about-box .title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .about .about-box .description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .project .title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .project .project-container .project-box {
    overflow: auto;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
  }
  .project .project-container .project-box .project-card {
    min-width: 20rem;
    min-height: 20rem;
  }
  .project .project-container .project-box .project-card .project-image {
    min-height: 11rem;
    border-radius: 8px;
  }
  .project .project-container .project-box .project-card .project-title {
    font-size: 20px;
  }
  .project .project-container .project-box .project-card .card-btn {
    width: 3.25rem;
    height: 3.25rem;
  }
  .services .services-container .title {
    font-size: 2.5rem;
  }
  .services .services-container .services-box a {
    font-size: 1.4rem;
  }
  .blog .title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .blog .blog-container {
    width: 100%;
  }
  .blog .blog-container h3 {
    font-size: 2.5rem;
    text-align: center;
  }
  .contact {
    width: 100%;
  }
  .contact .contact-container {
    width: 100%;
    margin-bottom: 2rem;
  }
  .contact .contact-container .title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .contact .contact-container .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .contact .contact-container .contact-form {
    width: 100%;
    gap: 1rem;
  }
  .contact .contact-container .contact-form input {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
  }
  .contact .contact-container .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
  }
  .contact .contact-container .contact-form button {
    width: 100%;
    height: 3rem;
    padding: 0.5rem;
    font-size: 1.1rem;
  }
  .contact .info {
    width: 100%;
  }
  .contact .info p {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  .contact .info h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact .frame {
    display: inline-block;
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
  .footer {
    gap: 1.5rem;
  }
  .footer .logo {
    width: 9rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.3rem;
    height: 1.3rem;
  }
  .footer p {
    font-size: 0.9rem;
  }
}
/* For medium-sized tablets (768px - 992px) */
@media (min-width: 768px) and (max-width: 992px) {
  /* Styles for medium-sized tablets */
  .header {
    height: 37rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background-image: url(../images/desctope_background.png);
    background-size: 80%;
    background-position: right center;
    text-align: left;
    padding: 0 4% 0 4%;
  }
  .header h1 {
    width: 53%;
    font-size: 3.2rem;
    padding-bottom: 1.5rem;
  }
  .header p {
    width: 50%;
    font-size: 1.5rem;
  }
  .about {
    gap: 1rem;
  }
  .about img {
    width: 40%;
  }
  .about .about-box {
    width: 100%;
  }
  .about .about-box .title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .about .about-box .description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .project .title {
    text-align: left !important;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .project .project-container .project-box {
    overflow: auto;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
  }
  .project .project-container .project-box .project-card {
    min-width: 22.5rem;
    max-width: 30%;
    min-height: 21rem;
  }
  .project .project-container .project-box .project-card .project-image {
    min-height: 11rem;
    border-radius: 8px;
  }
  .project .project-container .project-box .project-card .project-title {
    font-size: 20px;
  }
  .project .project-container .project-box .project-card .card-btn {
    width: 3.25rem;
    height: 3.25rem;
  }
  .services .services-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 12.5rem;
    padding: 3rem 0 3rem 3rem;
  }
  .services .services-container .dec-item {
    display: inline-block;
  }
  .services .services-container .title {
    width: 30%;
    font-size: 2.75rem;
    padding: 2.5rem 0 0 2.5rem;
  }
  .services .services-container .pattern {
    display: inline-block;
  }
  .services .services-container .services-box {
    width: 40%;
  }
  .services .services-container .services-box a {
    width: 85%;
    font-size: 1.15rem;
  }
  .services .services-container .services-box a svg {
    width: 42px;
    height: 26px;
  }
  .blog .title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .blog .blog-container {
    width: 100%;
  }
  .blog .blog-container h3 {
    font-size: 2.5rem;
    text-align: center;
  }
  .contact {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 4rem;
  }
  .contact .contact-container {
    width: 100%;
    margin-bottom: 0;
  }
  .contact .contact-container .title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .contact .contact-container .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .contact .contact-container .contact-form {
    width: 100%;
    gap: 1rem;
  }
  .contact .contact-container .contact-form input {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
  }
  .contact .contact-container .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
  }
  .contact .contact-container .contact-form button {
    width: 100%;
    height: 3rem;
    padding: 0.5rem;
    font-size: 1.1rem;
  }
  .contact .info {
    width: 100%;
  }
  .contact .info p {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  .contact .info h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact .frame {
    display: inline-block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 120px;
    height: 129px;
  }
  .footer {
    gap: 2rem;
  }
  .footer .logo {
    width: 9.5rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .footer p {
    font-size: 1rem;
  }
}
/* For laptops and small desktop computers (992px - 1200px) */
@media (min-width: 992px) and (max-width: 1237px) {
  /* Styles for laptops */
  .header {
    height: 50rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background-image: url(../images/desctope_background.png);
    background-size: 80%;
    background-position: right center;
    text-align: left;
    padding: 0 4% 0 4%;
  }
  .header h1 {
    width: 53%;
    font-size: 4.2rem;
    padding-bottom: 1.5rem;
  }
  .header p {
    width: 50%;
    font-size: 1.5rem;
  }
  .about {
    gap: 1rem;
  }
  .about img {
    width: 50%;
  }
  .about .about-box {
    width: 100%;
  }
  .about .about-box .title {
    font-size: 4.6vh;
    margin-bottom: 1.5rem;
  }
  .about .about-box .description {
    font-size: 1.2rem;
    font-size: 300;
    margin-bottom: 1.5rem;
  }
  .about .about-box .btn {
    font-size: 1rem;
  }
  .project {
    padding-bottom: 3%;
  }
  .project .title {
    text-align: left !important;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .project .project-container .project-box {
    justify-content: center;
    padding-bottom: 2rem;
    gap: 2rem;
  }
  .project .project-container .project-box .project-card {
    width: 20rem;
    min-height: 22.5rem;
  }
  .project .project-container .project-box .project-card .project-image {
    min-height: 12rem;
    border-radius: 8px;
  }
  .project .project-container .project-box .project-card .project-title {
    font-size: 20px;
  }
  .project .project-container .project-box .project-card .card-btn {
    width: 3.25rem;
    height: 3.25rem;
  }
  .project .project-container .more-btn {
    font-size: 1.2rem;
  }
  .services .services-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 7.5rem;
    padding: 3rem 0 3rem 3rem;
  }
  .services .services-container .dec-item {
    width: 16%;
    display: inline-block;
  }
  .services .services-container .title {
    width: 30%;
    font-size: 2.75rem;
    padding: 2.5rem 0 0 2.5rem;
  }
  .services .services-container .pattern {
    display: inline-block;
  }
  .services .services-container .services-box {
    width: 40%;
  }
  .services .services-container .services-box a {
    width: 85%;
    font-size: 1.15rem;
  }
  .services .services-container .services-box a svg {
    width: 42px;
    height: 26px;
  }
  .blog {
    padding-bottom: 3%;
  }
  .blog .title {
    text-align: start !important;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .blog .blog-container {
    width: 100%;
  }
  .blog .blog-container h3 {
    font-size: 2.5rem;
    text-align: center;
  }
  .contact {
    padding: 4rem 3rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 4rem;
  }
  .contact .contact-container {
    width: 100%;
    margin-bottom: 0;
  }
  .contact .contact-container .title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .contact .contact-container .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .contact .contact-container .contact-form {
    width: 100%;
    gap: 1rem;
  }
  .contact .contact-container .contact-form input {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
  }
  .contact .contact-container .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
  }
  .contact .contact-container .contact-form button {
    width: 100%;
    height: 3rem;
    padding: 0.5rem;
    font-size: 1.1rem;
  }
  .contact .info {
    width: 90%;
  }
  .contact .info p {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  .contact .info h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact .frame {
    display: inline-block;
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 150px;
    height: 159px;
  }
  .footer {
    gap: 2.2rem;
  }
  .footer .logo {
    width: 10.5rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.7rem;
    height: 1.7rem;
  }
  .footer p {
    font-size: 1.1rem;
  }
}
/* For desktop computers (1200px and above) */
@media (min-width: 1238px) and (max-width: 1399px) {
  /* Styles for large desktop screens */
  .header {
    height: 50rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background-image: url(../images/desctope_background.png);
    background-size: 70%;
    background-position: right center;
    text-align: left;
    padding: 0 4% 0 4%;
  }
  .header h1 {
    width: 56%;
    font-size: 5rem;
    padding-bottom: 1.5rem;
  }
  .header p {
    width: 50%;
    font-size: 3vh;
  }
  .about {
    padding: 3.5rem 7.5rem 4rem;
    gap: 1rem;
  }
  .about img {
    width: 45%;
  }
  .about .about-box {
    width: 100%;
  }
  .about .about-box .title {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
  .about .about-box .description {
    font-size: 1.15rem;
    font-size: 300;
    margin-bottom: 2rem;
  }
  .about .about-box .btn {
    font-size: 1.25rem;
  }
  .project {
    padding: 6rem 7.5rem 2rem 7.5rem;
  }
  .project .title {
    text-align: left !important;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .project .project-container .project-box {
    justify-content: start;
    padding-bottom: 2rem;
    gap: 2rem;
  }
  .project .project-container .project-box .project-card {
    width: 20rem;
    min-height: 22.5rem;
  }
  .project .project-container .project-box .project-card .project-image {
    min-height: 12rem;
    border-radius: 8px;
  }
  .project .project-container .project-box .project-card .project-title {
    font-size: 20px;
  }
  .project .project-container .project-box .project-card .card-btn {
    width: 3.25rem;
    height: 3.25rem;
  }
  .project .project-container .more-btn {
    position: absolute;
    right: 0;
    transform: rotate(90deg);
    font-size: 1.2rem;
  }
  .services {
    padding: 0 7.5rem 6rem;
  }
  .services .services-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 7.5rem;
    padding: 3rem 0 3rem 3rem;
  }
  .services .services-container .dec-item {
    width: 14%;
    display: inline-block;
  }
  .services .services-container .title {
    width: 23%;
    font-size: 2.9rem;
    padding: 2.65rem 0 0 2.5rem;
  }
  .services .services-container .pattern {
    display: inline-block;
  }
  .services .services-container .services-box {
    width: 40%;
  }
  .services .services-container .services-box a {
    width: 85%;
    font-size: 1.15rem;
  }
  .services .services-container .services-box a svg {
    width: 42px;
    height: 26px;
  }
  .blog {
    padding: 5rem 7.5rem 2rem 7.5rem;
  }
  .blog .title {
    text-align: start !important;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .blog .blog-container {
    width: 100%;
  }
  .blog .blog-container h3 {
    font-size: 2.8rem;
    text-align: center;
  }
  .contact {
    padding: 5rem 7.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 4rem;
  }
  .contact .contact-container {
    width: 100%;
    margin-bottom: 0;
  }
  .contact .contact-container .title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .contact .contact-container .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .contact .contact-container .contact-form {
    width: 100%;
    gap: 1rem;
  }
  .contact .contact-container .contact-form input {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
  }
  .contact .contact-container .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
  }
  .contact .contact-container .contact-form button {
    width: 100%;
    height: 3rem;
    padding: 0.5rem;
    font-size: 1.1rem;
  }
  .contact .info {
    width: 80%;
  }
  .contact .info p {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  .contact .info h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact .frame {
    display: inline-block;
    position: absolute;
    top: 5rem;
    right: 7.5rem;
    width: 180px;
    height: 189px;
  }
  .footer {
    gap: 2.5rem;
  }
  .footer .logo {
    width: 11rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.7rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.9rem;
    height: 1.9rem;
  }
  .footer p {
    font-size: 1.2rem;
  }
}
@media (min-width: 1400px) {
  /* Styles for large desktop screens */
  .header {
    height: 50rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background-image: url(../images/desctope_background.png);
    background-size: 70%;
    background-position: right center;
    text-align: left;
    padding: 0 4% 0 4%;
  }
  .header h1 {
    width: 56%;
    font-size: 5.5rem;
    padding-bottom: 1.5rem;
  }
  .header p {
    width: 50%;
    font-size: 1.5rem;
  }
  .about {
    padding: 6rem 7.5rem 4rem;
    gap: 4rem;
  }
  .about img {
    width: 40%;
  }
  .about .about-box {
    width: 100%;
  }
  .about .about-box .title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .about .about-box .description {
    font-size: 1.3rem;
    font-size: 300;
    margin-bottom: 2rem;
  }
  .about .about-box .btn {
    padding: 1rem 4.5rem;
    font-size: 1.3rem;
  }
  .project {
    padding: 8rem 10rem 3rem 10rem;
  }
  .project .title {
    text-align: left !important;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .project .project-container .project-box {
    justify-content: start;
    padding-bottom: 2rem;
    gap: 2rem;
  }
  .project .project-container .project-box .project-card {
    width: 21rem;
    min-height: 25rem;
  }
  .project .project-container .project-box .project-card .project-image {
    min-height: 13rem;
    border-radius: 8px;
  }
  .project .project-container .project-box .project-card .project-title {
    font-size: 24px;
  }
  .project .project-container .project-box .project-card .card-btn {
    width: 3.5rem;
    height: 3.5rem;
  }
  .project .project-container .project-box .project-card .card-btn svg {
    width: 20px;
    height: 18px;
  }
  .project .project-container .more-btn {
    position: absolute;
    right: 1rem;
    transform: rotate(90deg);
    font-size: 1.2rem;
  }
  .services {
    padding: 0 10rem 7.5rem;
  }
  .services .services-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 7.5rem;
    padding: 3rem 0 3rem 3rem;
  }
  .services .services-container .dec-item {
    width: 14%;
    display: inline-block;
  }
  .services .services-container .title {
    width: 23%;
    font-size: 2.9rem;
    padding: 2.65rem 0 0 2.5rem;
  }
  .services .services-container .pattern {
    display: inline-block;
  }
  .services .services-container .pattern {
    right: 55%;
  }
  .services .services-container .services-box {
    width: 40%;
  }
  .services .services-container .services-box a {
    width: 85%;
    font-size: 1.15rem;
  }
  .services .services-container .services-box a svg {
    width: 42px;
    height: 26px;
  }
  .blog {
    padding: 7rem 10rem 3rem 10rem;
  }
  .blog .title {
    text-align: start !important;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .blog .blog-container {
    width: 100%;
  }
  .blog .blog-container h3 {
    font-size: 3.2rem;
    text-align: center;
  }
  .contact {
    padding: 7rem 10rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
  }
  .contact .contact-container {
    width: 100%;
    margin-bottom: 0;
  }
  .contact .contact-container .title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
  }
  .contact .contact-container .description {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .contact .contact-container .contact-form {
    width: 100%;
    gap: 1rem;
  }
  .contact .contact-container .contact-form input {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact .contact-container .contact-form textarea {
    width: 100%;
    height: 5rem;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .contact .contact-container .contact-form button {
    width: 100%;
    min-height: 3.4rem;
    font-size: 1.2rem;
  }
  .contact .info {
    width: 80%;
  }
  .contact .info p {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
  }
  .contact .info h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .contact .frame {
    display: inline-block;
    position: absolute;
    top: 7rem;
    right: 10rem;
    width: 200px;
    height: 209px;
  }
  .footer {
    gap: 2.6rem;
  }
  .footer .logo {
    width: 12rem;
  }
  .footer .social-media-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.7rem;
  }
  .footer .social-media-btns a {
    text-decoration: none;
  }
  .footer .social-media-btns a img {
    width: 1.9rem;
    height: 1.9rem;
  }
  .footer p {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=style.css.map */