@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
:root {
  --bs-primary: rgb(0, 64, 255);
}

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

::-webkit-scrollbar-thumb {
  background-color: #888888;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #852c92;
}

::-webkit-scrollbar-button,
::-webkit-scrollbar-corner {
  background: transparent;
  cursor: pointer;
  display: none;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
  background-clip: content-box;
  border: 1px solid transparent;
}

::-webkit-scrollbar-track {
  background: transparent;
}

html, body {
  font-family: "Open Sans", sans-serif;
}

.img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.maxw-50 {
  max-width: 50px;
}

.maxw-70 {
  max-width: 70px;
}

.maxw-80 {
  max-width: 80px;
}

.maxw-100 {
  max-width: 100px;
}

.maxw-120 {
  max-width: 120px;
}

.maxw-140 {
  max-width: 140px;
}

.maxw-160 {
  max-width: 160px;
}

.maxw-180 {
  max-width: 180px;
}

.maxw-200 {
  max-width: 200px;
}

.maxw-300 {
  max-width: 300px;
}

.maxw-400 {
  max-width: 400px;
}

.maxw-500 {
  max-width: 500px;
}

.maxw-540 {
  max-width: 540px;
}

.maxw-600 {
  max-width: 600px;
}

.maxw-700 {
  max-width: 700px;
}

.maxw-750 {
  max-width: 750px;
}

.maxw-800 {
  max-width: 800px;
}

.maxw-860 {
  max-width: 860px;
}

.maxw-880 {
  max-width: 880px;
}

.maxw-900 {
  max-width: 900px;
}

.maxw-1000 {
  max-width: 1000px;
}

.maxw-1100 {
  max-width: 1100px;
}

.minh-178 {
  min-height: 178px;
}

.text-bodylink {
  color: var(--bs-body);
}
.text-bodylink:hover {
  color: var(--bs-primary);
}

.l {
  box-shadow: 0 0 0 1px red;
}

.pe-all {
  pointer-events: all !important;
}

.fs-18px {
  font-size: 18px;
}

.fw-sbold {
  font-weight: 600;
}

.lh-26px {
  line-height: 26px;
}

.lh-28px {
  line-height: 28px;
}

.icon {
  stroke: unset;
  stroke-width: 0px;
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.1em;
}

.ts-1p1 {
  transform: scale(1.1);
}

.ts-1p2 {
  transform: scale(1.2);
}

.ts-1p3 {
  transform: scale(1.3);
}

.ts-1p4 {
  transform: scale(1.4);
}

.ts-1p5 {
  transform: scale(1.5);
}

.ts-1p6 {
  transform: scale(1.6);
}

.ts-1p7 {
  transform: scale(1.7);
}

.ts-1p8 {
  transform: scale(1.8);
}

.ts-1p9 {
  transform: scale(1.9);
}

.h-40px {
  height: 40px;
}

.h-50px {
  height: 50px;
}

.h-60px {
  height: 60px;
}

.h-70px {
  height: 70px;
}

.h-80px {
  height: 80px;
}

.h-100px {
  height: 100px;
}

.h-110px {
  height: 110px;
}

.h-120px {
  height: 120px;
}

.wh-40px {
  width: 40px;
  height: 40px;
}

.wh-45px {
  width: 45px;
  height: 45px;
}

.wh-50px {
  width: 50px;
  height: 50px;
}

.ratio-box1 {
  --bs-aspect-ratio: 112%;
}

.bg-lightpink {
  background-color: #f9ecfb;
}

.bg-gradient {
  background: #293068;
}

.bg-gradient2, .card-ourservices {
  background: #eb057c;
}

.bg-gradient3, .nav-commonpills li .nav-link.active, .nav-commonpills li .nav-link.active:hover {
  background: #293068;
}

.bg-gradient4 {
  background: #eb057c;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-15 {
  opacity: 0.15;
}

.opacity-20 {
  opacity: 0.2;
}

.text-gradient {
  background:#293068;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn, .form-control {
  border-radius: 2px;
}

.btn-gradient {
  border: none;
  color: #fff;
  font-weight: 600;
  background: #eb057c;
  transition: 300ms;
}
.btn-gradient:hover {
  color: #fff;
  background: #eb057c;
}

.btn-secondary {
  background: #eb057c;
  transition: none !important;
}
.btn-secondary:hover {
  background: #293068;
}

.card-bottomrounded {
  border-radius: 24px 0 24px 24px;
  border-top: 4px solid #eb057c !important;
}

