:root {
  --primary-color: #0b1d3b;
  --primary-hover: #061227;
  --primary-light: #0e2a58;
  --gray: #858585;
  --white: #ffffff;
  --font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.text-primary-light {
  color: var(--primary-light) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-gray {
  color: var(--gray) !important;
}

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

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

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

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

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

.py-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 991px) {
  .py-150 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

@media (max-width: 991px) {
  .section-head h2 {
    font-size: 30px;
  }
}

.btn {
  padding: 12px 30px;
  font-weight: 700;
  font-size: 16px;
}
.btn.close-btns {
  background: #d9a728 !important;
  border: solid 1px #d9a728 !important;
  color: #000000 !important;
  transition: 0.3s all;
  font-weight: 500;
}
.btn.close-btns:hover {
  opacity: 0.8;
}
@media (max-width: 991px) {
  .btn {
    padding: 12px 18px;
  }
}
.btn.btn-primary {
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-bg: var(--primary-hover);
  --bs-btn-hover-border-color: var(--primary-hover);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-bg: var(--primary-hover);
  --bs-btn-active-border-color: var(--primary-hover);
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}
.btn.btn-outline-primary {
  --bs-btn-color: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-disabled-color: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}
.btn.btn-outline-primary.bg-btn-out2 {
  border: solid 1px var(--white);
  border-radius: 10px !important;
}
.btn.btn-outline-primary.bg-btn-out2:hover, .btn.btn-outline-primary.bg-btn-out2:focus, .btn.btn-outline-primary.bg-btn-out2:active {
  border: solid 1px var(--primary-color);
}
.btn.btn-outline-white {
  color: var(--white);
  border-color: var(--white);
}
.btn.btn-outline-white:hover, .btn.btn-outline-white:focus, .btn.btn-outline-white:active {
  cursor: pointer;
  color: var(--primary-color);
  background-color: var(--white);
  border-color: var(--white);
}

.filter-img1 img {
  filter: brightness(0) invert(1);
}

.header {
  position: sticky;
  -webkit-position: sticky;
  width: 100%;
  top: 0;
  z-index: 1030;
}
.header button.navbar-toggler {
  border: solid 1px var(--white);
}
.header button.navbar-toggler .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}
.header .navbar-brand img {
  max-height: 70px;
}
@media (max-width: 991px) {
  .header .navbar-brand img {
    max-width: 120px;
  }
}
@media (max-width: 440px) {
  .header .navbar-brand img {
    max-width: 68px;
  }
}
.header .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
  padding: 5px 20px;
  border-radius: 50px;
}
.header .navbar-nav .nav-item .nav-link.active, .header .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-color);
  background-color: var(--white);
}
.header .nav-right {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .header .navbar-collapse {
    position: fixed;
    width: 100%;
    text-align: center;
    left: 0px;
    top: 62px;
    background: var(--primary-light);
    padding: 20px;
  }
}
.header .whatsapp {
  position: fixed;
  top: 75%;
  right: 0;
}

.bg-primary-light {
  background-color: var(--primary-light) !important;
}

.btn.btn-outline-primary.get-in-head-btn {
  border: solid 1px var(--white);
  color: var(--white);
}
.btn.btn-outline-primary.get-in-head-btn:hover, .btn.btn-outline-primary.get-in-head-btn:focus, .btn.btn-outline-primary.get-in-head-btn:active {
  background-color: var(--white);
  color: var(--primary-color-light);
}

