@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  background: #fff;
  overflow-x: hidden;
  z-index: 1;
}

@font-face {
  font-family: "Futura Md BT";
  src: url("../fonts/FuturaBT-BoldItalic.eot");
  src: url("../fonts/FuturaBT-BoldItalic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/FuturaBT-BoldItalic.woff2") format("woff2"),
    url("../fonts/FuturaBT-BoldItalic.woff") format("woff"),
    url("../fonts/FuturaBT-BoldItalic.ttf") format("truetype"),
    url("../fonts/FuturaBT-BoldItalic.svg#FuturaBT-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Bold.eot");
  src: url("../fonts/Futura-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Futura-Bold.woff2") format("woff2"),
    url("../fonts/Futura-Bold.woff") format("woff"),
    url("../fonts/Futura-Bold.ttf") format("truetype"),
    url("../fonts/Futura-Bold.svg#Futura-Bold") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/*.container {
    max-width: 1170px;
}*/

:root {
  --white: #ffffff;
  --black: #000;
  --gary-color: #727272;
  --lightgary-color: #b2b9bd;
  --theme-color: #15499d;
  --primary-color: #00a5e9;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
}

h1,
h2,
h3,
h4 {
  /* font-family: 'Futura BdCn BT'; */
  font-family: "Futura";
  color: #000;
}

.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;
}

section {
  padding: 5rem 0;
}

/* 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;
  background: #fff;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;

}

/* .preLoader.black {
  background-color: var(--primary);
  z-index: 11113;
}
.preLoader.white {
  z-index: 11112;
  background-color: var(--theme-color);
} */

.loader {
  width: 100px;
  height: 100px;
  position: relative;
}

.loader div {
  position: absolute;
  width: 35%;
  height: 35%;
  border-radius: 5px;
  animation: load 2s infinite ease-in-out;
}

.loader div:nth-of-type(1) {
  background-color: #B22727;
}

.loader div:nth-of-type(2) {
  background-color: #EE5007;
  animation-delay: 0.5s;
}

.loader div:nth-of-type(3) {
  background-color: #F8CB2E;
  animation-delay: 1s;
}

.loader div:nth-of-type(4) {
  background-color: #006E7F;
  animation-delay: 1.5s;
}

@keyframes load {
  0% {
    transform: translate(0%);
    border-radius: 50%;
  }

  25% {
    transform: translate(200%) rotate(45deg);
    border-radius: 0%;
  }

  50% {
    transform: translate(200%, 200%);
    border-radius: 50%;
  }

  75% {
    transform: translate(0, 200%) rotate(-45deg);
    border-radius: 0%;
  }

  100% {
    transform: translate(0%);
    border-radius: 50%;
  }
}

/* loader */

/* 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 */

/* btn css */

