@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/*scroll*/
::selection {
  background: var(--primary-color);
  color: var(--white);
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #dedede;
}

::-webkit-scrollbar-thumb:vertical {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-image: linear-gradient(#0869A0, #0868a06c);
}

/*body*/
.overflw {
  overflow: hidden;
}

[class^="box-"] {
  display: none
}

[class^="box-"].showfirst {
  display: block
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
}

p {
  line-height: 1.5;
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: "Libre Baskerville", sans-serif;
}

.container {
  max-width: 1280px;
}



/* Hamburger Menu */
.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 22;
  display: none;
}

.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--white);
  position: absolute;
  transition: .6s all;
  border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
  top: 0;
}

.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}

.menu-Bar span:nth-child(3) {
  top: 16px;
}

.menu-Bar.open span {
  background: var(--white);
}

.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}

/* colors */
:root {
  --primary-color: #00394D;
  --secondary-color: #008C99;
  --black: #000;
  --white: #fff;
  --greyish: #414141;
  --light-greyish: #666666;
}

.white {
  color: white !important;
}

/*padding and margin*/
.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

section {
  padding: 60px 0;
}

/* heading and paragraph */
.primary-hd {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
  text-transform: capitalize;
}

.secondary-hd {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
  text-transform: capitalize;
}

.primary-para {
  font-size: 15px;
  color: var(--primary-color);
  font-family: 'Lato', sans-serif;
}

/*botton*/
.btn-a {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--white);
  padding: 20px 30px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  transition-duration: 0.4s;
  display: flex;
  align-items: center;
  width: max-content;
  text-transform: uppercase;
  border-radius: 10px;
}

.btn-a i {
  padding-right: 5px;
}

.btn-a:hover {
  background: var(--primary-color);
  border: 1px solid var(--secondary-color);
  color: var(--white);
}

.btn-b {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--white);
  padding: 20px 30px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  transition-duration: 0.4s;
}

.btn-b:hover {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: var(--white);
}

.btn-c {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--primary-color);
  padding: 20px 30px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  transition-duration: 0.4s;
}

.btn-c:hover {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--secondary-color);
}

.call-btn {
  font-size: 24px;
  color: var(--white);
  display: flex;
  align-items: center;
  width: max-content;
}

.call-btn i {
  padding-right: 5px;
  color: var(--secondary-color);
}


/*header*/
.header-top {
  background-color: var(--greyish);
}

.header-top-btn-and-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-btn span {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  background-color: var(--primary-color);
  padding: 15px 20px 13px;
  display: inline-block;
  width: max-content;
}

.header-top-content marquee {
  font-size: 14px;
  color: var(--white);
  margin-bottom: -3px;
}

.header-center {
  padding: 15px 0 13px;
  background: var(--primary-color);
  border-bottom: 1px solid var(--secondary-color);
}

.header-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.header-bottom {
  background-color: var(--secondary-color);
}

.menu {
  display: flex;
  align-items: center;
}

.menu>li {
  padding: 0 20px;
  position: relative;
}

.menu>li>a {
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  width: max-content;
}

.menu>li>a>i {
  font-size: 20px;
}

.menu>li.active>a {
  background-color: var(--secondary-color);
  padding: 0px 0;
}

header {
  padding-bottom: 0;
}

.inner-menu {
  background: #fff;
  border-radius: 0 0 5px 5px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.5s;
  z-index: 1;
  width: 250px;
}

.menu>li:hover .inner-menu {
  opacity: 1;
  visibility: visible;
}

.inner-menu>li {
  padding: 5px 0;
  border-bottom: 1px solid #088c982b;
}

.inner-menu>li>a {
  font-size: 14px;
  color: #02394c;
  font-weight: 600;
  padding: 5px 11px;
  width: 100%;
  display: block;
  line-height: 1.37;
}

.menu>li>a:hover .inner-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(20px);
}


/*main-banner*/
.mainBanner-bg {
  background-size: cover;
  background-position: center;
  /* padding: 160px 0; */
  padding: 180px 0;
}

.mainBanner-bg-content {
  /* background: linear-gradient(90deg, rgba(8,105,160,0.9) 44%, rgba(3,38,58,0) 100%);
	padding: 15px 90px 15px 60px; */
}

.mainBanner-bg-content h1 {
  font-size: 80px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  /* text-transform: uppercase; */
  text-align: center;
}

.mainBanner.inner-banner {
  padding: 90px 0;
  background-size: cover;
}

.searchbar-sec {
  margin-top: -150px;
  padding: 60px 0 20px;
}

.searchbar-sec.inner {
  /* margin-top: -50px; */
}

.process-search-box {
  padding: 50px 80px;
  /* background-color: var(--primary-color); */
  background: url(../images/search-background.jpg) 0 0 no-repeat;
  border-radius: 20px;
}

.process-search-box-form .form-field .form-control {
  height: 48px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-family: 'Lato', sans-serif;
}

.process-search-box-form .form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

select.minimal {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1.1em + 2px), calc(100% - 15px) calc(1.1em + 2px);
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

select.minimal {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


select.minimal:focus {
  background-image: linear-gradient(45deg, gray 50%, transparent 50%), linear-gradient(135deg, transparent 50%, gray 50%);
  background-position: calc(100% - 15px) 1.2em, calc(100% - 20px) 1.2em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
}

.process-search-box-form .form-btn .btn-b {
  padding: 15px 30px;
  text-align: center;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 1rem;
}

.process-search-box-form .form-field .form-control:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 255, 255, 0.5) !important;
}

.why-us-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.seperator {
  height: 1px;
  background-color: var(--primary-color);
  position: relative;
  flex-grow: 1;
  margin-top: 5px;
}

.seperator::before {
  content: "";
  width: 70px;
  height: 3px;
  background-color: var(--secondary-color);
  position: absolute;
  top: -1px;
  left: 0;
}

