:root {
  --yellow: #fee23a;
  --black: #000;
  --white: #fff;
  --logo-blue: #1bb5d9;
  --blue: #0abaff;
  --darkblue: #029edb;
  --lightblue: #98daf4;
  --light-color: #666;
  --light-bg: #eee;
  --lightblue-bg: #0e7fac;
  --darkblue-bg: #064964;
  --extra-darkblue-bg: #033244;
  --yellow-bg: #fffcec;
  --blue-bg: #e6f7fe;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.4);
  --box-white-shadow:0 .5rem 1rem rgba(255, 255, 255, 0.4);
  --border: .1rem solid rgba(0,0,0,.3);
  --gradient-bg: linear-gradient(
      90deg,
      rgba(198,199,218,1) 0%,
      rgba(227,224,236,1) 25%
      rgba(250,242,239,1) 50%,
      rgba(163,232,253,0.9) 75%,
      rgba(38,198,248,0.2) 100%
  );
}

* {
  font-family: "Cabin", arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--darkblue);
}

.page-heading {
  color: var(--light-color);
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
}

.light-bg {
  background-color: var(--light-bg);
}

.yellow-bg {
  background-color: var(--yellow-bg);
}

.blue-bg {
  background-color: var(--blue-bg);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--darkblue-bg);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  border-radius: 1rem;
}
.btn:hover {
  background: var(--extra-darkblue-bg);
  color: #efefef;
}

.footer-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  text-decoration: none;
}
.footer-btn:hover {
  background: var(--darkblue-bg);
  text-decoration: none;
  color: var(--white);
}

.swiper-button-prev:after, .swiper-button-next:after {
  color: var(--light-color);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--darkblue-bg);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--box-shadow);
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: var(--white);
}
.header .navbar-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header .navbar-container .logo img {
  max-height: 6rem;
}
.header .navbar-container .navbar {
  padding: 0 2rem;
}
.header .navbar-container .navbar a {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 2rem;
}
.header .navbar-container .navbar a:hover {
  color: var(--darkblue);
}
.header #icons-container #fb-btn {
  color: var(--darkblue);
}
.header #icons-container #line-btn {
  color: green;
}
.header #icons-container div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 3rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: 0.3rem;
}
.header #icons-container div:hover {
  box-shadow: var(--box-shadow);
}

#menu-btn {
  display: none;
}

#qr_line_container {
  display: none;
  position: absolute;
  top: 120%;
  right: 10%;
  width: 20%;
  background: var(--light-bg);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  animation: fade-in 0.2s linear;
}
#qr_line_container.active {
  display: block;
}
#qr_line_container img {
  width: 100%;
  margin-bottom: 0.5rem;
}

.home {
  padding: 0;
}
.home .slide {
  min-height: 60rem;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.home .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--white), transparent);
}
.home .slide .content {
  width: 50rem;
  position: relative;
}
.home .slide .content h3 {
  font-size: 6rem;
  color: var(--black);
  text-transform: capitalize;
  text-transform: uppercase;
}
.home .slide .content p {
  font-size: 2.5rem;
  color: var(--light-color);
  line-height: 1.5;
  padding: 1rem 0;
  text-transform: capitalize;
}

.about .btn-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.about .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}
.about .row .content {
  flex: 1 1 30rem;
}
.about .row .content h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}
.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.5;
  padding: 1rem 0;
}

.services {
  background: var(--light-bg);
}
.services p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.5;
  padding-bottom: 3rem;
}
.services .btn-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}
.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border: var(--border);
}
.services .box-container .box img {
  height: 7rem;
  margin-bottom: 0.5rem;
}
.services .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}
.services .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.5;
}
.services .box-container .box:hover img {
  transform: translateY(-1rem);
}

.projects .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.projects .box-container .box {
  cursor: initial;
  transition: 0.2s linear;
}
.projects .box-container .box:hover {
  text-decoration: none;
}
.projects .box-container .box:hover .image img {
  transform: scale(1.1);
}
.projects .box-container .box .image {
  height: 40rem;
  overflow: hidden;
}
.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.projects .box-container .box .content {
  display: flex;
  background: var(--white);
  justify-content: space-between;
}
.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}
.projects .box-container .box .content .info h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}
.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.5;
}
.projects .box-container .box .content i {
  width: 7.5rem;
  font-size: 3rem;
  background: var(--darkblue);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
}

