/*
Theme Name: Mega Tech
Text Domain: megaTech
version: 9
Description: Theme for Mega Tech
Tags: responsive, corporate, IT
Author: Mega Tech
*/

@import url("./assets/css/aboutss.css");
@import url("./assets/css/contact.css");
@import url("./assets/css/footerss.css");
@import url("./assets/css/headersss.css");
@import url("./assets/css/root.css");
@import url("./assets/css/servicess.css");
@import url("./assets/css/servicepages.css");

.hero-section {
  height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
    height: auto;
  }
}
.hero-section .hero-shape-1 {
  position: absolute;
  height: calc(100vh - var(--header-height));
  width: 50%;
  left: -10%;
  top: 0;
  z-index: 3;
}
@media (max-width: 768px) {
  .hero-section .hero-shape-1 {
    left: -10%;
    width: 100%;
  }
}
.hero-section .hero-shape-1 img {
  height: 100%;
  width: 150%;
  -o-object-fit: cover;
     object-fit: cover;
  animation-name: moveshape1;
  animation-timing-function: linear;
  animation-duration: 4s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
@keyframes moveshape1 {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(20px);
  }
}
.hero-section .container {
  position: relative;
  z-index: 4;
}
.hero-section .inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 768px) {
  .hero-section .inner {
    flex-direction: column-reverse;
  }
}
.hero-section .inner .left {
  flex-basis: calc(60% - 20px);
}
@media (max-width: 768px) {
  .hero-section .inner .left {
    flex-basis: 100%;
    margin-top: 30px;
  }
  .hero-section .inner .left .hero-heading-container {
    text-align: center;
  }
}
.hero-section .inner .left .hero-heading-container .hero-heading-top {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-top: -0.24em;
  color: var(--brand-color-1);
  font-family: var(--font-barlow);
}
.hero-section .inner .left .hero-heading-container .hero-heading {
  font-family: var(--font-barlow);
  font-size: 45px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-section .inner .left .hero-heading-container .hero-heading .color {
  color: var(--brand-color-3);
}
.hero-section .inner .left .hero-button {
  margin-top: 35px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-section .inner .left .hero-button {
    justify-content: center;
  }
}
.hero-section .inner .right {
  flex-basis: calc(40% - 20px);
}
@media (max-width: 768px) {
  .hero-section .inner .right {
    flex-basis: 100%;
  }
}
.hero-section .inner .right img {
  width: 100%;
  height: calc(100vh - var(--header-height));
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .hero-section .inner .right img {
    height: 300px;
  }
}

.about-section .inner {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  flex-wrap: wrap;
}
.about-section .inner .left {
  flex-basis: calc(45% - 20px);
  position: relative;
}
@media (max-width: 768px) {
  .about-section .inner .left {
    flex-basis: 100%;
  }
}
.about-section .inner .left img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-section .inner .left .about-shape-left {
  position: absolute;
  left: 0;
  top: 0;
  animation-name: moveleft;
  animation-timing-function: linear;
  animation-duration: 3s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
.about-section .inner .left .about-shape-left img {
  width: 180px;
  height: 180px;
}
.about-section .inner .left .about-shape-top {
  position: absolute;
  right: 0;
  top: 0;
  animation-name: moveup;
  animation-timing-function: linear;
  animation-duration: 3s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
.about-section .inner .left .about-shape-top img {
  width: 180px;
  height: 180px;
}
@keyframes moveleft {
  0% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(30px);
  }
}
@keyframes moveup {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(30px);
  }
}
.about-section .inner .right {
  flex-basis: calc(55% - 20px);
}
@media (max-width: 768px) {
  .about-section .inner .right {
    flex-basis: 100%;
  }
}
.about-section .inner .right .section-button {
  margin-top: 30px;
}

.work-stats {
  background: linear-gradient(100.62deg, rgba(152, 187, 110, 0.2) 0%, rgba(243, 198, 93, 0.2) 24.03%, rgba(163, 125, 152, 0.2) 69.05%, rgba(128, 0, 0, 0.2) 100.44%);
}
.work-stats .inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 15px;
}
@media (max-width: 640px) {
  .work-stats .inner {
    width: 75%;
    justify-content: center;
    margin: auto;
    flex-wrap: wrap;
  }
}
@media (max-width: 400px) {
  .work-stats .inner {
    width: 85%;
  }
}
.work-stats .inner .stat-box {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: nowrap;
}
@media (max-width: 640px) {
  .work-stats .inner .stat-box {
    flex-basis: calc(50% - 6px);
  }
}
.work-stats .inner .stat-box .left {
  display: flex;
  align-items: center;
}
.work-stats .inner .stat-box .left img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .work-stats .inner .stat-box .left img {
    width: 40px;
    height: 40px;
  }
}
.work-stats .inner .stat-box .right {
  display: flex;
  row-gap: 0px;
  flex-direction: column;
}
.work-stats .inner .stat-box .right .stat-heading {
  font-size: 35px;
  font-weight: 900;
  font-family: var(--font-barlow);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .work-stats .inner .stat-box .right .stat-heading {
    font-size: 18px;
    font-weight: 900;
  }
}
.work-stats .inner .stat-box .right p {
  color: var(--body-color);
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 768px) {
  .work-stats .inner .stat-box .right p {
    font-size: 13px;
  }
}