.why-us-content .primary-hd {
  flex-shrink: 0;
  margin-bottom: -5px;
}

.why-us-box-content h4 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.38;
}

.why-us-box-content p {
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
  line-height: 24px;
}

.why-us-box-content .btn-a {
  padding: 15px 15px;
  font-size: 14px;
  border-radius: 5px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.why-us-box-content .btn-a:hover {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.why-us-box-content {
  padding-top: 30px;
}

.cta-bg {
  /* background-color: var(--primary-color); */
  position: relative;
  padding: 90px 10px 52px;
  z-index: 1;
}

.cta-bg-content::before {
  content: "";
  background-image: url(../images/cta-background.png);
  background-size: contain;
  background-repeat: no-repeat;
  /*background-position: center; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -1;
}

.cta-bg-content {
  /* display: flex;
	flex-direction: column; */
  /* align-items: center;
	justify-content: space-between; */
  padding: 0 20px;
  /* gap: 50px; */
}

.cta-bg-content h2.primary-hd {
  font-size: 2.4rem;
}

.cta-bg-content a {
  flex-shrink: 0;
  border-radius: 10px;
  font-size: .9em;
  text-transform: uppercase;
  display: inline-block;
  padding: 15px 20px;
  margin-top: 20px;
}

.mission-box {
  background-color: var(--primary-color);
}

.mission-box-content {
  padding: 0px 30px 20px;
  position: relative;
}

.mission-box-content .primary-hd {
  padding: 0px 30px;
  background: linear-gradient(90deg, rgba(232, 74, 96, 0.5018382352941176) 50%, rgba(3, 38, 58, 0) 100%);
  margin-bottom: 20px;
  margin-top: -2px;
  margin-left: -30px;
}

.video-box-img {
  position: relative;
}

.video-icon {
  width: 65px;
  height: 66px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-icon i {
  color: var(--white);
  font-size: 20px;
}

.video-box {
  background-color: #EAF7FF;
}

.video-box-content {
  padding: 20px 20px;
}

.video-box-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--greyish);
  line-height: 1.3;
}

.news-and-events-list li {
  padding: 30px 0;
  border-bottom: 1px solid #F5F5F5;
}

.news-and-events-list li:last-child {
  border: none;
  padding-bottom: 0;
}

.news-and-events-list-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-and-events-list-box-date {
  background-color: var(--primary-color);
  padding: 15px 10px;
  border-radius: 5px;
  text-align: center;
  flex-shrink: 0;
  width: 120px;
}

.news-and-events-list-box-date h3 {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 5px;
}

.news-and-events-list-box-date p {
  font-size: 14px;
  color: var(--white);
}

.news-and-events-list-box-content h5 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.news-and-events-list-box-content p {
  font-size: 14px;
  color: var(--greyish);
}

.notice-content {
  padding-left: 36px;
  position: relative;
  background: rgba(0, 57, 77, .1);
  border-radius: 10px;
  margin-bottom: 20px;
}

.notice-content .primary-para {
  font-family: 'Lato', sans-serif;
  margin-bottom: 20px;
}

/* .notice-content::before {
	content: "";
	width: 6px;
	height: 95%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-color: var(--secondary-color);
} */


/*footer*/
footer {
  padding: 80px 0 50px;
  background-color: var(--primary-color);
}

.contact-list li {
  padding: 10px 0;
}

.contact-list li a {
  font-size: 15px;
  color: var(--white);
}

.contact-list li a i {
  padding-right: 5px;
}

.widget h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.fot-list li {
  padding: 5px 0;
}

.fot-list li a {
  font-size: 15px;
  color: var(--white);
}

.blog-list li {
  padding: 20px 0;
  border-bottom: 1px solid #666766;
}

.blog-list li:first-child {
  padding-top: 0;
}

.blog-list li:last-child {
  padding-bottom: 0;
  border: none;
}

.fot-blog-box-img {
  flex-shrink: 0;
}

.fot-blog-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.fot-blog-box-content p {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.3;
}

.fot-blog-box-content span {
  font-size: 15px;
  color: #CCCCCB;
}

.disclaimer {
  background-color: var(--primary-color);
  padding: 60px 0 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.disclaimer-content .primary-para strong {
  font-weight: 600;
}

.disclaimer hr {
  background: rgba(255, 255, 255, .2);
  margin: 50px 0 20px;
}

.copyright {
  padding: 30px 0 30px;
  background: var(--primary-color);
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.copyright-content p {
  color: var(--white);
  font-family: 'lato', sans-serif;
}






/* inner pages */
.inner-banner .mainBanner-bg {
  padding: 50px 0 50px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.inner-banner .mainBanner-bg .row {
  width: 100%;
}

.inner-banner .process-search-box {
  padding: 30px 30px;
  height: 100%;
}

.list li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.list li::before {
  content: "\f111";
  font-family: "Font Awesome 5";
  color: var(--primary-color);
  position: absolute;
  top: 13px;
  left: 0;
  font-weight: 700;
  font-size: 8px;
}

.inner-cta-bg .cta-bg-content {
  gap: 2rem;
}

.inner-cta-bg .cta-bg {
  padding: 30px 0;
}

.inner-cta-bg .primary-hd {
  font-size: 30px;
}

.contact-detail {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  display: none;
}

.contact-detail span {
  display: inline-block;
  margin-bottom: 10px;
}

.contact-detail a {
  color: var(--secondary-color);
}

.contact-form .form-field input,
.contact-form .form-field textarea {
  width: 100%;
  padding: 20px 15px 20px;
  background-color: var(--white);
  color: var(--black);
  border: 1px solid #B6BFC2;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
}

.contact-form .form-field textarea {
  min-height: 300px;
}

.contact-btn .btn-a {
  width: 100%;
  text-align: center;
  display: block;
  font-family: 'Lato', sans-serif;
}

.inner-page-combine-content .secondary-hd {
  font-size: 34px;
}

.inner-page-notice .mt-5 {
  margin: 0 !important;
}

.search-page-serach-box .form-btn {
  display: none;
}

.search-page-serach-box select {
  margin: 0;
}

.search-table {
  width: 100%;
}

.search-table th,
.search-table td {
  border: 1px solid #ddd;
  padding: 20px 10px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
}

.search-table thead {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
}

.search-table tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}

.contact-link-box {
  /* display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: center; */
  padding: 10px 20px;
  /* background-color: #EAF7FF; */
}

.contact-link-box i {
  color: var(--primary-color);
  font-size: 25px;
}

.contact-link-box span {
  color: var(--greyish);
  font-size: 20px;
}

.inner-page-news-and-events-list li {
  padding: 20px 0;
  margin-bottom: 20px;
}

.inner-page-news-and-events-list li:first-child {
  padding-top: 0;
}

.inner-page-news-and-events-list li:last-child {
  padding-bottom: 0;
  margin-bottom: 70px;
}

.inner-page-news-and-events-list-box-img {
  position: relative;
}

.inner-page-news-and-events-list-box-img span {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  padding: 8px 14px;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.inner-page-news-and-events-list-box-img .bg-secondary-color {
  background-color: var(--secondary-color);
}

.inner-page-news-and-events-list-box-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 430px;
}

.inner-page-news-and-events-list-box-content span {
  /* display: flex;
	align-items: flex-start;
	gap: 8px; */
  font-size: 14px;
  color: var(--light-greyish);
  font-family: 'Lato', sans-serif;
}

.inner-page-news-and-events-list-box-content span i {
  color: var(--primary-color);
}

.inner-page-news-and-events-list-box-content p {
  font-family: 'Lato', sans-serif;
  line-height: 26px;
  line-height: 24px;
}

.inner-page-news-and-events-list-box-content h3 {
  font-size: 2rem;
  line-height: 50px;
  font-weight: 500;
}

.inner-page-news-and-events-list-box-btn .btn-a {
  padding: 15px 15px;
  font-size: 14px;
  border-radius: 5px;
}

.date {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: var(--secondary-color);
  font-family: 'Lato', sans-serif;
}

.date i {
  color: var(--primary-color);
}

.thankyou-content .primary-hd {
  font-size: 80px;
}

.thankyou-content .primary-para {
  font-size: 22px;
}

.thankyou-content .primary-para a {
  color: var(--primary-color);
}



/* ADNAN IQBAL CSS (13-2-2025) */
.process-sec img {
  border-radius: 10px;
}

.why-us-sec {
  background: rgba(0, 57, 77, .1);
  padding: 80px 0;
}

.why-us-box {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
}

.why-us-box-img img {
  border-radius: 10px;
}

.widget .footer-cta {
  display: flex;
  justify-content: center;
  gap: 50px
}

.widget .footer-cta li {
  font-size: 1.5rem;
}

.widget .footer-cta li i {
  margin-right: 10px;
}

.widget .footer-cta li a {
  color: var(--white);
}

.widget .fot-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.widget .fot-list li {
  padding: 5px 0;
  font-size: 1em;
}

.widget .fot-list li a {
  padding: 0 10px;
}

footer hr {
  background: rgba(255, 255, 255, .2);
  margin: 3rem 0;
}

.disclaimer-content .primary-para.disclaim-text {
  font-family: 'Lato', sans-serif;
  line-height: 24px;
}

.news-event {
  padding: 50px 0;
}

.news-event h3 {
  font-family: "Libre Baskerville", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--primary-color);
}

.news-event .news-box {
  display: block;
}

.news-event .news-box img {
  border-radius: 10px;
  margin-bottom: 20px;
}

.news-event .news-box span {
  font-size: .9em;
  font-family: 'Lato', sans-serif;
  color: #00394D;
  font-weight: 300;
  display: block;
}

.news-event .news-box h4 {
  font-family: 'Libre Baskerville', sans-serif;
  color: var(--secondary-color);
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 1.1em;
  line-height: 24px;
  font-weight: 800;
}

.news-event .news-box h4 a {
  color: var(--secondary-color);
}

.news-event .news-box h4 a:hover {
  color: var(--primary-color);
}

.news-event .news-box .primary-para {
  font-family: 'Lato', sans-serif;
}

.mission-sec {
  /* margin: 0; */
  padding: 30px 0;
}

.mission-box {
  display: flex;
  background: none;
}

.mission-box div {
  width: 50%;
}

.mission-box .mission-img img {
  border-radius: 10px 0 0 10px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mission-box .mission-bg {
  background: url(../images/mission-background.png);
  border-radius: 0 10px 10px 0;
  padding: 100px 50px 0 60px;
  color: var(--white);
}

.mission-box .mission-bg h3 {
  font-size: 3em;
  margin-bottom: 20px;
}

.mission-box .mission-bg .primary-para {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

.mission-sec-inner {
  margin: 0;
  padding: 40px 0 20px;
}

.mission-sec-inner .mission-box {
  display: flex;
  background: none;
}

.mission-sec-inner .mission-box div {
  width: 50%;
}

.mission-sec-inner .mission-box .mission-img img {
  border-radius: 10px 0 0 10px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mission-sec-inner .mission-box .mission-bg {
  background: url(../images/mission-background.png);
  border-radius: 0 10px 10px 0;
  padding: 50px 50px 20px 50px;
  color: var(--white);
}

.mission-sec-inner .mission-box .mission-bg h3 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.mission-sec-inner .mission-box .mission-bg .primary-para {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 21px;
}



.about-sec {
  /* margin: 50px 0 20px; */
  padding: 30px 0 0;
}

.about-sec img {
  border-radius: 10px;
}

.about-sec .about-content .primary-para {
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
  line-height: 24px;
}

.services-sec .services-box {
  display: block;
  margin-bottom: 20px;
}

.services-sec .services-box img {
  border-radius: 10px;
  margin-bottom: 25px;
}

.services-sec .services-box h3 {
  color: var(--primary-color);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-sec .about-content span {
  margin-bottom: 10px;
  display: block;
  font-weight: 800;
  padding-top: 5px;
  font-size: 1.1rem;
}

.services-sec .services-box p {
  font-family: 'Lato', sans-serif;
}

.news-event-inner {
  padding: 0 0 50px;
}

.news-event-inner h3 {
  font-family: "Libre Baskerville", sans-serif;
  font-size: 2em;
  font-weight: 700;
}

.news-event-inner .news-box {
  display: block;
  margin-bottom: 50px;
}

.news-event-inner .news-box img {
  border-radius: 10px;
  margin-bottom: 20px;
}

.news-event-inner .news-box span {
  font-size: .9em;
  font-family: 'Lato', sans-serif;
  color: #00394D;
  font-weight: 300;
  display: block;
}

.news-event-inner .news-box h4 {
  font-family: 'Libre Baskerville', sans-serif;
  color: var(--secondary-color);
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 1.1em;
  line-height: 24px;
  font-weight: 800;
}

.news-event-inner .news-box h4 a {
  color: var(--secondary-color);
}

.news-event-inner .news-box h4 a:hover {
  color: var(--primary-color);
}

.news-event-inner .news-box .primary-para {
  font-family: 'Lato', sans-serif;
}

.news-event-inner .cta-bg {
  /* background-color: var(--primary-color); */
  position: relative;
  padding: 90px 10px 52px;
  z-index: 1;
}

.news-event-inner .cta-bg-content::before {
  content: "";
  background-image: url(../images/cta-background.png);
  background-size: cover;
  background-repeat: no-repeat;
  /*background-position: center; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -1;
  border-radius: 10px 10px 10px 10px;
}

.news-event-inner .cta-bg-content {
  /* display: flex;
	flex-direction: column; */
  /* align-items: center;
	justify-content: space-between; */
  padding: 0 20px;
  /* gap: 50px; */
}

.news-event-inner .cta-bg-content h2.primary-hd {
  font-size: 1.9rem;
}

.news-event-inner .cta-bg-content a {
  flex-shrink: 0;
  border-radius: 10px;
  font-size: .9em;
  text-transform: uppercase;
  display: inline-block;
  padding: 15px 20px;
  margin-top: 20px;
}



.point-box {
  display: block;
  padding: 30px 40px;
  border: 1px solid #DAE8EE;
  border-radius: 10px;
  margin-bottom: 30px;
}

.point-box:last-child {
  margin-bottom: 50px;
}

.mainBanner-bg-content h1 {
  font-size: 60px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  /* text-transform: uppercase; */
  text-align: center;
}

.terms-and-privacy-sec-header {
  background: #E6ECEE;
}

.terms-and-privacy-sec-header h2.primary-hd {
  text-align: center;
  margin-bottom: 0;
  font-size: 4rem;
}

.terms-and-privacy-sec .primary-para {
  font-family: 'Lato', sans-serif;
}

/* .terms-and-privacy-content h2.primary-hd{
		text-align: center;
		margin-bottom: 100px;
} */
.contact-form {
  border-radius: 20px;
  border: 1px solid #B6BFC2;
  padding: 100px 50px;
}

.contact-form h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 800;
}

.new-detail-content h3 {
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.new-detail-content h2 {
  font-size: 2.5rem;
}

.about-sec .new-detail-content span {
  font-weight: 500;
  font-size: 1rem;
}

.search-sec.inner {
  padding: 30px 0;
}

.about-sec .about-content h2 {
  font-size: 2.1rem;
}

.space {
  display: block;
  padding: 30px 0;
}

.terms-and-privacy-content h3 {
  font-weight: 300;
  text-transform: math-auto;
}

.contact-us {
  margin: 50px 0 0 0;
}

.news-events-sec {
  margin: 50px 0 0 0;
}

.search-table h3 {
  text-transform: capitalize;
  font-family: 'Lato', sans-serif;
  padding: 0 0 30px;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

.search-table h3 span {
  font-weight: 800;
  font-style: italic;
}

.boardBox h4 {
  font-size: 2.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.boardBox p {
  line-height: 1.24;
  font-size: 1rem;
  color: var(--primary-color);
  font-family: 'Lato', sans-serif;
  margin: 1rem 0;
}

.boardBox ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: #E6ECEE;
  margin: 1rem 0;
}

.boardBox ul li {
  flex: 0 0 32%;
  padding: 1rem;
  font-family: 'Lato', sans-serif;
  height: 90px;
  display: flex;
  align-items: center;
}

.boardBox ul li h3 {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.37;
}

.boardBox ul li h3 span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #00394D;
}

.boardBox {
  margin-bottom: 4rem;
}

.boardListTwo li {
  background: #fff !important;
  border: 1px solid #DAE8EE;
  border-radius: 15px;
}

.drBox h6 {}

.boardBoxes {
  background: #E6ECEE;
  padding: 1.5rem;
  border-radius: 15px;
}

.drBox {
  background: #fff;
  padding: 1rem;
  border-radius: 15px;
  margin: 1rem 0;
  height: 220px;
  font-family: 'Lato', sans-serif;
}

.drBox h6 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

.drBox h6 span {
  display: block;
  color: var(--primary-color);
  font-size: 15px;
}

.heihtAuto li {
  height: 140px !important;
  flex: 0 0 48% !important;
}



.mission-bg.missionContnt {
  background: #E6ECEE;
  padding: 2rem;
  color: var(--primary-color);
}

.mission-bg.missionContnt p {
  color: var(--primary-color) !important;
}

.mission-bg.missionContnt h3 {
  font-size: 2.25rem;
  line-height: 1.2;
}

.misionInner ul li {
  border-bottom: 1px solid #fff;
  padding: 1.5rem 0;
  font-family: 'Lato', sans-serif;
  line-height: 1.387;
}

.misionInner .mission-box .mission-bg {
  padding: 3rem;
}

.misionInner ul {
  list-style-type: disc;
}

.misionInner ul li:last-child {
  border-bottom: none;
}

.highBox {
  background: #E6ECEE;
  padding: 1rem;
  border-radius: 12px;
  height: 150px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--primary-color);
  font-family: 'Lato', sans-serif;
  line-height: 1.37;
  margin-top: 2rem;
}

/*media-quries*/
@media (max-width: 1270px) {
  .menu>li {
    padding: 0 10px;
  }

  .widget .fot-list {
    gap: 10px;
  }
}

@media (max-width:1200px) {
  .menu-Bar {
    display: none;
    top: 0px;
  }

  .menuWrap.open {
    display: flex;
    left: 0px;
  }

  .menuWrap {
    position: fixed;
    left: -210%;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--primary-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-flow: column;
    transition: all 0.4s ease;
    z-index: 3;
    width: 50vw;
    padding-left: 100px;
  }

  .menuWrap .menu li {
    display: block;
  }

  .menuWrap .menu li a {
    margin-bottom: 10px;
    padding: 0;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    padding-right: 0px;
    margin-right: 0px;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
  }

  .container {
    position: relative;
  }

  header .header-bottom ul.menu>li {
    display: block;
    padding: 0px;
  }

  header .header-bottom ul.menu>li a {
    color: #fff;
    padding: 0px;
    text-align: left;
    height: auto;
    line-height: unset;
  }

  header .header-bottom ul.menu>li a:before {
    display: none;
  }

  header {
    padding-bottom: 0;
  }

  .header-btns {
    margin-right: 50px;
  }

  .menuWrap .menu {
    display: block;
  }

  .menu>li.active>a {
    padding: 10px !important;
  }

  .inner-menu {
    position: unset;
    margin-bottom: 15px;
    border-radius: 5px;
    display: none;
    transition: unset;
  }

  .inner-menu li a {
    color: var(--black) !important;
    margin: 0 !important;
  }

  .process-sec {
    flex-direction: column;

  }

  .process-search-box-form .form-btn .btn-b {
    font-size: .8rem;
  }

  .process-search-box-form .form-btn .btn-b {}

  .widget .fot-list {
    gap: 5px;
    text-align: center;
  }

  .widget .fot-list li {
    font-size: .5rem;
    line-height: 15px;
  }

  .widget .footer-cta li a {
    font-size: 15px;
  }

  .widget .footer-cta li {
    font-size: 1.5rem;
  }

  .widget .footer-cta {
    text-align: center;
  }

  .news-event-inner .cta-bg-content::before {
    background-size: cover;
  }

  .mission-box .mission-bg {
    padding: 50px 30px 0 30px;
  }
}



@media (max-width: 1023px) {
  section {
    padding: 40px 0;
  }

  .process-content {
    margin-bottom: 30px;
  }

  .mb-40 {
    margin-bottom: 20px;
  }

  .why-us-box {
    margin: 15px 0;
  }

  .mission-box-img img {
    width: 100%;
  }

  .combine-content {
    margin: 15px 0;
  }

  .mt-5,
  .my-5 {
    margin-top: 2rem !important;
  }

  footer {
    padding: 40px 0;
  }

  .widget {
    margin: 15px 0 10px !important;
  }

  .inner-banner .mainBanner-bg {
    padding: 0 0 0;
    margin-bottom: 30px;
    height: auto;
  }

  .video-box-img img {
    width: 100%;
  }

  .process-search-box-form .form-btn .btn-b {
    font-size: .8rem;
  }

  .cta-bg-content h2.primary-hd {
    font-size: 2.5rem;
  }

  .mission-box .mission-bg h3 {
    font-size: 2em;
  }

}

@media (max-width: 992px) {
  .widget .fot-list {
    flex-wrap: wrap;
  }

  .widget .fot-list li {
    width: 33%;
  }

  .widget .fot-list {
    /* flex-direction: column; */
  }

  .widget .footer-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .mission-box {
    /* flex-direction: column; */
  }

  .mission-box div {
    width: 50%;
  }

  .mission-box .mission-img img {
    width: 100%;
    border-radius: 10px 0 0 10px;
    object-fit: cover;
    height: 100%;
  }

  .mission-box .mission-bg {
    border-radius: 0 10px 10px 0;
    padding: 50px;
  }

  .why-us-box {
    display: flex;
  }

  .why-us-box div {
    width: 100%;
  }

  .why-us-box .why-us-box-content {
    margin-top: 0;
    padding-top: 0;
    padding-left: 20px;
  }

  .why-us-box-img img {
    width: 100%;
  }

  .news-event .news-box img {
    width: 100%;
  }

  .mainBanner-bg-content h1 {
    font-size: 60px;
  }

  .news-event .news-box {
    margin-bottom: 30px;
  }

  .cta-bg {
    padding: 120px 10px 0;
    min-height: 656px;
  }

  .cta-bg-content::before {
    background-size: cover;
  }

  .cta-bg-content h2.primary-hd {
    font-size: 2rem;
  }

  .searchbar-sec.inner {
    margin-top: 0;
  }

  .news-event-inner {
    min-height: auto;
  }

  .inner-page-news-and-events-list-box-content h3 {
    font-size: 1.3rem;
    line-height: 36px;
  }

  .inner-page-news-and-events-list-box-content span {
    font-size: 14px;
  }

  .mission-sec-inner .mission-box div {
    width: 100%;
  }

  .mission-sec-inner .mission-box .mission-img img {
    border-radius: 10px 10px 0 0;
  }

  .mission-sec-inner .mission-box .mission-bg {
    border-radius: 0 0 10px 10px;
    padding: 30px 30px 20px 30px;
  }

  .terms-and-privacy-sec-header h2.primary-hd {
    font-size: 3rem;
  }

}

@media (max-width: 767px) {

  .filter-row {
    padding: 1.4rem;
  }

  .uniSec input#uni-search,
  select#state-select {
    margin-bottom: 8px;
  }

  .dataTables_paginate {
    float: right !important;
    top: 2rem;
    position: relative;
  }

  .dataTables_info {
    font-size: 10px;
  }

  .header-top-btn span {
    font-size: 12px;
  }

  .header-btns .btn-a {
    display: none;
  }

  .call-btn {
    font-size: 16px;
  }

  .header-center {
    padding: 5px 0;
  }

  .mainBanner-bg-content {
    padding: 15px 20px;
  }

  .mainBanner-bg-content h1 {
    font-size: 40px;
  }

  .mainBanner-bg {
    padding: 100px 0;
  }

  section {
    padding: 20px 0;
  }

  .primary-hd {
    font-size: 24px;
  }

  .mb-20 {
    margin-bottom: 10px;
  }

  .process-search-box {
    padding: 20px 20px;
  }

  .process-search-box-form .form-field .form-control {
    height: 38px;
  }

  .process-search-box-form .form-btn .btn-b {
    height: 38px;
    padding: 5px 30px;
  }

  .cta-bg-content {
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cta-bg {
    padding: 50px 0;
    min-height: auto;
    margin-bottom: 1.5rem;
  }

  .cta-bg-content::before {
    border-radius: 10px;
  }

  .btn-c {
    font-size: 16px;
    padding: 10px 20px;
  }

  .btn-a {
    font-size: 16px;
    padding: 10px 20px;
  }

  .btn-b {
    font-size: 16px;
    padding: 10px 20px;
  }

  .seperator {
    margin-bottom: 20px !important;
  }

  .why-us-content {
    display: block;
    margin-bottom: 10px !important;
  }

  .why-us-content .seperator {
    margin-bottom: 0px !important;
    margin-top: 20px;
  }

  .news-and-events-list li {
    padding: 20px 0;
  }

  .mt-5,
  .my-5 {
    margin-top: 1rem !important;
  }

  .secondary-hd {
    font-size: 20px;
  }

  footer {
    padding: 20px 0;
  }

  .widget h4 {
    margin-bottom: 10px;
  }

  .menuWrap {
    width: 100vw;
  }

  .menu-Bar.open span {
    background: white;
  }

  .menuWrap {
    padding-left: 50px;
    padding-top: 100px;
  }

  .mb-30 {
    margin-bottom: 20px;
  }

  .about-img {
    margin-bottom: 20px;
  }

  .inner-page-combine-content .secondary-hd {
    font-size: 24px;
  }

  .inner-page-notice-box {
    margin-top: 30px !important;
  }

  .why-us-box {
    display: flex;
  }

  .why-us-box div {
    width: 50%;
  }

  .why-us-box .why-us-box-content {
    margin-top: 0;
    padding-top: 0;
    padding-left: 20px;
  }

  .searchbar-sec {
    margin-top: 0;
  }

  .widget .fot-list {
    flex-wrap: wrap;
  }

  .widget .fot-list li {
    width: 100%;
  }

  .about-sec .about-content {
    margin-top: 1rem;
  }

  .inner-page-news-and-events-list-box-img {
    margin-bottom: 20px;
  }

  .inner-page-news-and-events-list-box-img img {
    width: 100%;
  }

  .mission-box {
    flex-direction: column;
  }

  .mission-box div {
    width: 100%;
  }

  .mission-box .mission-img img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    height: 100%;
  }

  .mission-box .mission-bg {
    border-radius: 0 0 10px 10px;
    padding: 20px;
  }

  .terms-and-privacy-sec-header h2.primary-hd {
    font-size: 2rem;
  }

  .boardBox ul li {
    flex: 100%;
    height: auto;
  }

  .heihtAuto li {
    height: auto !important;
    flex: 100% !important;
  }

  .mission-bg.missionContnt h3 {
    font-size: 1.45rem;
  }

  .misionInner .mission-box .mission-bg {
    padding: 1rem;
  }

  .misionInner ul {
    padding-left: 1rem;
  }

  .highBox {
    margin: 10px 0;
  }

  .drBox {
    height: auto;
    margin: 0 0 10px;
  }

}

.boardBox h4 {
  font-size: 1.45rem;
}

.boardBox ul li h3 {
  font-size: 14px;
}

.boardBox {
  margin-bottom: 2rem;
}

.boardBoxes {
  padding: 20px 10px 10px;
}

.abtBox h3 {
  color: var(--primary-color);
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.abtBox {
  border: 1px solid #02394c24;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  margin: 10px 0;
  border-radius: 10px;
}

.misionTwo h3 {
  font-size: 1.25rem !important;
  line-height: 1.37;
}

.misionTwo {
  border-radius: 10px !important;
}

.misionTwo .mission-box .mission-bg {
  border-radius: 10px;
}

.mission-box {
  gap: 1rem;
}

/* accordion css */
.accordian {}

.accordian li {
  margin-bottom: 25px;
  border: 1px solid #00000087;
  border-radius: 12px;
}

.accordian li h4 {
  color: #041e0c;
  font-size: 1.25rem;
  padding: 1.4rem;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  margin: 0;
  line-height: 1.3;
  font-family: 'Lato', sans-serif;
}

.accordian h4::after {
  content: "\f067";
  font-family: 'Font Awesome 5';
  font-size: 20px;
  position: absolute;
  top: 25px;
  right: 35px;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}

.accordian p {
  margin: 0;
  color: #869289;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 1rem;
}

.accordian li>div {
  display: none;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 1rem;
}

.accordian li.active h4::after {
  content: "\f068";
}

.accordian li.active {
  border-color: #008C99;
  background: #008C99;
}

.accordian li.active h4 {
  color: var(--theme-color);
  background: var(--theme-color);
  color: #fff;
}

.accordian li.active>div {
  background: var(--theme-color);
}

.accordian li.active>div p {
  color: #fff;
  font-family: 'Lato', sans-serif;
}


.whyInnerSec .why-us-box {
  background: #e5ebed;
  height: 100%;
}

.whyInnerSec {
  background: #fff;
}


.accredBox {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: #e5ebed;
  padding: 1.5rem;
  border-radius: 10px;
  /* margin: 2rem 0 0; */
  font-family: 'Lato', sans-serif;
  height: 100%;
}

.accredImg {
  width: 30%;
}

.accredCotnt {
  width: 70%;
}

.whyGreenInner .why-us-box {
  background: var(--primary-color);
}

.whyGreenInner .why-us-box-content h4 {
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

.whyGreenInner .why-us-box-content p {
  color: #fff;
}

.grayBg {
  background: #e5ebed;
  align-items: center;
  border-radius: 30px;
  padding: 0;
}

.servingContnt {
  background: url(../images/14.png) bottom center / cover no-repeat;
  height: 100%;
  padding: 5rem 3rem;
  color: #fff;
  border-radius: 30px;
}

.servingContnt h4 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.servingContnt p {
  font-family: 'Lato', sans-serif;
  line-height: 1.37;
  font-size: 1.125rem;
}

.servingContnt ul {
  list-style-type: disc;
  padding-left: 1rem;
  margin: 1rem 0;
}

.servingContnt ul li {
  padding: 10px 0;
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
}

.servingImg {
  padding: 0 2rem;
}


.accredBox .accredImg img {
  border-radius: 10px;
}

/* accordian End */
@media (max-width: 600px) {
  .mainBanner-bg-content h1 {
    font-size: 30px;
  }

  .process-search-box {
    background-size: cover;
  }

  .process-search-box-form .form-btn .btn-b {
    height: 38px;
    padding: 0 30px;
    line-height: 40px;
  }

  .why-us-box {
    display: flex;
    flex-direction: column;
  }

  .why-us-box div {
    width: 100%;
  }

  .why-us-box .why-us-box-content {
    margin-top: 20px;
    padding-top: 0;
    padding-left: 0;
  }

  .why-us-box-img img {
    width: 100%;
  }

  .services-sec .services-box img {
    width: 100%;
  }
}

/* Hide numbers inside dots */
ul.slick-dots {
  text-align: center;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button:before {
  content: '' !important;
  font-size: 0 !important;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  opacity: 1 !important;
}

/* Active dot */
.slick-dots li.slick-active button:before {
  background: #000;
  /* change color if needed */
}

/* Dot style */
.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  padding: 0;
  font-size: 0;
  background: #D9D9D9;
  border: none;
}

/* Active dot */
.slick-dots li.slick-active button {
  background: #000;
  /* change color as needed */
}

/* Proper spacing */
.slick-dots li {
  margin: 0 5px;
}



.mainHeading {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.visaSec .container {
  background: #e5ebed;
  padding: 3rem;
  border-radius: 20px;
}

.visaSec .drBox {
  margin: 2rem 10px;
  padding: 2rem;
  height: 260px;
}

.transBox {
  background: transparent !important;
}

.greenLi li {
  flex: 100% !important;
  line-height: 1.37;
  height: auto !important;
  padding-left: 2rem !important;
  position: relative;
  border-radius: 8px;
  color: var(--primary-color);
  padding: 6px 0 0 1.5rem !important;
  font-family: 'Lato', sans-serif;
}

.greenLi {
  list-style: none;
  margin: 1rem 0 2rem !important;
  padding: 1rem;
  display: inline-block !important;
  background: #E6ECEE;
}

.greenLi li::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 100%;
  top: 14px;
  left: 5px;
}

.accredBox .greenLi {
  margin: 0 !important;
  padding: 0;
}


.taxInner .greenLi {
  display: block !important;
}

.taxInner .greenLi h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.workSec {
  background: #e5ebed;
}

.workBoxGren {
  background: #008C99;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  height: 100%;
}

.workBoxGren h6 {
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.workBoxGren p {
  font-family: 'Lato', sans-serif;
  color: #fff;
}

.contentBg {
  background: url(../images/37.png) bottom center / cover no-repeat;
  padding: 4rem;
  text-align: center;
  border-radius: 20px;
  font-family: 'Lato', sans-serif;
}

.contentBg * {
  color: #fff;
}

.contentBg h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.global-box {
  background: #0c7b86;
  padding: 40px;
  color: #fff;
  border-radius: 10px;
}

.global-box .title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}

.stats-row {
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  position: relative;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
}

.stat-box h3 {
  font-size: 33px;
  margin: 0 0 5px;
  font-weight: 700;
}

.stat-box p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.37;
}

/* Vertical Divider Lines */
.stats-row::before,
.stats-row::after,
.stats-row div:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.stats-row::before {
  left: 0;
  top: 50%;
}

.stats-row div:nth-child(2)::after {
  display: none;
}

.stats-row::after {
  left: 0;
  width: 1px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.stat-box {
  flex: 0 0 40%;
  text-align: left;
  font-family: 'Lato', sans-serif;
}

.list-financial .greenLi {
  margin: 10px 0 !important;
}

.list-financial .greenLi li {
  height: 100px !important;
}

/* Responsive */
@media(max-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row::before,
  .stats-row::after,
  .stats-row div:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .workBoxGren {
    height: auto;
  }

  .contentBg {
    padding: 1rem;
  }

}

.heihtAuto {
  background: transparent !important;
}


.copyright .fot-list {
  display: flex;
  justify-content: end;
  gap: 2rem;
}

@media only screen and (max-width: 1440px) {
  html {
    font-size: 14px;
  }

  .menu>li>a>i,
  .menu>li>a {
    font-size: 13px;
  }
}

@media only screen and (max-width: 1366px) {
  html {
    font-size: 13px;
  }
}

@media only screen and (max-width: 576px) {
  .header-btns {
    display: none;
  }

  .header-logo {
    width: 14rem;
    padding: 5px 0;
  }

  .mainBanner {
    background-position-x: right;
  }

  .searchbar-sec {
    padding-top: 2rem;
  }

  .why-us-sec {
    padding: 2rem 0;
  }

  .why-us-sec .primary-hd {
    text-align: center;
  }

  .why-us-box-content h4 {
    font-size: 18px;
    margin-bottom: 0;
  }

  .news-event h3 {
    font-size: 2rem;
    text-align: center;
  }

  .cta-bg-content h2.primary-hd {
    font-size: 2rem;
  }

  .notice-content {
    padding: 20px !important;
  }

  .fot-list li a {
    font-size: 14px;
  }

  .disclaimer {
    padding: 1rem;
  }

  .copyright {
    padding: 1rem 0;
  }

  .boardBox ul {
    padding: 10px;
    border-radius: 10px;
  }

  .abtBox {
    height: auto;
  }

  .about-sec .about-content h2 {
    font-size: 1.75rem;
  }

  .accordian h4::after {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .whyInnerSec .why-us-box {
    height: auto;
    margin: 10px 0;
  }

  .accredBox {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }

  .accredImg {
    width: 100%;
  }

  .accredCotnt {
    width: 100%;
  }

  .servingImg img {
    width: 100%;
  }

  .servingImg {
    margin: 1rem auto;
    width: 13rem;
  }

  .servingContnt {
    padding: 2rem;
    border-radius: 10px;
  }

  .grayBg .pr-0 {
    padding-left: 0;
  }

  .visaSec .container {
    padding: 1rem;
  }

  .mainHeading {
    font-size: 1.75rem;
    margin: 1rem 0 1rem;
  }

  .visaSec .drBox {
    margin: 10px 0;
  }

  .greenLi {
    margin: 10px 0 !important;
  }

  .accredImg img {
    width: 100%;
  }

  .workBoxGren {
    margin: 4px 0;
  }

  .workSec .mainHeading {
    margin-bottom: 1.5rem;
  }

  .accordian li {
    margin-bottom: 10px;
  }

  .faqWork img {
    display: none;
  }

  .stat-box {
    flex: 100%;
  }

  .stats-row {
    gap: 1.5rem;
  }

  .global-box {
    padding: 1rem;
  }

  .global-box .title {
    font-size: 21px;
  }

  .list-financial .greenLi li {
    height: auto;
  }

  .contact-us {
    margin: 0;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-form h3 {
    font-size: 2rem;
    margin: 0 0 14px;
  }

  .mainBanner.inner-banner {
    background-position-x: center;
  }

  .inner-banner .mainBanner-bg {
    justify-content: center;
  }

  .visaSec .drBox {
    height: auto;
  }

  .copyright .fot-list {
    justify-content: center;
    margin: 1rem 0;
  }
}

.accordian li>div ul li {
  color: #fff;
  border: none;
  list-style: disc;
}

.accordian li>div ul {
  padding-left: 1.25rem;
}

ul.boardListTwo {
  background: transparent;
}



.call-btn {
  display: none;
}

.widget .footer-cta .first {
  display: none;
}


.filter-row {
  padding: 3rem 3rem;
  background: var(--secondary-color);
  background: url('../images/search-background.jpg') 0 0 no-repeat;
  margin: 2rem 0;
  border-radius: 10px;
}

.uniSec input#uni-search,
select#state-select {
  border-radius: 0;
}

.filter-row h2 {
  text-align: center;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 2rem;
}


table.dataTable thead {
  background-color: var(--secondary-color) !important;
  color: #fff;
  /* padding: 2rem !important; */
}

/* Row striping */
table.dataTable tbody tr:nth-child(even) {
  background-color: #ededed;
}

table.dataTable tbody tr:nth-child(odd) {
  background-color: #fff;
}

/* Highlight row like screenshot */
table.dataTable tbody tr:hover {
  background-color: var(--theme-color) !important;
  color: var(--secondary-color) !important;
}

/* Pagination buttons */
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 2px 8px;
  border: 1px solid #ccc;
  margin: 2px;
  cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #333;
  color: #fff !important;
  border: 1px solid #333;
}

div#myTable_filter {
  display: none;
}

table.dataTable {
  border: 1px solid #00000026;
}

table.dataTable thead th {
  font-size: 1.45rem;
}

table.dataTable tbody th,
table.dataTable tbody td {
  border-left: 1px solid #00000030;
  text-align: center;
}

table.dataTable tbody th:first-child,
table.dataTable tbody td:first-child {
  text-align: left;
  padding-left: 2rem;
  border: none;
  padding: 12px 1rem;
}

table.dataTable thead th:first-child {
  text-align: left;
  padding: 1rem;
  border: none;
}

table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
  border-left: 1px solid #ffffff29;
  text-align: center;
  padding: 1rem;
}

table.dataTable tbody th,
table.dataTable tbody td {
  padding: 12px 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button,
a#myTable_previous {
  padding: 6px 1rem;
  margin: 2px;
  cursor: pointer;
  background: #000;
  color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 6px 1rem !important;
  background: var(--secondary-color) !important;
  color: #fff !important;
}

a#myTable_next {
  color: #fff !important;
}

section.uniSec.leadForm {
  padding: 1rem 0 4rem;
}

.dataTables_info {
  padding: 1rem 0 0 !important;
}

.dataTables_paginate {
  float: right !important;
  top: -1rem;
  position: relative;
}