.blogs {
  background: var(--light-bg);
}
.blogs .btn-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.blogs .slide {
  width: 35rem;
  text-align: center;
}
.blogs .slide:hover .image img {
  transform: scale(1.1);
}
.blogs .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}
.blogs .slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.2s linear;
}
.blogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blogs .slide .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}
.blogs .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 1.5;
}

.contact {
  background: var(--black);
}
.contact .heading {
  color: var(--white);
}
.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.contact .row .map {
  flex: 1 1 41rem;
  width: 100%;
}
.contact .row form {
  flex: 1 1 41rem;
  background: var(--white);
  padding: 2rem;
}
.contact .row form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}
.contact .row form .box {
  margin: 0.7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--light-color);
}
.contact .row form .box:focus {
  border-color: var(--darkblue);
}
.contact .row form textarea {
  height: 15rem;
  resize: none;
}

.project-image .content {
  font-size: 2rem;
  color: var(--light-color);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.project-image .image-slider {
  width: 80%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.project-image .image-slider .swiper-slide .image {
  background-position: center;
  background-size: cover;
}
.project-image .image-slider .image img {
  display: block;
  width: 100%;
  object-fit: cover;
  cursor: initial;
}
.project-image .thumb-slider {
  padding: 4rem 0;
}
.project-image .thumb-slider .swiper-slide {
  opacity: 0.4;
}
.project-image .thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
}
.project-image .thumb-slider .swiper-slide-thumb-active img {
  border: 0.2rem solid var(--light-color);
}
.project-image .thumb-slider .image img {
  height: 10rem;
  cursor: initial;
  border-radius: 0.5rem;
}

.footer {
  text-align: center;
}
.footer .footer-links .footer-btn {
  margin: 0.5rem;
}
.footer .credit {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin-top: 2rem;
  padding-top: 2rem;
}
.footer .credit #brand {
  color: var(--white);
  background-color: var(--logo-blue);
  padding: 0 0.5rem;
  border-radius: 5px;
}
.footer .credit #it {
  color: var(--yellow);
}

.projects_page .btn-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.projects_page .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.projects_page .box-container .box {
  text-align: center;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border: var(--border);
  border-radius: 3rem;
  max-width: 40rem;
}
.projects_page .box-container .box:hover {
  text-decoration: none;
}
.projects_page .box-container .box:hover .image img {
  transform: scale(0.9);
  border-radius: 0;
}
.projects_page .box-container .box:hover .content {
  background-color: var(--lightblue-bg);
}
.projects_page .box-container .box:hover .content i {
  background-color: #062835;
}
.projects_page .box-container .box .image img {
  width: 30rem;
  aspect-ratio: 1;
  border-radius: 3rem 3rem 0 0;
  scale: 0.8;
}
.projects_page .box-container .box .content {
  flex: 1 1 30rem;
  background-color: var(--darkblue-bg);
  padding: 2rem 0;
  border-radius: 0 0 3rem 3rem;
}
.projects_page .box-container .box .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  color: var(--white);
}
.projects_page .box-container .box .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.5;
  color: var(--white);
  font-weight: 100;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.projects_page .box-container .box .content i {
  background-color: var(--darkblue);
  color: var(--white);
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  font-size: 1.5rem;
}

.page_header {
  padding: 0;
}
.page_header .thumbnail {
  min-height: 50rem;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.page_header .content-container {
  min-height: 50rem;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page_header .content-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--white), transparent);
  z-index: 1;
}
.page_header .content-container .content {
  width: 50rem;
  position: relative;
  z-index: 2;
}
.page_header .content-container .content h3 {
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  text-transform: uppercase;
  line-height: 1.7;
  padding-bottom: 1rem;
}
.page_header .content-container .content p {
  font-size: 2.5rem;
  color: var(--light-color);
  line-height: 1.5;
  padding: 1rem 0;
}
.page_header .content-container .content table {
  border-collapse: separate;
  border-spacing: 0 1.5rem;
}
.page_header .content-container .content table tr th {
  font-size: 1.5rem;
  padding-right: 1rem;
}
.page_header .content-container .content table tr td {
  font-size: 1rem;
  color: var(--light-color);
}
.page_header .content-container .content table tr td .row-info {
  width: auto;
  padding: 0.5rem 1rem;
  border: 2px solid var(--light-color);
  border-radius: 2rem;
  text-align: center;
}
.page_header .content-container .image {
  z-index: 2;
}
.page_header .content-container .image img {
  max-width: 500px;
  max-height: 500px;
}

