* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 19px;
  background: #f6f6f6;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  outline: none;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: #304a6f;
}

form {
  margin-bottom: 0px;
}

a:hover {
  text-decoration: none;
  color: #232122;
}

a:focus {
  outline: none;
  color: #232122;
}

a.underline-text {
  text-decoration: underline;
}

input,
select,
textarea,
button,
label {
  outline: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  border: 0px;
  max-width: 100%;
}

ul {
  margin: 0px;
  padding: 0px;
}

ul li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

::-webkit-input-placeholder {
  color: var(--white-color) !important;
}

::-moz-placeholder {
  color: var(--white-color) !important;
}

:-ms-input-placeholder {
  color: var(--white-color) !important;
}

:-moz-placeholder {
  color: var(--white-color) !important;
}

::-webkit-file-upload-button {
  cursor: pointer;
}

:root {
  --first-color: #ce272e;
  --second-color: #5d5d5d;
  --white-color: #fff;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #012f92;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.container {
  max-width: 1440px;
  width: 100%;
}

.primary-btn {
  line-height: normal;
  background-color: #e7ded9;
  color: var(--first-color);
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  border: 1px solid #e7ded9;
  padding: 15px 20px;
  border-radius: 40px 40px 0px 40px;
  min-width: 164px;
  text-transform: none;
  vertical-align: middle;
  display: inline-block;
}

.primary-btn:hover,
.primary-btn:focus {
  background-color: var(--first-color);
  color: var(--white-color);
  border-color: var(--first-color);
}

.secondary-btn {
  line-height: normal;
  background-color: transparent;
  color: #32496b;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  border: 1px solid #32496b;
  padding: 15px 20px;
  border-radius: 0px;
  vertical-align: top;
  min-width: 164px;
  text-transform: none;
}

.secondary-btn:hover,
.secondary-btn:focus {
  background-color: #e7ded9;
  color: #32496b;
}

.sm-btn {
  padding: 8px 15px;
  min-width: inherit;
  font-size: 14px;
}

label.error {
  color: #f00 !important;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

/*=====================common-form====================*/
.common-form .form-control {
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
  color: #abadb1;
  margin: 0px;
  box-shadow: none;
  background-color: #ffffff;
  border: 1px solid #abadb1;
  border-radius: 0px;
  padding: 0px 15px;
}

.common-form .form-control:focus {
  box-shadow: none;
}

.common-form textarea.form-control {
  min-height: 100px;
  resize: none;
  padding-top: 15px;
  line-height: normal;
}

.common-form .form-control:disabled,
.common-form .form-control[readonly] {
  background: #ededed;
}

.common-form .form-select {
  cursor: pointer;
}

.common-form .input-group-append {
  cursor: pointer;
}

.common-form .lbl-text {
  font-size: 15px;
  color: #13172b;
  font-weight: 500;
}

.common-form .lbl-text span {
  color: #f00;
}

.form-check {
  padding-left: 32px;
  display: flex;
  align-items: center;
}

.form-check-input[type="checkbox"] {
  border-radius: 0px;
}

.form-check .form-check-input {
  margin-left: -32px;
  margin-top: 0px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  border: 1px solid #abadb1;
  outline: none;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: none !important;
}

.form-check-label {
  font-size: 15px;
  color: #54595f;
  padding-left: 10px;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #22b6e7;
  border-color: #fff;
}

.upload-file-card {
  position: relative;
  width: 100%;
}

.upload-file-card .form-control {
  overflow: hidden;
}

.upload-file-card .form-control label {
  width: 100%;
  overflow: hidden;
  line-height: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.upload-file-card input[type="file"] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 45px;
  opacity: 0.01;
  -webkit-opacity: 0.01;
  -moz-opacity: 0.01;
  -ms-opacity: 0.01;
  cursor: pointer;
}

.upload-file-card .primary-btn {
  position: relative;
  width: 45px;
  height: 45px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: inherit;
  flex-shrink: 0;
}

.upload-file-card .primary-btn:hover {
  background-color: #005eb8;
  border-color: #005eb8;
}

.datepicker .calendar-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #abadb1;
  z-index: 999;
}

.bootstrap-select {
  width: 100% !important;
}

