/* Icons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}

@font-face {
  font-family: "Montserrat", sans-serif;
  src: url("../fonts/montserrat/Montserrat-VariableFont_wght.html");
}

/* Root Styling */
:root {
  --color-primary: #5987ff;
  --c2: #002a6e;
  --main-font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: var(--main-font-family);
}

::selection {
  background-color: var(--color-primary);
  color: #fff;
}

a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}

ul,
ol,
dl {
  margin-bottom: 0;
}

.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

i.bx {
  font-family: boxicons;
  vertical-align: middle;
}

.mar-y {
  margin: 4rem 0;
}

/* ThemeBtn */
.themeBtn {
  width: fit-content;
  display: block;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  border: 2px solid transparent;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  padding: 0.75rem 2rem;
  position: relative;
  z-index: 1;
  border-radius: 5px;
}

.themeBtn--white {
  color: var(--c2);
  background: #fff;
}

.themeBtn--white:hover {
  color: var(--c2) !important;
}

.themeBtn--center {
  margin: 1rem auto;
}

.themeBtn--full {
  width: 100%;
}

.themeBtn:hover {
  color: #fff;
}

/* Card Hover */
.card-hover__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-hover__img>img {
  transition: all 300ms ease-in-out;
}

.card-hover:hover .card-hover__img>img {
  transform: scale(1.5);
}

/* Section Heading */
.section-content {
  color: #000;
}

.section-content--light *:not(.themeBtn) {
  color: #fff;
}

.section-content :is(.heading, .subHeading) {
  font-weight: 600;
  text-transform: capitalize;
}

.section-content .heading {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-content .heading.heading--sm {
  font-size: 30px;
}

.section-content .subHeading {
  font-size: 1.25rem;
}

.section-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.header {
  background: #3858e9;
  z-index: 99;
  width: 100%;
  position: relative;
}

:is(.header-main, .header-main__nav, .header-top) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main__logo {
  width: 260px;
  font-size: 22px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
  font-family: 'Montserrat';
}

.header-main__logo:hover {
  color: #000;
}

.sp1 {
  color: #ff402d;
}

.sp2 {
  color: #002a6e;
}

.sp3 {
  font-size: 17px;
  font-weight: 700;
}

.header-main__logo>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-main {
  padding: 12px 0;
}

.header-main__nav>li {
  line-height: 1;
  padding: 0 1.25rem;
}

.header-main__nav>li :is(a:not(.themeBtn), span) {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}

.header-main__nav :is(li, a:not(.themeBtn)) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
}

.header-main__nav>li>a>i {
  color: #fff;
  font-size: 1.5rem;
}

.header-main__nav>li>a:not(.themeBtn):hover {
  color: var(--color-primary);
}

.header-main__menu {
  display: none;
}

.header-main__menu a>i {
  color: #000;
  font-size: 2.5rem;
}