.themeBtn {
  background: var(--primary-color);
  font-size: 1.375rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  padding: 0.69em 1.68em;
  border-radius: 8px;
  line-height: normal;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* btn 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  */

/* navigation css */

.navbar-nav {
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 3rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0;
  display: inline-block;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}

.themeBtn:hover {
  color: var(--white);
  background-color: var(--theme-color);
}

/* .navbar-nav .nav-item:last-child .nav-link {
	background: var(--theme-color);
	font-size: 1rem;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	border-radius: 0;
	padding: 1.04em 1.56em;
	border-radius: 0;
} */
.an-navbar {
  background: var(--white);
  padding: 1.7rem 0;
}

/* navigation css */

.navbar-nav .nav-item .nav-link.themeBtn {
  color: #fff;
  padding: 0.7rem 1.71rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
}

.bannerSec {
  position: relative;
}

.bannerSec .overlay {
  position: absolute;
  top: 16rem;
  /* bottom: 0; */
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.bannerSec .slideContent h2 {
  font-size: 3.75rem;
  color: var(--white);
  text-transform: uppercase;
}

.slideContent {
  text-align: center;
}

.slideContent p {
  font-size: 1.375rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.applySec {
  margin-top: -27rem;
  position: relative;
}

.applySec .row {
  background: var(--white);
  padding: 2rem 0;
  border-radius: 10px;
}

.applyBox {
  text-align: center;
  padding: 1.5rem 2rem;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 10px;
  box-shadow: 0 35px 40px transparent;
}

.applyBox figure {
  width: 120px;
  height: 120px;
  background: rgb(0 165 233 / 8%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.applyBox figure img {
  transition: transform 0.5s;
}

.applyBox:hover figure img {
  transform: scale(1.1);
}

.applyBox h2 {
  font-size: 1.5625rem;
  text-transform: uppercase;
  margin: 1.4rem 0 0.8rem;
}

.applyBox p {
  margin: 0;
  color: #3a3a3a;
  line-height: 1.7;
}

.applyBox:before {
  content: "";
  position: absolute;
  right: 0;
  background: rgb(198 200 201 / 50%);
  height: 178px;
  width: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.applySec .col-md-3:last-child .applyBox:before {
  display: none;
}

.applyBox:hover {
  box-shadow: 0 35px 40px rgb(90 91 93 / 20%);
}

.abtHeading {
  text-align: center;
  margin-bottom: 2rem;
}

.sectionHeading {
  font-size: 3.75rem;
  text-transform: uppercase;
  text-align: center;
}

.para {
  font-size: 1.125rem;
  color: #5a5b5d;
  font-weight: 500;
  line-height: 1.8;
}

.abtImg {
  position: relative;
}

.abtImg a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: auto;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 40px #15499d;
  color: #15499d;
  font-size: 2rem;
}

.abtImg img {
  border-radius: 20px;
}

.aboutSec {
  background: url(../images/abtbglogo.webp) no-repeat center center;
  padding-bottom: 2rem;
}

.serviceSec {
  background: url(../images/servicebg.webp) no-repeat top center/ cover;
}

.serviceBox {
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
  padding: 3rem 2rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: auto;
  overflow: auto;
}

.serviceBox h2 {
  font-size: 1.375rem;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0;
}

.serviceBox a {
  color: #3a3a3a;
  font-size: 1rem;
  line-height: 2;
}

.serviceBox img {
  margin: 1.2rem 0;
}

.serviceBox p {
  color: #3a3a3a;
  font-size: 0.9rem;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.serviceBox p::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background-image: linear-gradient(to top, #ffffff, transparent);
}

.serviceSec {
  padding-bottom: 11rem;
}

.themeBtn.learnBtn {
  font-size: 1rem;
}

.serviceBox:hover {
  box-shadow: 0 20px 50px rgb(21 73 157 / 32%);
}

.serviceBox:hover .themeBtn.learnBtn {
  background: var(--theme-color);
}

.serviceSec .abtHeading {
  margin-bottom: 2.5rem;
}

.interestedSec {
  background: url(../images/interestedbg.webp) no-repeat top center/ cover;
  text-align: center;
  padding: 10rem 0;
}

.interestedSec .sectionHeading {
  font-size: 3.125rem;
  color: var(--white);
  margin: 0 0 2rem;
  line-height: 1.4;
}

.interestedSec .themeBtn.learnBtn {
  font-size: 1.125rem;
  font-weight: 600;
}

.galThumb {
  display: block;
  margin: 0 0 1.5rem;
}

.galThumb img {
  border-radius: 10px;
}

.galThumb.galThumbLast img {
  height: 100%;
  object-fit: cover;
}

.testimonialSec {
  background: url(../images/testimonialbg.webp) no-repeat center center/ cover;
  padding-top: 5rem;
}

.testimonialBox figure {
  width: 170px;
  height: 170px;
  margin: auto;
  box-shadow: 0 0 50px rgb(0 0 0 / 50%);
  border-radius: 50%;
}

.testimonialBox {
  text-align: center;
}

.testimonialContent {
  background: var(--white);
  border-radius: 90px 90px 0 90px;
  padding: 7.5rem 1.4rem 1rem;
  margin-top: -6rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.testimonialContent h2 {
  font-size: 1.375rem;
  text-transform: uppercase;
}

.testimonialContent p {
  color: #3a3a3a;
  line-height: 1.8;
}

.testimonialContent i {
  font-size: 2rem;
}

.gallerySec {
  padding-bottom: 3rem;
}

.testimonialBox:hover .testimonialContent {
  box-shadow: 0 12px 32px rgb(0 0 0 / 12%);
}

.testimonialSec .col-md-3:nth-child(even) .testimonialBox {
  margin-top: 7rem;
}

.testimonialSec .abtHeading {
  margin-bottom: 3.5rem;
}

.contact-us-from {
  background: url(../images/contact-us-bg.webp) no-repeat top center/ cover;
  padding: 5rem 0 14rem;
}

.content-area * {
  color: var(--white);
}

.content-area a {
  color: var(--primary-color);
  font-size: 1.625rem;
  font-weight: 600;
}

.content-area h2 {
  font-size: 3.125rem;
  margin: 1rem 0;
}

.content-area p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* footer-form */

.footer-form-input .form-group input,
.footer-form-input .form-group textarea {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--white);
  outline: 0;
  box-shadow: none;
  border-radius: 0;
  color: var(--white);
  margin-bottom: 2rem;
  padding-left: 0;
  padding-bottom: 1.5rem;
}

.footer-form-input .form-group input::placeholder,
.footer-form-input .form-group textarea::placeholder {
  color: var(--white);
}

.footer-form-input .form-group textarea {
  height: 100px;
  resize: none;
}

.footer-form-btn {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  height: 69px;
  width: 226px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  position: relative;
}

.footer-form-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2rem;
  background-color: var(--white);
  height: 1px;
  width: 100%;
}

.btn-box,
.social-media ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-media li {
  margin-right: 20px;
}

.social-media li i {
  color: #c6c8c9;
}

.social-media h5 {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0;
}

.social-media li:last-child {
  margin-right: 0;
}

/* footer-form */
.footer {
  padding: 15rem 0 0;
  background: url(../images/footer-bg.webp) no-repeat top center/ cover;
  margin-top: -13rem;
}

.logo-content p {
  margin-top: 1rem;
  line-height: 28px;
  font-size: 1.125rem;
  color: var(--black);
}

.quickList h2 {
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 2rem;
  font-family: "Poppins", sans-serif;
}

.quickList h2::after {
  content: "";
  position: absolute;
  background-color: #000;
  height: 2px;
  left: 0;
  bottom: -13px;
  width: 25px;
}

.quickList ul a {
  line-height: 38px;
  color: var(--black);
  font-size: 1.125rem;
  text-transform: uppercase;
}

.margin-top {
  margin-top: 3.5rem;
}

.calFoter li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.contact-details {
  margin-left: 20px;
}

.calFoter li i {
  font-size: 1.563rem;
  color: var(--theme-color);
}

.contact-details a {
  color: var(--black);
  font-size: 0.875rem;
}

.contact-details strong {
  font-size: 0.938rem;
}

.social-icons li {
  margin: 0 5px;
}

.social-icons img {
  width: 40px;
  height: auto;
}

.copyRight p {
  color: var(--black);
}

.quickList ul a:hover,
.contact-details a:hover {
  color: var(--primary-color);
}


/* inner pages css start */

.inerBaner {
  position: relative;
}

.inerBaner h2 {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--white);
}

.galleryPage {
  padding-top: 0;
  padding-bottom: 14rem;
}

.testimonialPage {
  padding-top: 0;
  background: transparent;
  padding-bottom: 12rem;
}

.servicePage {
  padding-top: 0;
  padding-bottom: 15rem;
}

.servicepgContent p,
.servicepgContent ul li {
  font-size: 1.125rem;
  color: #5A5B5D;
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
}

.servicepgContent a {
  display: inline-block;
  color: var(--theme-color);
  font-size: 1.125rem;
}

.servicepgContent :is(a:hover, a:focus) {
  color: var(--primary-color);
}

.servicepgContent .sectionHeading {
  margin: 0 0 1rem;
  font-size: 3.125rem;
}

.servicepgContent :is(p+p, p+a, p+ul, a+p) {
  margin-top: 1.5rem;
}

.imgRadius img {
  border-radius: 20px;
}

.servicePage .row+.row {
  margin-top: 5rem;
}

.servicepgSecond {
  background: rgb(0 165 233 / 2%);
  padding-bottom: 14rem;
}

.contactList ul {
  display: flex;
  justify-content: space-between;
}

.contactList ul li figure {
  width: 250px;
  height: 250px;
  background: #FFFFFF;
  box-shadow: 0 20px 50px rgb(21 73 157 / 20%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
}

.contactList ul li {
  text-align: center;
  flex: 0 0 35%;
}

.contactList ul li h2 {
  font-size: 1.375rem;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}

.contactList ul li p {
  font-size: 1.125rem;
  color: var(--black);
  margin: 0;
}

.contactList ul li a {
  font-size: 1.125rem;
  color: var(--black);
  font-weight: 400;
}

.contactPage .row+.row {
  margin-top: 5rem;
}

.contactPage .servicepgContent .sectionHeading {
  margin: 0 0 0.7rem;
}

.contactPage .servicepgContent {
  margin-bottom: 1.7rem;
}

.contactForm input {
  width: 100%;
  height: 68px;
  border: 1px solid #C0C0C0;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  padding: 0 1.2rem;
  margin: 0 0 1.4rem;
}

.contactForm input::placeholder {
  color: #C0C0C0;
}

.contactForm textarea {
  width: 100%;
  height: 155px;
  border: 1px solid #C0C0C0;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  padding: 1rem 1.2rem;
  margin: 0 0 1.4rem;
  resize: none;
}

.contactForm textarea::placeholder {
  color: #C0C0C0;
}

.contactForm .themeBtn.learnBtn {
  border: 0;
  background: var(--theme-color);
}

.contactPage {
  padding-bottom: 15rem;
  padding-top: 2rem;
}

.contactPage .servicepgContent p {
  color: #343434;
}

/* inner pages css end */



/* Employeement Application CSS  */
.application .innerBody {
  position: relative;
  overflow: hidden;
}

.application .innerBody::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -5%;
  width: 694px;
  height: 694px;
  background: url('../images/overlaycircle.png') no-repeat;
  z-index: -1;
}

.application .innerBody::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 694px;
  height: 694px;
  transform: rotate(180deg);
  background: url('../images/overlaycircle.png') no-repeat;
  z-index: -1;
}

.application .innerBody ul {
  margin-left: 1.5rem;
}

.application .innerBody .card {
  height: 100%;
  padding: 3rem;
  border-radius: 36px;
  border: 0;
  box-shadow: 0 0 35px 0 rgba(194, 194, 194, 0.16);
}

.application .innerBody p,
.application .innerBody ul {
  font-size: 1.125rem;
  color: #828282;
}

.application .innerBody ul li {
  position: relative;
}

.application .innerBody ul li::before {
  content: '';
  background-image: url(../images/locationicon.png);
  position: absolute;
  top: 5px;
  left: -25px;
  width: 15px;
  height: 20px;
}

.application .innerBody ul li:last-child {
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 500;
}

.application .innerBody ul li:last-child span {
  color: var(--primary-color);
  text-transform: uppercase;
  text-decoration: underline !important;
}

.application .innerBody ul li a {
  color: var(--theme-color);
  text-decoration: underline !important;
}

.application .options .optionsItem {
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  border: 1px solid #E9E9E9;
  color: var(--black);
}

.application .options .optionsItem.active,
.application .options .optionsItem:hover {
  background-color: #E9E9E9;
}

.application .options .optionsItem img {
  margin-right: 20px;
}

.application .options .optionsItem h3 {
  text-decoration: underline !important;
}

.application .options .optionsItem p {
  color: var(--black);
  font-size: 1.125rem;
}


.application .card input.form-control {
  padding: 1.8rem !important;
  border-color: #EAEFF0;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
}

.application .card select.form-control {
  height: 60px;
  /* padding: 1.8rem !important; */
  border-color: #EAEFF0;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
}

.application .application .card form a.forgetpass {
  color: var(--primary-color);
  text-decoration: underline !important;
}

.application .themeBtn.btndark {
  background-color: var(--theme-color);
}

.application .themeBtn.btndark:hover {
  background-color: var(--primary-color);
}


.application .card .iconBox {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid #ECECEC;
  display: grid;
  place-items: center;
  margin-right: 12px;
}

.application .card .iconBox img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.application h6 {
  font-size: 1.25rem;
  font-weight: 500;
}

.application h6 span {
  font-size: 2.5rem;
  display: inline-block;
  transform: translateY(13px);
  color: var(--danger);
}


/* !Employeement Application CSS  */