.works-container {
  background: linear-gradient(44deg, rgba(243, 198, 93, 0.3) 0%, rgba(152, 187, 110, 0.3) 35%, rgba(163, 125, 152, 0.3) 100%);
}

.our-services .inner .section-heading-container {
  text-align: center;
}
.our-services .inner .topics .service-box {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 40px 12px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
}
@media (max-width: 640px) {
  .our-services .inner .topics .service-box {
    padding: 25px 10px;
  }
}
.our-services .inner .topics .service-box:hover .image {
  transform: rotateY(180deg);
}
.our-services .inner .topics .service-box .image {
  width: 100%;
  height: 100px;
  transition: all 500ms ease;
}
.our-services .inner .topics .service-box .image img {
  height: 100px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  backface-visibility: hidden;
}
.our-services .inner .topics .service-box .image .back-face {
  transform: rotateY(180deg);
}
.our-services .inner .topics .service-box .details {
  text-align: center;
}
.our-services .inner .topics .service-box .details .service-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.71;
  font-family: var(--font-barlow);
}
.our-services .inner .topics .service-box .details .service-desc {
  padding: 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.our-services .inner .topics .service-box .button {
  display: flex;
  justify-content: center;
}
.our-services .inner .topics .service-box .button button {
  background-color: var(--brand-light);
  text-transform: capitalize;
  border: 1px solid var(--brand-light);
}
.our-services .inner .topics .service-box .button button:hover {
  background-color: var(--brand-color-1);
}
@keyframes spin {
  0% {
    transform: scale(0.2);
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.work-process .inner .section-heading-container {
  text-align: center;
}
.work-process .inner .topics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .work-process .inner .topics {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 448px) {
  .work-process .inner .topics {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.work-process .inner .topics .top-image {
  position: absolute;
  top: -30px;
  width: 100%;
}
@media (max-width: 768px) {
  .work-process .inner .topics .top-image {
    display: none;
  }
}
.work-process .inner .topics .top-image img {
  height: auto;
  width: 100%;
}
.work-process .inner .topics .work-box {
  flex-basis: calc(25% - 9px);
  background-color: #fff;
  box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  border-radius: 10px;
  position: relative;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .work-process .inner .topics .work-box {
    position: relative;
    flex-basis: calc(50% - 10px);
  }
}
@media (max-width: 448px) {
  .work-process .inner .topics .work-box {
    position: relative;
    flex-basis: 100%;
  }
}
.work-process .inner .topics .work-box:nth-child(2) {
  margin-top: -55px;
}
@media (max-width: 768px) {
  .work-process .inner .topics .work-box:nth-child(2) {
    margin-top: 0;
  }
}
.work-process .inner .topics .work-box:nth-child(3) {
  margin-top: 90px;
}
@media (max-width: 768px) {
  .work-process .inner .topics .work-box:nth-child(3) {
    margin-top: 0;
  }
}
.work-process .inner .topics .work-box:nth-child(3) .circle {
  left: calc(50% - 52px);
}
@media (max-width: 768px) {
  .work-process .inner .topics .work-box:nth-child(3) .circle {
    left: calc(50% - 8px);
  }
}
.work-process .inner .topics .work-box:nth-child(4) {
  margin-top: -55px;
}
@media (max-width: 768px) {
  .work-process .inner .topics .work-box:nth-child(4) {
    margin-top: 0;
  }
}
.work-process .inner .topics .work-box:nth-child(5) {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .work-process .inner .topics .work-box:nth-child(5) {
    margin-top: 0;
  }
}
@keyframes ripple2 {
  0% {
    transform: scale(0.3);
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.work-process .inner .topics .work-box:hover .image {
  transform: rotateY(180deg);
}
.work-process .inner .topics .work-box .circle {
  width: 16px;
  height: 16px;
  position: absolute;
  top: -3%;
  z-index: 3;
  left: calc(50% - 8px);
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--brand-color-3);
}
.work-process .inner .topics .work-box .circle::after {
  animation-name: ripple2;
  animation-delay: 2s;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--brand-color-3);
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.4s;
}
.work-process .inner .topics .work-box .circle::before {
  animation-name: ripple2;
  -webkit-animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-delay: 2s;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-direction: alternate;
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--brand-color-3);
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.4s;
}
.work-process .inner .topics .work-box .image {
  display: flex;
  justify-content: center;
  height: 70px;
  transition: all 500ms ease;
  width: 100%;
}
.work-process .inner .topics .work-box .image img {
  width: 100px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  backface-visibility: hidden;
}
@media (max-width: 768px) {
  .work-process .inner .topics .work-box .image img {
    width: 80px;
  }
}
.work-process .inner .topics .work-box .image .back-face {
  transform: rotateY(180deg);
}
.work-process .inner .topics .work-box .details {
  text-align: center;
}
.work-process .inner .topics .work-box .details .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.71;
  font-family: var(--font-barlow);
}
@media (max-width: 768px) {
  .work-process .inner .topics .work-box .details .title {
    font-size: 18px;
  }
}
.work-process .inner .topics .work-box .details .desc {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  text-align: justify;
}

.testimonial-section {
  background: linear-gradient(44deg, rgba(243, 198, 93, 0.3) 0%, rgba(152, 187, 110, 0.3) 35%, rgba(163, 125, 152, 0.3) 100%);
}
.testimonial-section .inner {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .testimonial-section .inner {
    flex-direction: column-reverse;
  }
}
.testimonial-section .inner .left {
  flex-basis: calc(50% - 15px);
  width: calc(50% - 15px);
}
@media (max-width: 768px) {
  .testimonial-section .inner .left {
    width: 100%;
    flex-basis: 100%;
  }
}
.testimonial-section .inner .left .test-outer .testimonial-slider .test-box {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.testimonial-section .inner .left .test-outer .testimonial-slider .test-box .details {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.testimonial-section .inner .left .test-outer .testimonial-slider .test-box .details .image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-section .inner .left .test-outer .testimonial-slider .test-box .details .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-section .inner .left .test-outer .testimonial-slider .test-box .details .info .name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.71;
  font-family: var(--font-barlow);
}
.testimonial-section .inner .right {
  flex-basis: calc(50% - 15px);
  width: calc(50% - 15px);
}
@media (max-width: 768px) {
  .testimonial-section .inner .right {
    width: 100%;
    flex-basis: 100%;
  }
}
.testimonial-section .inner .right img {
  width: 100%;
}

.faq {
  padding: 30px 0 !important;
}
.faq .inner {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 768px) {
  .faq .inner {
    flex-direction: column-reverse;
    align-items: normal;
  }
}
.faq .inner .left {
  flex-basis: calc(60% - 15px);
}
@media (max-width: 768px) {
  .faq .inner .left {
    flex-basis: 100%;
  }
}
.faq .inner .left .accordion .accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 20px;
}
.faq .inner .left .accordion .accordion-item .accordion-header {
  border-radius: 20px;
  overflow: hidden;
}
.faq .inner .left .accordion .accordion-item .accordion-header .accordion-button {
  font-size: 18px;
  font-family: var(--font-barlow);
  border-radius: 20px;
  padding: 12px 45px 12px 30px;
  background-color: var(--brand-color-1);
  box-shadow: none;
  font-weight: 700;
  color: #fff;
}
.faq .inner .left .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  color: #fff;
}
.faq .inner .left .accordion .accordion-item .accordion-collapse .accordion-body {
  border-radius: 20px;
  color: var(--body-color);
  font-size: 14px;
}
.faq .inner .right {
  flex-basis: calc(40% - 15px);
  position: relative;
}
@media (max-width: 768px) {
  .faq .inner .right {
    flex-basis: 100%;
  }
  .faq .inner .right img {
    height: 300px;
  }
}
.faq .inner .right .shapeup {
  position: absolute;
  left: 0;
  top: 0;
  animation-name: moveup;
  animation-timing-function: linear;
  animation-duration: 3s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
.faq .inner .right .shapeup img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.faq .inner .right .shapespin {
  position: absolute;
  right: 0;
  top: 0;
  animation-name: movespin;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-direction: normal;
  animation-iteration-count: infinite;
}
.faq .inner .right .shapespin img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@keyframes moveup {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(20px);
  }
}
@keyframes movespin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.faq .inner .right img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=styles.css.map */