@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dancing+Script:wght@400..700&family=Pacifico&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dancing+Script:wght@500&family=Kalnia:wght@100..700&family=Pacifico&display=swap");
@font-face {
  font-family: "Major Mono Display";
  src: url("../fonts/MajorMonoDisplay.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat.ttf") format("truetype");
}
:root {
  --primary: #1261c8;
  --secondary: #308ad6;
  --light: #fefefe;
  --dark: #54148e;
  --majorMono: "Major Mono Display";
  --montserrat: "Montserrat";
  --cursive-font: "Dancing Script", cursive;
  --second-font-style: "Kalnia", serif;
}

html {
  font-size: 16px;
}

h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.pt-6 {
  padding-top: 90px;
}

.pb-6 {
  padding-bottom: 90px;
}

.py-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.btn {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary {
  color: #FFFFFF;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.top-shape::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 100%;
  top: 0;
  left: -17px;
  background: var(--primary);
  transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Barlow", sans-serif;
  padding: 35px 15px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

.logo {
  width: 70px;
  height: auto;
  padding: 2px 0;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
  }
}
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 36, 64, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }
  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}
.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

.service-item {
  position: relative;
  overflow: hidden;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  -webkit-clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px) !important;
          clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px) !important;
  border-top: 4px solid var(--dark);
  border-bottom: 4px solid var(--dark);
}

.service-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  bottom: -50px;
  left: 0;
  background: var(--dark);
  -webkit-clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px) !important;
          clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px) !important;
  transition: 0.5s;
}

.service-item:hover::after {
  bottom: -25px;
}

.service-item p {
  transition: 0.3s;
}

.service-item:hover p {
  margin-bottom: 25px !important;
}

.team-item img {
  transform: scale(1.15);
  margin-left: -30px;
  transition: 0.5s;
}

.team-item:hover img {
  margin-left: 0;
}

.team-item .team-text {
  left: -100%;
  transition: 0.5s;
}

.team-item .team-text::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  right: -60px;
  margin-top: -30px;
  border: 30px solid;
  border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
  left: 0;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--primary);
  font-size: 22px;
  border-radius: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .owl-item img {
  width: 90px;
  height: 90px;
}

.blog-item img {
  transition: 0.5s;
}

.blog-item:hover img {
  transform: scale(1.1);
}

.text-dull {
  color: var(--light) !important;
}

.heroSection {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroSection .backgroundImg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: brightness(20%);
  animation: brightnessAnimation 6s ease-in-out forwards;
}

@keyframes brightnessAnimation {
  0% {
    filter: brightness(20%);
  }
  100% {
    filter: brightness(100%);
  }
}
.heroSection .backgroundImg img {
  width: 100%;
  height: 100%;
}

.heroSection::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  filter: brightness(20%);
  animation: brightnessAnimation 6s ease-in-out forwards;
}

.heroTxt h2 {
  margin-bottom: 0;
  font-size: 4rem;
  font-family: var(--montserrat);
  color: white;
  font-weight: bolder;
  text-transform: uppercase;
}

.heroTxt p {
  margin-bottom: 0;
  font-size: 22px;
  color: white;
  font-family: var(--montserrat);
}

.company-showcase {
  border-bottom: 2px solid white;
  max-width: 300px;
}

.company-showcase .number {
  font-size: 3rem;
  color: white;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
  font-family: var(--montserrat);
}

.company-showcase .title {
  font-size: 22px;
  color: white;
  margin-bottom: 0;
}

.heroSection .contactForm {
  background-color: white;
  padding: 16px 20px;
  -webkit-clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px) !important;
          clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px) !important;
  border-top: 3px solid var(--secondary);
  border-bottom: 3px solid var(--secondary);
}
.heroSection .contactForm h2 {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  color: var(--primary);
  margin-bottom: 1.4rem;
  text-align: center;
  font-family: var(--montserrat);
  font-weight: 700;
}
.heroSection .contactForm .form-control {
  border-radius: 0px;
}

.btn-sharp {
  -webkit-clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px) !important;
          clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px) !important;
  border-radius: 0px !important;
  font-family: var(--montserrat);
  font-weight: 400;
  padding: 8px 2rem;
  margin-bottom: 0;
}

.w-fit {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.btn-white {
  background-color: white !important;
}

.trustedByBrandsContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trustedByBrandsContainer .brandImg {
  margin-bottom: 12px;
}
.trustedByBrandsContainer img {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  max-width: 155px;
  height: auto;
}
.trustedByBrandsContainer img:hover {
  opacity: 1;
}

.section3-img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background-image: url("/img/bg-image.jpg");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
}

.text-dull2 {
  color: #fde0e0 !important;
}

.section-3p {
  font-family: var(--montserrat);
  font-weight: 400;
}

