@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --primary: #081129;
  --secondary: #ce0001;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: 'Roboto', sans-serif;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1405px;
  }
}

section {
  position: relative;
}

p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--white);
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

/* img {
  max-width: 100%;
  height: auto;
} */

/* .img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
} */

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-brand img {
  transition: 0.3s ease-in-out;
}

header {
  background-color: #050c1f;
  padding: 8px 0;
}

.star {
  position: absolute;
  z-index: 11;
  left: 21%;
  top: 12px;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2.5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--secondary);
}

.swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 480px) {
  .swiper-container {
    min-height: 320px;
  }
}

.swiper-container-wrapper {
  display: flex;
  flex-flow: column nowrap;
  height: 100vh;
  width: 100vw;
  gap: 1rem;
}

@media (min-width: 480px) {
  .swiper-container-wrapper {
    flex-flow: row nowrap;
  }
}

.swiper-button-next, .swiper-button-prev {
  color: #000;
}

.swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  /* background-color: #fff; */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.swiper-slide .description,
.swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}

.swiper-slide-active .description,
.swiper-slide-active .title {
  opacity: 1;
}

.swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}

.swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}

.gallery-top {
  position: relative;
  width: 85%;
  height: auto;
  margin: 0;
}

.gallery-thumbs {
  width: 15%;
  height: auto;
  margin: 0;
}

.gallery-thumbs .swiper-wrapper {
  flex-direction: row;
}

@media (min-width: 480px) {
  .gallery-thumbs .swiper-wrapper {
    flex-direction: column;
  }
}

.gallery-thumbs .swiper-slide {
  width: 25%;
  flex-flow: row nowrap;
  height: 100%;
  opacity: 0.75;
  cursor: pointer;
}

@media (min-width: 480px) {
  .gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
    width: 100%;
    height: auto !important;
    padding-right: 2rem;
  }
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.slideContent {
  position: absolute;
  top: 0;
  left: 16rem;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.gallery-thumbs .swiper-slide img {
  width: 100%;
}

.gallery-thumbs .swiper-slide-thumb-active img {
  border: 2px solid var(--secondary);
}

.slideContent h1 {
  color: var(--white);
  font-size: 12.5rem;
  line-height: 1;
}

.slideContent p {
  color: var(--white);
  font-size: 1.4375rem;
}

.themeBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
  padding: 1em 2em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.themeBtn:after {
  position: absolute;
  transition: 0.3s;
  content: "";
  width: 0;
  bottom: 0;
  height: 3px;
  background: var(--secondary);
  height: 120%;
  left: -10%;
  transform: skewX(15deg);
  z-index: -1;
}

.themeBtn:hover:after {
  left: -10%;
  width: 120%;
}

.themeBtn i {
  font-size: 1.75rem;
}

.themeBtn:hover {
  color: var(--white);
  border: 1px solid var(--secondary);
}

.themeBtn1::after {
  display: none;
}

.slideContent .btn-group {
  gap: 3rem;
  align-items: center;
}

.playBtn div {
  background-color: var(--secondary);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.playBtn div::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: var(--secondary);
  animation: anscale 1s infinite linear;
  z-index: -1;
}

@keyframes anscale {
  0% {
      opacity: 1;
      transform: scale(0.8);
  }
  100% {
      opacity: 0;
      transform: scale(1.8);
  }
}

.slideContent .btn-group .playBtn {
  border: 1px solid var(--secondary);
  border-radius: 50px;
  padding: 0.875rem;
}

.swiper-container-wrapper .swiper-pagination-bullet {
  background-color: var(--white);
  opacity: 1;
  width: 16px;
  height: 16px;
  position: relative;
}

.swiper-container-wrapper .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  background-color: var(--white);
  width: 1px;
  height: 32px;
  top: 23px;
  left: 0;
  right: -1px;
  margin: auto;
}

.swiper-container-wrapper .swiper-pagination {
  position: absolute;
  top: 0;
  left: 10%;
  display: flex;
  flex-direction: column;
  gap: 2.8125rem;
  bottom: 0;
  margin: auto;
  align-items: flex-start;
  justify-content: center;
  width: auto;
}

.swiper-container-wrapper .swiper-pagination-bullet-active {
  background-color: var(--secondary);
}

.swiper-container-wrapper .swiper-pagination-bullet-active:before {
  background-color: var(--secondary);
}

/* About Sec Css Start */

.aboutSec {
  background: url(../images/aboutBg.webp) center/cover no-repeat;
  padding: 8rem 0;
}