.focus {
  background: var(--darkblue-bg);
}
.focus h1 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 4rem;
  color: var(--white);
}
.focus #focus_text {
  font-size: 2rem;
  color: var(--light-color);
  line-height: 1.5;
  color: var(--white);
  margin-top: 6rem;
}
.focus .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}
.focus .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  box-shadow: var(--box-white-shadow);
  border: var(--border);
  background-color: var(--light-bg);
}
.focus .box-container .box img {
  height: 7rem;
  margin-bottom: 0.5rem;
}
.focus .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}
.focus .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.5;
  text-align: left;
}
.focus .box-container .box:hover img {
  transform: translateY(-1rem);
}

.software, .collaboration, .development, .education, .end-services, .team, .vision, .mission {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.software .section-text h1, .collaboration .section-text h1, .development .section-text h1, .education .section-text h1, .end-services .section-text h1, .team .section-text h1, .vision .section-text h1, .mission .section-text h1 {
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 2rem;
}
.software .section-text p, .collaboration .section-text p, .development .section-text p, .education .section-text p, .end-services .section-text p, .team .section-text p, .vision .section-text p, .mission .section-text p {
  font-size: 1.7rem;
  color: var(--light-color);
  line-height: 1.5;
  padding-bottom: 2rem;
}
.software .section-image, .collaboration .section-image, .development .section-image, .education .section-image, .end-services .section-image, .team .section-image, .vision .section-image, .mission .section-image {
  box-shadow: var(--box-shadow);
  border-radius: 50px;
}
.software .section-image img, .collaboration .section-image img, .development .section-image img, .education .section-image img, .end-services .section-image img, .team .section-image img, .vision .section-image img, .mission .section-image img {
  border-radius: inherit;
  max-width: 500px;
  max-height: 500px;
}

.software {
  flex-wrap: wrap;
}
.software .process {
  position: relative;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 5rem 0;
  background-color: var(--darkblue-bg);
  border-radius: 50px;
  box-shadow: var(--box-shadow);
}
.software .process::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background-color: var(--light-bg);
  top: 0;
  left: 50%;
  margin-left: -3px;
  z-index: 1;
  animation: moveline 3.6s linear forwards;
}
.software .process .box {
  padding: 1rem 5.5rem;
  position: relative;
  width: 50%;
  z-index: -1;
  animation: movedown 0.6s linear forwards;
}
.software .process .box:nth-child(1) {
  animation-delay: 0s;
}
.software .process .box:nth-child(2) {
  animation-delay: 0.6s;
}
.software .process .box:nth-child(3) {
  animation-delay: 1.2s;
}
.software .process .box:nth-child(4) {
  animation-delay: 1.8s;
}
.software .process .box:nth-child(5) {
  animation-delay: 2.4s;
}
.software .process .box:nth-child(6) {
  animation-delay: 3s;
}
.software .process .box:hover {
  cursor: default;
}
.software .process .box:hover .box-text {
  box-shadow: var(--box-white-shadow);
  transform: scale(1.01);
}
.software .process .box:hover .image {
  box-shadow: var(--box-white-shadow);
  transform: scale(1.1);
}
.software .process .box .image {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  right: -35px;
  top: 32px;
  z-index: 10;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.software .process .box .image img {
  width: 50%;
}
.software .process .box .box-text {
  padding: 2rem 3rem;
  background-color: var(--white);
  position: relative;
  border-radius: 6px;
}
.software .process .box .box-text h2 {
  font-size: 1.9rem;
}
.software .process .box .box-text p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.3;
  padding-top: 1rem;
}
.software .process .box .box-text .left-box-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 20px;
  z-index: 2;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid var(--white);
  right: -15px;
}
.software .process .box .box-text .right-box-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 20px;
  z-index: 2;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid var(--white);
  left: -15px;
}
.software .process .left-box {
  left: 0;
}
.software .process .right-box {
  left: 50%;
}
.software .process .right-box .image {
  left: -35px;
}

.contact-form .form-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
.contact-form .map {
  flex: 1 1 41rem;
  width: 100%;
}
.contact-form form {
  flex: 1 1 41rem;
  background: var(--white);
  padding: 4rem;
  border: 0.1rem solid var(--light-color);
  border-radius: 3rem;
  max-width: 70rem;
  box-shadow: var(--box-shadow);
}
.contact-form form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  text-align: center;
}
.contact-form form .box {
  margin: 0.7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--light-color);
}
.contact-form form .box:focus {
  border-color: var(--darkblue);
}
.contact-form form textarea {
  height: 15rem;
  resize: none;
}
.contact-form form .btn-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact_info .page-heading {
  padding-bottom: 3rem;
  text-align: center;
}
.contact_info .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.contact_info .row .map {
  width: 100%;
}
.contact_info .row .info {
  flex: 1 1 41rem;
  background: var(--white);
  padding: 0 2rem;
}
.contact_info .row .info h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1.5rem 0 0 0;
}
.contact_info .row .info p {
  font-size: 1.7rem;
  color: var(--light-color);
  line-height: 1.5;
  padding: 1rem 0;
}
.contact_info .row .info table {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.5;
  padding: 1rem 0;
}
.contact_info .row .info table td {
  padding: 0 1rem;
}
.contact_info .row form {
  flex: 1 1 41rem;
  background: var(--white);
  padding: 4rem;
  border: 0.1rem solid var(--light-color);
  border-radius: 3rem;
  max-width: 70rem;
  box-shadow: var(--box-shadow);
}
.contact_info .row form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  text-align: center;
}
.contact_info .row form .box {
  margin: 0.7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--light-color);
}
.contact_info .row form .box:focus {
  border-color: var(--darkblue);
}
.contact_info .row form textarea {
  height: 15rem;
  resize: none;
}
.contact_info .row form .btn-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.project-section {
  display: flex;
  justify-content: space-between;
}
.project-section .section-heading {
  min-width: 50rem;
}
.project-section .section-heading h4 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
}
.project-section .section-info p {
  font-size: 1.7rem;
  color: var(--light-color);
  line-height: 1.5;
}

.expertise .section-heading h4 {
  font-size: 3.5rem;
  padding-bottom: 3.5rem;
  text-align: center;
}
.expertise .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.expertise .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border: var(--border);
}
.expertise .box-container .box img {
  height: 7rem;
  margin-bottom: 0.5rem;
}
.expertise .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
  font-weight: 500;
}
.expertise .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.5;
}
.expertise .box-container .box:hover img {
  transform: translateY(-1rem);
}

.features .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.features .box-container .section-heading h4 {
  font-size: 3.5rem;
  padding-bottom: 1.5rem;
  padding-top: 2rem;
}
.features .box-container .section-heading .heading-underline {
  border-top: solid 0.3rem var(--blue);
  max-width: 20%;
}
.features .box-container .box {
  text-align: left;
  padding: 3rem;
}
.features .box-container .box img {
  height: 4rem;
  margin-bottom: 0.5rem;
}
.features .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 2rem 0;
  font-weight: 500;
}
.features .box-container .box p, .features .box-container .box ul {
  font-size: 1.7rem;
  color: var(--light-color);
  line-height: 1.5;
}
.features .box-container .box:hover img {
  transform: translateY(-1rem);
}

.prepare .section-main-heading h4, .solution .section-main-heading h4 {
  font-size: 3.5rem;
  padding-bottom: 1.5rem;
  padding-top: 2rem;
}
.prepare .section-main-heading .heading-underline, .solution .section-main-heading .heading-underline {
  border-top: solid 0.3rem var(--blue);
  max-width: 5rem;
}
.prepare .section-heading h4, .solution .section-heading h4 {
  font-weight: 500;
}
.prepare .section-info table, .solution .section-info table {
  border-collapse: separate;
  border-spacing: 0 2rem;
}
.prepare .section-info table tr th, .solution .section-info table tr th {
  font-size: 1.7rem;
  color: var(--light-color);
  line-height: 1.5;
  padding-right: 3rem;
  text-align: left;
}
.prepare .section-info table tr td, .solution .section-info table tr td {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.5;
}
.prepare .section-info table tr td .row-info, .solution .section-info table tr td .row-info {
  border: solid 2px var(--light-color);
  border-radius: 3rem;
  padding: 2rem;
}