.bootstrap-select > .dropdown-toggle {
  width: 100% !important;
  border: #abadb1 solid 1px;
  background-color: #ffff !important;
  border-radius: 0px;
  padding: 0px 15px;
  height: 45px;
  line-height: 45px;
  color: #abadb1 !important;
  outline: 0px !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: normal;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: 0px !important;
  box-shadow: none !important;
}

.bootstrap-select > .dropdown-toggle:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  border: none;
}

.bootstrap-select.dropup .dropdown-toggle:after {
  content: "\f077";
}

.bootstrap-select .bs-ok-default:after {
  border-width: 0 0.12em 0.12em 0;
}

.bootstrap-select .dropdown-menu {
  border: #abadb1 solid 1px;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu .dropdown-item {
  font-size: 14px;
}

/*=====================common-form end====================*/

/*===================== website css starts====================*/

.hidden-sm {
  display: block;
}
.hidden-lg {
  display: none;
}

/* Nav bar css starts */

.navigation_section {
  position: relative;
}

.nav_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.navigation__checkbox {
  display: none;
}

.navigation__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  background: url("../images/menu-v2.svg") no-repeat center;
  background-size: contain;
}

/* .navigation__button.open {
  background: url("../images/close.png") no-repeat center;
  background-size: contain;
} */

.navigation__background {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #2e3030;
  z-index: 100;
  transition: transform 800ms cubic-bezier(0.86, 0, 0.07, 1);
  transform: scale(0);
}

.navigation__nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  opacity: 0;
  width: 100vw;
  visibility: hidden;
  z-index: 200;
  transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  list-style: none;
}

.navigation__item {
  margin: 1rem;
}
.navigation__item.firstTab {
  text-align: right;
  padding-right: 10%;
}

.navigation__link:link,
.navigation__link:visited {
  display: inline-block;
  padding: 1rem 2rem;
  text-transform: uppercase;
  color: #fff;
  font-size: 4.4rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
}

.navigation__link span {
  margin-right: 1.5rem;
  display: inline-block;
}

.navigation__link:hover {
  color: #c1d0d0;
  transform: scale(1.1);
}

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(1);
  opacity: 0.9;
}

.navigation__checkbox:checked ~ .navigation__nav {
  visibility: visible;
  opacity: 1;
}

/* .navigation__checkbox:checked + .nav_wrap .navigation__button {
  background: url("../images/close.png") no-repeat center;
  background-size: contain;
} */

.logo {
  width: 14rem;
}

.closeMenu {
  color: #fff;
  cursor: pointer;
  padding: 0px;
  text-decoration: underline;
  font-size: 1.5rem;
  /* font-size: 4.4rem; */
  font-weight: 600;
}

.closeMenu img {
  width: 4rem;
}

/* Nav bar css ends */