.banner .slider {
  position: relative;
}
.banner .slider img {
  width: 100%;
  height: calc(100vh - 93px);
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
@media (max-width: 991px) {
  .banner .slider img {
    height: calc(100vh - 78.25px);
  }
}
.banner .slider .slick-slide.slick-cloned {
  pointer-events: none !important;
}
.banner .slider .slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1000;
  pointer-events: auto;
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
}
.banner .slider .slide-content h1 {
  font-weight: 600;
  font-size: 60px;
  color: var(--white);
}
@media (max-width: 991px) {
  .banner .slider .slide-content h1 {
    font-size: 35px;
  }
}
.banner .slider .slide-content p {
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
  margin-top: 20px;
}
.banner .slider .slide-content .divider {
  width: 144px;
  height: 2px;
  background-color: var(--white);
  margin: 36px 0;
}
@media (max-width: 991px) {
  .banner .slider .slide-content .divider {
    margin: 12px 0;
  }
}
.banner .slider .slide-content .play {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  text-decoration: none;
  gap: 10px;
}
.banner .slider .slide-content .play .play-circle {
  width: 24px;
  height: 24px;
}
.banner .slider .slick-next {
  width: 100px;
  height: 100px;
  background-color: var(--white);
}
.banner .slider .slick-next::before {
  content: url("./../images/right-arrow.svg");
  opacity: 1;
}
.banner .slider .slick-next:hover {
  background-color: rgb(202, 219, 255);
}
.banner .slider .slick-next:hover:before {
  opacity: 0.75;
}
.banner .slider .slick-next.slick-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  top: calc(100% - 50px);
}
.banner .slider .slick-prev {
  width: 100px;
  height: 100px;
  background-color: var(--white);
}
.banner .slider .slick-prev::before {
  content: url("./../images/left-arrow.svg");
  opacity: 1;
}
.banner .slider .slick-prev:hover {
  background-color: rgb(202, 219, 255);
}
.banner .slider .slick-prev:hover:before {
  opacity: 0.75;
}
.banner .slider .slick-prev.slick-arrow {
  position: absolute;
  right: 100px;
  left: auto;
  bottom: 0;
  top: calc(100% - 50px);
  z-index: 1;
}

.scroll-box {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 991px) {
  .scroll-box {
    left: 12px;
    transform: none;
    bottom: 0;
  }
}
.scroll-box span {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
}
@media (max-width: 767px) {
  .scroll-box span {
    font-size: 13px;
  }
}
.scroll-box img {
  width: 24px;
  height: 24px;
}

.about .about-slider {
  position: relative;
}
.about .about-slider:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 134px;
  background-color: #858585;
  bottom: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 991px) {
  .about .about-slider:before {
    display: none;
  }
}
.about .about-slider .slide-content {
  padding-left: 190px;
  position: relative;
}
.about .about-slider .slide-content::before {
  content: attr(count);
  position: absolute;
  left: 0px;
  top: 0;
  font-weight: 600;
  font-size: 90px;
  color: rgba(14, 42, 88, 0.1019607843);
  line-height: 1;
}
@media (max-width: 991px) {
  .about .about-slider .slide-content {
    padding-left: 80px;
  }
  .about .about-slider .slide-content::before {
    font-size: 50px;
  }
}
.about .abt-buttons {
  position: absolute;
  left: 200px;
  bottom: 0;
}
@media (min-width: 992px) and (max-width: 1399px) {
  .about .abt-buttons {
    left: 150px;
    bottom: -35px;
  }
}
@media (max-width: 991px) {
  .about .abt-buttons {
    left: auto;
    top: 0px;
    right: 0;
  }
}
@media (max-width: 440px) {
  .about .abt-buttons {
    left: 50%;
    top: auto;
    right: 0;
    bottom: -60px;
    transform: translate(-50%);
    z-index: 9999999;
  }
}
.about .abt-buttons .prev:hover,
.about .abt-buttons .next:hover {
  opacity: 0.5;
}