.aboutImg figure {
  display: flex;
}

.secHeading span {
  font-size: 1.25rem;
  display: block;
  text-transform: uppercase;
  position: relative;
  padding-left: 5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: 3px;
}

.secHeading span:before {
  content: "";
  position: absolute;
  background-color: var(--secondary);
  width: 11rem;
  height: 1px;
  left: -6.5rem;
  top: 10px;
}

.secHeading {
  font-size: 6.25rem;
  color: var(--white);
  line-height: 1.1;
}

.aboutContent p {
  font-weight: lighter;
}

.aboutContent .themeBtn {
  border: unset;
  padding: 0;
}

.aboutContent .themeBtn:hover {
  background: unset;
  color: var(--secondary);
}

.aboutImg {
  text-align: end;
  position: relative;
}

.aboutImg:before {
  content: "";
  position: absolute;
  border: 8px solid var(--secondary);
  width: 75%;
  height: 68%;
  top: -2.125rem;
  left: -2.75rem;
}

.aboutImg img {
  z-index: 1;
  position: relative;
}

/* About Sec Css End */

/* Serice Sec Css Start */

.serviceSec {
  background-color: var(--primary);
}

.serviceHeading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.serviceHeading .secHeading span {
  padding-left: 7rem;
}

.serviceHeading .secHeading span:before {
  left: -4.5rem;
}

.serviceContent h3 {
  font-size: 2.25rem;
  color: var(--white);
}

.serviceContent h4 {
  font-size: 2.5rem;
  color: var(--white);
}

.serviceWrap {
  position: relative;
}

.serviceContent {
  position: absolute;
  top: 0;
  bottom: 3rem;
  left: 4rem;
  right: 0;
  display: flex;
  justify-content: end;
  flex-direction: column;
}

.serviceContent p {
  width: 83%;
}

.serviceWrap figure {
  position: relative;
  overflow: hidden;
}

.serviceWrap figure img {
  transition: 0.5s ease-in-out;
}

.serviceWrap:hover figure img {
  transform: scale(1.1);
}

.serviceSlider .slick-next:before,
.serviceSlider .slick-prev:before {
  display: none;
}

.serviceSlider .slick-next {
  color: var(--white);
  position: absolute;
  top: -5.75rem;
  right: 14rem;
  border: 2px solid var(--white);
  width: 4rem;
  height: 4rem;
  border-radius: 50px;
  font-size: 1.375rem;
}

.serviceSlider .slick-prev {
  color: var(--white);
  position: absolute;
  top: -5.75rem;
  right: 18.5rem;
  border: 2px solid var(--white);
  width: 4rem;
  height: 4rem;
  border-radius: 50px;
  font-size: 1.375rem;
  left: inherit;
}

.serviceSlider .slick-prev:hover,
.serviceSlider .slick-next:hover {
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
}

/* Serice Sec Css End */

/* Leadership Sec Css Start */

.leadershipSec {
  background: url(../images/leaderBg.webp) center/cover no-repeat;
  padding: 7rem 0;
}

.leaderContent h4 {
  font-size: 1.375rem;
  color: var(--white);
}

.leaderContent p {
  font-size: 10px;
}

.leaderContent ul {
  display: flex;
  gap: 3px;
  justify-content: center;
}

.leaderContent {
  text-align: center;
  background-color: var(--primary);
  margin-top: -10rem;
  padding: 11rem 0 2rem 0;
}

.leaderContent ul li a {
  background-color: #1b3067;
  color: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  font-size: 0.875rem;
}

.leadershipSec .secHeading span:before {
  left: 32%;
}

.leaderWraps figure img {
  border: 12px solid rgb(220, 220, 220);
  transition: 0.5s ease-in-out;
}

.leaderWraps:hover figure img {
  border: 12px solid #183364;
}

/* Leadership Sec Css End */

/* Work Sec Css Start */

.workSec {
  background-color: var(--primary);
  padding: 3rem 0 4rem 0;
}

.workSec h2 {
  font-size: 70px;
}

.workSec .secHeading span:before {
  left: 35%;
}

.ba-Slider {
  position: relative;
  display: block;
  background: #212121;
  /* border: 1px solid white; */
  margin: 20px auto;
  overflow: hidden;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
}

.slider {
  position: absolute;
  top: calc(50% - 26px);
  left: calc(50% - 44px);
  background: transparent url(../images/work.webp);
  width: 87px;
  height: 87px;
  cursor: pointer;
  background-repeat: no-repeat;
}

