/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Local Font */
@font-face {
  font-family: "impact";
  src: url("../fonts/impact.ttf");
}

:root {
  --white: #fff;
  --black: #000;
  --primary: #00126c;
  --secondary: #bd0c0c;

  /* Font Variable */
  --font-text: "Roboto", sans-serif;
  --font-heading: "impact", sans-serif;
}

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

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: var(--font-text);
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.1;
  color: #5a5756;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: var(--font-heading);
}

.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;
}

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

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.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: #D4DCF3;
  z-index: 11113;
}

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

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: var(--secondary);
  font-size: 1.25rem;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 1.2em 2em;
  border-radius: 7px;
  line-height: normal;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

.mainHead {
  color: var(--primary);
  font-weight: 400;
  font-size: 5rem;
  margin: 0;
  text-transform: uppercase;
}

.subHead {
  color: var(--secondary);
  font-size: 2.25rem;
  font-weight: 400;
  font-family: "Roboto";
  text-transform: capitalize;
}

/* !GLOBAL CSS */

/* mouse animation css  */

/* .bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}
@keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
} */

/* mouse animation css  */

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 2.75rem 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  color: var(--primary);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 100vh;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 5rem;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}

.main-slider p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1rem;
  font-size: 1.5625rem;
}

/* !MAIN HERO SLIDER CSS */

/* SEARCH BAR CSS */

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -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;
}

/* !SEARCH BAR CSS */
/* hero section */

.hero-sec {
  background-color: #d4dcf3;
  padding: 0;
  height: 988px;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  color: var(--primary);
  font-size: 100px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-content p {
  color: var(--primary);
  font-size: 33px;
  line-height: 1.4;
  margin-bottom: 49px;
  text-transform: capitalize;
}

.hero-content h4 {
  color: var(--primary);
  font-size: 33px;
  font-weight: 500;
  margin-bottom: 47px;
}

figure.hero-img {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 50vw;
}

.hero-content {
  position: relative;
  z-index: 11;
}

.flag {
  position: absolute;
  top: 0;
  right: -20rem;
  opacity: 11%;
}

/* Education */
section.education {
  padding: 6rem 0 0;
}

.edu-img {
  display: flex;
  flex-direction: column;
  gap: 48px;
  /* margin-top: 5rem; */
}

.edu-list li+li {
  margin-top: 60px;
  padding-top: 5rem;
  /* border-top: 1px solid #dbdbdb; */
}

.education-head .mainHead {
  margin-bottom: 3rem;
}

ul.edu-list {
  padding-right: 2rem;
}

.edu-list li p {
  color: #5a5756;
  line-height: 38px;
}

.edu-list p+p {
  border-top: 1px solid #dbdbdb;
  padding-bottom: 111px;
}

.education .flag {
  position: absolute;
  top: 0;
  opacity: 1;
  right: 0;
  z-index: -1;
}

.limited h1 {
  font-size: 200px;
  -webkit-text-stroke: 1px #a8a8a8;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.clark {
  background-color: #000e53;
}

.clark h1 {
  color: var(--white);
  margin-bottom: 48px;
  text-align: center;
}

.clark-card {
  border: 1px solid #d4dcf3;
  border-radius: 7px;
  padding: 25px 52px 25px 25px;
  display: flex;
  gap: 44px;
  margin-bottom: 30px;
}

.clark-card figure img {
  height: 395px;
  width: 297px;
  object-fit: cover;
  border-radius: 7px;
}

.clark-card p {
  color: var(--white);
  font-size: 28px;
  line-height: 48px;
}

.view-service {
  text-align: center;
  margin-top: 22px;
}

/* Vision */
.vision-content .mainHead {
  line-height: 1.025;
}

.vision-content p {
  margin: 43px 0 32px;
  color: #5a5756;
}

/* footer section */
footer {
  padding-top: 71px;
  background-color: #d4dcf3;
}

footer h3 {
  margin-bottom: 23px;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-text), sans-serif;
  color: var(--primary);
  text-transform: uppercase;
}

.social-link .mail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  margin-bottom: 70px;
}

.social-link .mail i {
  color: var(--secondary);
}

.social-link .facebook {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #00126b;
  display: grid;
  place-items: center;
  color: var(--white);
}

.quicklist li+li {
  margin-top: 13px;
}

.quicklist li a {
  color: #5e78b5;
  position: relative;
}

.quicklist li a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: transform 0.25s ease-out;
}

.quicklist li a:hover::after {
  transform: scaleX(1);
}

footer .copyRight {
  border-top: 1px solid var(--primary);
  padding: 42px 0;
  margin-top: 94px;
}

.copyRight p {
  text-align: center;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
}

/* inner banner */
.hero-sec.inner-banner {
  height: 724px;
}

.inner-banner .hero-content {
  margin-top: 80px;
}

/* contact page */

.form-contact {
  border: 1px solid #dadada;
  border-radius: 32px;
  box-shadow: 0 4px 64px rgba(178 178 178 / 25%);
  padding: 65px 83px 79px;
}


.form-contact .mainHead {
  margin-bottom: 32px;
}

.contact-form .themeBtn {
  border: unset;
  outline: unset;
}

.contact-form .form-control {
  margin-bottom: 32px;
  border: 1px solid #dfdfdf;
  background-color: #f5f5f5;
  padding: 38px 32px;
}

.contact-form .form-contact::placeholder {
  color: #707070;
  font-size: 1.125rem;
  font-weight: 400;
}

.contact-img img {
  box-shadow: 0 4px 64px rgba(178 178 178 / 25%);
  height: 338px;
}


.view-service .themeBtn:hover {
  background: #fff;
  color: #000;
}

.themeBtn:hover {
  background: #000;
  color: #fff;
}

.client-img {
    height: 400px;
    width: 100%;
    object-fit: contain;
}

.vision .subHead {
    margin-bottom: 1.5rem;
}

.contact-img {
  text-align: center;
}
.education .row + .row {
  margin-top: 4rem;
}