/* Banner */
.banner {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  color: #000;
  display: flex;
  background: #3858E9;!i;!;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

:is(.banner-content__heading, .banner-content__subHeading) {
  font-weight: 800;
  /* text-transform: capitalize; */
  margin-bottom: 0.5rem;
}

.banner-content__heading {
  font-size: 47px;
  line-height: 50px;
  font-weight: 700;
  color: #fff;
}

.banner-content__subHeading {
  font-size: 1.25rem;
}

.banner-content>p {
  font-size: 18px;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #ffffff;
  line-height: 35px;
}

.banner-img {
  transform: scale(1.5) translateX(5rem);
}

/* Sidebar */
.sideBar {
  width: 280px;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  background-size: 200%;
  transition: all 300ms ease-in-out;
  padding: 0.5rem 0;
  transform: translateX(-100%);
  z-index: 100;
  padding: 6rem 2.13rem;
  box-shadow: 0 0 15px 5px #00000020;
}

.sideBar.show {
  transform: translateX(0);
}

.sideBar__logo {
  width: 200px;
  display: block;
}

.sideBar__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sideBar__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 1.6rem;
  background: var(--color-primary);
  background-size: 200%;
  color: #fff;
  border-radius: 100%;
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sideBar__close:hover {
  color: #fff;
}

:is(.sideBar__nav, .sideBar__nav > li > a:not(.themeBtn)) {
  display: flex;
  justify-content: flex-start;
}

.sideBar__nav {
  margin-top: 3.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
}

.sideBar__nav>li>a:not(.themeBtn) {
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: capitalize;
  gap: 0.25rem;
}

.sideBar__nav>li>a:not(.themeBtn) i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.sideBar__nav>li>a:hover {
  color: var(--color-primary) !important;
}

/* Cta */
.cta .section-content .heading {
  font-size: 24px;
  color: #444;
  font-weight: 700;
  line-height: 1.25;
}

.cta .section-content .heading--sm span {
  font-size: 24px;
  font-weight: 500;
  display: block;
}

.cta {
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 0.75rem;
  position: fixed;
  top: 55%;
  right: 0;
  transform: translate(80%, -50%);
  z-index: 99;
}

.cta-single,
.cta-single__icon {
  position: relative;
}

:is(.cta-single__icon, .cta-single__icon > span) {
  display: flex;
  align-items: center;
  transition: 0.4s;
}

.cta-single__icon {
  width: 280px;
  color: #ffff;
  background: var(--color-primary);
  background-size: 200%;
  font-size: 1rem;
  font-weight: 600;
  justify-content: flex-start;
  gap: 0.75rem;
  box-shadow: 0 0 10px 5px #00000020;
  border-radius: 100px 0 0 100px;
  background-color: #fff;
}

.cta .contact-form__fields .themeBtn {
  width: 100%;
  display: block;
  color: #fff;
  font-size: 1rem;
  border: 2px solid transparent;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  padding: 0.75rem 2rem;
  z-index: 1;
  background: #4c32fd;
  font-size: 14px;
}

.cta-single__icon>span {
  width: 60px;
  height: 50px;
  font-size: 1.25rem;
  justify-content: center;
  position: relative;
  color: var(--c2);
  border-right: 1px solid #ded9d9;
}

.cta-single__icon:hover {
  color: #444;
  background-color: #fff;
  font-weight: 300;
  font-size: 20px;
}

.cta-single__icon--link:hover {
  transform: translateX(-70%);
}

.cta-formWrapper {
  background: #fff;
  width: 375px;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -50%);
  transition: 0.3s ease-in-out;
}

.cta-formWrapper.show {
  transform: translate(-122%, -50%);
}

.cta-single__icon--form.show {
  transform: translateX(-134%);
}

.cta-single__icon--form span::after {
  right: 100%;
}

.cta .contact-form__fields {
  margin: 0.5rem 0.45rem;
}

.cta .contact-form__fields :is(input:not([type="file"], [type="checkbox"]),
  textarea,
  select,
  .contact-form__fields--file > label) {
  border: 2px solid var(--color-primary);
}

.cta .contact-form__fields :is(input, textarea, select)::placeholder,
.cta .contact-form__fields :is(input, textarea, select, .contact-form__fields--file > label) {
  color: #181818d1 !important;
}

.cta .contact-form__fields :is(input, textarea, select)::placeholder,
.cta .contact-form__fields :is(input, textarea, select, .contact-form__fields--file > label) {
  color: #000 !important;
  font-size: 1rem;
  font-weight: 400;
}

.cta .contact-form__fields :is(input:not([type="file"], [type="checkbox"]),
  textarea,
  select,
  .contact-form__fields--file > label) {
  width: 100%;
  background: #fff;
  border: none;
  outline: 0;
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  margin: 0;
  resize: none;
}

.cta .contact-form__fields input,
.cta .contact-form__fields textarea {
  border: 1px solid #00000026 !important;
}