nav.navbar {
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
  padding: 15px 10px;
  border-radius: 0;
}
nav.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 20px);
  background: linear-gradient(rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0));
  z-index: -1;
}
nav.navbar.active {
  padding: 5px 10px;
  position: fixed;
  background: #293068;
  animation: headerFixed 500ms linear;
}
nav.navbar.active::before {
  display: none;
}
@keyframes headerFixed{
  from {transform: translateY(-100px); opacity: 0.5}
  to {transform: translateY(0px)}
}
nav.navbar.active .navbar-brand img {
  max-width: 160px;
}
nav.navbar .navbar-brand {
  padding: 0;
}
nav.navbar .navbar-brand img {
  max-width: 280px;
  transition: 250ms linear;
  margin-left: -10px;
}
nav.navbar .navbar-toggler, nav.navbar .btn-close {
  /*filter: grayscale(1) invert(1);*/
}

.btn-close {
  
  background-color:#fff !important;
  height:25px;
  width:25px;
  border-radius:100%;
  
}

.navbar-toggler{background-color:#fff !important;}

nav.navbar .navbar-nav {
  gap: 12px;
  align-items: center;
}
nav.navbar .navbar-nav .nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
nav.navbar .navbar-nav .nav-link.active, nav.navbar .navbar-nav .nav-link.show, nav.navbar .navbar-nav .nav-link:hover {
  color: #eb057c;
}
nav.navbar .navbar-nav .btn-gradient {
  margin-left: 20px;
  border-radius: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 46px;
}

.home-banner {
  position: relative;
}
.home-banner .carousel .carousel-item {
  height: 100vh;
  background-color: #000;
}
.home-banner .carousel .carousel-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.6;
}
.home-banner .carousel .carousel-item .carousel-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  margin: auto 0;
  padding: 85px 15px 15px 15px;
}
.home-banner .carousel .carousel-control-prev,
.home-banner .carousel .carousel-control-next {
  width: 40px;
  height: 40px;
  left: auto;
  top: auto;
  right: 15px;
  bottom: 15px;
  opacity: 1;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
  transition: 300ms;
}
.home-banner .carousel .carousel-control-prev:hover,
.home-banner .carousel .carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.65);
}
.home-banner .carousel .carousel-control-prev {
  right: 62px;
}
.home-banner .carousel .carousel-control-next-icon, .home-banner .carousel .carousel-control-prev-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-social a{
	font-size: 30px;
	text-decoration: none;
	color: #999;
	transition: 350ms;
	color:#eee;
}
.footer-social a:hover{color: #ffffff; text-decoration: none;}

.common-poster {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 60vh;
  background: linear-gradient(to top, #852c92, #293068);
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  padding-top: 100px;
  padding-bottom: 30px;
}
.common-poster.bg-white {
  background: #fff;
}
.common-poster.bg-light {
  background: var(--bs-light);
}
.common-poster .img-poster {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.wwr-section {
  position: relative;
  background-repeat: no-repeat !important;
  background-position: right !important;
  background-size: auto 100% !important;
}
.wwr-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.9) 40%, rgb(255, 255, 255) 65%);
  z-index: 0;
  pointer-events: none;
}
.wwr-section.wwr-section-right {
  background-position: left !important;
}
.wwr-section.wwr-section-right::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.9) 40%, rgb(255, 255, 255) 65%);
}
.wwr-section .container {
  position: relative;
  z-index: 2;
}

.nav-commonpills {
  gap: 15px;
}
.nav-commonpills li {
  width: calc(33.33% - 10px);
}
.nav-commonpills li .nav-link {
  width: 100%;
  box-shadow: 0 0 0 2px #20125e;
  color: #20125e;
  font-weight: 600;
}
.nav-commonpills li .nav-link:hover {
  background: #eee;
}

.form-control-lg{font-size:1rem !important;}

