/* Global Start */
* {
  font-family: "Inter", sans-serif;
  font-size: calc(14px + (16 - 14) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.4;
  font-weight: 400;
}
body {
  background-color: #02050a;
}
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #60e7a6;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(96, 231, 166, 0.8);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
.btn {
  padding: 12px 35px;
  border-radius: 50px;
  transition: 0.5s ease-in-out;
}
.btn-primary {
  background-color: #60e7a6;
  border-color: #60e7a6;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background-color: #222;
  border-color: #222;
  box-shadow: none;
}
.btn-secondary {
  background-color: #fff0;
  border-color: #02050a;
  color: #02050a;
  border-radius: 5px;
}
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
  background-color: #fff0;
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}
ul li {
  list-style: none;
}
ul li i {
  color: #46dfc1;
  margin-right: 5px;
}
a {
  text-decoration: none;
}
/* Global Start */

/* Animations Start */
@keyframes scrollLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
/* Animations End */

/* Header Start */
.header {
  z-index: 1;
}
.mainLogo {
  width: 180px;
}
.mobileMenu {
  display: none;
}
.mainMenu .nav .nav-item .nav-link,
.offcanvas-body ul li a {
  color: #fff;
  font-size: calc(14px + (16 - 14) * ((100vw - 360px) / (1920 - 360)));
  font-weight: 500;
  transition: 0.5s ease-in-out;
}
.mainMenu .nav .nav-item .nav-link.active,
.mainMenu .nav .nav-item .nav-link:hover,
.mobileMenu ul li a:active,
.mobileMenu ul li a:hover {
  color: #60e7a6;
}
.mobileMenu .btn.btn-primary {
  border-color: #fff;
  background-color: #fff0;
  padding: 10px 20px;
  border-radius: 5px;
}
.mobileMenu .btn.btn-primary:hover {
  border-color: #60e7a6;
  color: #60e7a6;
}
.mobileMenu .btn.btn-primary i {
  padding-left: 0;
}
.mobileMenu .btn.btn-primary:hover i {
  transform: translateX(0);
}
.offcanvas {
  background-color: #181818;
}
.offcanvas .offcanvasLogo {
  width: 180px;
}
.offcanvas-header .btn-close {
  position: absolute;
  top: 3%;
  right: 3%;
  background-image: unset;
  opacity: 1;
}
.offcanvas-header .btn-close i {
  color: #fff;
  font-size: 20px;
  transition: 0.5s ease-in-out;
}
.offcanvas-header .btn-close:hover i {
  color: #60e7a6;
}
.offcanvas-body ul {
  display: block;
  text-align: start;
}
/* Header End */

/* Home Page Start */
/* Banner Start */
.banner {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: center;
  height: 1000px;
  display: flex;
  align-items: center;
}
.banner:before {
  content: "";
  background-color: #02050a;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.banner .headingImg {
  width: 250px;
}
.banner .arrowImg {
  position: absolute;
  top: 50%;
  left: 0;
}
.banner .ellipseImg {
  position: relative;
  left: 30%;
}
.banner .bannerImg {
  transition: 0.5s ease-in-out;
}
.banner .bannerImg:hover {
  transform: scaleX(-1);
}
.bannerBtn {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  text-align: center;
  color: #0a1019;
}
.bannerBtn i {
  display: block;
}
/* Banner End */

/* Advertising Start */
.advertiseLeft {
  background-image: url(../images/add-bg.png);
  background-size: cover;
  background-position: center;
}
.advertiseLeft hr {
  color: #02050a;
  opacity: 1;
  height: 2px;
}
.advertiseLeft .advertiseImg {
  width: 300px;
  transition: 0.5s ease-in-out;
}
.advertiseLeft:hover .advertiseImg {
  transform: translateX(50px);
}
.advertiseRight {
  background-color: #fff;
  background-image: url(../images/star.png);
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}
.advertiseRight hr {
  color: #02050a;
  opacity: 1;
  height: 2px;
}
.advertiseRight .advertiseAvatar {
  transition: 0.5s ease-in-out;
}
.advertiseRight:hover .advertiseAvatar {
  transform: translateY(-20px);
}
/* Advertising End */