.cta .contact-form input,
.cta .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 0;
  border-bottom: 1px solid #44444452;
  outline: 0;
}

.call-now {
  width: 50px;
  height: 50px;
  color: var(--color-primary);
  display: block;
  text-align: center;
  border-radius: 100%;
  font-size: 30px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  padding: 0px 0;
  line-height: initial;
  box-shadow: 6px 9px 30px 1px rgba(37, 0, 22, 0.71);
  padding: 0;
  animation: float 0.5s ease infinite alternate;
  background: #ffffff;
  border: solid 3px var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-now--whatsapp {
  bottom: 85px;
}

.call-now:hover {
  color: #fff;
  background: var(--color-primary);
}

@keyframes float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

/* Modal */
/* .modal {
  padding: 0px !important;
}
.modal.show {
  display: block;
}
.modal-dialog {
  max-width: 100%;
  height: 100%;
  margin: 0px;
}
.modal-content {
  height: 100%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 550px;
  position: relative;
  border: none !important;
  margin-inline: auto;
}
.modal button.close {
  color: #fff;
  width: fit-content;
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: none;
  outline: none;
  margin-left: auto;
  background: var(--color-primary);
  position: absolute;
  opacity: 1;
  transition: all 300ms ease-in-out;
  z-index: 1;
  top: 0;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  border-radius: 100px;
}
.modal-dialog.modal-dialog-centered {
  background: #48008847;
}
.modal button.close:hover * {
  color: var(--color-secondary);
}
.modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
}
.modal-open {
  overflow: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
} */
.compensate-for-scrollbar {
  margin: 0 !important;
  padding: 0 !important;
  overflow: inherit !important;
}

/* Contact Form */
.contact-formWrapper {
  color: #fff;
  background: #ba5621d9;
  border: 3px solid var(--color-primary);
  border-radius: 2.5rem;
  position: relative;
  padding: 2rem 1.75rem 2rem;
}

.contact-formWrapper--modal {
  background: #fff;
  border-color: transparent;
  border-radius: 0.25rem;
  padding: 2rem 1.5rem;
}

.contact-formWrapper>.heading {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
  max-width: 85%;
  margin-bottom: 2rem;
}

.contact-formWrapper p {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin: 1rem 0;
}

.contact-formWrapper--modal p {
  text-align: left;
  margin: 0-5px 0 0.25rem;
}

.contact-form__fields {
  margin: 0.5rem 0.45rem;
}

.contact-form__fields :is(input:not([type="file"], [type="checkbox"]),
  textarea,
  select,
  .contact-form__fields--file > label) {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  margin: 0;
  resize: none;
}

.contact-formWrapper--modal .contact-form__fields :is(input:not([type="file"], [type="checkbox"]),
  textarea,
  select,
  .contact-form__fields--file > label) {
  border: 2px solid var(--color-primary);
}

.contact-form__fields :is(input, textarea, select, .contact-form__fields--file > label),
.contact-form__fields :is(input, textarea, select)::placeholder {
  color: #000 !important;
  font-size: 1rem;
  font-weight: 400;
}

.contact-form__fields--file>label {
  width: 100%;
  position: relative;
  border: 2px dashed var(--color-primary) !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.6rem 1rem !important;
}

.contact-form__fields--file>label>i {
  font-size: 1.75rem;
}

.contact-form__fields--file>label>input {
  display: none;
}

.contact-form__fields button:not(.themeBtn) {
  width: 100%;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: 1px;
  font-weight: 600;
  border: none;
  background: var(--color-primary);
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
}

.counter_logo .heading {
  font-size: 12px;
  font-weight: 600;
}

.counter_logo img {
  filter: invert(1);
  width: 54%;
}

.counter_logo {
  padding-left: 24px;
}

.header-main .header-main__nav li a {
  font-size: 15px;
  font-weight: 600;
  width: max-content;
  color: #fff;
}

.header-main__nav li a.themeBtn {
  color: #000 !important;
  padding: 1rem 2rem;
  animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 2px #fff;
  background-color: #fff;
}

.buttom-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.buttom-nav li a {
  font-size: 16px;
  padding: 3px 19px;
}

.header-buttom {
  background: #f4f3fb;
  padding: 10px 0;
  margin-top: 7px;
  text-align: center;
}

.buttom-nav li a:hover {
  color: var(--color-primary);
}

.banner-content__heading span {
  color: #fff;
  display: block;
}

.banner-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}

.banner-btn a:first-child {
  background: var(--c2);
}

.banner-btn a {
  transform: translateY(10px);
  transition: all 0.5s;
}

.banner-btn a:hover {
  transform: translateY(0px);
}

.banner-img {}

.banner_img_tab {
  width: 100%;
  height: 100%;
}

.banner_img_tab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-vecter ul {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 30px;
}

.solution-btn {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.solution-content h4 {
  font-size: 27px;
  line-height: 35px;
  color: #e9ce0b;
  font-weight: bold;
}

.solution-content p {
  font-size: 16px;
  line-height: 30px;
  color: var(--white);
  font-weight: 200;
  margin-bottom: 0;
}

.solution {
  background: #2a2b2c;
  position: relative;
  padding: 70px 0;
}

.solution::before {
  content: "";
  background-image: url(../images/lines-orange.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0) invert(1);
}

.solution .heading {
  color: var(--white);
  font-size: 46px;
  font-weight: bold;
  width: 85%;
  margin: auto;
  padding-bottom: 0;
}

.solution-main-item {
  display: flex !important;
}

.solution .slick-arrow::before {
  color: #fff;
  opacity: 1;
  font-size: 5.5rem;
  font-family: boxicons !important;
  transition: all 300ms ease-in-out;
}

.solution .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  display: inline-flex;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  justify-content: center;
  background: transparent;
  transition: all 300ms ease-in-out;
  z-index: 111;
  color: #fff !important;
}

.solution .slick-next {
  right: -5rem;
}

.solution .slick-prev {
  left: -5rem;
}

.solution .slick-prev::before {
  content: "\ea4d";
}

.solution .slick-next::before {
  content: "\ea50";
}

.solution .slick-arrow:hover::before {
  color: var(--color-primary);
}

.custom-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 1.5rem 0;
}

.custom-tabs__item> :is(a, button) {
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: capitalize;
  background: 0 0;
  border: none;
  outline: 0;
  transition: 0.3s;
  background: var(--c2);
}

.custom-tabs__item> :is(a, button).active {
  background: #414243;
}

.portfolio__img {
  width: 100%;
  height: 500px;
  cursor: pointer;
  position: relative;
}

.portfolio__img::after {
  font-family: boxicons !important;
  background: #0000005f;
  position: absolute;
  inset: 0;
  color: #fff;
  font-size: 3rem;
  content: "\ebc2";
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

.services--overlay::after,
.services__bg {
  opacity: 90%;
  width: 100%;
  position: absolute;
}

.portfolio__img:hover::after {
  opacity: 1;
  visibility: visible;
}

.portfolio__img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 5s;
}

.portfolio__img:hover img {
  object-position: bottom;
}

/* Arrow Link button */
.arrowBtn {
  color: var(--c2);
  display: inline-block;
  font-weight: 800;
  background-color: transparent;
  border: 0;
  margin: 5px;
  margin-right: 0;
  cursor: pointer;
  font-size: 16px;
}

.arrowBtn:hover {
  color: #191e4f;
}

.arrowBtn::after {
  content: "";
  width: 46px;
  height: 46px;
  background-image: url(../images/arrow-white-double.svg);
  background-position: -17px center;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  background-color: var(--c2);
  border-radius: 0;
  padding: 1rem;
  margin-left: 1rem;
  transition: all 0.3s ease-in-out;
}

.arrowBtn:hover::after {
  background-position: 20px center;
  background-color: #191e4f;
}

a.arrowBtn.change_btn:after {
  content: "";
  background-color: var(--color-primary);
}

a.arrowBtn.change_btn {
  color: var(--color-primary);
}

.contact-sec-form input {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  padding-left: 20px;
  border: 0.9px solid #777;
  margin: 0.75rem 0;
}

.contact-sec-form h5 {
  font-size: 27px;
  margin-bottom: 20px;
  color: #000;
  font-weight: bold;
  line-height: 36px;
}

.contact-sec {
  padding: 0px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.contact-sec .FormContact {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px 0;
}

/* Lead PopUp Section Begin */

.lead_popup .modal-content {
  border: 0;
  border-radius: 20px;
  padding: 40px 60px 10px;
  background: #fff;
  background-size: cover;
}

.lead_popup .modal-header button {
  background: #ff6026;
  opacity: 1;
  text-shadow: none;
  color: var(--white);
  font-size: 35px;
  font-weight: 300;
  width: 50px;
  border-radius: 50px;
  height: 50px;
  line-height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.5s ease-in-out;
}

.lead_popup .modal-header button:hover {
  background: #002b76;
}

.lead_popup .modal-header {
  padding: 0;
  border: 0;
}

.lead_popup h2 {
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 30px;
}

.lead_popup [type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 48px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--black);
  font-size: 16px;
  margin-bottom: 23px;
}

.lead_popup [type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #002b76;
  border-radius: 100%;
  background: transparent;
}