.journey {
  padding-top: 116px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .journey {
    padding-top: 85px;
  }
}
@media (max-width: 767px) {
  .journey {
    padding-top: 68px;
    margin-top: 64px;
  }
}
.journey .chill-core {
  position: absolute;
  top: -60px;
  right: -11px;
  z-index: 3;
  width: 450px;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .journey .chill-core {
    height: auto;
    width: 45%;
    right: 0;
  }
}
@media (max-width: 991px) {
  .journey .chill-core {
    height: auto;
    width: 282px;
    right: 0;
  }
}
.journey .blue-wrapper {
  width: 100%;
  padding: 102px 0 36px 0;
  background-image: url(./../images/rectangle.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
.journey .blue-wrapper .white-box {
  padding: 60px;
  position: relative;
}
.journey .blue-wrapper .white-box::before {
  content: "";
  position: absolute;
  transform: skew(-8deg);
  border-radius: 10px;
  background-color: var(--white);
  background-image: url(./../images/chill-core-mask.png);
  background-size: cover;
  background-repeat: repeat;
  background-position: bottom left;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
@media (max-width: 991px) {
  .journey .blue-wrapper .white-box::before {
    transform: skew(0deg);
  }
}
.journey .blue-wrapper .white-box::after {
  content: "";
  position: absolute;
  background-color: var(--white);
  background-image: url(./../images/chill-core-mask-reverse.png);
  background-size: contain;
  background-repeat: repeat;
  background-position: bottom left;
  width: 300%;
  height: 100%;
  left: calc(100% - 50px);
  top: 0;
  z-index: 0;
}
@media (max-width: 991px) {
  .journey .blue-wrapper .white-box::after {
    display: none;
  }
}
.journey .blue-wrapper .white-box .white-box-content {
  position: relative;
  z-index: 1;
}

.service-item .heading {
  display: flex;
  gap: 12px;
}
.service-item .heading span {
  border-left: 1px solid rgba(133, 133, 133, 0.5019607843);
  padding-left: 12px;
}

.projects {
  background-color: rgba(14, 42, 88, 0.1019607843);
  padding: 55px 0;
  overflow: hidden;
  background-image: url("./../images/abstract.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: calc((100% - 100px) / 2) center;
}
@media (max-width: 991px) {
  .projects {
    padding: 35px 12px;
  }
}
.projects .container-custom {
  gap: 110px;
  width: 100%;
}
@media (max-width: 991px) {
  .projects .container-custom {
    gap: 24px;
  }
}
@media (min-width: 576px) {
  .projects .container-custom {
    margin-left: calc((100% - 540px) / 2);
  }
}
@media (min-width: 768px) {
  .projects .container-custom {
    margin-left: calc((100% - 720px) / 2);
  }
}
@media (min-width: 992px) {
  .projects .container-custom {
    margin-left: calc((100% - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .projects .container-custom {
    margin-left: calc((100% - 1140px) / 2);
  }
}
@media (min-width: 1400px) {
  .projects .container-custom {
    margin-left: calc((100% - 1320px) / 2);
  }
}
.projects .container-custom .left-block {
  width: 385px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .projects .container-custom .left-block {
    width: 100%;
  }
}
.projects .container-custom .right-block {
  width: calc(100% - 535px);
}
@media (max-width: 991px) {
  .projects .container-custom .right-block {
    width: 100%;
    padding-left: 60px;
  }
}
.projects .container-custom .right-block .blue-parent {
  padding-left: 45px;
}
.projects .container-custom .right-block .blue-parent .blue-wrapper {
  padding: 108px 0 35px 35px;
  border-radius: 40px 0 0 40px;
  background-color: var(--primary-light);
}
.projects .container-custom .right-block .blue-parent .mySwiper {
  margin-left: -85px;
}
.projects .container-custom .right-block .blue-parent .mySwiper .swiper-slide {
  min-width: 30%;
  width: 30%;
}
@media (max-width: 1200px) {
  .projects .container-custom .right-block .blue-parent .mySwiper .swiper-slide {
    min-width: 46%;
    width: 46%;
  }
}
@media (max-width: 991px) {
  .projects .container-custom .right-block .blue-parent .mySwiper .swiper-slide {
    min-width: none;
    width: auto;
  }
}
.projects .container-custom .right-block .blue-parent .mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects .container-custom .right-block .blue-parent .swiper-button-next,
.projects .container-custom .right-block .blue-parent .swiper-button-prev {
  position: unset;
  width: auto;
  margin: 0;
}
.projects .container-custom .right-block .blue-parent .swiper-button-next::after,
.projects .container-custom .right-block .blue-parent .swiper-button-prev::after {
  display: none;
}
.projects .container-custom .right-block .blue-parent .swiper-button-next:hover,
.projects .container-custom .right-block .blue-parent .swiper-button-prev:hover {
  opacity: 0.5;
}
.projects .container-custom .caption {
  padding: 17px 12px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: linear-gradient(112.83deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.01) 110.84%);
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
}
.projects .container-custom .caption .caption-inner .icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: -24px;
  padding: 8px;
}
.projects .container-custom .caption .caption-inner .icon-wrapper img {
  width: 24px;
  height: 24px;
}
.projects .container-custom .caption .caption-inner .caption-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}
.projects .container-custom .caption .caption-inner .caption-subtitle {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.footer {
  background-color: var(--primary-color);
  padding: 60px;
  padding-bottom: 24px;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .footer {
    padding: 24px;
  }
}
.footer .footer-menu li {
  margin-bottom: 12px;
}
.footer .footer-menu li a {
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .footer-menu li a:hover {
  text-decoration: underline;
}
.footer .social-links {
  gap: 12px;
}

.contact-form {
  padding: 40px;
  border-radius: 12px;
}
.contact-form .form-floating > .form-control,
.contact-form .form-floating > .form-control-plaintext {
  padding: 13.5px 0 !important;
  height: auto;
  border: 0;
  border-bottom: 1px solid #181818;
  border-radius: 0;
  min-height: 48px;
}
.contact-form .form-floating > label {
  padding: 13.5px 0 !important;
  font-weight: 700;
  font-size: 16px;
  color: #181818;
}
.contact-form .form-floating > .form-control:not(:-moz-placeholder) ~ label {
  transform: scale(0.85) translateY(-2rem) translateX(0rem);
}
.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-2rem) translateX(0rem);
}
.contact-form .form-floating > .form-control:focus {
  box-shadow: inherit;
  border-bottom-color: #2d7eff;
}

.terms li {
  border-right: 2px solid #0c143c;
  padding-right: 12px;
  margin-right: 12px;
  line-height: 1;
}
.terms li a {
  color: var(--primary-light);
  text-decoration: none;
}
.terms li a:hover {
  color: var(--primary-hover);
}
.terms li:last-child {
  padding: 0;
  margin: 0;
  border: 0;
}

.about-slider-parent .btn.btn-primary.rounded-pill,
section.projects .btn.btn-primary.rounded-pill,
footer#footer form .btn.btn-primary.rounded-pill {
  border-radius: 10px !important;
}

@media (max-width: 767px) {
  body .bottom-menu {
    flex-direction: column;
  }
  body .bottom-menu ul.social-links {
    flex-direction: row;
  }
}

.bottom-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.bottom-menu ul {
  margin: 0;
  padding: 0;
  gap: 36px;
}
.bottom-menu ul li {
  list-style: none;
}
.bottom-menu ul li a {
  font-weight: 500;
}

hr.hr-one {
  margin: 1.5rem 0;
  margin-top: 60px;
  border-top: 1px solid #fff;
  opacity: 0.5;
}

.cursor-not-allowed {
  pointer-events: none;
  text-decoration: none;
}

@media (max-width: 767px) {
  .bottom-menu ul {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }
}
.border-right-1 .col-md-6 {
  border-right: solid 1px rgba(133, 133, 133, 0.5);
}
@media screen and (min-width: 768px) {
  .border-right-1 .col-md-6 {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .border-right-1 .col-md-6:nth-child(2) {
    border-right: none;
  }
}
@media screen and (max-width: 767px) {
  .border-right-1 .col-md-6 {
    border-right: none;
    border-bottom: solid 1px rgba(133, 133, 133, 0.5);
    padding-bottom: 1rem;
  }
  .border-right-1 .col-md-6:last-child {
    border-bottom: none;
  }
}
.border-right-1 .col-md-6:last-child {
  border-right: none;
}

.cursor-pointer {
  cursor: pointer;
}

.careers-modal .modal-dialog {
  max-width: 650px;
}
.careers-modal .modal-body.contact-form input[type=file] {
  outline: none;
  box-shadow: none !important;
  padding: 13.5px 0 !important;
  border: 0;
  border-bottom: 1px solid #181818;
  border-radius: 0;
}
.careers-modal .modal-body.contact-form button {
  outline: none;
  box-shadow: none !important;
}
.careers-modal .modal-body.contact-form button.btn-primary {
  border-radius: 12px;
}

.img-object-height {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .img-object-height {
    min-height: 383px;
  }
}

.overlay-banner-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(11, 29, 59, 0.5);
  z-index: 1;
}

.career-actives > .nav-link {
  color: var(--primary-color) !important;
  background-color: var(--white);
}

.mb-2-customs {
  margin-bottom: 10px !important;
}

@media (min-width: 992px) and (max-width: 1399px) {
  .about-slider-parent .about-slider .slide-content {
    padding-left: 150px;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .about-slider-parent .about-slider .content p {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .banner .slider .slide-content h1 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .banner .slider .slide-content h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .banner .slider .slide-content p {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */