@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraBold.ttf");
  font-weight: 800;
  font-style: normal;
}

:root {
  --font_color_primary: #fff;
  --font_color_secondary: #121212;
  --font_size_paragraph: 22px;
  --font_weight_paragraph: 600;
  --primary_color: #bf0a30;
  --secondar_color: #002868;
  --subtitle-light: #ffffffa3;
  --subtitle-dark: #12121291;
}

body,
html {
  width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 0;
}

body {
  font-family: "Poppins";
  font-size: var(--font_size_paragraph);
  font-weight: var(--font_weight_paragraph);
}

.padding {
  padding: 150px 0px;
}

ul {
  padding-left: 0;
  margin: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1440px;
}

.img-div {
  width: 100%;
}

.img-div img {
  width: 100%;
  object-fit: contain;
}

.section-bg-text {
  font-size: 14vw;
  font-weight: 800;
  text-align: center;
  background: -webkit-linear-gradient(
    rgba(0, 28, 73, 1) 20%,
    rgb(0 28 73 / 28%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 90%;
  text-transform: uppercase;
}

header .logo-wrapper img {
  max-width: 150px;
  margin-top: -5px;
}

header ul {
  display: flex;
  justify-content: end;
}

.desktop-header-wrapper {
  position: fixed;
  top: 15px;
  width: 100%;
  z-index: 9;
  background: transparent;
}

.header-desktop {
  background-color: #ffffff9e;
  border-radius: 50px;
  padding: 10px 50px;
  backdrop-filter: blur(5px);
}

.header-desktop-menu ul li {
  padding: 0px 35px 0px 0px;
}

.header-desktop-menu ul li a {
  transition: 0.3s all;
}

.header-desktop-menu ul li a:hover {
  color: var(--primary_color);
}

.header-desktop-menu ul li:last-child {
  padding: 0px;
}

.header-mobile-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  background: #ffffff9e;
  backdrop-filter: blur(5px);
  border-radius: 30px;
  height: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: 0.4s all;
}

.header-mobile-menu.show {
  z-index: 1;
}

.header-mobile-menu ul {
  padding: 10px 0px;
}

.header-mobile-menu ul li {
  margin-bottom: 30px;
}

.header-mobile-menu ul li:last-child {
  margin-bottom: 0px;
}

.header-btn {
  float: right;
  background: none;
  border: none;
  font-size: 22px;
}

header ul li a {
  color: var(--font_color_secondary);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
}

header ul li a.active {
  font-weight: 700;
}

.main-banner {
  height: 100vh;
}

.main-banner video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

.main-heading-wrapper h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
}

.button-wrapper a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 60px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  padding: 0px 20px;
}

.button-wrapper a .overlay-btn {
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  height: 0%;
  background: #0000003b;
  transition: 0.3s all;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.button-wrapper a .overlay-btn.red {
  background: var(--primary_color);
  z-index: -1;
}

.button-wrapper a:hover .overlay-btn {
  height: 160%;
  top: -35px;
}

.button-wrapper a.red {
  color: var(--font_color_primary);
  background-color: var(--primary_color);
}

.button-wrapper a.transparent {
  border: 1px solid var(--primary_color);
  color: var(--primary_color);
}

.button-wrapper a.transparent:hover {
  color: var(--font_color_primary);
}

.button-wrapper a.white {
  background-color: var(--font_color_primary);
  color: var(--secondar_color);
}

.form-wrapper form input[type="submit"] {
  border: 1px solid var(--font_color_primary);
  color: var(--font_color_primary);
  border-radius: 8px;
  padding: 0px;
  min-width: 240px;
  height: 60px;
  padding: 0px 20px;
}

.scroll-main-wrapper {
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-main-wrapper p {
  color: var(--font_color_primary);
  font-size: 12px;
}

.scroll-main-wrapper .animation-scroll-wrapper {
  border: 1px solid var(--font_color_primary);
  display: flex;
  justify-content: center;
  border-radius: 50px;
  height: 80px;
  width: 40px;
  margin-bottom: 10px;
  position: relative;
}

.scroll-main-wrapper a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-main-wrapper .animation-scroll-wrapper img {
  position: absolute;
  animation-name: scroller_animation;
  animation-duration: 2.2s;
  animation-delay: 0.8s;
  animation-iteration-count: infinite;
}

.heading-section-wrapper .section-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 75px;
  background: -webkit-linear-gradient(180deg, #002868, #bf0a30 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-section-wrapper .subtitle-wrapper .subtitle-dark,
.heading-section-wrapper .subtitle-light {
  text-transform: uppercase;
  font-size: 24px;
  color: var(--subtitle-dark);
  font-weight: 600;
  margin: 0px;
}

.heading-section-wrapper .subtitle-light {
  color: var(--subtitle-light);
}

.image-text-section .main-img {
  border-radius: 20px;
  overflow: hidden;
  max-width: 550px;
  transition: 0.7s all;
}

.image-text-section img {
  border-radius: 20px;
}

.image-text-section .image-wrapper:hover img,
.image-text-section .image-wrapper:hover .main-img {
  box-shadow: 0 0 15px 5px #00000021;
}

.image-text-section img {
  transition: 0.7s all;
}

.image-text-section .image-wrapper:hover .main-img img {
  transform: scale(1.2);
}

.image-text-section .image-top {
  position: absolute;
  z-index: 1;
  top: 50px;
  left: 0px;
}

.image-text-section .image-bottom {
  position: absolute;
  z-index: 1;
  bottom: 50px;
  right: 0px;
}

.heading-section-wrapper p.short-text {
  max-width: 1200px;
  margin: auto;
}

.blog-box-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.blog-box-wrapper .img-div {
  height: 580px;
}

.blog-box-wrapper .img-div img {
  height: 100%;
  object-fit: cover;
}

.blog-box-wrapper .blog-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #00000078;
  padding: 15px 0px;
  z-index: 1;
  height: 130px;
}

.blog-box-wrapper .blog-info .blog-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--font_color_primary);
  padding: 0px 5px;
}