/* Skills Start */
.skills ul li {
  background-color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  width: fit-content;
  display: inline-block;
  margin-bottom: 30px;
  margin-right: 10px;
  position: relative;
  transition: 0.5s ease-in-out;
}
.skills ul li:hover {
  transform: translateY(-20px);
}
.skills ul li:before {
  content: "";
  background-color: #60e7a6;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: 0;
  border-radius: 50px;
  z-index: -1;
}
.skills ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.skills ul li .skillBox {
  display: flex;
  align-items: center;
}
.skills ul li h6 {
  margin-bottom: 0;
  margin-left: 15px;
}
/* Skills End */

/* About Start */
.arrowStart svg {
  width: 40px;
}
.arrowStart svg path {
  stroke: #55e6a5;
}
.about .aboutContent p {
  position: relative;
  padding-left: 30px;
}
.about .aboutContent p:before {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #55e6a5;
  position: absolute;
  left: 0;
}
.about .aboutImg {
  transition: 0.5s ease-in-out;
}
.about .aboutImg:hover {
  transform: scale(1.1) rotate(15deg);
}
/* About End */

/* Portfolio Start */
.nav-tabs .nav-link {
  background: 0 0;
  border: 1px solid #55e6a5;
  border-radius: 5px;
  margin: 0 10px;
  padding: 15px 15px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #55e6a5;
  border-color: #55e6a5;
}
/* .portfolioBox {
  height: 390px;
  overflow: hidden;
} */
.portfolioBox a figure {
  margin-bottom: 0;
}
/* Portfolio End */

/* Services Start */
.serviceBox:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 35px;
  width: 110px;
  height: 110px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.07)),
    to(rgba(255, 255, 255, 0))
  );
  background-image: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}
.serviceBox {
  background-color: #0a1019;
  transition: 0.5s ease-in-out;
}
.serviceBox:hover {
  background-color: #55e6a5;
}
.serviceBox .serviceImg {
  width: 60px;
  filter: invert(1);
  transition: 0.5s ease-in-out;
}
.serviceBox:hover .serviceImg {
  filter: invert(0);
}
/* Services End */

/* Service Type Start */
.serviceType {
  background-color: #55e6a5;
overflow: hidden;
}
.serviceType ul {
  display: flex;
  
  white-space: nowrap;
  -webkit-animation: scrollLeft 80s linear infinite;
  animation: scrollLeft 50s linear infinite;
}
.serviceType ul li {
  display: inline-block;
  color: #02050a;
  font-size: calc(30px + (65 - 30) * ((100vw - 360px) / (1920 - 360)));
  font-weight: 300;
  line-height: 1.2;
  padding: 0 50px;
}
.serviceType ul li i {
  color: #02050a;
  vertical-align: middle;
  font-size: calc(32px + (48 - 32) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.2;
}
/* Service Type End */

/* Why Choose Us Start */
.chooseBox h6 i {
  color: #55e6a5;
  padding-right: 10px;
}
.chooseBox hr {
  height: 2px;
  color: #1b1e22;
  opacity: 1;
  margin: 25px 0;
  transition: 0.5s ease-in-out;
}
.chooseBox:hover hr {
  color: #fff;
}
.whyChooseUsImg {
  transition: 1.5s ease-in-out;
}
.whyChooseUsImg:hover {
  transform: rotate(360deg);
}
/* Why Choose Us End */

/* Packages Start */
.packageBox {
  background-color: #0a1019;
}
.packageBox .packageTitle {
  background-color: #55e6a5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.packageBox .packageImg img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.packages .packageBody {
  height: 350px;
  overflow-y: scroll;
  padding-right: 10px;
}
.packageBox .packageBody ul li {
  position: relative;
  padding-left: 0px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}
.packageBox .packageBody ul li:last-child {
  margin-bottom: 0;
}
.packageBox .packageBody ul li i {
  position: absolute;
  left: 0;
}
.btn-package {
  border: 1px solid #1b1e22;
  border-radius: 0;
  width: 100%;
  color: #fff;
}
.btn-package:hover,
.btn-package:focus {
  color: #fff;
  background-color: #55e6a5;
  border-color: #55e6a5;
  box-shadow: none;
}
/* Packages End */

/* Testimonial Start */
.testimonialImg {
  transition: 0.5s ease-in-out;
}
.testimonialImg:hover {
  transform: scale(1.1) rotate(20deg);
}
.testimonialBox .rating li {
  display: inline-block;
}
.slick-initialized {
  overflow: hidden;
}
.slick-dots li button:before {
  font-size: 12px;
  line-height: 22px;
  opacity: 0.3;
  color: #fff;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #55e6a5;
}
/* Testimonial End */
/* Home Page End */

/* Inner Page Start */
.innerBanner {
  height: 400px;
}
.innerBanner h2 {
  font-size: calc(26px + (48 - 26) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
.form-control {
  background-color: #fff0;
  border: none;
  border-bottom: 1px solid #1b1e22;
  border-radius: 0;
  padding: 0 0 22px 35px;
  color: #fff;
}
.form-control::placeholder {
  color: #fff;
}
.form-control:focus {
  color: #fff;
  background-color: #fff0;
  border-color: #69e8a7;
  box-shadow: none;
}
/* Inner Page End */

/* Footer Start */
.footer {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
.footer:before {
  content: "";
  background-color: #02050a;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.footer .form-control {
  background-color: #fff0;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  padding-right: 55px;
}
/* .form-control:focus {
  color: #fff;
  background-color: #fff;
  border-color: #fff;
  box-shadow: none;
} */
.footer .btn-newsletter {
  position: absolute;
  top: -5px;
  right: 0;
  color: #fff;
}
.footer .btn-newsletter i {
  font-size: 22px;
}
.footerMenu ul {
  column-count: 2;
}
.footerMenu ul li {
  margin-bottom: 15px;
}
.footerMenu ul li:last-child {
  margin-bottom: 0;
}
.footerMenu ul li a {
  color: #c0c0c2;
  white-space: nowrap;
}
/* Footer End */

/* Term & Conditions Start */
.termsCondition {
  color: #fff;
}
.termsCondition h3 {
  font-size: calc(20px + (27 - 20) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.3;
}
.termsCondition ul li {
  list-style: disc;
  color: #fff;
  font-weight: 400;
}
.termsCondition a {
  text-decoration: none;
  color: #60e7a6;
  font-weight: 500;
}
/* Term & Conditions End */

/* Thank You Page Start */
.innerBanner.thankyouInner {
  height: auto;
}
.thankyouPage,
.errorPage {
  padding-top: 120px;
}
.thankyouPage svg {
  width: 35% !important;
}
.errorPage svg {
  width: 50% !important;
}
/* Thank You Page End */

/* Modal Start */
.modal-body {
  overflow: hidden;
  padding: 0;
  background-color: #02050a;
}
.modal-body .btn-close {
  position: absolute;
  top: 1%;
  right: 1%;
  color: #fff;
  background: #60e7a6;
  background-image: unset;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 24px;
  opacity: 1;
  transition: 0.5s ease-in-out;
}
.modal-body .btn-close:hover {
  background: #60e7a6;
}
.modal-body .btn-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(96, 231, 166, 0.25);
}
.modal-body .popupRightSide {
  padding: 30px;
}
.modal-body h2, .bannerForm h2,
.modal-body h2 span, .bannerForm h2 span {
  font-family: "Inter", sans-serif;
  font-size: calc(25px + (35 - 25) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
.modal-body h5, .bannerForm h5,
.modal-body h5 span, .bannerForm h5 span {
  font-family: "Inter", sans-serif;
  font-size: calc(15px + (18 - 15) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.3;
  font-weight: 500;
  color: #fff;
}
.popupModal .form-control {
  padding: 0.75rem 0.75rem;
}
/* Modal End */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 100;
  transition: .5sease-in-out;
}

.whatsapp-float:hover {
  color: #fff;
}

.whatsapp-float i {
  font-size: 28px;
}