.hero-section {
  /* max-width: 1440px; */
  margin: auto;
  position: relative;
}
.scroll-down {
  position: absolute;
  bottom: 0%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 102px;
}
.swiper-slider {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
   background-color: #c9f31d;
   padding: 10px;
   border-top: 4px solid #000;
   border-bottom: 4px solid #000;
   box-shadow: 0px 8px 7px grey;
}
.swiper-slider.marquee .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}
.swiper-slider.marquee .swiper-slide {
    display: flex;
    width: auto !important;
}
.pbmit-marquee-effect-style-10 .pbmit-tag-wrapper {
    margin: 0 50px;
}
.pbmit-marquee-effect-style-10 .pbmit-element-title {
    font-size: 30px;
    letter-spacing: 0;
    position: relative !important;
    overflow: visible !important;
    text-transform: capitalize;
    display: flex;
    font-weight: 400;
    margin: 0;
}
.pbmit-marquee-effect-style-10 .pbmit-element-title:after {
    content: "*";
    position: absolute;
    font-size: 30px;
    line-height: 30px;
    top: 12px;
    left: -60px;
}
.navigation_section {
  max-width: 1440px;
  margin: 16px auto;
}
.nav_wrap {
  padding: 0 5.2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about_section {
  max-width: 1440px;
  margin: auto;
  margin-top: 120px;
  display: flex;
  gap: 10%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.about_section .lhs {
  font-size: 72px;
  line-height: 79px;
  color: #240cf2;
  font-weight: 800;
  font-family: "Poppins";
  text-align: center;
}
.about_section .rhs {
  max-width: 60%;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  font-weight: 400;
  font-family: "Poppins";
  text-align: center;
  margin-top: 40px;
}
@keyframes reveal {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.about_section div {
  display: inline-block; /* Needed to apply clip-path */
  opacity: 0; /* Start with the element hidden */
}
.about_section div.active {
  animation: reveal 2s ease-out forwards; /* Adjust timing and easing as needed */
  opacity: 1;
}
.feature_section {
  margin: auto;
/*  margin-top: 120px;*/
  /* display: flex; */
  background-color: #240cf2;
}
.feature_section .feature_wrap {
  max-width: 1440px;
  margin: auto;
  padding-top: 54px;
  padding-bottom: 64px;
  display: flex;
  gap: 16%;
  justify-content: center;
}
.feature_section .lhs {
  max-width: 550px;
}
.feature_section .lhs h2 {
  font-size: 64px;
  line-height: 75px;
  color: #ffffff;
  font-weight: 700;
  font-family: "Poppins";
}
.feature_section .lhs p {
  font-size: 24px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Poppins";
}
.feature_section .rhs {
  max-width: 143px;
}
.feature_section .rhs img{
  width: 143px;
}
.moreprojects_section {
  display: none;
}
.portfolio_section {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.portfolio_section div {
  flex: 1 1 calc(50% - 2px);
  max-width: calc(50% - 2px);
  box-sizing: border-box;
  overflow: hidden;
}
.portfolio_section div img {
  transition: transform 0.4s;
}

.portfolio_section img:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
}

.services_section {
  margin: auto;
}
.services_section p {
  font-size: 22px;
  line-height: 56px;
  color: #000000;
  font-weight: 500;
  font-family: "Poppins";
  text-align: center;
  margin-top: 30px;
}
.services_section div {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.services_section div img {
  position: sticky !important;
  top: 0px;
}
.clients_section {
  margin: auto;
}
.clients_section p {
  font-size: 22px;
  line-height: 56px;
  color: #000000;
  font-weight: 500;
  font-family: "Poppins";
  text-align: center;
  margin: 30px auto;
}
.clients_section div {
  text-align: center;
}
.footer_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
  gap: 30px;
}
.footer_wrap .social_links {
  display: flex;
  gap: 70px;
}
.footer_wrap p {
  font-size: 34px;
  line-height: 57px;
  color: #201f1f;
  font-weight: 400;
  font-family: "Poppins";
}
.footer_wrap a {
  font-size: 30px;
  line-height: 57px;
  color: #201f1f;
  font-weight: 600;
  font-family: "Poppins";
}
.footer_wrap .creds_wrap {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.footer_wrap .creds_wrap p {
  font-size: 30px;
  line-height: 37px;
  color: #051242;
  font-weight: 700;
  font-family: "Poppins";
  text-align: center;
  margin: 30px 0px 40px 0px;
}
.footer_wrap .creds_wrap span {
  font-size: 30px;
  line-height: 37px;
  color: #0033a1;
  font-weight: 700;
  font-family: "Poppins";
  text-align: center;
}
.listing_section {
  padding: 60px 10px;
  text-align: center;
}
.listing_section p {
  font-size: 20px;
  /* line-height: 56px; */
  color: #000000;
  font-weight: 500;
  font-family: "Poppins";
  margin-bottom: 40px;
}
.listing_section h2 {
  font-size: 48px;
  line-height: 56px;
  color: #000000;
  font-weight: 700;
  font-family: "Poppins";
  text-align: center;
  margin-bottom: 10px;
}
.listing_section h3 {
  font-size: 30px;
  line-height: 56px;
  color: #000000;
  font-weight: 600;
  font-family: "Poppins";
  text-align: center;
}
.project_banner {
  margin: auto;
  text-align: center;
}
        .video-container {
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            position: relative;
        }
        iframe {
            position: absolute;
            top: -10%;
            width: 100vw;
            height: 117vh;
/*            pointer-events: none;*/
        }
.gallery_section {
  margin-left: 16%;
  text-align: left;
  margin-bottom: 40px;
}
.gallery_section p {
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  font-family: "Poppins";
  max-width: 900px;
  margin: 50px 0px;
}
.owl-stage {
  padding-left: 0px !important;
}
.more_section {
  text-align: center;
  /* padding: 40px 0px; */
}