.blogs_page .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 2rem;
  gap: 5rem;
}
.blogs_page .box-container .box {
  max-width: 45%;
  text-align: center;
}
.blogs_page .box-container .box:hover .image img {
  transform: scale(1.1);
}
.blogs_page .box-container .box .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}
.blogs_page .box-container .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.2s linear;
}
.blogs_page .box-container .box .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--blue-bg);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}
.blogs_page .box-container .box .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}
.blogs_page .box-container .box .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 1.5;
}
.blogs_page .box-container .box .content a {
  padding: 0.5rem 1.5rem;
}

.blog-header {
  width: 100%;
  height: 500px;
  background: var(--lightblue-bg);
}
.blog-header .content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem !important;
}
.blog-header .content-container a {
  color: var(--yellow);
  font-size: 1.5rem;
}
.blog-header .content-container h2 {
  width: 90%;
  font-size: 5rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  padding: 2rem 1rem;
}
.blog-header .content-container img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.blog-body {
  margin-top: 10rem;
}
.blog-body .time {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 1.5;
  text-align: right;
  padding-top: 0;
  padding-bottom: 3rem;
}
.blog-body img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}
.blog-body blockquote {
  color: var(--light-color);
  line-height: 1.5;
  border-left: 0.5rem solid var(--light-bg);
  font-style: italic;
  padding: 2rem;
  margin: 2rem;
}
.blog-body p {
  padding: 1rem;
}

.blog-nav {
  font-size: 1.5rem;
}

@media (max-width: 1600px) {
  .software {
    flex-wrap: wrap;
  }
}
@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 3rem 5%;
  }
  .collaboration, .development, .education, .team, .vision, .mission {
    flex-wrap: wrap;
    justify-content: center;
  }
  .collaboration .section-image img, .development .section-image img, .education .section-image img, .team .section-image img, .vision .section-image img, .mission .section-image img {
    max-width: 500px;
    max-height: 500px;
  }
  .blogs_page .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 2rem;
    gap: 5rem;
  }
}
@media (max-width: 1100) {
  .page_header .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
  }
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  section {
    padding: 3rem 5%;
  }
  .project-section {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .header #qr_line_container {
    width: 90%;
  }
  .home .slide, .about_header .slide {
    justify-content: center;
  }
  .home .slide .content, .about_header .slide .content {
    text-align: center;
  }
  .home .slide .content h3, .about_header .slide .content h3 {
    font-size: 3rem;
  }
  .home .slide .content p, .about_header .slide .content p {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .page_header .content-container .image img {
    max-width: 250px;
    max-height: 250px;
  }
  .collaboration, .development, .education, .team, .vision, .mission {
    flex-wrap: wrap;
    justify-content: center;
  }
  .collaboration .section-image, .development .section-image, .education .section-image, .team .section-image, .vision .section-image, .mission .section-image {
    border-radius: 20px;
  }
  .collaboration .section-image img, .development .section-image img, .education .section-image img, .team .section-image img, .vision .section-image img, .mission .section-image img {
    max-width: 300px;
    max-height: 300px;
  }
  .software .process {
    margin: 1rem auto;
  }
  .software .process::after {
    left: calc(30px + 1rem);
  }
  .software .process .box {
    width: 100%;
    padding-left: 90px;
    padding-right: 25px;
  }
  .software .process .box .box-text .left-box-arrow, .software .process .box .box-text .right-box-arrow {
    border-right: 15px solid var(--white);
    border-left: 0;
    left: -15px;
  }
  .software .process .right-box {
    left: 0;
  }
  .software .process .left-box .image, .software .process .right-box .image {
    left: 10px;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 310px) {
  .project-image .thumb-slider {
    display: none;
  }
  .project-image .image-slider {
    width: 90%;
  }
}
@keyframes moveline {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes movedown {
  0% {
    opacity: 1;
    transform: translateY(-30px);
    z-index: 10;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    z-index: 10;
  }
}

/*# sourceMappingURL=styles.css.map */