.slider::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  left: 0;
  top: 0;
}

.ease {
  transition: width ease 0.5s, left ease 0.5s;
  -moz-transition: width ease 0.5s, left ease 0.5s;
  -webkit-transition: width ease 0.5s, left ease 0.5s;
}

#before img {
  filter: brightness(50%);
}

/* Work Sec Css End */

/* Company Sec Css Start */

.companySec {
  padding: 3rem 0;
}

.companySec {
  background-color: var(--black);
}

.companySec h2 {
  font-size: 3.75rem;
}

.companySearch {
  display: flex;
  align-items: center;
  position: relative;
  margin: 1.375rem 0 2rem 0;
}

.companySearch input {
  border: unset;
  height: 50px;
  padding-left: 1.2rem;
  width: 80%;
  margin: auto;
}

.companySearch input::placeholder {
  font-size: 1.125rem;
  color: #5e5e5e;
  font-weight: 500;
}

.companySearch a {
  position: absolute;
  right: 6rem;
  font-size: 1.125rem;
  color: #5e5e5e;
}

.companyContent h3 {
  font-size: 1.5625rem;
  color: var(--white);
}

.companyContent p {
  font-size: 0.875rem;
  font-weight: lighter;
  width: 52%;
  margin-bottom: 10px;
}

.companyContent .themeBtn {
  border: unset;
  padding: 0;
}

.companyContent .themeBtn:hover {
  background: unset;
  color: var(--secondary);
}

.companyWrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.companyContent {
  position: absolute;
  top: 0;
  bottom: 2.5rem;
  left: 3rem;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.companyLogo {
  position: absolute;
  top: 50%;
  left: 46%;
  background-color: var(--white);
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* Company Sec Css End */

/* Contact Info Sec Css Start */

.contactinfoSec {
  background: url(../images/contactBg.webp) left/cover no-repeat;
}

.information h4 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #9cabb3;
  font-weight: 400;
  margin: 0;
}

.information a {
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: lighter;
}

.information {
  border-bottom: 1px solid var(--white);
  padding-bottom: 10px;
  width: 90%;
}

.information+.information {
  padding-top: 7rem;
}

.information a i {
  color: vaR(--secondary);
  font-size: 1rem;
}

.contactInfo {
  margin-left: 6rem;
}

/* Contact Info Sec Css End */

/* Contact Sec Css Start */

.contactSec {
  background-color: #182c5e;
  padding: 4rem 0 2rem 0;
}

.contactForm .form-group label {
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}

.contactForm .form-group .form-control {
  border-radius: unset;
  border: unset;
  height: 55px;
}

.contactForm .form-group textarea {
  min-height: 8rem;
}

.contactForm .form-group {
  margin-bottom: 1.5rem;
}

.contactSec .secHeading span:before {
  left: 33%;
}

.contactBtn {
  font-size: 1.25rem;
  color: var(--white);
  background-color: var(--secondary);
  text-transform: uppercase;
  padding: 8px 2rem;
  letter-spacing: 3px;
}

.contactBtn:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Contact Sec Css End */

/* Footer Css Start */

footer {
  background-color: var(--primary);
  padding-top: 5rem;
}

footer h3 {
  font-size: 2.0625rem;
  color: var(--white);
}

footer .links li a {
    padding: 0;
  font-size: 1.125rem;
  color: var(--white);
}

footer .links li a:hover {
  color: var(--secondary);
}

.footForm a {
  position: absolute;
  margin-left: -1.5rem;
  color: var(--secondary);
}

.footForm input {
  background: transparent;
  border-left: unset;
  border-radius: unset;
  border-right: unset;
  border-top: unset;
  font-size: 1rem;
  border-bottom: 1px solid var(--white);
  width: 80%;
}

.footForm input::placeholder {
  color: #a3a3a3;
}

.footForm {
  position: relative;
}

.footSocial {
  display: flex;
  gap: 8px;
  margin-top: 2.5rem;
}

.footSocial li a {
  background-color: var(--white);
  height: 3rem;
  width: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  color: #757c85;
}

.footSocial li a:hover {
  background: var(--secondary);
  color: var(--white);
}

.copyRight p {
  color: var(--white);
  margin: 0;
}

.footTerms {
  display: flex;
  justify-content: end;
}

.footTerms li a {
  color: var(--white);
  font-size: 1.125rem;
}

.footTerms li+li {
  border-left: 1px solid var(--white);
}

.footTerms li {
  padding: 0 1.25rem;
}

.copyRight {
  border-top: 1px solid #484d5c;
  margin-top: 3rem;
  padding: 1.7rem 0;
}

/* Footer Css End */
/* / sraachbar start /  */

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 10000;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}

#search input[type="search"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #fff !important;
  background: rgba(0, 0, 0, 0);
  font-size: 55px;
  line-height: 65px;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-family: arial;
}

#search .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
  background-color: limegreen;
  border: black;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  opacity: 1;
  padding: 10px 17px;
  font-size: 27px;
}

.srch-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.srch-btn .themeBtn {
  padding: 15px 120px;
  font-size: 20px;
}

/* / sraachbar end / */

/* loader */
.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--black);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}


/* inner page css start */

.inerBanner {
  position: relative;
}

.inerBanner .inerHeading {
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.375rem;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
}

.inerBanner:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0 0 0 / 30%);
}

.abtpgContent p {
  margin: 0;
}

.abtpgContent p+p {
  margin-top: 2rem;
}

.aboutPage .row+.row {
  margin-top: 4rem;
}

.aboutHeading {
  font-size: 4.0625rem;
  color: var(--white);
  margin: 0 0 1.2rem;
}

.aboutPage {
  background: #1d1d1d;
}

.careerpgContent:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: -moz-linear-gradient(0deg, rgb(25, 45, 94) 0%, rgba(24, 44, 94, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(25, 45, 94) 0%, rgba(24, 44, 94, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(25, 45, 94) 0%, rgba(24, 44, 94, 0) 100%);
  width: 563px;
  height: 100%;
}

.sectionHeading {
  font-size: 4.375rem;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}

.careersPage {
  background-color: var(--black);
  padding: 4rem 0;
}

.careersPage .sectionHeading {
  margin: 0 0 2.5rem;
}

.newsPage {
  background: var(--black);
  padding: 5rem 0;
}

.newsPage .secHeading {
  font-size: 3.75rem;
  text-align: center;
}

.newspgBox figure {
  position: relative;
  overflow: hidden;
  margin: 0 0 2rem;
}

.newspgBox figure:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: -moz-linear-gradient(0deg, rgb(25, 45, 94) 0%, rgba(24, 44, 94, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(25, 45, 94) 0%, rgba(24, 44, 94, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(25, 45, 94) 0%, rgba(24, 44, 94, 0) 100%);
  width: 1404px;
  height: 100%;
  border-radius: 20px;
}

.newspgBox figure img {
  border-radius: 20px 20px 100px 20px;
}

.newspgContent h2 {
  font-size: 2.0625rem;
  color: var(--white);
  margin: 0 0 1.2rem;
}

.newspgContent p {
  font-weight: lighter;
  margin: 0 0 1.5rem;
}

.newspgContent .themeBtn {
  border: 0;
  padding: 0;
}

.newspgBox+.newspgBox {
  margin-top: 3rem;
}

.srvcpgContent figure:before {
  display: none;
}

.srvcpgContent figure img {
  border-radius: 0;
}

.srvcpgContent .newspgContent h3 {
  font-size: 2.25rem;
  color: var(--white);
}

.srvcpgContent .newspgContent h4 {
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 0 1.3rem;
}

.servicePage .secHeading {
  font-size: 6.25rem;
  margin: 0 0 2.5rem;
}

.newspgContent .themeBtn:hover {
  color: var(--secondary);
}

/* inner page css end */



.milit1 {
  border-radius: 20px 20px 100px 20px;
}

.companyWrap figure:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: -moz-linear-gradient(0deg, rgb(25, 45, 94) 0%, rgba(24, 44, 94, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(25, 45, 94) 0%, rgba(24, 44, 94, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(25, 45, 94) 0%, rgba(24, 44, 94, 0) 100%);
  width: 434px;
  height: 100%;
  border-radius: 20px;
}

.menu-main-menu-container {
    margin-left: auto;
}


.blogPagedetail p {
    color: #000;
}
.footForm button {
    border: none;
}
.contactForm button {
    border: none;
}


  /* 404 Page */
  .page-content.notfoundPg {
      text-align: center;
  }

  h1.notfoundHad {
      font-size: 200px;
      color: #081129;
  }
  
  
  .companySec {
    display: none;
}

.readMoreBtn {
    width: 34%;
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1;
    padding: 1em 2em;
    text-transform: uppercase;
    border: 1px solid var(--white);
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.readMoreBtn:hover {
    background: #d10008;
    color: white;
}