@media (max-width: 575.98px) {
  .heroTxt h2 {
    font-size: 1.5rem;
  }
  .heroTxt p {
    font-size: 15px;
  }
  .company-showcase {
    max-width: 300px;
  }
  .company-showcase .number {
    font-size: 1.4rem;
  }
  .company-showcase .title {
    font-size: 10px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .heroTxt h2 {
    font-size: 2.5rem;
  }
  .heroTxt p {
    font-size: 20px;
  }
  .company-showcase {
    max-width: 300px;
  }
  .company-showcase .number {
    font-size: 2rem;
  }
  .company-showcase .title {
    font-size: 20px;
  }
}
@media (min-width: 777px) and (max-width: 991.98px) {
  .heroTxt h2 {
    font-size: 3rem;
  }
  .heroTxt p {
    font-size: 20px;
  }
  .company-showcase {
    max-width: 300px;
  }
  .company-showcase .number {
    font-size: 3rem;
  }
  .company-showcase .title {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .heroTxt h2 {
    font-size: 3.2rem;
  }
  .heroTxt p {
    font-size: 23px;
  }
  .company-showcase {
    max-width: 300px;
  }
  .company-showcase .number {
    font-size: 3.2rem;
  }
  .company-showcase .title {
    font-size: 22px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .heroTxt h2 {
    font-size: 3.5rem;
  }
  .heroTxt p {
    font-size: 23px;
  }
  .company-showcase {
    max-width: 300px;
  }
  .company-showcase .number {
    font-size: 3.2rem;
  }
  .company-showcase .title {
    font-size: 22px;
  }
}
.index-section p {
  text-indent: 20px;
}

.index-section p::first-letter {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--dark);
  font-family: var(--cursive-font);
}

.about-header {
  position: relative;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-header .backgroundImg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: brightness(20%);
  animation: brightnessAnimation 6s ease-in-out forwards;
}

@keyframes brightnessAnimation {
  0% {
    filter: brightness(20%);
  }
  100% {
    filter: brightness(100%);
  }
}
.about-header .backgroundImg img {
  width: 100%;
  height: 100%;
}

.about-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  filter: brightness(20%);
  animation: brightnessAnimation 6s ease-in-out forwards;
}

.aboutHeaderTxt h2 {
  margin-bottom: 0;
  font-size: 2rem;
  font-family: var(--montserrat);
  color: white;
  font-weight: bolder;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-intro {
  background-color: rgba(65, 14, 128, 0.06);
}

.about-intro h1 {
  font-weight: 200;
}

.about-intro p {
  font-size: 20px;
  font-weight: 400;
  text-indent: 40px;
}

.about-intro p::first-letter {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--secondary);
  font-family: var(--cursive-font);
}

.about-service:hover {
  background-color: rgba(169, 82, 236, 0.14);
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.6s;
}

.center-item {
  display: flex;
  align-items: center; /* Vertical centering */
  justify-content: center;
}

.icon-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-header {
  position: relative;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-header .backgroundImg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: brightness(20%);
  animation: brightnessAnimation 6s ease-in-out forwards;
}

.contact-header .backgroundImg img {
  width: 100%;
  height: 100%;
}

.contact-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  filter: brightness(20%);
  animation: brightnessAnimation 6s ease-in-out forwards;
}

.contactHeaderTxt h2 {
  margin-bottom: 0;
  font-size: 2rem;
  font-family: var(--montserrat);
  color: white;
  font-weight: bolder;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-card .card {
  border: 2px dotted var(--dark);
  border-radius: 10px;
}

.gallery-image {
  border-radius: 4px;
  box-shadow: -1px 0px 25px 4px rgb(84, 20, 142);
}

.gallery-image:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.6s;
}

.service-details p {
  font-size: 20px;
  font-weight: 700;
  text-indent: 40px;
}

.service-details p::first-letter {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--secondary);
  font-family: var(--cursive-font);
}

.service-details .backround-color {
  background-color: rgba(255, 255, 255, 0.418);
}

body {
  background: aliceblue;
}

.gtco-testimonials {
  position: relative;
  margin-top: 30px;
}
.gtco-testimonials h2 {
  font-size: 30px;
  text-align: center;
  color: #333333;
  margin-bottom: 50px;
}
.gtco-testimonials .owl-stage-outer {
  padding: 30px 0;
}
.gtco-testimonials .owl-nav {
  display: none;
}
.gtco-testimonials .owl-dots {
  text-align: center;
}
.gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid #01b0f8;
  margin: 0 5px;
}
.gtco-testimonials .owl-dots .active {
  box-shadow: none;
}
.gtco-testimonials .owl-dots .active span {
  background: #01b0f8;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.gtco-testimonials .card {
  background: #fff;
  box-shadow: 0 8px 30px -7px #c9dff0;
  margin: 0 20px;
  padding: 0 10px;
  border-radius: 20px;
  border: 0;
}
.gtco-testimonials .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: 15px auto 0;
  box-shadow: 0 8px 20px -4px #95abbb;
  width: 100px;
  height: 100px;
}
.gtco-testimonials .card h5 {
  color: #01b0f8;
  font-size: 21px;
  line-height: 1.3;
}
.gtco-testimonials .card h5 span {
  font-size: 18px;
  color: #666666;
}
.gtco-testimonials .card p {
  font-size: 18px;
  color: #555;
  padding-bottom: 15px;
}
.gtco-testimonials .active {
  opacity: 0.5;
  transition: all 0.3s;
}
.gtco-testimonials .center {
  opacity: 1;
}
.gtco-testimonials .center h5 {
  font-size: 24px;
}
.gtco-testimonials .center h5 span {
  font-size: 20px;
}
.gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 120px;
  width: 120px;
}

@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 20px;
  }
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  outline: 0;
}
.owl-carousel button.owl-dot {
  outline: 0;
}/*# sourceMappingURL=style.css.map */