/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --body: #EFEFEF;
  --black: #000;
  --white: #fff;
  --theme: #0186ff;
  --text: #333333;
  --border: rgba(21, 64, 103, 1);
  --bg: #1b2121;
  ---box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--body);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0;
  transition: all 0.4s ease-in-out;
  font-weight: 700;
  line-height: 130%;
  color: var(--text);
}

h1 {
  font-size: 75px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 24px;
  line-height: 35px;
}

h4 {
  font-size: 20px;
  line-height: 30px;
}

h5 {
  font-size: 18px;
  line-height: 25px;
}

h6 {
  font-size: 16px;
  line-height: 25px;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}

p {
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.p-rel {
  position: relative;
}

@keyframes topToBottom {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes projectCardShine {
  100% {
    top: 125%;
  }
}
.theme-btn-two {
  position: relative;
  padding: 18px 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  gap: 10px;
  white-space: nowrap;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(112, 117, 159, 0.1);
  background: var(--theme);
  transition: all 0.4s ease-in-out;
}
.theme-btn-two span {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
}
.theme-btn-two span span.text-1 {
  position: relative;
  display: block;
  transition: 0.3s;
}
.theme-btn-two span span.text-2 {
  position: absolute;
  bottom: 100%;
  display: block;
  transition: 0.3s;
}
.theme-btn-two .arrow {
  position: relative;
  overflow: hidden;
  width: 24px;
  height: 24px;
  font-size: 20px;
  display: inline-flex;
  margin-left: 0px;
}
.theme-btn-two .arrow i {
  transform: translateX(-1px);
  position: absolute;
  top: 0px;
  left: 2px;
  transition: all 0.2s ease-out;
}
.theme-btn-two .arrow i:last-child {
  left: 1px;
  top: -22px;
  transform: translate(0, 0);
  opacity: 0;
}
.theme-btn-two:hover {
  color: var(--white);
}
.theme-btn-two:hover span span.text-1 {
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
}
.theme-btn-two:hover span span.text-2 {
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.theme-btn-two:hover .arrow {
  display: inline-block;
  transform: translateX(-1px);
}
.theme-btn-two:hover .arrow i:first-child {
  transform: translate(-1px, 24px);
}
.theme-btn-two:hover .arrow i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(-1px, 24px);
}
.theme-btn-two:focus {
  color: var(--white);
}

.main-header {
  position: absolute;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  /* Desktop menu */
  /* Hamburger button */
  /* Responsive */
}
.main-header .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}
.main-header .desktop-menu nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-header .desktop-menu nav ul li {
  margin-inline-end: 30px;
}
.main-header .desktop-menu nav ul li:last-child {
  margin-inline-end: 0;
}
.main-header .desktop-menu nav ul li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  padding: 20px 0;
  text-transform: capitalize;
  position: relative;
  transition: all 0.3s ease;
}
.main-header .desktop-menu nav ul li a:hover {
  color: var(--white);
}
.main-header .header__hamburger {
  display: none;
}
.main-header .header__hamburger .sidebar__toggle {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-header .header__hamburger .sidebar__toggle span {
  width: 30px;
  height: 2px;
  background-color: var(--white);
}
@media (max-width: 991px) {
  .main-header .desktop-menu {
    display: none;
  }
  .main-header .header__hamburger {
    display: block;
  }
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--black);
  box-shadow: var(--box-shadow);
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #111;
  transition: right 0.3s ease;
  padding: 20px 0 50px;
  z-index: 9999;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .mobile-close {
  font-size: 28px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}
.mobile-menu .list {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu .list li {
  padding-bottom: 20px;
  padding-left: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.mobile-menu .list li a {
  color: var(--white);
  font-size: 18px;
}
.mobile-menu .social-icon {
  padding-left: 20px;
  padding-top: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu .social-icon a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  color: var(--black);
  transition: all 0.4s ease-in-out;
}
.mobile-menu .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 0.5) 54.11%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: -1;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-visible {
  overflow: hidden;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.preloader {
  position: fixed;
  background-color: var(--getizy-black, #10101c);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 300px auto;
  width: 100%;
  height: 100%;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out;
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--theme);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: var(--theme);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.section-title {
  position: relative;
}
.section-title .sub-title {
  color: var(--theme);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 5.2px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.section-title .title {
  color: var(--text);
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  padding-top: 15px;
}
.section-title .title span {
  color: var(--theme);
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

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

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.hero-1 {
  position: relative;
}
.hero-1 .hero-image {
  padding: 225px 0 240px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .hero-1 .hero-image {
    padding-top: 150px;
    padding-bottom: 110px;
  }
}
.hero-1 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--black);
  opacity: 0.6;
  z-index: -1;
}
.hero-1 .hero-content {
  position: relative;
}
.hero-1 .hero-content .title {
  position: relative;
  color: var(--white);
  text-align: center;
}
@media (max-width: 991px) {
  .hero-1 .hero-content .title {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content .title {
    font-size: 55px;
  }
}
.hero-1 .hero-content .shape-1 {
  position: absolute;
  bottom: -30px;
  right: 25%;
}
.hero-1 .hero-contact-box-anim {
  position: relative;
  z-index: 11;
  animation: topToBottom 2s linear infinite;
}
.hero-1 .hero-contact-box {
  position: absolute;
  bottom: -140px;
  left: 10%;
  z-index: 11;
  width: 260px;
  height: 200px;
  background-color: var(--theme);
  text-align: center;
  padding-top: 25px;
  clip-path: polygon(100% 0, 100% 70%, 50% 100%, 50% 100%, 0 72%, 0% 0%);
}
@media (max-width: 1199px) {
  .hero-1 .hero-contact-box {
    left: 3%;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-contact-box {
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero-1 .hero-contact-box span {
  color: #f0f0f0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
}
.hero-1 .hero-contact-box span i {
  padding-right: 10px;
  color: var(--black);
}
.hero-1 .hero-contact-box .number {
  color: var(--white);
}

.about-one {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  padding-top: 80px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .about-one {
    padding-top: 150px;
  }
}
.about-one__bg-image {
  position: absolute;
  top: 210px;
  left: 0;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: opacity(0.2);
}
.about-one .section-title-area {
  gap: 75px;
  padding-bottom: 110px;
}
.about-one .list-area .list li {
  color: #16a553;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
}
.about-one .list-area .list li i {
  font-size: 8px;
  color: #3c907f;
  padding-right: 10px;
}
.about-one__image {
  position: relative;
}
.about-one__image .image {
  width: 640px;
  height: 460px;
}
@media (max-width: 1199px) {
  .about-one__image .image {
    width: 100%;
  }
}
.about-one__image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-one__image .experience {
  position: absolute;
  top: -30px;
  left: -55px;
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  animation: topToBottom 2s linear infinite;
}
.about-one__image .experience .num {
  background-color: #292929;
  font-size: 60px;
  font-weight: 700;
  padding: 20px 15px;
  color: var(--white);
}
.about-one__image .experience .text {
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  padding: 20px 15px;
}
.about-one__content .info-area {
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.about-one__content .info-area span {
  color: var(--theme);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}
.about-one__content .info-area .name {
  color: var(--text);
}

.project-one__single-card {
  position: relative;
  margin-top: 50px;
  padding-right: 11px;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .project-one__single-card {
    padding-right: 0;
  }
}
.project-one__single-card .image {
  width: 100%;
  height: 365px;
  position: relative;
  overflow: hidden;
}
.project-one__single-card .image::before {
  content: "";
  position: absolute;
  top: -125%;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
.project-one__single-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 500ms ease;
}
.project-one__single-card .title {
  padding-top: 20px;
  color: var(--white);
}
.project-one__single-card:hover .image::before {
  -webkit-animation: projectCardShine 1s;
  animation: projectCardShine 1s;
}
.project-one__single-card:hover .image img {
  transform: scale(1.1);
}

.service-one {
  position: relative;
}
.service-one__content {
  padding-top: 60px;
}
.service-one__image {
  width: 705px;
  height: 560px;
  position: relative;
}
@media (max-width: 1199px) {
  .service-one__image {
    width: 100%;
  }
}
.service-one__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-one__image .image-title {
  position: absolute;
  left: 95px;
  bottom: 65px;
  text-align: center;
  color: var(--white);
  font-size: 30px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .service-one__image .image-title {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.service-one__single-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-bottom: 30px;
}
.service-one__single-item br {
  display: block;
}
.service-one__single-item .title {
  text-transform: uppercase;
}
.service-one__single-item .image {
  width: 118px;
  height: 118px;
}
.service-one__single-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-one {
  position: relative;
  z-index: 1;
}
.product-one__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.product-one__bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--bg);
  opacity: 0.5;
  z-index: -1;
}
.product-one__image-card {
  position: relative;
  margin-top: 30px;
}
.product-one__image-card .image {
  width: 100%;
  height: 405px;
  position: relative;
}
@media (max-width: 1199px) {
  .product-one__image-card .image {
    height: 100%;
  }
}
.product-one__image-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: contain;
}

.certificate-one__image-card {
  width: 100%;
  position: relative;
  margin-top: 30px;
}
.certificate-one__image-card .image-1 {
  width: 415px;
  height: 295px;
}
@media (max-width: 1199px) {
  .certificate-one__image-card .image-1 {
    width: 100%;
  }
}
.certificate-one__image-card .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: contain;
}
.certificate-one__image-card .image-2 {
  width: 225px;
  height: 295px;
}
@media (max-width: 1199px) {
  .certificate-one__image-card .image-2 {
    width: 100%;
  }
}
.certificate-one__image-card .image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: contain;
}
.certificate-one__image-card .image-3 {
  width: 380px;
  height: 295px;
}
@media (max-width: 1199px) {
  .certificate-one__image-card .image-3 {
    width: 100%;
  }
}
.certificate-one__image-card .image-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: contain;
}

.contact-one .office-google-map-wrapper iframe {
  width: 100%;
  height: 500px;
}
.contact-one__contact-form {
  padding-left: 20px;
}
@media (max-width: 1199px) {
  .contact-one__contact-form {
    padding-left: 0;
  }
}

.form-box {
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}
.form-box .form-clt input,
.form-box .form-clt textarea {
  width: 100%;
  padding: 15px 30px;
  outline: none;
  background-color: var(--bg);
  color: var(--white);
  text-transform: capitalize;
  border: none;
  margin: 10px 0;
}
.form-box .form-clt input::placeholder,
.form-box .form-clt textarea::placeholder {
  color: var(--white);
}

.footer-one {
  position: relative;
  z-index: 1;
}
.footer-one__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.footer-one__bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--bg);
  opacity: 0.5;
  z-index: -1;
}
.footer-one__content {
  text-align: center;
}
.footer-one__content .numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .footer-one__content .numbers {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-one__content .numbers .num {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 50px;
  color: var(--white);
  font-size: 40px;
  font-weight: 600;
  line-height: 85%;
}
@media (max-width: 767px) {
  .footer-one__content .numbers .num {
    border-right: 0;
    padding: 0 0;
  }
}
.footer-one__content .email {
  color: #b5b5b5;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 150%;
  padding-top: 30px;
}
.footer-one__content .text {
  color: #9f9f9f;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin-top: 80px;
}

.footer-bottom {
  background: var(--theme-color1);
  margin-top: 70px;
}
.footer-bottom .content {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 575px) {
  .footer-bottom .content {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-bottom .content p {
  color: #969696;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}
.footer-bottom .content a {
  color: var(--theme);
}