.blog-box-wrapper .blog-info .publish-date {
  color: var(--font_color_primary);
  font-weight: 400;
  font-size: 18px;
}

.feature-box .img-div img {
  max-height: 80px;
  display: block;
  margin: auto;
}

.feature-box .counter-wrapper .counter {
  color: var(--primary_color);
  font-size: 130px;
  font-weight: 800;
  margin: 10px 0px 0px;
}

.feature-box .counter-wrapper .plus-icon {
  font-weight: 400;
  font-size: 70px;
  color: var(--font_color_secondary);
}

.feature-box p {
  font-size: 26px;
  font-weight: 700;
  text-transform: capitalize;
}

.what-we-do-section {
  background: url("../images/what-we-do.webp") center center no-repeat;
  background-size: cover;
  padding: 50px 0px;
}

.our-values-section {
  background: url("../images/blue-section.webp") center center no-repeat;
  background-size: cover;
  padding: 30px 0px 0px;
}

.value-box-wrapper.top-margin {
  margin-top: 120px;
}

.value-box-wrapper .value-box-content .box-title {
  color: var(--font_color_primary);
  text-transform: capitalize;
  font-weight: 700;
  font-size: 32px;
  height: 76px;
}

.value-box-wrapper .value-box-content p {
  color: var(--font_color_primary);
  font-size: 18px;
  font-weight: 400;
  min-height: 110px;
}

.value-box-wrapper .value-box-icon {
  padding: 0px 15px;
  margin-top: -20px;
}

.red-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #590013c9;
  width: 100%;
  height: 100%;
}

.blue-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00286875;
  width: 100%;
  height: 100%;
}

.red-section .container,
.blue-section .container {
  position: relative;
  z-index: 1;
}

.red-section .heading-section-wrapper .section-title,
.red-section .heading-section-wrapper p,
.blue-section .heading-section-wrapper .section-title,
.blue-section .heading-section-wrapper p {
  background: none;
  -webkit-text-fill-color: var(--font_color_primary);
}

.service-box-wrapper {
  background-color: var(--font_color_secondary);
  padding: 20px;
  border-radius: 20px;
  position: relative;
  min-height: 500px;
}

.service-box-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: center center no-repeat;
  background-size: cover;
  opacity: 0;
  transition: 0.5s all;
}

.service-box-wrapper:hover::after {
  opacity: 1;
}

.service-box-wrapper.box-1::after {
  background-image: url("../images/service1.webp");
}

.service-box-wrapper.box-2::after {
  background-image: url("../images/box-2.webp");
}

.service-box-wrapper.box-3::after {
  background-image: url("../images/box-3.webp");
}

.service-box-wrapper.box-4::after {
  background-image: url("../images/box-4.webp");
}

.service-box-wrapper .service-number-wrapper {
  margin-bottom: 130px;
}

.service-box-wrapper .service-number-wrapper p {
  color: #ffffff7a;
  font-size: 18px;
  font-weight: 400;
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff7a;
  transition: 0.5s all;
}

.service-box-wrapper:hover .service-number-wrapper p {
  color: var(--font_color_primary);
  border-color: var(--font_color_primary);
}

.service-box-wrapper .img-div img {
  max-width: 28px;
}

.service-box-wrapper .service-title {
  color: var(--font_color_primary);
  font-size: 22px;
  font-weight: 600;
  margin-top: 25px;
}

.service-box-wrapper p {
  font-size: 16px;
  color: var(--font_color_primary);
  font-weight: 400;
  margin-top: 25px;
  max-width: 340px;
}

.services-slider .owl-dots {
  display: none;
}

.newsletter-section {
  background: url("../images/newsletter-bg.webp") center center no-repeat;
  background-size: cover;
}

.newsletter-section form input,
.newsletter-section form select,
.newsletter-section form textarea {
  background: transparent;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--font_color_primary);
  outline: none;
  color: var(--font_color_primary);
  padding: 18px 0px;
  border-radius: 0px;
}

.newsletter-section form select option {
  color: var(--font_color_secondary);
}

.newsletter-section form input::placeholder,
.newsletter-section form select::placeholder,
.newsletter-section form textarea::placeholder {
  color: var(--font_color_primary);
}

.newsletter-section form .contact-type-selection .contact-selection-title {
  font-size: 16px;
  color: var(--font_color_primary);
}

.newsletter-section form .contact-type-selection input {
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 18px;
  height: 18px;
  padding: 0px;
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 50%;
  margin-right: 8px;
}

.newsletter-section form .contact-type-selection input[type="radio"]:checked {
  background-color: var(--primary_color);
}

.newsletter-section form .contact-type-selection label {
  font-size: 16px;
  color: var(--font_color_primary);
  font-weight: 400;
}

footer {
  padding: 50px 0px;
}

footer .logo-wrapper img {
  max-width: 300px;
}

footer .footer-links .links-heading {
  color: var(--primary_color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

footer .footer-links ul {
  display: flex;
}

footer .footer-links ul.flex-wrap li {
  padding: 0px 15px 10px 0px;
}

footer .footer-links ul li {
  padding: 0px 15px;
}

footer .footer-links ul li:first-child {
  padding: 0px 15px 0px 0px;
}

footer .links-border ul li {
  border-right: 1px solid var(--font_color_secondary);
}

footer .links-border ul li:last-child {
  border-right: none;
}

footer .footer-bottom-wrapper .footer-links ul li a,
footer .footer-bottom-wrapper p {
  color: var(--font_color_secondary);
  font-size: 16px;
  font-weight: 700;
}

footer .footer-bottom-wrapper {
  border-top: 1px solid var(--font_color_secondary);
  padding-top: 50px;
  margin-top: 50px;
}

footer .footer-links ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #8b8b8b !important;
  text-transform: capitalize;
  transition: 0.4s all;
}

footer .footer-links ul li a:hover {
  color: var(--font_color_secondary) !important;
}

footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/footer-image.png) center right no-repeat;
  background-size: contain;
}

footer .container {
  position: relative;
  z-index: 1;
}

.video-tablet {
  display: none;
}

.video-mobile {
  display: none;
}

@keyframes scroller_animation {
  0% {
    top: 0;
  }

  50% {
    top: 60%;
  }

  100% {
    top: 0;
  }
}

@media (max-width: 1500px) {
  section,
  header,
  footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .padding {
    padding: 100px 40px;
  }

  .what-we-do-section .container {
    padding: 0px 50px;
  }

  :root {
    --font_size_paragraph: 18px;
  }

  .feature-box .counter-wrapper .counter {
    font-size: 65px;
  }

  .feature-box p {
    font-size: 16px;
  }

  .feature-box .counter-wrapper .plus-icon {
    font-size: 36px;
  }

  .main-heading-wrapper h1 {
    font-size: 64px;
    line-height: 68px;
  }
}

@media (max-width: 1380px) {
  .service-box-wrapper .service-number-wrapper {
    margin-bottom: 80px;
  }
}

@media (max-width: 1350px) {
  .image-text-section .main-img {
    max-width: 475px;
  }

  .image-text-section .image-top {
    max-width: 180px;
  }

  .image-text-section .image-bottom {
    max-width: 170px;
  }
}

@media (max-width: 1280px) {
  .service-box-wrapper p {
    max-width: inherit;
  }

  footer .footer-links ul li a {
    font-size: 16px;
  }

  .service-box-wrapper {
    min-height: 430px;
  }
}

@media (max-width: 1199px) {
  .image-text-section .image-top,
  .image-text-section .image-bottom {
    display: none;
  }

  .image-text-section .main-img {
    max-width: inherit;
  }

  .row-center {
    align-items: center;
  }

  .blog-box-wrapper {
    margin-bottom: 30px;
  }

  .our-values-section {
    padding: 30px 0px;
  }

  .value-box-wrapper.top-margin {
    margin-top: 75px;
  }
}

@media (max-width: 991px) {
  .value-box-wrapper .value-box-content p {
    min-height: 130px;
  }

  .service-box-wrapper {
    min-height: 500px;
  }

  .feature-box p {
    font-size: 12px;
  }

  .heading-section-wrapper .subtitle-wrapper .subtitle-dark,
  .heading-section-wrapper .subtitle-light {
    font-size: 18px;
  }

  .subtitle-wrapper img {
    max-width: 35px;
  }

  .heading-section-wrapper .section-title {
    font-size: 42px;
  }

  .newsletter-section form .contact-type-selection .contact-selection-title,
  .newsletter-section form .contact-type-selection label {
    font-size: 12px;
  }

  footer .footer-bottom-wrapper p {
    text-align: center;
    margin-bottom: 20px;
  }

  .video-desktop {
    display: none;
  }

  .video-tablet {
    display: flex;
  }

  header ul li a {
    font-size: 18px;
    font-weight: 600;
  }
}

@media (max-width: 767px) {
  .value-box-wrapper .value-box-content p {
    min-height: inherit;
  }

  .value-box-wrapper .value-box-content .box-title {
    height: auto;
  }

  .service-box-wrapper {
    min-height: 450px;
  }

  section,
  header,
  footer {
    padding-left: 0px;
    padding-right: 0px;
  }

  .padding {
    padding: 50px 0px;
  }

  .what-we-do-section .container {
    padding: 0px 20px;
    padding: 0px var(--bs-gutter-x, 0.75rem);
  }

  .heading-section-wrapper .section-title {
    line-height: 55px;
  }

  .value-box-wrapper .value-box-icon {
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .value-box-wrapper.top-margin {
    margin-top: 30px;
  }

  .value-box-wrapper {
    margin-top: 30px;
    text-align: center;
  }

  .section-bg-text {
    font-size: 21vw;
    line-height: 90%;
  }

  .value-box-wrapper .value-box-content .box-title {
    font-size: 22px;
  }

  .heading-section-wrapper .subtitle-wrapper .subtitle-dark,
  .heading-section-wrapper .subtitle-light {
    margin-bottom: 15px;
  }

  .feature-box p {
    font-size: 18px;
  }

  footer::after {
    right: -100px;
    background-size: contain;
  }
}

@media (max-width: 576px) {
  .header-desktop {
    padding: 10px 30px;
  }

  .scroll-main-wrapper {
    display: none;
  }

  .main-heading-wrapper {
    text-align: center;
  }

  footer .links-border ul li {
    border-right: none;
  }

  footer .footer-links ul li:first-child {
    padding: 0px 5px 0px 0px;
  }

  footer .footer-links ul li {
    padding: 0px 5px;
  }

  footer .footer-links .links-heading {
    text-align: center;
  }

  footer .footer-links ul {
    justify-content: center;
  }

  footer .footer-links ul li a {
    font-size: 15px;
  }

  footer .footer-bottom-wrapper .footer-links ul li a,
  footer .footer-bottom-wrapper p {
    font-size: 12px;
  }

  footer .footer-links ul.flex-wrap li:first-child {
    padding: 0px 15px 10px 0px;
  }

  .newsletter-section form .contact-type-selection .contact-selection-title,
  .newsletter-section form .contact-type-selection label {
    font-size: 16px;
    text-align: left;
    margin-top: 20px;
  }

  .service-box-wrapper {
    height: auto;
    min-height: 400px;
  }

  .service-box-wrapper .service-number-wrapper {
    margin-bottom: 50px;
  }

  .service-box-wrapper p {
    font-size: 14px;
  }

  .heading-section-wrapper .section-title {
    line-height: 36px;
    font-size: 32px;
  }

  .heading-section-wrapper {
    text-align: center;
  }

  :root {
    --font_size_paragraph: 16px;
  }

  .section-bg-text {
    top: 50px;
  }
}

@media (max-width: 490px) {
  .service-box-wrapper {
    min-height: 435px;
  }
}

@media (max-width: 420px) {
  .service-box-wrapper {
    min-height: 480px;
  }
}

@media (max-width: 370px) {
  .service-box-wrapper p {
    font-size: 12px;
  }

  .service-box-wrapper {
    min-height: 450px;
  }
}