.lead_popup [type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.lead_popup [type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #002b76;
  position: absolute;
  top: 4px;
  left: 19px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.lead_popup [type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.lead_popup input {
  height: 50px;
  border-radius: 0;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}

.lead_popup .modal-footer {
  border: 0;
}

.lead_popup .modal-content:before {
  content: "";
  position: absolute;
  background: rgb(255 255 255 / 85%);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 20px;
}

.lead_popup .modal-btn ul li button {
  background: #ff6026;
  border: 0;
  padding: 10px 50px;
  font-size: 20px;
  border-radius: 50px;
  font-size: 18px;
}

.lead_popup .modal-btn ul li button:hover {
  background: #002b76;
  color: var(--white);
}

.lead_popup input.btn-success {
  background: var(--orange);
  border: 0;
  padding: 15px 0;
  height: auto;
  border-radius: 50px;
  width: auto;
  padding: 13px 60px;
  display: table;
  margin: 10px auto;
  cursor: pointer;
}

.modal-btn ul {
  display: flex;
  justify-content: space-between;
}

/* Lead PopUp Section End */

footer {
  background-image: url("../images/footer_bg.jpg");
  padding: 80px 0 0px;
  /* background-position: center; */
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.footer_about {
  color: #fff;
  font-weight: 400;
  line-height: 27px;
  width: 479px;
  position: relative;
}

.footer_about ul {
  margin: 4rem 0 0;
  padding: 0;
}

.footer_about ul li :is(a, address) {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  margin: 1rem 0;
}

.footer_about :is(a, address) i {
  font-size: 24px;
}

.footer_about p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}

.footer_about p i {
  font-size: 24px;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
}

.footer_form {
  position: relative;
}

.callback input {
  padding: 14px 10px;
  /* margin: 13px 0px; */
  border-radius: 10px;
}

.callback testarea {
  height: 185px;
}

callback textarea {
  height: 100px !important;
}

textarea.form-control {
  height: 144px;
  margin-bottom: 14px;
  border-radius: 10px;
}

.callback button {
  background: #002b76;
  color: #fff;
  width: 208px;
  border: 1px solid #002b76;
  height: 49px;
}

.callback {
  margin: 7px 0px;
}

.copy_right {
  position: relative;
  margin-top: 42px;
}

.card_img {
  position: relative;
  text-align: right;
}

.card_img img {
  width: 30%;
  margin-left: auto;
  display: block;
  margin: auto;
}

.copy_right p {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
}

.form_heading {
  margin-top: -35px;
  position: relative;
}

.form_heading h4 {
  font-weight: 500;
  color: #fff;
}

.author_name {
  display: inline-block;
  /* text-align: center; */
}

.author_name h3 {
  color: #002a6e;
  font-size: 20px;
  font-weight: bold;
}

.rating_sec ul li {
  display: inline-block;
  font-size: 19px;
  padding: 0 2px 0px 0px;
  color: #df0b1a;
}

.trustpilot-logo {
  display: inline-block;
  float: right;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.reviews_card {
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 20px 10px #dddddd;
  padding: 43px 21px;
  border-radius: 10px;
  height: auto;
  margin-bottom: 30px;
}

.rating_sec ul {
  padding: 0;
}

.reviews_card p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.review_author {
  margin-top: 33px;
}

.reviews:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url("../images/lines-orange.svg");
  opacity: 0.2;
  z-index: -1;
  right: 0;
}

.reviews {
  position: relative;
}

.projects_card {
  text-align: center;
  box-shadow: 0px 0px 22px 2px #b7b7b7;
  padding: 30px 10px;
  border-radius: 10px;
  border: 1px solid #002a6e;
  transition: 1s cubic-bezier(0.27, 1.15, 0.58, 1);
  height: auto;
}

section.projects {
  margin: 6rem 0;
}

.projects_card:hover {
  transform: scale(1.1);
  background: #002a6e;
  color: #fff;
}

.projects_card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.projects_card:hover .card_img img {
  filter: brightness(0) invert(1);
}

.card_img {
  text-align: center;
}

.card_img img {}

.industry {
  background: url("../images/industries-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 99;
  padding: 96px 0px;
}

.industry_img img {
  width: 87px;
}

.industry_img {
  background: #fff;
  text-align: center;
  border-radius: 10px;
  /* padding: 21px 0px; */
  width: 100%;
  margin: 0.75rem 0;
  position: relative;
  height: 201px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

section.industry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}

.reviews {
  background: #f4f3fb;
  position: relative;
  z-index: 9;
  padding: 106px 0px;
}

/* others */
.others {
  position: relative;
  padding: 5rem 0;
  isolation: isolate;
  overflow: hidden;
}

.others__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.others-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.others-list__single {
  width: 100%;
  border: 1px solid #002a6e;
  padding: 17px 20px;
  border-radius: 0.5rem;
  transition: all 300ms;
}

.others-list__single:hover {
  background: var(--c2);
  color: #fff;
}

.others-list__single:hover * {
  color: #fff !important;
}

.others-list__single .title {
  font-size: 21px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.25rem;
}

.others-list__single .title span {
  color: #ff402d;
}

.others-list__single p {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
}

.others-img {
  width: 100%;
  height: 100%;
}

.others-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4) translateX(4rem);
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

/* design-box */
.design-box:hover {
  transform: scale(1.05);
  background-color: #002a6e;
  color: #fff;
  box-shadow: none;
}

.design-box-con h5 {
  color: var(--c1);
  font-size: 16px;
  font-weight: 600;
}

.design-box-con p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.design-box-con h4 span {
  color: var(--c1);
  font-weight: 300;
  font-size: 16px;
}

.design-box {
  background-color: #fff;
  padding: 40px 20px;
  transition: 0.5s;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0px 0px 10px -4px;
}

.design,
.testimonial {
  padding: 50px 0;
}

.design-box-menu::-webkit-scrollbar-thumb:hover {
  background: #002a6e;
}

.design-box-btn a {
  width: 70%;
  margin: 0 auto;
  background-color: #002a6e;
  font-weight: 400;
  font-size: 20px;
  padding: 10px 0;
}

.design-box-menu {
  height: 238px;
  overflow: auto;
  text-align: left;
  margin: 20px 0;
}

.design-box-menu::-webkit-scrollbar {
  width: 5px;
}

.design-box-menu::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #e6e5e5;
  border-radius: 10px;
  background: #e6e5e5;
}

.design-box-menu::-webkit-scrollbar-thumb {
  background: #002a6e;
  border-radius: 10px;
}

.design-box-con h3 {
  font-size: 29px;
  font-weight: 700;
  color: #ff402d;
}

.design-box-con h4 del {
  text-decoration: line-through !important;
  font-size: 20px;
  font-weight: 400;
  display: block;
  margin: 10px 0;
}

.design-box-menu ul li {
  margin: 10px;
  position: relative;
  padding-left: 18px;
  padding-top: 3px;
}

.design-box-menu ul li:before {
  content: "";
  background: url(../images/tick-arrow.png);
  color: #bf1f0b;
  font-size: 17px;
  margin-right: 8px;
  width: 13px;
  height: 12px;
  display: inline-block;
  top: 8px;
  position: absolute;
  left: 0;
}

.design-box-con h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
}

.design-box:hover p {
  color: #fff;
}

.design-box:hover .design-box-btn a {
  background-color: #fff !important;
  color: #002a6e;
}

/*Started POPUp Section Begin*/

.started_popup_sec .modal-content {
  background: #fff;
  background-size: cover;
  padding: 30px 20px 50px;
  position: relative;
  border: 0;
  box-shadow: 0px 0px 50px rgb(0 0 0 / 50%);
}

.started_popup_sec .modal-header {
  padding: 0;
  border: 0;
}

.started_popup_sec .modal-header button {
  position: absolute;
  background: var(--c2);
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 35px;
  opacity: 1;
  text-shadow: none;
  font-weight: 200;
  border-radius: 50px;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.started_popup_sec .modal-header button span {
  position: relative;
  left: -2px;
}

.started_popup_sec .modal-content:before {
  content: "";
  background: rgb(255 255 255 / 75%);
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
  right: 0;
}

.form_head_Sec {
  text-align: center;
}

.form_head_Sec h2 {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: var(--white);
  margin-bottom: 0;
  background: var(--c2);
  padding: 10px 0;
  margin: 10px 0;
  border-radius: 50px;
}

.form_head_Sec h4 {
  font-size: 35px;
  font-weight: 600;
  margin: 0;
}

.form_head_Sec h3 {
  color: var(--c2);
  font-size: 29px;
  font-weight: 600;
  margin: 0;
  padding-top: 10px;
}

.started_popup_sec input {
  height: 50px;
  margin-bottom: 10px !important;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #002a6e;
  padding: 10px 20px;
  font-size: 13px;
}

.started_popup_sec select {
  height: 50px;
  margin-bottom: 10px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #002a6e;
  padding: 10px 20px;
  font-size: 13px;
}

.started_popup_sec textarea {
  height: 130px;
  font-size: 13px;
  padding: 15px 10px;
  resize: none;
  border-radius: 10px;
  border: 1px solid #002a6e;
}

.started_popup_sec form {
  padding-top: 20px;
}

.btn_form input {
  background: var(--color-primary);
  color: var(--white);
  font-size: 19px;
  border: 0;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.btn_form input:hover {
  background: var(--c2);
  border: 0;
}

/*Started POPUp Section End*/

.slick-slide {
  margin-right: 0;
}

.contact-sec-item {
  width: 100%;
  height: 100%;
}

.contact-sec-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contcat-sec-content .iti.iti--allow-dropdown {
  margin: 0.75rem 0;
}

/*Top Ad Banner*/
.custom-top-banner {
  width: 100%;
  display: none;
  overflow: hidden;
}

.custom-top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 992px) {
  .custom-top-banner img {
    height: 15px;
  }
}

/*Top Ad Banner*/