@charset "UTF-8";
@font-face {
  font-family: "Madani Arabic-R";
  src: url(../fonts/Madani-Arabic-Regular.ttf);
}
@font-face {
  font-family: "Madani Arabic-B";
  src: url(../fonts/Madani-Arabic-Bold.ttf);
}
@font-face {
  font-family: "Madani Arabic-M";
  src: url(../fonts/Madani-Arabic-Medium.ttf);
}
@font-face {
  font-family: "Madani Arabic-SB";
  src: url(../fonts/Madani-Arabic-Semi-Bold.ttf);
}
:root {
  --reset: 0px;
  --transparent: transparent;
  --none: none;
  --color-primary: #0080BE;
  --color-accent: #04B198;
  --color-background: #F6FAFD;
  --color-text: #616161;
  --color-text-heading: #212121;
  --color-border: rgba(0, 50, 115, 0.15);
  --darken-color-primary: color-mix(in srgb,var(--color-primary),#000 20%);
  --darken-color-accent: color-mix(in srgb,var(--color-accent),#000 20%);
  --lighten-color-primary: color-mix(in srgb,var(--color-primary),#fff 70%);
  --lighten-color-accent: color-mix(in srgb,var(--color-accent),#fff 70%);
  --font-R: "Madani Arabic-R";
  --font-M: "Madani Arabic-M";
  --font-B: "Madani Arabic-B";
  --font-SB: "Madani Arabic-SB";
}

* {
  margin: var(--reset);
  padding: var(--reset);
  box-sizing: border-box;
}

body {
  direction: rtl;
  font-family: var(--font-R);
  background-color: #FBFDFD;
  color: var(--color-text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: var(--font-R);
}
a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-B);
}

input, select, textarea {
  border: 1px solid var(--color-border);
  padding: 0.5rem;
  font-family: var(--font-R);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 5px var(--color-primary);
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--color-accent);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 2px;
}

@keyframes rotateWords {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.main-header {
  padding: 20px 0;
}
.main-header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .navbar .header-right-col .navbar-toggler {
  border-color: var(--color-accent);
  box-shadow: none;
}
.main-header .navbar .header-right-col .navbar-toggler i {
  color: var(--color-accent);
  font-size: 30px;
}
.main-header .navbar .header-right-col .navbar-nav .nav-item .nav-link {
  padding: 10px;
  font-family: var(--font-SB);
  text-decoration: none;
  color: var(--color-text-heading);
  transition: all ease 500ms;
}
.main-header .navbar .header-right-col .navbar-nav .nav-item .nav-link:hover {
  color: var(--color-accent);
  transition: all ease 500ms;
}
.main-header .navbar .header-right-col .navbar-nav .nav-item .nav-link.active {
  color: var(--color-primary);
  transition: all ease 500ms;
}
.main-header .navbar .header-right-col .navbar-nav .nav-item.dropdown .dropdown-menu {
  right: 0 !important;
  left: auto !important;
  text-align: right;
  border-color: #D5F0FE;
}
.main-header .navbar .header-right-col .navbar-nav .nav-item.dropdown .dropdown-menu li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #D5F0FE;
}
.main-header .navbar .header-right-col .navbar-nav .nav-item.dropdown .dropdown-menu li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.main-header .navbar .header-right-col .navbar-nav .nav-item.dropdown .dropdown-menu li a {
  font-size: 0.8rem;
  text-decoration: none;
  transition: all ease 500ms;
}
.main-header .navbar .header-right-col .navbar-nav .nav-item.dropdown .dropdown-menu li a img {
  width: 20px;
  height: 20px;
}
.main-header .navbar .header-right-col .navbar-nav .nav-item.dropdown .dropdown-menu li a span {
  margin-right: 10px;
}
.main-header .navbar .header-right-col .navbar-nav .nav-item.dropdown .dropdown-menu li a:hover {
  color: var(--color-accent);
  background-color: transparent;
  transition: all ease 500ms;
}
.main-header .navbar .header-center-col .navbar-brand {
  display: block;
  margin: 0;
  width: 120px;
  height: auto;
}
.main-header .navbar .header-center-col .navbar-brand img {
  width: 106px;
  height: 46px;
}
.main-header .navbar .header-left-col .contact-btn {
  padding: 10px 25px;
  background-color: transparent;
  text-decoration: none;
  color: var(--color-text-heading);
  font-family: var(--font-SB);
  border-radius: 50px;
  border: 1px solid var(--color-accent);
}
.main-header .navbar .header-left-col .contact-btn span {
  display: inline-block;
  vertical-align: middle;
}
.main-header .navbar .header-left-col .contact-btn span:last-child {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  padding: 3px;
  transition: all ease 500ms;
}
.main-header .navbar .header-left-col .contact-btn span:last-child i {
  font-size: 24px;
  color: var(--color-accent);
}
.main-header .navbar .header-left-col .contact-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-background);
}
.main-header .navbar .header-left-col .contact-btn:hover span:last-child {
  transform: rotate(-45deg);
  transition: all ease 500ms;
}
.main-header .navbar .header-left-col .contact-btn:hover span:last-child i {
  color: var(--color-background);
}

.hero-section {
  padding: 50px 0;
  position: relative;
  z-index: 0;
}
.hero-section .shape-wrapper span {
  position: absolute;
  z-index: -1;
}
.hero-section .shape-wrapper span.sh-1 {
  top: 0;
  right: 2%;
  animation-delay: 0s;
  animation: rotate 3s infinite ease-in-out;
}
.hero-section .shape-wrapper span.sh-2 {
  bottom: 0;
  right: 30%;
  animation-delay: 3s;
  animation: rotate 5s infinite ease-in-out;
}
.hero-section .shape-wrapper span.sh-3 {
  top: 10%;
  left: 3%;
  animation-delay: 5s;
  animation: rotate 7s infinite ease-in-out;
}
.hero-section .shape-wrapper span.sh-4 {
  bottom: 20%;
  left: 3%;
  animation-delay: 7s;
  animation: rotate 9s infinite ease-in-out;
}
.hero-section .hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.hero-section .hero-wrapper .content {
  width: 50%;
}
.hero-section .hero-wrapper .content h1 {
  font-size: 40px;
  color: var(--color-text-heading);
}
.hero-section .hero-wrapper .content h1 strong {
  color: var(--color-accent);
}
.hero-section .hero-wrapper .content h1 .words-wrapper {
  display: inline-block;
  position: relative;
  vertical-align: top;
  min-width: 120px;
}
.hero-section .hero-wrapper .content h1 .words-wrapper b {
  color: var(--color-primary);
  position: absolute;
  white-space: nowrap;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
  animation: rotateWords 12s infinite ease-in-out;
}
.hero-section .hero-wrapper .content h1 .words-wrapper b:nth-child(1) {
  animation-delay: 0s;
}
.hero-section .hero-wrapper .content h1 .words-wrapper b:nth-child(2) {
  animation-delay: 3s;
}
.hero-section .hero-wrapper .content h1 .words-wrapper b:nth-child(3) {
  animation-delay: 6s;
}
.hero-section .hero-wrapper .content h1 .words-wrapper b:nth-child(4) {
  animation-delay: 9s;
}
.hero-section .hero-wrapper .content p {
  font-size: 22px;
  color: var(--color-text);
  line-height: 1.8;
  margin: 20px auto;
  text-align: justify;
}
.hero-section .hero-wrapper .content .more-btn {
  background-color: var(--color-primary);
  padding: 10px 30px 10px 10px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all ease 500ms;
}
.hero-section .hero-wrapper .content .more-btn span {
  display: inline-block;
  vertical-align: middle;
}
.hero-section .hero-wrapper .content .more-btn span:last-child {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50px;
  padding: 8px;
  transition: all ease 500ms;
}
.hero-section .hero-wrapper .content .more-btn span:last-child i {
  font-size: 24px;
  color: var(--color-primary);
}
.hero-section .hero-wrapper .content .more-btn:hover {
  background-color: var(--color-accent);
  transition: all ease 500ms;
}
.hero-section .hero-wrapper .content .more-btn:hover span:last-child {
  transform: rotate(-45deg);
  transition: all ease 500ms;
}
.hero-section .hero-wrapper .content .more-btn:hover span:last-child i {
  color: var(--color-accent);
}
.hero-section .hero-wrapper .video {
  width: 50%;
}
.hero-section .hero-wrapper .video video {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
}