.card-ourservices {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-shadow: 0 1px 5px #000;
}
.card-ourservices img {
  opacity: 0.5;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 500ms;
}
.card-ourservices p {
  padding: 15px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.card-ourservices:hover img {
  opacity: 0.25;
  transform: scale(1.05);
}

.modal-backdrop {
  --bs-backdrop-opacity: 1;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.goto-top {
  position: fixed;
  width: 38px;
  height: 38px;
  font-size: 24px;
  color: #ffffff;
  background-color: #852c92;
  box-shadow: 0 0 10px #20125e;
  bottom: 10px;
  right: 10px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.25s;
  opacity: 0;
  transform: scale(0);
  z-index: 100;
}
.goto-top.active {
  opacity: 1;
  transform: scale(1);
}
.goto-top:hover {
  background-color: #20125e;
  box-shadow: 0 0 15px #852c92;
}

footer {
  padding-top: 30px;
  background: #293068;
  position: relative;
}
footer .footer-imgbg {
  position: absolute;
  max-width: 70%;
  max-height: 90%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 0;
  opacity: 0.035;
  pointer-events: none;
}
footer address a {
  position: relative;
  display: flex;
  color: #ddd;
  text-decoration: none;
  gap: 10px;
  font-size: 15px;
}
footer address a:hover {
  color: #fff;
}
footer address a .icon {
  min-width: 20px;
  width: 20px;
  margin-top: 4px;
}
footer h5 {
  font-size: 18px;
  color: #ddd;
  font-weight: 700;
  margin: 20px 0 12px 0;
  padding-bottom: 12px;
 /* border-bottom: 1px solid rgba(255, 255, 255, 0.15);*/
}
footer .footer-link {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer .footer-link li {
  margin-bottom: 10px;
}
footer .footer-link a {
  text-decoration: none;
  color: #ddd;
  text-underline-offset: 4px;
  font-size: 15px;
}
footer .footer-link a:hover {
  color: #fff;
  text-decoration: underline;
  transition: 300ms;
}
footer .copyright {
  background: #eb057c;
  padding: 25px 16px;
  color: #fff;
  text-align: center;
  margin: 30px 0 0 0;
  font-size: 15px;
}

@media screen and (max-width: 991.9px) {
  body:has(.navbar-collapse.show){
    overflow: hidden;
  }
  nav.navbar {
    top: 0;
    padding: 10px 5px;
  }
  nav.navbar.active {
    padding: 7px 5px;
  }
  nav.navbar.active .navbar-brand img {
    max-width: 140px;
  }
  nav.navbar .navbar-brand img {
    max-width: 160px;
  }
  nav.navbar .navbar-nav {
    gap: 1px;
    align-items: start;
  }
  nav.navbar .navbar-nav .btn-gradient {
    margin-top: 20px;
    margin-left: 0px;
    min-width: 120px;
    /*height: 46px;*/
  }
  nav.navbar .navbar-collapse .megamenu {
    overflow: visible;
    max-height: 100%;
  }
  .navbar-collapse {
    position: fixed;
    right: -300px;
    top: 0;
    width: 220px;
    min-height: 100%;
    height: 100%;
    /* background-color: #fff; */
    background: #293068;
    bottom: 0;
    transition: 350ms;
    box-shadow: 0 5px 10px #999;
    padding-left: 15px;
  }
  .navbar-collapse.show {
    right: 0;
  }
  .navbar-collapse ul.align-items-center {
    align-items: start !important;
  }
  .navbar-collapse .btn-speak {
    margin-top: 15px;
  }
  .carousel-caption {
    left: 15px;
    right: 15px;
  }
  .nav-commonpills {
    gap: 20px;
  }
  .nav-commonpills li {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767.9px) {
  .home-banner .carousel .carousel-item {
    height: 72vh;
  }
  #carouselHomeMain .carousel-indicators{
    margin-bottom: 0.25rem;
  }
  #carouselHomeMain .carousel-indicators [data-bs-target] {
    width: 20px;
  }
}
@media screen and (max-width: 575.9px) {
  .nav-commonpills {
    gap: 15px;
  }
  .nav-commonpills li {
    width: 100%;
  }
}

/*Servcies*/
.card-service {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: none;
  height: 100%;
}
.card-service:hover .card-poster {
  transform: scale(1.1);
}
.card-service .card-poster {
  transition: 0.75s;
}
.card-service .card-serviceicon {
  top: -32px;
  left: 0;
  position: absolute;
  z-index: 2;
}
.card-service .card-body {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
.card-service .card-title {
  font-weight: 600;
  margin-top: -8px;
  margin-bottom: 16px;
}
.card-service ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.card-service ul li {
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 16 16" fill="%239d8541" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M3.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L9.293 8 3.646 2.354a.5.5 0 0 1 0-.708"/><path fill-rule="evenodd" d="M7.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L13.293 8 7.646 2.354a.5.5 0 0 1 0-.708"/></svg>');
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  background-position: left 5px;
  padding-left: 26px;
  color: rgba(0, 0, 0, 0.65);
}
.card-service ul li:not(:last-child) {
  margin-bottom: 10px;
}














/*--# sourceMappingURL=style.css.map */