.hero-cards-section {
  padding: 50px 0;
}
.hero-cards-section .hero-cards-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
.hero-cards-section .hero-cards-wrapper .card-1 {
  width: 20%;
  height: 300px;
  background-image: url(../imgs/card-bg-1.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.hero-cards-section .hero-cards-wrapper .card-1 h4 {
  margin: 20px;
  color: white;
  font-family: var(--font-M);
}
.hero-cards-section .hero-cards-wrapper .card-1 img {
  width: 196px;
  height: 161px;
  position: absolute;
  bottom: 0;
  left: -20px;
  transition: all ease 500ms;
}
.hero-cards-section .hero-cards-wrapper .card-1:hover img {
  transform: rotate(15deg);
  transition: all ease 500ms;
}
.hero-cards-section .hero-cards-wrapper .card-2 {
  width: 40%;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
}
.hero-cards-section .hero-cards-wrapper .card-2 img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-cards-section .hero-cards-wrapper .wrapper {
  width: 20%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}
.hero-cards-section .hero-cards-wrapper .wrapper .card-3 {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.hero-cards-section .hero-cards-wrapper .wrapper .card-3 img {
  width: 100%;
  height: 145px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-cards-section .hero-cards-wrapper .wrapper .card-4 {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.hero-cards-section .hero-cards-wrapper .wrapper .card-4 img {
  width: 100%;
  height: 145px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-cards-section .hero-cards-wrapper .card-5 {
  width: 20%;
  height: 300px;
  background-image: url(../imgs/card-bg-5.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.hero-cards-section .hero-cards-wrapper .card-5 h4 {
  margin: 20px;
  color: white;
  font-family: var(--font-M);
}
.hero-cards-section .hero-cards-wrapper .card-5 h4 span {
  color: #76FFEB;
}
.hero-cards-section .hero-cards-wrapper .card-5 img {
  width: 196px;
  height: 161px;
  position: absolute;
  bottom: -10px;
  left: -20px;
  transition: all ease 500ms;
}
.hero-cards-section .hero-cards-wrapper .card-5:hover img {
  transform: rotate(-15deg);
  transition: all ease 500ms;
}

.overview-section {
  padding: 50px 0;
}
.overview-section .overview-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.overview-section .overview-wrapper .content {
  width: 50%;
}
.overview-section .overview-wrapper .content h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.overview-section .overview-wrapper .content h6 {
  color: var(--color-text);
  font-size: 24px;
  margin-bottom: 20px;
}
.overview-section .overview-wrapper .content p {
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.8;
}
.overview-section .overview-wrapper .content .more-btn {
  background-color: var(--color-primary);
  padding: 10px 30px 10px 10px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all ease 500ms;
}
.overview-section .overview-wrapper .content .more-btn span {
  display: inline-block;
  vertical-align: middle;
}
.overview-section .overview-wrapper .content .more-btn span:last-child {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50px;
  padding: 8px;
  transition: all ease 500ms;
}
.overview-section .overview-wrapper .content .more-btn span:last-child i {
  font-size: 24px;
  color: var(--color-primary);
}
.overview-section .overview-wrapper .content .more-btn:hover {
  background-color: var(--color-accent);
  transition: all ease 500ms;
}
.overview-section .overview-wrapper .content .more-btn:hover span:last-child {
  transform: rotate(-45deg);
  transition: all ease 500ms;
}
.overview-section .overview-wrapper .content .more-btn:hover span:last-child i {
  color: var(--color-accent);
}
.overview-section .overview-wrapper .content .counter {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  margin-top: 30px;
}
.overview-section .overview-wrapper .content .counter .stat-item {
  width: 33.333%;
  text-align: center;
}
.overview-section .overview-wrapper .content .counter .stat-item .stat-number {
  font-size: 60px;
  color: var(--color-accent);
}
.overview-section .overview-wrapper .content .counter .stat-item .stat-label {
  font-size: 20px;
  color: var(--color-primary);
}
.overview-section .overview-wrapper .image {
  width: 50%;
}
.overview-section .overview-wrapper .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.services-section {
  padding: 50px 0;
}
.services-section .services-heading {
  margin-bottom: 50px;
}
.services-section .services-heading h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.services-section .services-heading h6 {
  font-family: var(--font-M);
  color: var(--color-text);
}
.services-section a {
  text-decoration: none;
}
.services-section a .service-card {
  min-height: 430px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 1px solid transparent;
  text-align: center;
}
.services-section a .service-card .title {
  text-align: right;
  margin-bottom: 30px;
  font-size: 24px;
  color: var(--color-text-heading);
}
.services-section a .service-card img {
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 500ms;
}
.services-section a .service-card .desc {
  text-align: justify;
  font-size: 16px;
  color: var(--color-text);
}
.services-section a .service-card.card-lg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.services-section a .service-card.card-1 {
  background-color: #F6FAFD;
}
.services-section a .service-card.card-2 {
  background-color: #FFFEE0;
}
.services-section a .service-card.card-3 {
  background-color: #FFF8ED;
}
.services-section a .service-card.card-4 {
  background-color: #FFF5F5;
}
.services-section a .service-card.card-5 {
  background-color: #FCF4FF;
}
.services-section a .service-card.card-6 {
  background-color: #F2FFFC;
}
.services-section a .service-card.card-7 {
  background-color: #FFF7EB;
}
.services-section a .service-card:hover img {
  transform: scale(1.1);
  transition: all ease 500ms;
}
.services-section a .service-card:hover.card-1 {
  transition: all ease 500ms;
  border: 1px solid #2ba4ff;
  box-shadow: 0px 5px 30px rgba(43, 164, 255, 0.3);
}
.services-section a .service-card:hover.card-2 {
  transition: all ease 500ms;
  border: 1px solid #ebe300;
  box-shadow: 0px 5px 30px rgba(235, 227, 0, 0.3);
}
.services-section a .service-card:hover.card-3 {
  transition: all ease 500ms;
  border: 1px solid #ffa71e;
  box-shadow: 0px 5px 30px rgba(255, 167, 30, 0.3);
}
.services-section a .service-card:hover.card-4 {
  transition: all ease 500ms;
  border: 1px solid #ff3a3a;
  box-shadow: 0px 5px 30px rgba(255, 58, 58, 0.3);
}
.services-section a .service-card:hover.card-5 {
  transition: all ease 500ms;
  border: 1px solid #c524ff;
  box-shadow: 0px 5px 30px rgba(197, 36, 255, 0.3);
}
.services-section a .service-card:hover.card-6 {
  transition: all ease 500ms;
  border: 1px solid #31ffcf;
  box-shadow: 0px 5px 30px rgba(49, 255, 207, 0.3);
}
.services-section a .service-card:hover.card-7 {
  transition: all ease 500ms;
  border: 1px solid #ffbe5c;
  box-shadow: 0px 5px 30px rgba(255, 190, 92, 0.3);
}

.why-chooose-us-section {
  padding: 50px 0 100px;
  position: relative;
  z-index: 0;
}
.why-chooose-us-section::after {
  content: "";
  width: 122px;
  height: 110px;
  background-image: url(../imgs/shape-5.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 7%;
  bottom: 0;
  z-index: -1;
}
.why-chooose-us-section .why-choose-us-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}
.why-chooose-us-section .why-choose-us-wrapper .heading h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.why-chooose-us-section .why-choose-us-wrapper .heading h6 {
  font-family: var(--font-M);
  color: var(--color-text);
}
.why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block {
  text-align: center;
}
.why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block img {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block h5 {
  margin-bottom: 20px;
  color: var(--color-text);
}
.why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block p {
  color: var(--color-text);
}
.why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2) {
  transform: translateY(90px);
  position: relative;
  z-index: 0;
}
.why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2)::before {
  content: "";
  width: 110px;
  height: 49px;
  background-image: url(../imgs/arrow-shape-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 0;
}
.why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2)::after {
  content: "";
  width: 110px;
  height: 49px;
  background-image: url(../imgs/arrow-shape-2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -30px;
  left: -20px;
  z-index: 0;
}

.latest-work-section {
  padding: 100px 0 50px;
  position: relative;
  z-index: 0;
}
.latest-work-section .bg-wrapper {
  background-color: #FAFAFA;
  border: 1px solid var(--color-border);
  border-radius: 40px;
  padding: 30px 30px 10px;
}
.latest-work-section .latest-work-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.latest-work-section .latest-work-wrapper .heading h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.latest-work-section .latest-work-wrapper .heading h6 {
  font-family: var(--font-M);
  color: var(--color-text);
}
.latest-work-section .latest-work-wrapper .contact-btn {
  background-color: var(--color-primary);
  padding: 10px 30px 10px 10px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all ease 500ms;
}
.latest-work-section .latest-work-wrapper .contact-btn span {
  display: inline-block;
  vertical-align: middle;
}
.latest-work-section .latest-work-wrapper .contact-btn span:last-child {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50px;
  padding: 8px;
  transition: all ease 500ms;
}
.latest-work-section .latest-work-wrapper .contact-btn span:last-child i {
  font-size: 24px;
  color: var(--color-primary);
}
.latest-work-section .latest-work-wrapper .contact-btn:hover {
  background-color: var(--color-accent);
  transition: all ease 500ms;
}
.latest-work-section .latest-work-wrapper .contact-btn:hover span:last-child {
  transform: rotate(-45deg);
  transition: all ease 500ms;
}
.latest-work-section .latest-work-wrapper .contact-btn:hover span:last-child i {
  color: var(--color-accent);
}
.latest-work-section .swiper {
  margin-top: 50px;
  padding-bottom: 20px;
}
.latest-work-section .swiper .swiper-wrapper .swiper-slide {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.latest-work-section .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-work-section .swiper .swiper-wrapper .swiper-slide .text {
  width: auto;
  height: auto;
  margin: 20px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.75);
  filter: drop-shadow(10px);
  transform: translateY(200px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: all ease 500ms;
}
.latest-work-section .swiper .swiper-wrapper .swiper-slide .text h5 {
  color: var(--color-text);
}
.latest-work-section .swiper .swiper-wrapper .swiper-slide .text p {
  margin-top: 10px;
  font-size: 14px;
}
.latest-work-section .swiper .swiper-wrapper .swiper-slide .text p span {
  color: var(--color-primary);
}
.latest-work-section .swiper .swiper-wrapper .swiper-slide .text p span:last-child {
  color: var(--color-accent);
}
.latest-work-section .swiper .swiper-wrapper .swiper-slide:hover .text {
  transform: translateY(0);
  transition: all ease 500ms;
}
.latest-work-section .swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  padding: 15px;
  border-radius: 50px;
  background-color: var(--color-accent);
  transition: all ease 500ms;
}
.latest-work-section .swiper .swiper-button-next svg {
  color: white;
  transition: all ease 500ms;
}
.latest-work-section .swiper .swiper-button-next:hover {
  background-color: white;
  transition: all ease 500ms;
}
.latest-work-section .swiper .swiper-button-next:hover svg {
  color: var(--color-accent);
  transition: all ease 500ms;
}
.latest-work-section .swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  padding: 15px;
  border-radius: 50px;
  background-color: var(--color-accent);
  transition: all ease 500ms;
}
.latest-work-section .swiper .swiper-button-prev svg {
  color: white;
  transition: all ease 500ms;
}
.latest-work-section .swiper .swiper-button-prev:hover {
  background-color: white;
  transition: all ease 500ms;
}
.latest-work-section .swiper .swiper-button-prev:hover svg {
  color: var(--color-accent);
  transition: all ease 500ms;
}

.testimonials-section {
  padding: 50px 0;
}
.testimonials-section .heading h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.testimonials-section .heading h6 {
  font-family: var(--font-M);
  color: var(--color-text);
}
.testimonials-section .testimonials-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.testimonials-section .testimonials-wrapper .testimonial-card {
  width: 33.3333333333%;
  min-height: 310px;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--color-border);
}
.testimonials-section .testimonials-wrapper .testimonial-card img {
  width: 40px;
  height: 40px;
}
.testimonials-section .testimonials-wrapper .testimonial-card .rate {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1px;
}
.testimonials-section .testimonials-wrapper .testimonial-card .rate span i {
  color: #ffcc00;
  font-size: 20px;
}
.testimonials-section .testimonials-wrapper .testimonial-card .content {
  margin: 20px auto;
  color: var(--color-text);
  line-height: 1.8;
  font-size: 18px;
}
.testimonials-section .testimonials-wrapper .testimonial-card .author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 10px;
  gap: 20px;
}
.testimonials-section .testimonials-wrapper .testimonial-card .author .image img {
  width: 46px;
  height: 46px;
}
.testimonials-section .testimonials-wrapper .testimonial-card .author .info .name {
  color: var(--color-text);
}
.testimonials-section .testimonials-wrapper .testimonial-card .author .info .title {
  color: var(--color-text);
}
.testimonials-section .testimonials-wrapper .testimonial-card:first-child {
  background-color: #F2FFFC;
  margin-top: 40px;
  transform: rotate(5deg);
  transition: all ease 500ms;
}
.testimonials-section .testimonials-wrapper .testimonial-card:first-child:hover {
  transform: translateY(-20px) rotate(5deg);
  transition: all ease 500ms;
}
.testimonials-section .testimonials-wrapper .testimonial-card:nth-child(2) {
  background-color: #F6FAFD;
  z-index: 10;
  transition: all ease 500ms;
}
.testimonials-section .testimonials-wrapper .testimonial-card:nth-child(2):hover {
  transform: translateY(-20px);
  transition: all ease 500ms;
}
.testimonials-section .testimonials-wrapper .testimonial-card:last-child {
  background-color: #FFF5F5;
  margin-top: 40px;
  transform: rotate(-5deg);
  transition: all ease 500ms;
}
.testimonials-section .testimonials-wrapper .testimonial-card:last-child:hover {
  transform: translateY(-20px) rotate(-5deg);
  transition: all ease 500ms;
}

.logos-section {
  padding: 50px 0;
}
.logos-section .heading {
  margin-bottom: 50px;
}
.logos-section .heading h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.logos-section .heading h6 {
  font-family: var(--font-M);
  color: var(--color-text);
}
.logos-section .marquee-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.logos-section .marquee-content .marquee-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 50px;
  margin-left: 50px;
  animation: marquee-scroll 30s linear infinite;
}
.logos-section .marquee-content .marquee-group img {
  width: 96px;
  height: auto;
}
.logos-section .marquee-content:hover .marquee-group {
  animation-play-state: paused;
}

.footer {
  padding: 50px 0;
}
.footer .footer-wrapper {
  width: 100%;
  height: auto;
  padding: 30px 30px 10px;
  background-color: #FAFAFA;
  border-radius: 30px;
  border: 1px solid #F4F0E9;
}
.footer .footer-wrapper .blocks {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}
.footer .footer-wrapper .blocks .foot-block:first-child {
  width: 30%;
}
.footer .footer-wrapper .blocks .foot-block img {
  width: 106px;
  height: 46px;
}
.footer .footer-wrapper .blocks .foot-block p {
  color: var(--color-text);
  margin-top: 20px;
}
.footer .footer-wrapper .blocks .foot-block h5 {
  color: var(--color-primary);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 10px;
  z-index: 0;
}
.footer .footer-wrapper .blocks .foot-block h5::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.footer .footer-wrapper .blocks .foot-block .links {
  list-style-type: none;
  margin: 0;
}
.footer .footer-wrapper .blocks .foot-block .links li {
  margin-bottom: 10px;
}
.footer .footer-wrapper .blocks .foot-block .links li a {
  text-decoration: none;
  color: var(--color-text);
  transition: all ease 500ms;
}
.footer .footer-wrapper .blocks .foot-block .links li a span img {
  width: 24px;
  height: 24px;
}
.footer .footer-wrapper .blocks .foot-block .links li a:hover {
  color: var(--color-primary);
  transition: all ease 500ms;
}
.footer .footer-wrapper .copyrights {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--color-border);
  padding-top: 10px;
}
.footer .footer-wrapper .copyrights .rights p {
  color: var(--color-text);
}
.footer .footer-wrapper .copyrights .social ul {
  margin: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.footer .footer-wrapper .copyrights .social ul li a {
  text-decoration: none;
}
.footer .footer-wrapper .copyrights .social ul li a i {
  color: var(--color-accent);
  font-size: 24px;
  transition: all ease 500ms;
}
.footer .footer-wrapper .copyrights .social ul li a:hover i {
  color: var(--color-primary);
  transition: all ease 500ms;
}
.footer .footer-wrapper .copyrights .develop-by p {
  color: var(--color-text);
}
.footer .footer-wrapper .copyrights .develop-by p a {
  text-decoration: none;
  color: var(--color-accent);
  transition: all ease 500ms;
}
.footer .footer-wrapper .copyrights .develop-by p a:hover {
  color: var(--color-primary);
  transition: all ease 500ms;
}

.top-page {
  width: 100%;
  min-height: 200px;
  padding: 50px 0;
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 0;
}
.top-page .right-wrapper {
  width: 20%;
  left: 70%;
  right: 0;
  position: relative;
  z-index: 0;
}
.top-page .right-wrapper span {
  position: absolute;
  z-index: 0;
}
.top-page .right-wrapper span:first-child {
  top: 0;
  left: 0;
  animation: rotate 1s infinite ease-in-out;
}
.top-page .right-wrapper span:nth-child(2) {
  top: 20px;
  right: 100px;
}
.top-page .right-wrapper span:last-child {
  top: 100px;
  right: 200px;
}
.top-page .left-wrapper {
  width: 20%;
  left: 0;
  right: 75%;
  position: relative;
  z-index: 0;
}
.top-page .left-wrapper span {
  position: absolute;
  z-index: 0;
}
.top-page .left-wrapper span:first-child {
  top: 0;
  left: 0;
}
.top-page .left-wrapper span:nth-child(2) {
  top: 20px;
  right: 100px;
  animation: rotate 1s infinite ease-in-out;
}
.top-page .left-wrapper span:last-child {
  top: 100px;
  right: 200px;
}
.top-page .heading {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.top-page .heading h1 {
  color: var(--color-accent);
}
.top-page .heading h1 span {
  color: var(--color-primary);
}
.top-page .heading p {
  color: var(--color-text);
}

.service-top-page {
  width: 100%;
  min-height: 200px;
  padding: 50px 0;
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 0;
}
.service-top-page::after {
  content: "";
  width: 245px;
  height: 186px;
  background-image: url(../imgs/shape-7.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50px;
  left: 5%;
  z-index: 0;
  animation: rotate 3s infinite ease-in-out;
}
.service-top-page::before {
  content: "";
  width: 245px;
  height: 186px;
  background-image: url(../imgs/shape-8.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50px;
  right: 5%;
  z-index: 0;
  animation: rotate 3s infinite ease-in-out;
}
.service-top-page .heading {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.service-top-page .heading h6 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  border-radius: 50px;
  border: 1px solid var(--color-border);
  padding: 10px 20px;
}
.service-top-page .heading h6 span {
  color: var(--color-text);
}
.service-top-page .heading h6 span img {
  width: 24px;
  height: 24px;
}
.service-top-page .heading h1 {
  color: var(--color-text-heading);
  font-size: 36px;
}
.service-top-page .heading h1 span {
  color: var(--color-primary);
}
.service-top-page .heading h1 span:last-child {
  color: var(--color-accent);
}
.service-top-page .heading p {
  color: var(--color-text);
}

.page-about {
  padding: 100px 0 0;
}
.page-about .features-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.page-about .features-wrapper .feature-card {
  width: 100%;
  min-height: 215px;
  padding: 30px;
  border-radius: 20px;
  position: relative;
}
.page-about .features-wrapper .feature-card::after {
  content: "";
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -2;
  transition: all ease 500ms;
}
.page-about .features-wrapper .feature-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
}
.page-about .features-wrapper .feature-card h5 {
  color: #126288;
  margin-bottom: 20px;
}
.page-about .features-wrapper .feature-card P {
  color: var(--color-text);
}
.page-about .features-wrapper .feature-card:first-child {
  background-color: #eff2ff;
}
.page-about .features-wrapper .feature-card:first-child::after {
  background-color: #ced7ff;
}
.page-about .features-wrapper .feature-card:nth-child(2) {
  background-color: #ebfafc;
}
.page-about .features-wrapper .feature-card:nth-child(2)::after {
  background-color: #92dce5;
}
.page-about .features-wrapper .feature-card:last-child {
  background-color: #f6fafd;
}
.page-about .features-wrapper .feature-card:last-child::after {
  background-color: #8cccfc;
}
.page-about .features-wrapper .feature-card:hover::after {
  transform: translateY(10px) translateX(10px);
  transition: all ease 500ms;
}
.page-about .our-story {
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.page-about .our-story .image {
  width: 50%;
}
.page-about .our-story .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-about .our-story .text {
  width: 50%;
}
.page-about .our-story .text h3 {
  margin-bottom: 20px;
  color: var(--color-primary);
}
.page-about .our-story .text p {
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 20px;
  text-align: justify;
}
.page-about .vision-message {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  z-index: 0;
}
.page-about .vision-message::after {
  content: "";
  width: 151px;
  height: 343px;
  background-image: url(../imgs/shape-6.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -10%;
  bottom: 30px;
  z-index: 1;
}
.page-about .vision-message .heading {
  width: 30%;
}
.page-about .vision-message .heading h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.page-about .vision-message .heading p {
  color: var(--color-text);
}
.page-about .vision-message .vision-card {
  width: 35%;
  min-height: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: rgba(51, 94, 247, 0.08);
  padding: 30px;
  border-radius: 30px;
}
.page-about .vision-message .vision-card img {
  width: 245px;
  height: 218px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all ease 500ms;
}
.page-about .vision-message .vision-card .text h5 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.page-about .vision-message .vision-card .text p {
  color: var(--color-text);
  text-align: justify;
}
.page-about .vision-message .vision-card:hover img {
  transform: scale(1.1);
  transition: all ease 500ms;
}
.page-about .vision-message .message-card {
  width: 35%;
  min-height: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: #f9f4f5;
  padding: 30px;
  border-radius: 30px;
}
.page-about .vision-message .message-card img {
  width: 222px;
  height: 182px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all ease 500ms;
}
.page-about .vision-message .message-card .text h5 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.page-about .vision-message .message-card .text p {
  color: var(--color-text);
  text-align: justify;
}
.page-about .vision-message .message-card:hover img {
  transform: scale(1.1);
  transition: all ease 500ms;
}
.page-about .values {
  padding: 50px 0 0;
}
.page-about .values .heading {
  text-align: center;
  margin-bottom: 50px;
}
.page-about .values .heading h3 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.page-about .values .heading p {
  color: var(--color-text);
}
.page-about .values .values-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-about .values .values-wrapper .value-card {
  width: 25%;
  min-height: 300px;
  padding: 20px;
  border-radius: 20px;
}
.page-about .values .values-wrapper .value-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}
.page-about .values .values-wrapper .value-card h5 {
  color: white;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid white;
}
.page-about .values .values-wrapper .value-card p {
  color: white;
  text-align: justify;
}
.page-about .values .values-wrapper .value-card:first-child {
  background: #C4B2E6;
  background: linear-gradient(340deg, rgb(196, 178, 230) 0%, rgb(176, 150, 227) 100%);
  transform: rotate(5deg);
  z-index: 1;
  transition: all ease 500ms;
}
.page-about .values .values-wrapper .value-card:first-child:hover {
  transform: translateY(-20px) rotate(5deg);
  transition: all ease 500ms;
}
.page-about .values .values-wrapper .value-card:nth-child(2) {
  background: #87D8FF;
  background: linear-gradient(340deg, rgb(135, 216, 255) 0%, rgb(73, 181, 234) 100%);
  transform: rotate(-5deg);
  z-index: 2;
  transition: all ease 500ms;
}
.page-about .values .values-wrapper .value-card:nth-child(2):hover {
  transform: translateY(-20px) rotate(-5deg);
  transition: all ease 500ms;
}
.page-about .values .values-wrapper .value-card:nth-child(3) {
  background: #22BB9C;
  background: linear-gradient(340deg, rgb(34, 187, 156) 0%, rgb(53, 222, 188) 100%);
  transform: rotate(5deg);
  z-index: 4;
  transition: all ease 500ms;
}
.page-about .values .values-wrapper .value-card:nth-child(3):hover {
  transform: translateY(-20px) rotate(5deg);
  transition: all ease 500ms;
}
.page-about .values .values-wrapper .value-card:last-child {
  background: #FF4D67;
  background: linear-gradient(340deg, rgb(255, 77, 103) 0%, rgb(255, 138, 155) 100%);
  transform: rotate(-5deg);
  z-index: 3;
  transition: all ease 500ms;
}
.page-about .values .values-wrapper .value-card:last-child:hover {
  transform: translateY(-20px) rotate(-5deg);
  transition: all ease 500ms;
}
.page-about .cta {
  width: 100%;
  min-height: 300px;
  background-color: white;
  border: 1px solid #D5F0FE;
  border-radius: 40px;
  margin: 100px 0 50px;
  text-align: center;
  position: relative;
  transition: all ease 500ms;
}
.page-about .cta::after {
  content: "";
  width: 90%;
  height: 300px;
  border-radius: 40px;
  margin: 0 auto;
  background-color: #e0e0e0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  transform: rotate(4deg);
}
.page-about .cta .shape-img-1 {
  width: 252px;
  height: 273px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.page-about .cta .shape-img-1 img {
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-about .cta .shape-img-2 {
  width: 287px;
  height: 273px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.page-about .cta .shape-img-2 img {
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-about .cta .text {
  margin: 50px auto;
}
.page-about .cta .text h1 {
  color: var(--color-text);
  margin-bottom: 20px;
}
.page-about .cta .text p {
  color: var(--color-text);
  margin-bottom: 20px;
}
.page-about .cta .text .more-btn {
  background-color: var(--color-primary);
  padding: 10px 30px 10px 10px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all ease 500ms;
}
.page-about .cta .text .more-btn span {
  display: inline-block;
  vertical-align: middle;
}
.page-about .cta .text .more-btn span:last-child {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50px;
  padding: 8px;
  transition: all ease 500ms;
}
.page-about .cta .text .more-btn span:last-child i {
  font-size: 24px;
  color: var(--color-primary);
}
.page-about .cta .text .more-btn:hover {
  background-color: var(--color-accent);
  transition: all ease 500ms;
}
.page-about .cta .text .more-btn:hover span:last-child {
  transform: rotate(-45deg);
  transition: all ease 500ms;
}
.page-about .cta .text .more-btn:hover span:last-child i {
  color: var(--color-accent);
}

.page-contact {
  padding: 100px 0 0;
}
.page-contact .contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.page-contact .contact-info .contact-block {
  width: 33.333%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 20px;
  border-radius: 20px;
}
.page-contact .contact-info .contact-block:first-child {
  background: #87D8FF;
  background: linear-gradient(340deg, rgb(135, 216, 255) 0%, rgb(73, 181, 234) 100%);
}
.page-contact .contact-info .contact-block:nth-child(2) {
  background: #22BB9C;
  background: linear-gradient(340deg, rgb(34, 187, 156) 0%, rgb(53, 222, 188) 100%);
}
.page-contact .contact-info .contact-block:last-child {
  background: #C4B2E6;
  background: linear-gradient(340deg, rgb(196, 178, 230) 0%, rgb(176, 150, 227) 100%);
}
.page-contact .contact-info .contact-block .text h5 {
  color: var(--color-background);
  margin-bottom: 20px;
}
.page-contact .contact-info .contact-block .text p {
  color: var(--color-background);
}
.page-contact .contact-info .contact-block .icon {
  width: 60px;
  height: 60px;
}
.page-contact .contact-info .contact-block .icon img {
  width: 100%;
  height: 100%;
}
.page-contact .contact-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.page-contact .contact-wrapper .contact-form {
  width: 66.667%;
  border: 2px solid #F4F0E9;
  padding: 20px;
  border-radius: 20px;
}
.page-contact .contact-wrapper .contact-form legend {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: bold;
}
.page-contact .contact-wrapper .contact-form label {
  margin-bottom: 10px;
  color: var(--color-text);
}
.page-contact .contact-wrapper .contact-form .form-control {
  width: 100%;
  height: 45px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  background-color: #FAFAFA;
  text-align: right;
  font-size: 1rem;
  color: #A8B0B6;
  padding: 10px;
  box-shadow: none;
}
.page-contact .contact-wrapper .contact-form .form-control.form-select {
  background-position: left 0.75rem center;
}
.page-contact .contact-wrapper .contact-form .form-control.form-select option {
  font-size: 0.8rem;
}
.page-contact .contact-wrapper .contact-form .form-control:focus {
  border: 1px solid var(--color-accent);
  transition: all ease 500ms;
}
.page-contact .contact-wrapper .contact-form .form-control::-moz-placeholder {
  color: var(--color-text);
  opacity: 0.4;
}
.page-contact .contact-wrapper .contact-form .form-control::placeholder {
  color: var(--color-text);
  opacity: 0.4;
}
.page-contact .contact-wrapper .contact-form textarea {
  min-height: 150px;
}
.page-contact .contact-wrapper .contact-form .btn-send {
  width: 100%;
  padding: 10px 20px;
  background-color: var(--color-primary);
  color: var(--color-background);
  border-radius: 50px;
}
.page-contact .contact-wrapper .map {
  width: 33.333%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.page-contact .contact-wrapper .map iframe {
  width: 100%;
  min-height: 650px;
}
.page-contact .contact-wrapper .map .working-hours {
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 10;
}
.page-contact .contact-wrapper .map .working-hours h6 {
  margin-bottom: 10px;
  color: var(--color-primary);
}
.page-contact .contact-wrapper .map .working-hours h6 i {
  color: var(--color-primary);
}
.page-contact .contact-wrapper .map .working-hours p {
  margin-bottom: 0;
  color: var(--color-text);
}

.page-default {
  padding: 100px 0 0;
}
.page-default .content p {
  color: var(--color-text);
  line-height: 1.6;
}
.page-default .content h5 {
  color: var(--color-primary);
  margin: 20px auto;
}
.page-default .content ul {
  padding-right: 40px;
  margin-bottom: 20px;
}

.page-service-design-print {
  padding: 50px 0;
}
.page-service-design-print .service-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-service-design-print .service-wrapper .block {
  width: calc((100% - 40px) / 3);
  height: 302px;
  box-sizing: border-box;
  border-radius: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.page-service-design-print .service-wrapper .block .image {
  width: 100%;
  height: 302px;
  border-radius: 20px;
  overflow: hidden;
}
.page-service-design-print .service-wrapper .block .image img {
  width: 100%;
  height: 302px;
  border-radius: 20px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all ease 500ms;
}
.page-service-design-print .service-wrapper .block span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  border-radius: 50px;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color-text-heading);
}
.page-service-design-print .service-wrapper .block:first-child {
  padding: 20px;
  background-color: #CDFFF8;
}
.page-service-design-print .service-wrapper .block:first-child h4 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.page-service-design-print .service-wrapper .block:first-child p {
  color: var(--color-text);
}
.page-service-design-print .service-wrapper .block:first-child img {
  width: 110px;
  height: auto;
  position: absolute;
  left: 20px;
  bottom: 20px;
  opacity: 0.4;
}
.page-service-design-print .service-wrapper .block:hover:first-child img {
  transform: none;
}
.page-service-design-print .service-wrapper .block:hover .image img {
  transform: scale(1.1);
  transition: all ease 500ms;
}

.page-service-video-voice {
  padding: 50px 0;
}
.page-service-video-voice .service-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-service-video-voice .service-wrapper .block {
  width: calc((100% - 40px) / 3);
  height: 302px;
  box-sizing: border-box;
  border-radius: 30px;
  margin-bottom: 20px;
  position: relative;
}
.page-service-video-voice .service-wrapper .block .image {
  width: 100%;
  height: 266px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #EAE2D4;
}
.page-service-video-voice .service-wrapper .block .image img {
  width: 100%;
  height: 266px;
  border-radius: 20px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0.8);
  transition: all ease 500ms;
}
.page-service-video-voice .service-wrapper .block span {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.125rem;
  color: var(--color-text-heading);
}
.page-service-video-voice .service-wrapper .block:first-child {
  padding: 20px;
  background-color: #FFFEE0;
}
.page-service-video-voice .service-wrapper .block:first-child h4 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.page-service-video-voice .service-wrapper .block:first-child p {
  color: var(--color-text);
}
.page-service-video-voice .service-wrapper .block:first-child img {
  width: 110px;
  height: auto;
  position: absolute;
  left: 20px;
  bottom: 20px;
  opacity: 0.4;
}
.page-service-video-voice .service-wrapper .block:hover:first-child img {
  transform: none;
}
.page-service-video-voice .service-wrapper .block:hover .image img {
  transform: scale(1);
  transition: all ease 500ms;
}

.page-service-marketing {
  padding: 50px 0;
}
.page-service-marketing .service-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-service-marketing .service-wrapper .block {
  width: calc((100% - 40px) / 2);
  height: 302px;
  box-sizing: border-box;
  border-radius: 30px;
  margin-bottom: 20px;
  background-color: var(--color-background);
  padding: 20px;
  position: relative;
}
.page-service-marketing .service-wrapper .block .image {
  width: 100%;
  height: 225px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #C6E1E8;
}
.page-service-marketing .service-wrapper .block .image img {
  width: 100%;
  height: 225px;
  border-radius: 20px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0.8);
  transition: all ease 500ms;
}
.page-service-marketing .service-wrapper .block span {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.125rem;
  color: var(--color-text-heading);
}
.page-service-marketing .service-wrapper .block:first-child {
  padding: 20px;
  background-color: #CDFFF8;
}
.page-service-marketing .service-wrapper .block:first-child h4 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.page-service-marketing .service-wrapper .block:first-child p {
  color: var(--color-text);
}
.page-service-marketing .service-wrapper .block:first-child img {
  width: 110px;
  height: auto;
  position: absolute;
  left: 20px;
  bottom: 20px;
  opacity: 0.4;
}
.page-service-marketing .service-wrapper .block:hover:first-child img {
  transform: none;
}
.page-service-marketing .service-wrapper .block:hover .image img {
  transform: scale(1);
  transition: all ease 500ms;
}

.page-service-events {
  padding: 50px 0;
}
.page-service-events .service-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-service-events .service-wrapper .block {
  width: calc((100% - 40px) / 2);
  height: 302px;
  box-sizing: border-box;
  border-radius: 30px;
  margin-bottom: 20px;
  background-color: var(--color-background);
  padding: 20px;
  position: relative;
}
.page-service-events .service-wrapper .block .image {
  width: 100%;
  height: 225px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #DDF0FF;
}
.page-service-events .service-wrapper .block .image img {
  width: 100%;
  height: 225px;
  border-radius: 20px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0.8);
  transition: all ease 500ms;
}
.page-service-events .service-wrapper .block span {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.125rem;
  color: var(--color-text-heading);
}
.page-service-events .service-wrapper .block:first-child {
  padding: 20px;
  background-color: rgba(51, 94, 247, 0.08);
}
.page-service-events .service-wrapper .block:first-child h4 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.page-service-events .service-wrapper .block:first-child p {
  color: var(--color-text);
}
.page-service-events .service-wrapper .block:first-child img {
  width: 110px;
  height: auto;
  position: absolute;
  left: 20px;
  bottom: 20px;
  opacity: 0.4;
}
.page-service-events .service-wrapper .block:hover:first-child img {
  transform: none;
}
.page-service-events .service-wrapper .block:hover .image img {
  transform: scale(1);
  transition: all ease 500ms;
}

.page-service-translate {
  padding: 50px 0;
}
.page-service-translate .service-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-service-translate .service-wrapper .block {
  width: calc((100% - 40px) / 3);
  height: 302px;
  box-sizing: border-box;
  border-radius: 30px;
  margin-bottom: 20px;
  background-color: var(--color-background);
  padding: 20px;
  overflow: hidden;
  position: relative;
}
.page-service-translate .service-wrapper .block .image {
  width: 100%;
  height: 225px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #E6D6F8;
}
.page-service-translate .service-wrapper .block .image img {
  width: 100%;
  height: 225px;
  border-radius: 20px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0.8);
  transition: all ease 500ms;
}
.page-service-translate .service-wrapper .block span {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.125rem;
  color: var(--color-text-heading);
}
.page-service-translate .service-wrapper .block:first-child {
  padding: 20px;
  background-color: rgba(51, 94, 247, 0.08);
}
.page-service-translate .service-wrapper .block:first-child h4 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.page-service-translate .service-wrapper .block:first-child p {
  color: var(--color-text);
}
.page-service-translate .service-wrapper .block:first-child img {
  width: 110px;
  height: auto;
  position: absolute;
  left: 20px;
  bottom: 20px;
  opacity: 0.4;
}
.page-service-translate .service-wrapper .block:hover:first-child img {
  transform: none;
}
.page-service-translate .service-wrapper .block:hover .image img {
  transform: scale(1);
  transition: all ease 500ms;
}

.page-service-tech {
  padding: 50px 0;
}
.page-service-tech .service-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-service-tech .service-wrapper .block {
  width: calc((100% - 40px) / 2);
  height: 302px;
  box-sizing: border-box;
  border-radius: 30px;
  margin-bottom: 20px;
  background-color: var(--color-background);
  padding: 20px;
  position: relative;
}
.page-service-tech .service-wrapper .block .image {
  width: 100%;
  height: 225px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #D7F0F1;
}
.page-service-tech .service-wrapper .block .image img {
  width: 100%;
  height: 225px;
  border-radius: 20px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0.8);
  transition: all ease 500ms;
}
.page-service-tech .service-wrapper .block span {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.125rem;
  color: var(--color-text-heading);
}
.page-service-tech .service-wrapper .block:first-child {
  padding: 20px;
  background-color: rgba(76, 175, 80, 0.08);
}
.page-service-tech .service-wrapper .block:first-child h4 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.page-service-tech .service-wrapper .block:first-child p {
  color: var(--color-text);
}
.page-service-tech .service-wrapper .block:first-child img {
  width: 110px;
  height: auto;
  position: absolute;
  left: 20px;
  bottom: 20px;
  opacity: 0.4;
}
.page-service-tech .service-wrapper .block:hover:first-child img {
  transform: none;
}
.page-service-tech .service-wrapper .block:hover .image img {
  transform: scale(1);
  transition: all ease 500ms;
}

.page-service-gift {
  padding: 50px 0;
}
.page-service-gift .service-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-service-gift .service-wrapper .block {
  width: calc((100% - 40px) / 3);
  height: 302px;
  box-sizing: border-box;
  border-radius: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.page-service-gift .service-wrapper .block img {
  width: 100%;
  height: 302px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-service-gift .service-wrapper .block img.blank {
  opacity: 1;
  transition: all ease 500ms;
}
.page-service-gift .service-wrapper .block img.active {
  transform: translateY(-302px);
  opacity: 0;
  transition: all ease 500ms;
}
.page-service-gift .service-wrapper .block span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  border-radius: 50px;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color-text-heading);
}
.page-service-gift .service-wrapper .block:first-child {
  padding: 20px;
  background-color: #D5F0FE;
}
.page-service-gift .service-wrapper .block:first-child h4 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.page-service-gift .service-wrapper .block:first-child p {
  color: var(--color-text);
}
.page-service-gift .service-wrapper .block:first-child img {
  width: 110px;
  height: auto;
  position: absolute;
  left: 20px;
  bottom: 20px;
  opacity: 0.4;
}
.page-service-gift .service-wrapper .block:hover img.blank {
  opacity: 0;
  transition: all ease 500ms;
}
.page-service-gift .service-wrapper .block:hover img.active {
  opacity: 1;
  transition: all ease 500ms;
}

.portfolio-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.portfolio-wrapper .portfolio-item {
  width: calc((100% - 20px) / 3);
}
.portfolio-wrapper .portfolio-item button {
  width: 100%;
  box-shadow: none;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
}
.portfolio-wrapper .portfolio-item button img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-wrapper .portfolio-item h5 {
  color: var(--color-text-heading);
  margin-top: 20px;
}

.modal .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal .modal-content .modal-header .modal-title {
  display: block;
  color: var(--color-accent);
}
.modal .modal-content .modal-header .close-btn {
  width: 50px;
  height: 50px;
  margin-left: 0;
  color: red;
}
.modal .modal-content .modal-body .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
}
.modal .modal-content .modal-body .wrapper .video {
  width: 100%;
}
.modal .modal-content .modal-body .wrapper .content {
  width: 50%;
}
.modal .modal-content .modal-body .wrapper .content p {
  color: var(--color-text);
}
.modal .modal-content .modal-body .wrapper .content h6 {
  color: var(--color-primary);
  margin: 10px auto;
}
.modal .modal-content .modal-body .wrapper .content ul {
  padding-right: 40px;
  margin-bottom: 0;
}
.modal .modal-content .modal-body .wrapper .content ul li {
  margin: 5px auto;
}
.modal .modal-content .modal-body .wrapper .content ul li p {
  margin-bottom: 5px;
}
.modal .modal-content .modal-body .wrapper .content .btn-preview {
  padding: 10px 20px 10px 5px;
  background-color: var(--color-primary);
  color: var(--color-background);
  border-radius: 50px;
  text-decoration: none;
}
.modal .modal-content .modal-body .wrapper .content .btn-preview span:last-child {
  width: 50px;
  height: 50px;
  background-color: var(--color-background);
  padding: 5px 8px;
  border-radius: 50px;
  color: var(--color-primary);
}
.modal .modal-content .modal-body .wrapper .content .btn-preview:hover {
  background-color: var(--color-accent);
  transition: all ease 500ms;
}
.modal .modal-content .modal-body .wrapper .content .btn-preview:hover span:last-child {
  color: var(--color-accent);
}
.modal .modal-content .modal-body .wrapper .image {
  width: 50%;
}
.modal .modal-content .modal-body .wrapper .image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.service-portfolio {
  padding: 50px 0;
}
.service-portfolio .heading {
  text-align: center;
  margin-bottom: 50px;
}
.service-portfolio .heading h3 {
  color: #126288;
  margin-bottom: 20px;
}
.service-portfolio .heading p {
  font-size: 1.125rem;
  color: var(--color-text);
}
.service-portfolio .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.service-portfolio .filter-tabs .tab-btn {
  background-color: #fff;
  border: 1px solid #D5F0FE;
  padding: 8px 18px;
  border-radius: 20px;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-portfolio .filter-tabs .tab-btn:hover, .service-portfolio .filter-tabs .tab-btn.active {
  background-color: #D5F0FE;
  color: var(--color-text);
  border-color: #87D8FF;
}
.service-portfolio .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 170px;
  gap: 20px;
  grid-auto-flow: dense;
}
.service-portfolio .portfolio-grid .grid-item {
  overflow: hidden;
  border-radius: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-portfolio .portfolio-grid .grid-item.hide {
  opacity: 0;
  scale: 0.8;
  pointer-events: none;
  display: none;
}
.service-portfolio .portfolio-grid .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.service-portfolio .portfolio-grid .grid-item:hover img {
  transform: scale(1.05);
}
.service-portfolio .portfolio-grid .grid-item.item-tall {
  grid-row: span 2;
}

.video-swiper {
  width: 100%;
}
.video-swiper .swiper-wrapper {
  padding: 20px 0;
}
.video-swiper .swiper-wrapper .swiper-slide {
  width: 60%;
  max-width: 1000px;
  border-radius: 24px;
  overflow: hidden;
  transition: filter 0.5s ease, opacity 0.5s ease;
  margin-left: 0;
  margin-right: 0;
}
.video-swiper .swiper-wrapper .swiper-slide .video-wrapper {
  position: relative;
  width: 100%;
}
.video-swiper .swiper-wrapper .swiper-slide .video-wrapper .portfolio-trigger {
  box-shadow: none;
  border: 0;
}
.video-swiper .swiper-wrapper .swiper-slide .video-wrapper .portfolio-trigger img {
  width: 100%;
  min-height: 370px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-swiper .swiper-slide-active {
  filter: brightness(1);
  opacity: 1;
}
.video-swiper .swiper-slide-active .play-btn {
  width: 80px;
  height: 80px;
  background: #ffffff;
  color: #00d3c4;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.video-swiper .swiper-slide-active .play-btn:hover {
  background: #00d3c4;
  color: #ffffff;
}
.video-swiper .swiper-button-next, .video-swiper .swiper-button-prev {
  color: #00d3c4;
}

.why-choose-us {
  padding: 50px 0;
}
.why-choose-us .heading {
  text-align: center;
  margin-bottom: 50px;
}
.why-choose-us .heading h3 {
  color: #126288;
  margin-bottom: 20px;
}
.why-choose-us .heading p {
  font-size: 1.125rem;
  color: var(--color-text);
}
.why-choose-us .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-direction: row;
}
.why-choose-us .wrapper .block {
  width: 33.333%;
  padding: 30px 20px;
  border-radius: 20px;
  position: relative;
}
.why-choose-us .wrapper .block:first-child {
  background-color: #F6FAFD;
  border: 1px solid #D5F0FE;
}
.why-choose-us .wrapper .block:first-child::after {
  content: "";
  width: 322px;
  height: 112px;
  margin: 0 auto;
  background-image: url(../imgs/bg-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  z-index: -1;
  transition: all ease 500ms;
}
.why-choose-us .wrapper .block:first-child::before {
  content: "";
  width: 46px;
  height: 25px;
  background-image: url(../imgs/arrow-shape-3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -50px;
  z-index: 0;
}
.why-choose-us .wrapper .block:first-child:hover::after {
  transform: translateY(5px);
  transition: all ease 500ms;
}
.why-choose-us .wrapper .block:nth-child(2) {
  margin-top: 70px;
  background-color: #F2FFFC;
  border: 1px solid rgba(76, 175, 80, 0.08);
}
.why-choose-us .wrapper .block:nth-child(2)::after {
  content: "";
  width: 322px;
  height: 112px;
  margin: 0 auto;
  background-image: url(../imgs/bg-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  z-index: -1;
  transition: all ease 500ms;
}
.why-choose-us .wrapper .block:nth-child(2)::before {
  content: "";
  width: 48px;
  height: 31px;
  background-image: url(../imgs/arrow-shape-4.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -15px;
  left: -50px;
  z-index: 0;
}
.why-choose-us .wrapper .block:nth-child(2):hover::after {
  transform: translateY(5px);
  transition: all ease 500ms;
}
.why-choose-us .wrapper .block:last-child {
  background-color: #FCF4FF;
  border: 1px solid rgba(156, 39, 176, 0.08);
}
.why-choose-us .wrapper .block:last-child::after {
  content: "";
  width: 322px;
  height: 112px;
  margin: 0 auto;
  background-image: url(../imgs/bg-3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  z-index: -1;
  transition: all ease 500ms;
}
.why-choose-us .wrapper .block:last-child:hover::after {
  transform: translateY(5px);
  transition: all ease 500ms;
}
.why-choose-us .wrapper .block img {
  width: 44px;
  height: 44px;
}
.why-choose-us .wrapper .block h5 {
  margin: 10px auto;
  color: var(--color-text-heading);
}
.why-choose-us .wrapper .block p {
  color: var(--color-text);
}

.process {
  padding: 50px 0;
  position: relative;
}
.process::after {
  content: "";
  width: 100%;
  height: 150px;
  padding: 20px;
  border-radius: 20px;
  background-image: linear-gradient(to right, #87D8FF 50%, rgba(255, 255, 255, 0) 0%);
  background-position: center;
  background-size: 30px 2px;
  background-repeat: repeat-x;
  position: absolute;
  top: 41%;
  left: 0;
  right: 0;
  z-index: -1;
}
.process .heading {
  text-align: center;
  margin-bottom: 50px;
}
.process .heading h3 {
  color: #126288;
  margin-bottom: 20px;
}
.process .heading p {
  font-size: 1.125rem;
  color: var(--color-text);
}
.process .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.process .wrapper .block {
  width: 25%;
}
.process .wrapper .block span {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-text-heading);
  font-family: var(--font-M);
  font-size: 1.125rem;
}
.process .wrapper .block span:first-child {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 15px;
}
.process .wrapper .block:first-child span:first-child {
  background-color: #D5F0FE;
  color: #0080BE;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.process .wrapper .block:nth-child(2) span:first-child {
  background-color: #CDFFF8;
  color: #04B198;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.process .wrapper .block:nth-child(3) span:first-child {
  background-color: #FFF5F5;
  color: #EA1E61;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.process .wrapper .block:last-child span:first-child {
  background-color: #FFFEE0;
  color: #FFC02D;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.request-service {
  padding: 50px 0;
  position: relative;
}
.request-service::before {
  content: "";
  width: 187px;
  height: 269px;
  background-image: url(../imgs/shape-11.png);
  position: absolute;
  right: 0;
  top: 50px;
  z-index: 0;
}
.request-service::after {
  content: "";
  width: 129px;
  height: 343px;
  background-image: url(../imgs/shape-12.png);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.request-service .heading {
  text-align: center;
  margin-bottom: 50px;
}
.request-service .heading h3 {
  color: #126288;
  margin-bottom: 20px;
}
.request-service .heading p {
  font-size: 1.125rem;
  color: var(--color-text);
}
.request-service .contact-form {
  width: 66.667%;
  margin: 0 auto;
  border: 2px solid #F4F0E9;
  padding: 20px;
  border-radius: 20px;
}
.request-service .contact-form legend {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: bold;
}
.request-service .contact-form label {
  margin-bottom: 10px;
  color: var(--color-text);
}
.request-service .contact-form .form-control {
  width: 100%;
  height: 45px;
  text-align: right;
  border: 1px solid #D5F0FE;
  border-radius: 5px;
  background-color: #FAFAFA;
  color: #A8B0B6;
  padding: 10px;
  box-shadow: none;
}
.request-service .contact-form .form-control.form-select {
  background-position: left 0.75rem center;
}
.request-service .contact-form .form-control:focus {
  border: 1px solid var(--color-accent);
  transition: all ease 500ms;
}
.request-service .contact-form .form-control::-moz-placeholder {
  color: var(--color-text);
  opacity: 0.4;
}
.request-service .contact-form .form-control::placeholder {
  color: var(--color-text);
  opacity: 0.4;
}
.request-service .contact-form textarea {
  min-height: 150px;
}
.request-service .contact-form .custom-file-upload {
  margin-bottom: 20px;
  width: 100%;
}
.request-service .contact-form {
  /* Hide the default browser input entirely but keep it clickable */
}
.request-service .contact-form .custom-file-upload .file-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.request-service .contact-form {
  /* The modern, styled container acting as the button */
}
.request-service .contact-form .custom-file-upload label {
  position: relative;
  display: block;
  background-color: #f8f9fa; /* Light background matching your form */
  border: 2px dashed #0085ba; /* Modern dashed border using your primary blue */
  padding: 15px 20px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.request-service .contact-form {
  /* Hover effect */
}
.request-service .contact-form .custom-file-upload label:hover {
  background-color: #eef7fc;
  border-color: #006699;
}
.request-service .contact-form {
  /* Text style inside the upload area */
}
.request-service .contact-form .custom-file-upload .upload-btn {
  color: #0085ba;
  font-weight: bold;
  font-size: 15px;
  display: inline-block;
}
.request-service .contact-form {
  /* Optional: Add a subtle upload icon before the text */
}
.request-service .contact-form .custom-file-upload .upload-btn::before {
  content: "📎"; /* You can replace this with a FontAwesome icon if you use it */
  margin-left: 8px;
  font-size: 18px;
  vertical-align: middle;
}
.request-service .contact-form .file-name-display {
  margin-top: 10px;
  font-size: 14px;
  color: #555555;
  text-align: center;
  font-weight: 500;
  word-break: break-all; /* Ensures long file names don't break layout */
}
.request-service .contact-form {
  /* Optional: Style it when a file is actually present */
}
.request-service .contact-form .file-name-display:not(:empty) {
  padding: 5px 10px;
  background-color: #f0f0f0;
  border-radius: 4px;
  display: inline-block;
}
.request-service .contact-form .btn-send {
  width: 100%;
  padding: 10px 20px;
  background-color: var(--color-primary);
  color: var(--color-background);
  border-radius: 50px;
}

@media (max-width: 575.98px) {
  .main-header .navbar .header-right-col {
    width: auto;
    order: 2 !important;
  }
  .main-header .navbar .header-right-col .navbar-toggler {
    padding: 10px;
  }
  .main-header .navbar .header-right-col .navbar-collapse {
    min-width: 100%;
    margin-top: 22px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background-color: var(--color-background);
    position: absolute;
    left: auto;
    right: 0;
    z-index: 1024;
  }
  .main-header .navbar .header-center-col {
    width: 120px;
    order: 1 !important;
  }
  .main-header .navbar .header-left-col {
    display: none;
  }
  .hero-section .hero-wrapper {
    flex-direction: column;
  }
  .hero-section .hero-wrapper .content {
    width: 100%;
  }
  .hero-section .hero-wrapper .video {
    width: 100%;
  }
  .hero-section .hero-wrapper .video video {
    height: 345px;
  }
  .hero-cards-section .hero-cards-wrapper {
    flex-direction: column;
  }
  .hero-cards-section .hero-cards-wrapper .card-1, .hero-cards-section .hero-cards-wrapper .card-2, .hero-cards-section .hero-cards-wrapper .wrapper, .hero-cards-section .hero-cards-wrapper .card-4, .hero-cards-section .hero-cards-wrapper .card-5 {
    width: 100%;
  }
  .hero-cards-section .hero-cards-wrapper .wrapper .card-3 img, .hero-cards-section .hero-cards-wrapper .wrapper .card-4 img {
    height: 250px;
  }
  .overview-section .overview-wrapper {
    flex-direction: column;
  }
  .overview-section .overview-wrapper .content {
    width: 100%;
  }
  .overview-section .overview-wrapper .content .counter {
    flex-wrap: wrap;
  }
  .overview-section .overview-wrapper .content .counter .stat-item {
    width: 47%;
  }
  .overview-section .overview-wrapper .content .counter .stat-item .stat-number {
    font-size: 40px;
  }
  .overview-section .overview-wrapper .image {
    width: 100%;
  }
  .services-section a .service-card {
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .services-section a .service-card.card-lg {
    flex-direction: column;
  }
  .why-chooose-us-section .why-choose-us-wrapper {
    flex-direction: column;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content {
    flex-direction: column;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block {
    height: -moz-fit-content;
    height: fit-content;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2) {
    transform: translate(0);
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2)::before {
    content: none;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2)::after {
    content: none;
  }
  .latest-work-section .latest-work-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .latest-work-section .latest-work-wrapper .heading {
    text-align: center;
  }
  .testimonials-section .testimonials-wrapper {
    flex-direction: column;
  }
  .testimonials-section .testimonials-wrapper .testimonial-card {
    width: 100%;
    margin-bottom: 30px;
  }
  .testimonials-section .testimonials-wrapper .testimonial-card:first-child {
    transform: rotate(0);
    margin-top: 0;
  }
  .testimonials-section .testimonials-wrapper .testimonial-card:last-child {
    transform: rotate(0);
    margin-top: 0;
  }
  .footer .footer-wrapper .blocks {
    flex-direction: column;
  }
  .footer .footer-wrapper .blocks .foot-block {
    width: 100%;
  }
  .footer .footer-wrapper .blocks .foot-block:first-child {
    width: 100%;
  }
  .footer .footer-wrapper .copyrights {
    margin-top: 20px;
    flex-direction: column;
  }
  .footer .footer-wrapper .copyrights .social ul {
    padding: 0;
  }
  .top-page::before, .top-page::after {
    content: none;
  }
  .service-top-page::before, .service-top-page::after {
    content: none;
  }
  .service-top-page .heading {
    width: 100%;
  }
  .service-top-page .heading h1 {
    font-size: 40px;
  }
  .page-about .features-wrapper {
    flex-direction: column;
  }
  .page-about .our-story {
    padding: 50px 0;
    flex-direction: column;
  }
  .page-about .our-story .image {
    width: 100%;
  }
  .page-about .our-story .text {
    width: 100%;
  }
  .page-about .vision-message {
    flex-direction: column;
  }
  .page-about .vision-message::after {
    content: none;
  }
  .page-about .vision-message .heading {
    width: 100%;
  }
  .page-about .vision-message .vision-card {
    width: 100%;
  }
  .page-about .vision-message .message-card {
    width: 100%;
  }
  .page-about .values .values-wrapper {
    flex-direction: column;
  }
  .page-about .values .values-wrapper .value-card {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-about .values .values-wrapper .value-card:first-child, .page-about .values .values-wrapper .value-card:nth-child(2), .page-about .values .values-wrapper .value-card:nth-child(3), .page-about .values .values-wrapper .value-card:last-child {
    transform: rotate(0);
  }
  .page-about .cta .shape-img-1,
  .page-about .cta .shape-img-2 {
    display: none;
  }
  .page-about .cta .text p {
    padding: 0 20px;
  }
  .page-contact {
    padding: 50px 0;
  }
  .page-contact .contact-info {
    flex-direction: column;
  }
  .page-contact .contact-info .contact-block {
    width: 100%;
  }
  .page-contact .contact-info .contact-block .icon img {
    width: 60px;
    height: 60px;
  }
  .page-contact .contact-wrapper {
    flex-direction: column;
  }
  .page-contact .contact-wrapper .contact-form {
    width: 100%;
  }
  .page-contact .contact-wrapper .map {
    width: 100%;
  }
  .page-service-design-print .service-wrapper {
    flex-direction: column;
  }
  .page-service-design-print .service-wrapper .block {
    width: 100%;
  }
  .page-service-video-voice .service-wrapper {
    flex-direction: column;
  }
  .page-service-video-voice .service-wrapper .block {
    width: 100%;
  }
  .page-service-marketing .service-wrapper {
    flex-direction: column;
  }
  .page-service-marketing .service-wrapper .block {
    width: 100%;
  }
  .page-service-tech .service-wrapper {
    flex-direction: column;
  }
  .page-service-tech .service-wrapper .block {
    width: 100%;
  }
  .page-service-events .service-wrapper {
    flex-direction: column;
  }
  .page-service-events .service-wrapper .block {
    width: 100%;
  }
  .page-service-gift .service-wrapper {
    flex-direction: column;
  }
  .page-service-gift .service-wrapper .block {
    width: 100%;
  }
  .page-service-translate .service-wrapper {
    flex-direction: column;
  }
  .page-service-translate .service-wrapper .block {
    width: 100%;
  }
  .page-service- .service-wrapper {
    flex-direction: column;
  }
  .page-service- .service-wrapper .block {
    width: 100%;
  }
  .why-choose-us .wrapper {
    flex-direction: column;
  }
  .why-choose-us .wrapper .block:first-child, .why-choose-us .wrapper .block:nth-child(2), .why-choose-us .wrapper .block:last-child {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 0;
  }
  .why-choose-us .wrapper .block:first-child::before, .why-choose-us .wrapper .block:first-child::after, .why-choose-us .wrapper .block:nth-child(2)::before, .why-choose-us .wrapper .block:nth-child(2)::after, .why-choose-us .wrapper .block:last-child::before, .why-choose-us .wrapper .block:last-child::after {
    content: none;
  }
  .process::after {
    content: none;
  }
  .process .wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .process .wrapper .block {
    width: 47%;
    margin-bottom: 20px;
    text-align: center;
  }
  .service-portfolio {
    padding: 50px 0 0;
  }
  .service-portfolio .filter-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  .service-portfolio .filter-tabs .tab-btn {
    font-size: 0.9rem;
  }
  .service-portfolio .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .service-portfolio .portfolio-wrapper {
    flex-direction: column;
  }
  .service-portfolio .portfolio-wrapper .portfolio-item {
    width: 100%;
  }
  .request-service::before, .request-service::after {
    content: none;
  }
  .request-service .contact-form {
    width: 100%;
  }
  .video-swiper {
    padding: 0 20px;
  }
  .video-swiper .swiper-wrapper .swiper-slide .video-wrapper {
    border-radius: 20px;
    overflow: hidden;
  }
  .modal .modal-content .modal-body .wrapper {
    flex-direction: column;
  }
  .modal .modal-content .modal-body .wrapper .video {
    width: 100%;
    height: auto;
  }
  .modal .modal-content .modal-body .wrapper .content {
    width: 100%;
  }
  .modal .modal-content .modal-body .wrapper .image {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .main-header .navbar .header-right-col {
    width: auto;
    order: 2 !important;
  }
  .main-header .navbar .header-right-col .navbar-toggler {
    padding: 10px;
  }
  .main-header .navbar .header-right-col .navbar-collapse {
    min-width: 100%;
    margin-top: 22px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background-color: var(--color-background);
    position: absolute;
    left: auto;
    right: 0;
    z-index: 1024;
  }
  .main-header .navbar .header-center-col {
    width: 120px;
    order: 1 !important;
  }
  .main-header .navbar .header-left-col {
    display: none;
  }
  .hero-section .hero-wrapper {
    flex-direction: column;
  }
  .hero-section .hero-wrapper .content {
    width: 100%;
  }
  .hero-section .hero-wrapper .video {
    width: 100%;
  }
  .hero-section .hero-wrapper .video video {
    height: 345px;
  }
  .hero-cards-section .hero-cards-wrapper {
    flex-direction: column;
  }
  .hero-cards-section .hero-cards-wrapper .card-1, .hero-cards-section .hero-cards-wrapper .card-2, .hero-cards-section .hero-cards-wrapper .wrapper, .hero-cards-section .hero-cards-wrapper .card-4, .hero-cards-section .hero-cards-wrapper .card-5 {
    width: 100%;
  }
  .hero-cards-section .hero-cards-wrapper .wrapper .card-3 img, .hero-cards-section .hero-cards-wrapper .wrapper .card-4 img {
    height: 250px;
  }
  .overview-section .overview-wrapper {
    flex-direction: column;
  }
  .overview-section .overview-wrapper .content {
    width: 100%;
  }
  .overview-section .overview-wrapper .content .counter {
    flex-wrap: wrap;
  }
  .overview-section .overview-wrapper .content .counter .stat-item {
    width: 47%;
  }
  .overview-section .overview-wrapper .content .counter .stat-item .stat-number {
    font-size: 40px;
  }
  .overview-section .overview-wrapper .image {
    width: 100%;
  }
  .services-section a .service-card {
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .services-section a .service-card.card-lg {
    flex-direction: column;
  }
  .why-chooose-us-section .why-choose-us-wrapper {
    flex-direction: column;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content {
    flex-direction: column;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block {
    height: -moz-fit-content;
    height: fit-content;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2) {
    transform: translate(0);
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2)::before {
    content: none;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2)::after {
    content: none;
  }
  .latest-work-section .latest-work-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .latest-work-section .latest-work-wrapper .heading {
    text-align: center;
  }
  .testimonials-section .testimonials-wrapper {
    flex-direction: column;
  }
  .testimonials-section .testimonials-wrapper .testimonial-card {
    width: 100%;
    margin-bottom: 30px;
  }
  .testimonials-section .testimonials-wrapper .testimonial-card:first-child {
    transform: rotate(0);
    margin-top: 0;
  }
  .testimonials-section .testimonials-wrapper .testimonial-card:last-child {
    transform: rotate(0);
    margin-top: 0;
  }
  .footer .footer-wrapper .blocks {
    flex-direction: column;
  }
  .footer .footer-wrapper .blocks .foot-block {
    width: 100%;
  }
  .footer .footer-wrapper .blocks .foot-block:first-child {
    width: 100%;
  }
  .footer .footer-wrapper .copyrights {
    margin-top: 20px;
    flex-direction: column;
  }
  .footer .footer-wrapper .copyrights .social ul {
    padding: 0;
  }
  .top-page::before, .top-page::after {
    content: none;
  }
  .service-top-page::before, .service-top-page::after {
    content: none;
  }
  .service-top-page .heading {
    width: 100%;
  }
  .service-top-page .heading h1 {
    font-size: 40px;
  }
  .page-about .features-wrapper {
    flex-direction: column;
  }
  .page-about .our-story {
    padding: 50px 0;
    flex-direction: column;
  }
  .page-about .our-story .image {
    width: 100%;
  }
  .page-about .our-story .text {
    width: 100%;
  }
  .page-about .vision-message {
    flex-direction: column;
  }
  .page-about .vision-message::after {
    content: none;
  }
  .page-about .vision-message .heading {
    width: 100%;
  }
  .page-about .vision-message .vision-card {
    width: 100%;
  }
  .page-about .vision-message .message-card {
    width: 100%;
  }
  .page-about .values .values-wrapper {
    flex-direction: column;
  }
  .page-about .values .values-wrapper .value-card {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-about .values .values-wrapper .value-card:first-child, .page-about .values .values-wrapper .value-card:nth-child(2), .page-about .values .values-wrapper .value-card:nth-child(3), .page-about .values .values-wrapper .value-card:last-child {
    transform: rotate(0);
  }
  .page-about .cta .shape-img-1,
  .page-about .cta .shape-img-2 {
    display: none;
  }
  .page-about .cta .text p {
    padding: 0 20px;
  }
  .page-contact {
    padding: 50px 0;
  }
  .page-contact .contact-info {
    flex-direction: column;
  }
  .page-contact .contact-info .contact-block {
    width: 100%;
  }
  .page-contact .contact-info .contact-block .icon img {
    width: 60px;
    height: 60px;
  }
  .page-contact .contact-wrapper {
    flex-direction: column;
  }
  .page-contact .contact-wrapper .contact-form {
    width: 100%;
  }
  .page-contact .contact-wrapper .map {
    width: 100%;
  }
  .page-service-design-print .service-wrapper {
    flex-direction: column;
  }
  .page-service-design-print .service-wrapper .block {
    width: 100%;
  }
  .page-service-video-voice .service-wrapper {
    flex-direction: column;
  }
  .page-service-video-voice .service-wrapper .block {
    width: 100%;
  }
  .page-service-marketing .service-wrapper {
    flex-direction: column;
  }
  .page-service-marketing .service-wrapper .block {
    width: 100%;
  }
  .page-service-tech .service-wrapper {
    flex-direction: column;
  }
  .page-service-tech .service-wrapper .block {
    width: 100%;
  }
  .page-service-events .service-wrapper {
    flex-direction: column;
  }
  .page-service-events .service-wrapper .block {
    width: 100%;
  }
  .page-service-gift .service-wrapper {
    flex-direction: column;
  }
  .page-service-gift .service-wrapper .block {
    width: 100%;
  }
  .page-service-translate .service-wrapper {
    flex-direction: column;
  }
  .page-service-translate .service-wrapper .block {
    width: 100%;
  }
  .page-service- .service-wrapper {
    flex-direction: column;
  }
  .page-service- .service-wrapper .block {
    width: 100%;
  }
  .why-choose-us .wrapper {
    flex-direction: column;
  }
  .why-choose-us .wrapper .block:first-child, .why-choose-us .wrapper .block:nth-child(2), .why-choose-us .wrapper .block:last-child {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 0;
  }
  .why-choose-us .wrapper .block:first-child::before, .why-choose-us .wrapper .block:first-child::after, .why-choose-us .wrapper .block:nth-child(2)::before, .why-choose-us .wrapper .block:nth-child(2)::after, .why-choose-us .wrapper .block:last-child::before, .why-choose-us .wrapper .block:last-child::after {
    content: none;
  }
  .process::after {
    content: none;
  }
  .process .wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .process .wrapper .block {
    width: 47%;
    margin-bottom: 20px;
    text-align: center;
  }
  .service-portfolio {
    padding: 50px 0 0;
  }
  .service-portfolio .filter-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  .service-portfolio .filter-tabs .tab-btn {
    font-size: 0.9rem;
  }
  .service-portfolio .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .service-portfolio .portfolio-wrapper {
    flex-direction: column;
  }
  .service-portfolio .portfolio-wrapper .portfolio-item {
    width: 100%;
  }
  .request-service::before, .request-service::after {
    content: none;
  }
  .request-service .contact-form {
    width: 100%;
  }
  .video-swiper {
    padding: 0 20px;
  }
  .video-swiper .swiper-wrapper .swiper-slide .video-wrapper {
    border-radius: 20px;
    overflow: hidden;
  }
  .modal .modal-content .modal-body .wrapper {
    flex-direction: column;
  }
  .modal .modal-content .modal-body .wrapper .content {
    width: 100%;
  }
  .modal .modal-content .modal-body .wrapper .image {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .main-header .navbar .header-right-col {
    width: auto;
    order: 2 !important;
  }
  .main-header .navbar .header-right-col .navbar-toggler {
    padding: 10px;
  }
  .main-header .navbar .header-right-col .navbar-collapse {
    min-width: 100%;
    margin-top: 22px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background-color: var(--color-background);
    position: absolute;
    left: auto;
    right: 0;
    z-index: 1024;
  }
  .main-header .navbar .header-center-col {
    width: 120px;
    order: 1 !important;
  }
  .main-header .navbar .header-left-col {
    display: none;
  }
  .hero-section .hero-wrapper {
    flex-direction: column;
  }
  .hero-section .hero-wrapper .content {
    width: 100%;
  }
  .hero-section .hero-wrapper .video {
    width: 100%;
  }
  .hero-section .hero-wrapper .video video {
    height: 345px;
  }
  .overview-section .overview-wrapper {
    flex-direction: column;
  }
  .overview-section .overview-wrapper .content {
    width: 100%;
  }
  .overview-section .overview-wrapper .image {
    width: 100%;
  }
  .services-section a .service-card {
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .services-section a .service-card.card-lg {
    flex-direction: column;
  }
  .why-chooose-us-section .why-choose-us-wrapper {
    flex-direction: column;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content {
    flex-direction: column;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block {
    height: -moz-fit-content;
    height: fit-content;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2) {
    transform: translate(0);
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2)::before {
    content: none;
  }
  .why-chooose-us-section .why-choose-us-wrapper .why-choose-us-content .block:nth-child(2)::after {
    content: none;
  }
  .latest-work-section .latest-work-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .latest-work-section .latest-work-wrapper .heading {
    text-align: center;
  }
  .testimonials-section .testimonials-wrapper {
    flex-direction: column;
  }
  .testimonials-section .testimonials-wrapper .testimonial-card {
    width: 100%;
    margin-bottom: 30px;
  }
  .testimonials-section .testimonials-wrapper .testimonial-card:first-child {
    transform: rotate(0);
    margin-top: 0;
  }
  .testimonials-section .testimonials-wrapper .testimonial-card:last-child {
    transform: rotate(0);
    margin-top: 0;
  }
  .footer .footer-wrapper .blocks {
    flex-direction: column;
  }
  .footer .footer-wrapper .blocks .foot-block {
    width: 100%;
  }
  .footer .footer-wrapper .blocks .foot-block:first-child {
    width: 100%;
  }
  .footer .footer-wrapper .copyrights {
    margin-top: 20px;
    flex-direction: column;
  }
  .footer .footer-wrapper .copyrights .social ul {
    padding: 0;
  }
  .top-page::before, .top-page::after {
    content: none;
  }
  .service-top-page::before, .service-top-page::after {
    content: none;
  }
  .service-top-page .heading {
    width: 100%;
  }
  .service-top-page .heading h1 {
    font-size: 40px;
  }
  .page-about .features-wrapper {
    flex-direction: column;
  }
  .page-about .our-story {
    padding: 50px 0;
    flex-direction: column;
  }
  .page-about .our-story .image {
    width: 100%;
  }
  .page-about .our-story .text {
    width: 100%;
  }
  .page-about .vision-message {
    flex-direction: column;
  }
  .page-about .vision-message::after {
    content: none;
  }
  .page-about .vision-message .heading {
    width: 100%;
  }
  .page-about .vision-message .vision-card {
    width: 100%;
  }
  .page-about .vision-message .message-card {
    width: 100%;
  }
  .page-about .values .values-wrapper {
    flex-direction: column;
  }
  .page-about .values .values-wrapper .value-card {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-about .values .values-wrapper .value-card:first-child, .page-about .values .values-wrapper .value-card:nth-child(2), .page-about .values .values-wrapper .value-card:nth-child(3), .page-about .values .values-wrapper .value-card:last-child {
    transform: rotate(0);
  }
  .page-about .cta .shape-img-1,
  .page-about .cta .shape-img-2 {
    display: none;
  }
  .page-about .cta .text p {
    padding: 0 20px;
  }
  .page-contact {
    padding: 50px 0;
  }
  .page-contact .contact-info {
    flex-direction: column;
  }
  .page-contact .contact-info .contact-block {
    width: 100%;
  }
  .page-contact .contact-info .contact-block .icon img {
    width: 60px;
    height: 60px;
  }
  .page-contact .contact-wrapper {
    flex-direction: column;
  }
  .page-contact .contact-wrapper .contact-form {
    width: 100%;
  }
  .page-contact .contact-wrapper .map {
    width: 100%;
  }
  .page-service-design-print .service-wrapper .block {
    width: 50%;
  }
  .page-service-video-voice .service-wrapper .block {
    width: 50%;
  }
  .page-service-marketing .service-wrapper .block {
    width: 50%;
  }
  .page-service-tech .service-wrapper .block {
    width: 50%;
  }
  .page-service-events .service-wrapper .block {
    width: 50%;
  }
  .page-service-gift .service-wrapper .block {
    width: 50%;
  }
  .page-service-translate .service-wrapper .block {
    width: 50%;
  }
  .page-service- .service-wrapper {
    flex-direction: column;
  }
  .page-service- .service-wrapper .block {
    width: 100%;
  }
  .why-choose-us .wrapper {
    flex-direction: column;
  }
  .why-choose-us .wrapper .block:first-child, .why-choose-us .wrapper .block:nth-child(2), .why-choose-us .wrapper .block:last-child {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 0;
  }
  .why-choose-us .wrapper .block:first-child::before, .why-choose-us .wrapper .block:first-child::after, .why-choose-us .wrapper .block:nth-child(2)::before, .why-choose-us .wrapper .block:nth-child(2)::after, .why-choose-us .wrapper .block:last-child::before, .why-choose-us .wrapper .block:last-child::after {
    content: none;
  }
  .process::after {
    content: none;
  }
  .process .wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .process .wrapper .block {
    width: 47%;
    margin-bottom: 20px;
    text-align: center;
  }
  .service-portfolio {
    padding: 50px 0 0;
  }
  .service-portfolio .filter-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  .service-portfolio .filter-tabs .tab-btn {
    font-size: 0.9rem;
  }
  .service-portfolio .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .service-portfolio .portfolio-wrapper {
    flex-direction: column;
  }
  .service-portfolio .portfolio-wrapper .portfolio-item {
    width: 100%;
  }
  .request-service::before, .request-service::after {
    content: none;
  }
  .request-service .contact-form {
    width: 100%;
  }
  .video-swiper {
    padding: 0 20px;
  }
  .video-swiper .swiper-wrapper .swiper-slide .video-wrapper {
    border-radius: 20px;
    overflow: hidden;
  }
  .modal .modal-content .modal-body .wrapper {
    flex-direction: column;
  }
  .modal .modal-content .modal-body .wrapper .content {
    width: 100%;
  }
  .modal .modal-content .modal-body .wrapper .image {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .page-about .vision-message::after {
    right: -8%;
  }
}
@media (max-width: 1200px) and (max-width: 1399.98px) {
  .page-about .vision-message::after {
    right: -8%;
  }
}/*# sourceMappingURL=main.css.map */