/* Fonts */
:root {
  --default-font: "Inter",  sans-serif;
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #ffffff;
  --default-color: #2E67AC;
  --heading-color: #0B4673;
  --accent-color: #0B4673;
  --contrast-color: #ffffff; 
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #fff;
  --nav-hover-color: #f4f4f4; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #000;
  --nav-dropdown-hover-color: #2a2a2a; 
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 5px;
	padding: 3px;
}
 
::-webkit-scrollbar-track {
  background-color: #fff;
}
 
::-webkit-scrollbar-thumb {
  background-color: var(--default-color);
	border-radius: 50px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  height: 70px;
  padding: 0;
  transition: all 0.5s;
}

.header .topbar h2 {
	margin: 0;
	margin-left: 24px;
	font-size: 26px;
	font-weight: 600;
}
.logo-hide {
	width: 0px;
	transition: .3s;
	display: none;
}
.logo-in-nav h2 {
	color: #fff;
	margin: 0;
	margin-left: 24px;
	font-size: 26px;
	font-weight: 600;
}
.header .topbar .box {
	background-color: #B4C1D5;
	padding: 4px;
	border-radius: 50px;
}
.header .topbar .box .search {
	background-color: #fff;
	padding: 4px;
	border-radius: 50px;
	display: flex;
	align-items: center;
}
.header .topbar .box .search input{
	border: none;
	border-radius: 50px;
	width: 200px;
}
.header .topbar .box .search i {
	background:var(--accent-color);
	color: #fff;
	font-size: 18px;
	border-radius: 50px;
	min-width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header .call-btn, .header .call-btn:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 18px;
	font-weight: 600;
	padding: 4px 16px 4px 4px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	transition: 0.3s;
}
.header .call-btn i {
	background: #fff;
	color: var(--accent-color);
	font-size: 18px;
	border-radius: 50px;
	margin-right: 4px;
	min-width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header .btn-social, .header .btn-social:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 18px;
	font-weight: 600;
	min-width: 44px;
	height: 44px;
	padding: 4px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}
.header .btn-social i {
	background: #fff;
	color: var(--accent-color);
	font-size: 18px;
	border-radius: 50px;
	min-width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-brochure {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 4px 16px 4px 4px;
	margin-right: 4px;
	font-size: 16px;
	font-weight: 600;
	background: #fff;
	border-radius: 50px!important;
	transition: 0.3s ease;
}
.btn-brochure:hover {
    background: #d8e6fc;
}
.btn-brochure i {
	background: var(--accent-color);
    color: #fff;
    font-size: 18px;
    border-radius: 50px;
    margin-right: 4px;
    min-width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .navigation {
  min-height: 60px;
  background-color: var(--accent-color);
  padding: 5px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
	max-height: 40px;
	width: 100%;
	margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .cta-btn, .header .cta-btn:focus {
	color: var(--accent-color);
	background-image: url(../img/pattern.svg), linear-gradient(45deg, #ffffff, #C8D8B7 60%);
	background-size: cover;
	background-repeat: no-repeat;
	font-size: 16px;
	font-weight: 600;
	padding: 5px 5px 5px 16px;
	margin: 0 0 0 30px;
	border-radius: 50px;
	transition: 0.3s;
	display: flex;
	align-items: center;
}
.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background-image: linear-gradient(45deg, #ffffff80, var(--default-color) 60%),url(../img/pattern.svg);
	transition: 0.3s;
}
.header .cta-btn i {
	background: var(--accent-color);
	color: var(--contrast-color);
	font-size: 18px;
	border-radius: 50px;
	margin-left: 5px;
	min-width: 34px;
	transform: rotate(45deg);
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1200px) {
  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 767px) {
	.header .logo img {
    max-height: 30px;
    margin-right: 0;
	}
	.header .topbar h2 {
    margin-left: 18px;
    font-size: 20px;
	}
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

.scrolled .header .topbar {
  /*height: 0;*/
  /*visibility: hidden;*/
  /*overflow: hidden;*/
}

.scrolled .header .cta-btn {
	/*display: none!important;*/
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 2px 16px;
		border-right: 1px solid #c7c7c7;
  }

  .navmenu>ul>li:first-child {
    padding-left: 0;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
		border-right: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-radius: 50px;
    bottom: -6px;
    left: 0;
    right: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
	}

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 5px;
    height: 5px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  position: relative;
}

.footer .container {
  position: relative;
}

.footer .footer-top {
  padding-top: 80px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 54px;
  margin-right: 6px;
}

.footer .footer-about h3 {
	font-size: 22px;
	line-height: 32px;
	font-weight: 700;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	border: 1.5px solid rgb(5 46 112 / 28%);
	font-size: 16px;
	color: var(--accent-color);
	margin-right: 10px;
	transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
	color: var(--text-color);
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
	padding: 2px;
	padding-right: 10px;
	font-size: 16px;
	color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links a {
	color: #777777;
	display: inline-block;
	line-height: 20px;
	font-weight: 500;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  margin-top: 35px;
  padding-top: 30px;
  padding-bottom: 30px;
	border-top: 1px solid var(--default-color);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 50px 0 40px;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 600;
}

.page-title .heading p {
 color: #2a2a2a;
}

.breadcrumbs {
  padding: 10px 0;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
	color: #c7c7c7;
}

.breadcrumbs ol li a {
	/*color: #fff;*/
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

.section-bg {
	background: #EFF3F9;
}

.section-bg-2 {
	background: var(--default-color);
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 60px;
  }
}
@media (max-width: 767px) {
	section,
	.section {
		padding: 50px 0;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.section-title.left {
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 25px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: var(--default-color);
  left: 0;
  right: 0;
  bottom: 2px;
  margin: auto;
}

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 5px;
	background: var(--accent-color);
	border-radius: 50px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.section-title.left h2{
	color: #000;
  text-align: left;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-bottom: 15px;
  position: relative;
}

.section-title.left h2:before {
	display: none;
}

.section-title.left h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 5px;
	background: var(--accent-color);
	border-radius: 50px;
	left: 0;
	bottom: 0;
	margin: 0;
}

.section-title p {
  margin-bottom: 0;
	color: #2a2a2a;
	font-size: 18px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 500px;
	height: calc(100vh - 160px);
	width: calc(100vw - 35px);
	border-radius: 15px;
	padding: 80px 0;
	margin: 15px;
	display: flex;
	align-items: end;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.hero:after {
	content: "";
	display: block;
	opacity: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	/*background: linear-gradient(90deg, rgb(255 255 255 / 90%) 5%, rgb(255 255 255 / 0%) 80%);*/
	background: linear-gradient(90deg, rgb(255 255 255 / 90%) 40%, rgb(255 255 255 / 0%) 80%);
	transition: all ease-in-out 0.5s;
}
.inner-page .hero:after{
	background: linear-gradient(90deg, rgba(11, 70, 115, 90%) 5%, rgba(11, 70, 115, 0%) 80%);
}
.about-hero.hero .welcome h2 {
	margin: 0;
	font-size: 64px;
	line-height: 74px;
}

.hero img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.inner-page .hero img {
	/*filter: blur(30px);*/
}

.hero .container {
  z-index: 3;
}
.hero .welcome h2 {
    margin: 0;
    margin-bottom: 14px;
    font-size: 50px;
    line-height: 62px;
    font-weight: 400;
    color: var(--accent-color);
}
.hero .welcome p {
    font-size: 24px;
    margin: 0;
    color: var(--accent-color);
}

.hero .content {
  margin-top: 40px;
}

.hero .content .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  border-radius: 4px;
}

.hero .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero .content .why-box p {
  margin-bottom: 30px;
}

.hero .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero .content .why-box .more-btn i {
  font-size: 14px;
}

.hero .content .why-box .more-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.inner-page .hero {
	min-height: 273px;
	max-height: 360px;
	height: auto;
	padding: 70px 0 40px;
}
.inner-page .hero .welcome h2 {
	margin: 0;
	font-size: 40px;
	line-height: 48px;
	margin-bottom: 10px;
	font-weight: 500;
	color: #fff;
}
.inner-page .hero .welcome h3 {
	margin: 0;
	font-size: 36px;
	line-height: 48px;
	margin-bottom: 10px;
	font-weight: 400;
	color: #fff;
}
.inner-page .hero .welcome p {
	font-size: 20px;
	color: #fff;
}

@media (max-width: 767px) {
	.hero {
    height: auto;
    width: auto;
    border-radius: 0;
		padding: 80px 0 30px;
    margin: 0;
		margin-bottom: 20px;
	}
	.hero .welcome p {
    font-size: 16px;
    margin: 0;
	}
	.hero .welcome h2,
	.about-hero.hero .welcome h2 {
    margin: 0 0 15px 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 300;
	}
}

@media (max-height: 600px) {
	.hero {
    border-radius: 15px;
    padding: 46px 0;
	}
	.hero .welcome h2,
	.about-hero.hero .welcome h2 {
    margin: 0;
    font-size: 60px;
    line-height: 68px;
    margin-bottom: 15px;
    font-weight: 300;
	}
}

.btn-contact, .btn-contact:focus {
	color: #fff;
	background: var(--accent-color);
	border: 1.5px solid #fff;
	font-size: 16px;
	font-weight: 500;
	padding: 8px 8px 8px 16px;
	margin: 25px 0 0 0;
	border-radius: 50px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
}
.btn-contact:hover {
	background: var(--default-color);
	color: #fff;
	border: 1.5px solid var(--default-color);
}
.btn-contact i {
	background: var(--contrast-color);
	color: var(--accent-color);
	font-size: 18px;
	border-radius: 50px;
	margin-left: 10px;
	min-width: 30px;
	height: 30px;
	transform: rotate(45deg);
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-contact:hover i{
	background: var(--contrast-color);
	color: var(--default-color);
}

/*--------------------------------------------------------------
# Four Box
--------------------------------------------------------------*/
.four-box {
	padding: 0 15px;
}
.four-box .icon-box {
	border-radius: 10px;
	background: #F0F0F0;
	padding: 20px;
	width: 100%;
	display: grid;
	align-content: space-between;
}
.four-box .col-lg-3:nth-child(1) .icon-box {
    background: linear-gradient(rgb(50 103 163 / 0%), rgb(50 103 163)), url(../img/four-box/review.jpg) center center;
    background-size: cover;
    border: 3px solid rgb(50 103 163);
}
.four-box .col-lg-3:nth-child(1) .icon-box:hover {
    background: linear-gradient(rgb(50 103 163 / 80%), rgb(50 103 163)), url(../img/four-box/review.jpg) center center;
    background-size: cover;
    border: 3px solid rgb(50 103 163);
}
.four-box .col-lg-3:nth-child(2) .icon-box {
	background: #F0F0F0;
	border: 3px solid #F0F0F0;
}
.four-box .col-lg-3:nth-child(3) .icon-box {
	background: #EDF2E8;
	border: 3px solid #EDF2E8;
}
.four-box .col-lg-3:nth-child(4) .icon-box {
	background: #D4E3E2;
	border: 3px solid #D4E3E2;
}
.four-box .col-lg-3:nth-child(2) .icon-box:hover {
	background: #e8e3e3;
	border: 3px solid #1c80cc;
}
.four-box .col-lg-3:nth-child(3) .icon-box:hover {
	background: #dfe8d6;
	border: 3px solid #1c80cc;
}
.four-box .col-lg-3:nth-child(4) .icon-box:hover {
	background: #b7d1d0;
	border: 3px solid #1c80cc;
}
.four-box .icon-box img {
	height: 60px;
	object-fit: contain;
	margin-bottom: 10px;
}
.four-box .icon-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 20px 0;
}

.four-box .icon-box p {
	font-size: 16px;
	color: #000;
	margin: 0;
}

.four-box .icon-box i {
  font-size: 26px;
  color: #F6AD03;
}

.four-box .icon-box span {
    color: #fff;
    background: #407C75;
    width: 38px;
    height: 38px;
    font-size: 16px;
    border: 2px solid #fff;
    outline: 3px solid #407C75;
    margin-left: 10px;
    border-radius: 50px;
    display: inline-grid;
    justify-content: center;
    align-items: center;
}
.wid-box {
    border-radius: 10px;
    width: 100%;
    display: flow;
    align-content: center;
}
.four-box .col-lg-3:nth-child(2) .wid-box {
	background: #F4F4F4;
	border: 3px solid #F4F4F4;
}
.four-box .col-lg-3:nth-child(3) .wid-box {
	background: linear-gradient(to right, rgb(254, 254, 254) 44%, rgb(247, 247, 247) 88%, rgb(247, 247, 247) 100%);
	border: 3px solid #EDF2E8;
}
.four-box .col-lg-3:nth-child(4) .wid-box {
	background: #F8F7F3;
	border: 3px solid #F8F7F3;
}
.tg_header_wrap {
    display: block!important;
}
div.cqc-widget {
    height: 100%!important;
    border-radius: 8px!important;
}

@media (max-width: 767px) {
	.four-box .icon-box {
    padding: 12px;
	}
	.four-box .icon-box img {
    height: 42px;
	}
	.four-box .icon-box p {
    font-size: 14px;
		margin-top: 10px;
	}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .main-img {
	border-radius: 20px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.about .icon-img {
	position: absolute;
	top: 50px;
	left: 50px;
	width: 80px;
}
.about .content {
  background: linear-gradient(#EAE8F3,#D3C8E2);
	border-radius: 20px;
	padding: 30px;
	position: relative;
}
.about .content img {
	position: absolute;
	right: 0;
	width: 200px;
	opacity: .4;
}
.about .content h2 {
	color: #000;
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
}
.about .content h2::after {
	content: "";
	display: block;
	border-radius: 50px;
	width: 80px;
	height: 4px;
	background: var(--accent-color);
	margin-top: 15px;
}
.about .content h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
}
.about .content p:last-child {
	margin-bottom: 0;
	color: #000;
}

@media (max-width: 767px) {
	.about .icon-img {
    top: 20px;
    left: 20px;
    width: 64px;
	}
	.about .content {
    padding: 20px;
	}
}

.btn-lg {
	position: relative;
	color: #2a2a2a;
	background-image: url(../img/pattern.svg), linear-gradient(45deg, #c8d8b75e, #C8D8B7 60%);
	background-size: cover;
	background-repeat: no-repeat;
	font-size: 20px;
	font-weight: 600;
	padding: 15px;
	border-radius: 20px;
	transition: 0.3s ease-in;
	display: flex;
	align-items: end;
	height: 100px;
}
.btn-lg:hover, .btn-lg:focus:hover {
	color: var(--contrast-color);
	background-image: linear-gradient(135deg, rgb(46 103 172 / 25%), rgb(46 103 172 / 80%) 80%), url(../img/pattern.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 80% 20%;
	transition: 0.3s ease-in;
}
.btn-lg i {
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--contrast-color);
	color: var(--accent-color);
	font-size: 18px;
	border-radius: 50px;
	margin-left: 10px;
	min-width: 38px;
	height: 38px;
	transform: rotate(45deg);
	display: flex;
	align-items: center;
	justify-content: center;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	transition: all ease-in-out 0.3s;
	height: 100%;
}
.services .service-item .image {
	height: 200px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.services .service-item .image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.services .service-item .content {
	padding: 20px;
}
.services .service-item h3 {
	font-weight: 600;
	margin: 0 0 10px 0;
	font-size: 20px;
}
.services .service-item article {
    height: 72px;
    overflow: hidden;
}
.services .service-item p {
    color: #2a2a2a;
    font-size: 16px;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.services .service-item:hover {
  background-image: linear-gradient(135deg, rgb(46 103 172 / 30%), rgb(46 103 172 / 90%) 80%), url(../img/pattern.svg);
	background-size: cover;
	background-repeat: no-repeat;
	transition: all ease-in-out 0.3s;
}
.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
	transition: all ease-in-out 0.3s;
}
/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.locations .location-item {
	background: #fff;
	border: 2px solid var(--accent-color);
	padding: 10px;
	border-radius: 15px;
	overflow: hidden;
	transition: all ease-in-out 0.3s;
	height: 100%;
}
.locations .location-item iframe {
    width: 100%;
    height: 200px;
}
.locations .location-item .content {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid;
}
.locations .location-item .content img {
	width: 34px;
	height: 34px;
	margin-right: 10px;
}
.locations .location-item h2 {
	font-weight: 600;
	margin: 0;
	font-size: 20px;
	width: 100%;
}
.locations .location-item i {
	background: var(--accent-color);
	color: var(--contrast-color);
	font-size: 18px;
	border-radius: 50px;
	margin-left: 10px;
	min-width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.locations .location-item:hover {
  background: var(--accent-color);
	transition: all ease-in-out 0.3s;
}
.locations .location-item:hover img {
	filter: brightness(0) invert(1);
}
.locations .location-item:hover h2 {
	color: var(--contrast-color);
}
.locations .location-item:hover i {
	background: var(--contrast-color);
	color: var(--accent-color);
}
.locations .location-item .loc-list .loc {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    margin-bottom: 6px;
    background: #eaeaea;
    padding: 4px 10px 4px 4px;
    border-radius: 50px;
}
.locations .location-item .loc-list .loc i {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 12px;
    border-radius: 50px;
    margin-left: 0;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.locations .location-item:hover .loc-list .loc {
    background: var(--contrast-color);
}

/*--------------------------------------------------------------
# What Section
--------------------------------------------------------------*/
.what {
	background: linear-gradient(rgb(239 243 249) 50%, rgb(255 255 255) 50%);
}
.what h4 {
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 16px;
	color: #000;
}
.what p {
	font-size: 16px;
	color: #000;
}
.what p:last-child {
	margin: 0;
}
.what ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.what ul li {
	background: #fff;
	color: #2a2a2a;
	padding: 4px;
	border-radius: 10px;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}
.what ul li i {
	color: var(--accent-color);
	font-size: 20px;
	margin-right: 10px;
}
.what .main-img {
	border-radius: 20px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.what .cta-btn {
	position: relative;
	color: #2a2a2a;
	background-image: url(../img/pattern.svg), linear-gradient(45deg, #c8d8b75e, #C8D8B7 60%);
	background-size: cover;
	background-repeat: no-repeat;
	font-size: 20px;
	font-weight: 600;
	padding: 15px;
	border-radius: 20px;
	transition: 0.3s ease-in;
	height: 100px;
	min-width: 300px;
	display: inline-flex;
	align-items: end;
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 30px 40px;
}
.what .cta-btn:hover, .what .cta-btn:focus:hover {
	color: var(--contrast-color);
	background-image: linear-gradient(135deg, rgb(46 103 172 / 25%), rgb(46 103 172 / 80%) 80%), url(../img/pattern.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 80% 20%;
	transition: 0.3s ease-in;
}
.what .cta-btn i {
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--contrast-color);
	color: var(--accent-color);
	font-size: 18px;
	border-radius: 50px;
	margin-left: 10px;
	min-width: 38px;
	height: 38px;
	transform: rotate(45deg);
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 767px) {
	.what {
    background: #fff;
	}
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta .box {
	background: rgb(5 46 112 / 30%);
	border: 1px solid var(--contrast-color);
	border-radius: 20px;
	padding: 40px;
	margin: 100px 0;
	width: 100%;
	transition: 0.3s;
	backdrop-filter: blur(10px);
}
.cta .container {
	position: relative;
	z-index: 2;
}
.cta .container-fluid:after {
	content: "";
	display: block;
	opacity: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: #00000041;
	transition: all ease-in-out 0.5s;
}
.cta h3 {
	color: #fff;
	font-size: 34px;
	font-weight: 500;
	margin-bottom: 20px;
}
.cta h3::after {
	content: "";
	display: block;
	border-radius: 50px;
	width: 80px;
	height: 4px;
	background: #fff;
	margin-top: 15px;
}
.cta p {
	margin-bottom: 0;
	color: #fff;
	font-size: 20px;
}

.cta .call-btn, .cta .call-btn:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	border: 1.5px solid #fff;
	font-size: 18px;
	font-weight: 600;
	padding: 8px 16px 8px 8px;
	margin: 25px 0 0 10px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	transition: 0.3s;
}
.cta .call-btn:hover {
	color: var(--contrast-color);
	background: var(--accent-color);
	border: 1.5px solid var(--accent-color);
}
.cta .call-btn i {
	background: #fff;
	color: var(--accent-color);
	font-size: 18px;
	border-radius: 50px;
	margin-right: 4px;
	min-width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px) {
	.cta .box {
    padding: 20px;
    margin: 30px 0;
	}
	.cta h3 {
    font-size: 24px;
	}
	.cta p {
    font-size: 16px;
	}
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.faq .main-img {
	border-radius: 20px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.faq .icon-img {
	position: absolute;
	top: 50px;
	left: 50px;
	width: 80px;
}

.faq .faq-container .faq-item {
  background-color: var(--contrast-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 20px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
	color: #2a2a2a;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

@media (max-width: 767px) {
	.faq .icon-img {
		top: 20px;
		left: 30px;
		width: 64px;
	}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .container-fluid:first-child {
	min-height: 400px;
	display: grid;
	align-content: center;
	position: relative;
}
.testimonials .container-fluid:first-child:after {
	content: "";
	display: block;
	opacity: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: #00000041;
	transition: all ease-in-out 0.5s;
}
.testimonials .container-fluid:first-child h2 {
	color: #fff;
	font-size: 36px;
	margin-top: 40px;
	position: relative;
	z-index: 2;
}
.testimonials .container-fluid:first-child svg {
	position: relative;
	z-index: 2;
}
.testimonials .quote {
	background: var(--accent-color);
	width: 180px;
	height: 180px;
	border-radius: 50%;
	display: grid;
	place-content: center;
	position: absolute;
	top: -110px;
	left: 0;
}
.testimonials .container-fluid:nth-child(2) {
	margin-left: 11%;
	padding: 80px 0;
}
.testimonials .container:nth-child(2) {
	padding: 80px 0;
}


/*--------------------------------------------------------------
# Video Testimonials Section
--------------------------------------------------------------*/
.v-testimonials .v-testimonials-carousel,
.v-testimonials .v-testimonials-slider {
  overflow: hidden;
}

.v-testimonials .testimonial-item {
    box-sizing: content-box;
    background: #fff;
    height: 380px;
    min-height: 60px;
    border-radius: 10px;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
}
.v-testimonials .testimonial-item:after {
    content: "";
    display: block;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(rgb(0 0 0 / 0%) 50%, rgb(0 0 0 / 60%) 90%);
    transition: all ease-in-out 0.3s;
    z-index: 0;
}
.v-testimonials .testimonial-item .play {
    color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    font-size: 54px;
    line-height: 0;
    transition: all ease-in-out 0.3s;
}
.v-testimonials .testimonial-item:hover .play {
    top: 24px;
    right: 24px;
    font-size: 64px;
}
.v-testimonials .testimonial-item:hover {
    cursor: pointer;
}
.v-testimonials .testimonial-item:hover:after{
    background: linear-gradient(rgb(0 0 0 / 10%) 40%, rgb(0 0 0 / 80%) 90%);
}
.v-testimonials .testimonial-item .info {
    position: relative;
    z-index: 1;
}
.v-testimonials .testimonial-item h3 {
    color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}
.v-testimonials .testimonial-item h4 {
    font-size: 14px;
    margin: 0;
    color: #ffffff96;
}

.v-testimonials .testimonial-item .stars {
  margin: 10px 0 0;
    position: relative;
    z-index: 1;
}

.v-testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.v-testimonials .testimonial-item .quote-icon-left,
.v-testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.v-testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.v-testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.v-testimonials .testimonial-item p {
	color: #2a2a2a;
	font-size: 16px;
	line-height: 22px;
	margin: 0;
}

.v-testimonials .swiper-wrapper {
  height: auto;
}

.v-testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
	text-align: start;
}

.v-testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 1;
  border: none;
}

.v-testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.v-testimonials .modal iframe {
    height: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.v-testimonials .modal .btn-close {
    position: absolute;
    right: -10px;
    top: -10px;
    padding: 12px;
    background: #40dec7 var(--bs-btn-close-bg) center / 1em auto no-repeat;
    border-radius: 50px;
    font-size: 12px;
    opacity: 1;
    height: 4px;
    width: 4px;
    filter: invert(1);
}

@media (max-width: 767px) {
	.v-testimonials .container-fluid:first-child {
    min-height: 200px;
	}
	.v-testimonials .container-fluid:first-child h2 {
    font-size: 24px;
    margin-top: 0;
	}
	.v-testimonials .quote {
    position: relative;
    width: 80px;
    height: 80px;
    top: 0;
    margin: 20px 0;
	}
	.v-testimonials .quote svg {
    width: 34px;
	}
	.v-testimonials .container-fluid:nth-child(2) {
    margin-left: 0;
		padding: 20px;
	}
  .v-testimonials .v-testimonials-carousel,
  .v-testimonials .v-testimonials-slider {
    overflow: hidden;
  }
}
/*--------------------------------------------------------------
# Book your care Section
--------------------------------------------------------------*/

.book .book-box {
	background: url(../img/pattern-ct.svg), linear-gradient(90deg, var(--accent-color),  var(--accent-color));
	background-size: cover;
	border-radius: 30px;
	padding: 50px;
}
.book .book-box h2 {
	color: #fff;
}
.book .book-box h2::before {
	background: var(--contrast-color);
}
.book .book-box h2::after {
	background: var(--contrast-color);
}
.book .book-box p {
	color: #fff;
}
.book .book-box .book-item {
	background: #fff;
	border-radius: 20px;
	text-align: center;
	min-height: 230px;
	border-bottom: 10px solid var(--default-color);
	border-top: 0 solid var(--default-color);
	transition: all ease-in-out 0.3s;
}
.book .book-box .book-item:hover {
	border-bottom: 0 solid var(--default-color);
	border-top: 10px solid var(--default-color);
	transition: all ease-in-out 0.3s;
}
.book .book-box .book-item img {
	width: 140px;
}
.book .book-box .book-item p {
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
	color: var(--accent-color);
}
.book .book-box .book-item p a{
	color: var(--accent-color);
}
.book .book-box .book-item p a span{
	color: var(--default-color);
}

@media (max-width: 767px) {
	.book .book-box {
    padding: 24px;
	}
	.book .book-box h2 {
    color: #fff;
    font-size: 24px;
	}
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
	background: url(../img/pattern-ct.svg), linear-gradient(90deg, #2e67ac, #2e67ac);
	background-size: cover;
}

.contact .box {
	position: relative;
	min-height: 300px;
	border-radius: 15px;
	padding: 20px;
	display: grid;
	align-items: end;
	margin-bottom: 25px;
}
.contact .box h2 {
	color: var(--contrast-color);
	font-weight: 500;
	font-size: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	background: rgb(5 46 112 / 30%);
	border: 1px solid var(--contrast-color);
	border-radius: 10px;
	padding: 15px;
	width: 100%;
	margin-bottom: 0;
	transition: 0.3s;
	backdrop-filter: blur(10px);
}

.contact .ct-line {
	display: flex;
	margin-bottom: 15px;
}
.contact .ct-line i {
	font-size: 20px;
	color: var(--contrast-color);
	padding: 1px;
	padding-right: 15px;
}
.contact .ct-line a {
	font-size: 16px;
	color: var(--contrast-color);
}
.contact .ct-line a:hover {
	font-size: 16px;
	color: #000;
}

.contact .php-email-form {
	height: 100%;
	padding: 30px;
	background: var(--contrast-color);
	border-radius: 15px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: var(--contrast-color);
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--contrast-color);
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-floating input,
.contact .php-email-form .form-floating textarea,
.contact .php-email-form .form-floating select {
	font-size: 14px;
	box-shadow: none;
	border-radius: 0;
	background-color: color-mix(in srgb, var(--background-color), transparent 50%);
	border: none;
	border-bottom: 1px solid #000;
	min-height: 40px;
	height: 50px!important;
	position: relative;
	z-index: 10;
}
.contact .php-email-form .form-floating textarea {
	height: 120px!important;
}
.contact .php-email-form .form-floating label {
	padding: 8px 10px;
	color: #000;
}

.contact .php-email-form .form-floating input:focus,
.contact .php-email-form .form-floating textarea:focus,
.contact .php-email-form .form-floating select:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form .form-floating input::placeholder,
.contact .php-email-form .form-floating textarea::placeholder,
.contact .php-email-form .form-floating select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact .btn-send {
	color: #fff;
	background: var(--accent-color);
	backdrop-filter: blur(10px);
	border: 1.5px solid var(--accent-color);
	font-size: 16px;
	font-weight: 500;
	padding: 8px 8px 8px 16px;
	margin: 25px 0 0 0;
	border-radius: 50px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
}
.contact .btn-send i {
	color: var(--accent-color);
	background: var(--contrast-color);
	border-radius: 50px;
	width: 32px;
	height: 32px;
	padding: 5px;
	margin-left: 15px;
	font-size: 25px;
	transform: rotate(45deg);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}

.contact .btn-send:hover {
	color: var(--contrast-color);
	background: var(--default-color);
	border: 1.5px solid var(--default-color);
}
.contact .btn-send:hover i{
	color: var(--contrast-color);
	background: var(--accent-color);
}
/*--------------------------------------------------------------
# Accreditations Section
--------------------------------------------------------------*/
.accreditation .accr-item {
	height: 200px;
	display: grid;
	align-content: center;
}
.accreditation .accr-item img {
	padding: 20px;
	object-fit: contain;
}
/*--------------------------------------------------------------
# About page Section
--------------------------------------------------------------*/
.about-page .main-img {
	border-radius: 20px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.about-page .section-title.left h2 {
    font-size: 30px;
    line-height: 38px;
}
.about-page p {
	color: #2a2a2a;
}
.about-page p:last-child {
	margin: 0;
}

/* # Mission Vission Section () */

.misvis .misvis-box {
	background: url(../img/pattern-ct.svg), linear-gradient(90deg, var(--accent-color),  var(--accent-color));
	background-size: cover;
	border-radius: 30px;
	padding: 50px;
}
.misvis .misvis-box h2 {
	color: #fff;
}
.misvis .misvis-box h2::before {
	background: var(--contrast-color);
}
.misvis .misvis-box h2::after {
	background: var(--contrast-color);
}
.misvis .misvis-box p {
	color: #fff;
}

@media (max-width: 767px) {
	.misvis .misvis-box {
    padding: 24px;
	}
	.misvis .misvis-box h2 {
    color: #fff;
    font-size: 24px;
	}
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/

.team .main-img {
    border-radius: 20px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.team .section-title.left h2 {
    font-size: 30px;
    line-height: 38px;
}
.team p {
    color: #2a2a2a;
}
.team .row:nth-child(odd) .col-lg-4 {
    order: 2;
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
/* News Section - News Page
------------------------------*/
.news {
	background: #F4F7FB;
}
.news .sticky-top {
	top: 90px;
}

.news .news-filter {
	position: sticky;
	top: 80px;
}
.news .news-box {
	background: #fff;
	border-radius: 14px;
	padding: 15px;
	min-height: 80px;
	transition: 0.3s ease;
}
.news .news-box h4 {
	font-size: 18px;
	font-weight: 600;
}
.news .news-box .input-group {
	background: #000;
	border: 1.5px solid #3d3d3d;
	border-radius: 50px;
  width:100%;
	min-width: 270px;
	padding: 6px;
}
.news .news-box .input-group input::-webkit-input-placeholder {
	color: #999999;
}
.news .news-box .input-group i {
  
	color: #B8B8B8;
}
.news .news-box .input-group .form-control {
	background: transparent;
	border-radius: 50px!important;
	color: #fff;
}
.news .news-box .btn-search,
.news .news-box .btn-search:focus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	width: 36px;
	font-size: 16px;
	background: #0962CF;
	border-radius: 50px!important;
	transition: 0.3s ease;
}
.news .news-box .btn-search i {
	display: flex;
	color: #fff!important;
  
}

.news .news-box .btn-search:hover,
.news .news-box .btn-search:focus:hover {
  color: #fff;
  background: #4e4e4e;
	transform: scale(1.02);
	transition: 0.3s ease;
}
.news .news-box .form-check-input {
	border: 2px solid #0b61cf;
}
.news .news-box .form-check-label {
  color: #2a2a2a;
}
.news .news-box .form-check {
	padding: 3px;
	padding-left: 33px;
	padding-right: 10px;
	margin-bottom: 3px;
	margin-left: -10px;
	margin-right: -10px;
	border-radius: 5px;
	transition: 0.3s ease;
}
.news .news-box .form-check:hover {
	background: #e6e6e6;
}
.news .news-box.share ul {
	list-style: none;
	padding: 0;
	display: flex;
	margin-bottom: 0;
}
.news .news-box.share ul li a {
	padding: 10px;
	margin-right: 10px;
	font-size: 28px;
	background: #ececec;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 10px;
}
.news .news-box.share ul li a:hover {
	background: var(--accent-color);
	color: #fff;
}

.news .posts-list article {
	background: #fff;
  padding: 15px;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
}
.news .posts-list article:hover {
	transform: scale(1.03);
  transition: 0.3s ease;
	background: #e7ebf2;
}

.news .posts-list .post-img {
	margin: -30px -30px 15px -30px;
	overflow: hidden;
	background: #ececec;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 210px;
}

.news .posts-list .post-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news .posts-list .post-category {
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 5px;
}

.news .posts-list .title {
	font-size: 18px;
	font-weight: 600;
	padding: 0;
	margin: 0 0 15px 0;
}

.news .posts-list .title a {
  color: var(--heading-color);
  transition: 0.3s ease;
}

.news .posts-list .title a:hover {
  color: var(--accent-color);
}

.news .posts-list .post-author-img {
  width: 38px;
  border-radius: 50%;
  margin-right: 15px;
}

.news .posts-list .post-author {
  font-weight: 600;
  margin-bottom: 0;
}

.news .posts-list .post-date {
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 0;
}

.news .pagination {
  margin-top: 30px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.news .pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.news .pagination li {
  margin: 0 5px;
  transition: 0.3s ease;
}

.news .pagination li a {
  color: rgba(var(--default-color-rgb), 0.6);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news .pagination li.active,
.news .pagination li:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.news .pagination li.active a,
.news .pagination li:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# News Details Page
--------------------------------------------------------------*/
/* News-details Section - News Details Page
------------------------------*/

.news-details .sticky-top {
	top: 90px;
}

.news-details {
	background: #F4F7FB;
}

.news-details .btn-back,
.news-details .btn-back:focus {
	color: #000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--poppins-font);
	background: #f0f0f0;
	font-size: 16px;
	font-weight: 400;
	padding: 12px 35px;
	border-radius: 50px;
	transition: 0.3s ease;
}
.news-details .btn-back i {
	display: flex;
	font-size: 32px;
}
.news-details .btn-back:hover,
.news-details .btn-back:focus:hover {
	color: #fff;
	background: var(--accent-color);
	transform: scale(1.02);
	transition: 0.3s ease;
}

.news-details .article {
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
  padding: 30px;
}

.news-details .post-img {
	border-radius: 14px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.news-details .title {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 600;
  padding: 0;
  margin: 30px 0;
}

.news-details .content {
  margin-top: 20px;
	color: #2a2a2a;
}

.news-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: 600;
	color: #2a2a2a;
}

.news-details .content blockquote {
  overflow: hidden;
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.news-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.news-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.news-details .meta-top {
  margin-top: 20px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.news-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.news-details .meta-top ul li+li {
  padding-left: 20px;
}

.news-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--default-color-rgb), 0.6);
}

.news-details .meta-top a {
  color: rgba(var(--default-color-rgb), 0.6);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.news-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.news-details .meta-bottom i {
  color: rgba(var(--default-color-rgb), 0.6);
  display: inline;
}

.news-details .meta-bottom a {
  color: rgba(var(--default-color-rgb), 0.6);
  transition: 0.3s ease;
}

.news-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.news-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.news-details .meta-bottom .cats li {
  display: inline-block;
}

.news-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.news-details .meta-bottom .tags li {
  display: inline-block;
}

.news-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.news-details .meta-bottom .share {
  font-size: 16px;
}

.news-details .meta-bottom .share i {
  padding-left: 5px;
}

.news-details .sidebar {
	background: #fff;
	border-radius: 14px;
	padding: 15px;
	min-height: 120px;
	transition: 0.3s ease;
}

.news-details .sidebar .sidebar-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0;
}

.news-details .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.news-details .sidebar .search-form form {
  background: var(--background-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}

.news-details .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.news-details .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.news-details .sidebar .search-form form button {
  background: var(--accent-color);
  color: var(--background-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s ease;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.news-details .sidebar .search-form form button i {
  line-height: 0;
}

.news-details .sidebar .search-form form button:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

.news-details .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.news-details .sidebar .categories ul li+li {
  padding-top: 10px;
}

.news-details .sidebar .categories ul a {
  color: rgba(var(--default-color-rgb), 0.8);
  transition: 0.3s ease;
}

.news-details .sidebar .categories ul a:hover {
  color: var(--accent-color);
}

.news-details .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
}

.news-details .sidebar .recent-posts .post-item {
  display: flex;
  margin-top: 15px;
}

.news-details .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.news-details .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.news-details .sidebar .recent-posts h4 a {
  color: var(--default-color);
  transition: 0.3s ease;
}

.news-details .sidebar .recent-posts h4 a:hover {
  color: var(--accent-color);
}

.news-details .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.5);
}

.news-details .sidebar .tags {
  margin-bottom: -10px;
}

.news-details .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.news-details .sidebar .tags ul li {
  display: inline-block;
}

.news-details .sidebar .tags ul a {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--default-color-rgb), 0.4);
  display: inline-block;
  transition: 0.3s ease;
}

.news-details .sidebar .tags ul a:hover {
  color: var(--background-color);
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
}

.news-details .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(var(--default-color-rgb), 0.4);
  font-size: 14px;
}

.news-details .news-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.news-details .news-author img {
  max-width: 120px;
  margin-right: 20px;
}

.news-details .news-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: rgba(var(--default-color-rgb), 0.8);
}

.news-details .news-author .social-links {
  margin: 0 10px 10px 0;
}

.news-details .news-author .social-links a {
  color: rgba(var(--default-color-rgb), 0.4);
  margin-right: 5px;
}

.news-details .news-author p {
  font-style: italic;
  color: rgba(var(--default-color-rgb), 0.7);
  margin-bottom: 0;
}

.news-details .comments {
  margin-top: 30px;
}

.news-details .comments .comments-count {
  font-weight: bold;
}

.news-details .comments .comment {
  margin-top: 30px;
  position: relative;
}

.news-details .comments .comment .comment-img {
  margin-right: 14px;
}

.news-details .comments .comment .comment-img img {
  width: 60px;
}

.news-details .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.news-details .comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s ease;
}

.news-details .comments .comment h5 a:hover {
  color: var(--accent-color);
}

.news-details .comments .comment h5 .reply {
  padding-left: 10px;
  color: rgba(var(--default-color-rgb), 0.8);
}

.news-details .comments .comment h5 .reply i {
  font-size: 20px;
}

.news-details .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 5px;
}

.news-details .comments .comment.comment-reply {
  padding-left: 40px;
}

.news-details .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.news-details .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.news-details .comments .reply-form p {
  font-size: 14px;
}

.news-details .comments .reply-form input {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.news-details .comments .reply-form input:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.news-details .comments .reply-form textarea {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.news-details .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.news-details .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.news-details .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.news-details .comments .reply-form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: rgba(var(--accent-color-rgb), 0.8);
}

/*--------------------------------------------------------------
# Jobs
--------------------------------------------------------------*/

.jobs-page .btn-upload,
.jobs-page .btn-upload:focus {
	color: #fff;
	background: #0b467375;
	backdrop-filter: blur(10px);
	border: 1.5px solid #fff;
	font-size: 16px;
	font-weight: 500;
	padding: 8px 8px 8px 16px;
	border-radius: 50px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
}
.jobs-page .btn-upload:hover {
	background: var(--default-color);
	color: #fff;
	border: 1.5px solid var(--default-color);
}
.jobs-page .btn-upload i {
	background: var(--contrast-color);
	color: var(--accent-color);
	font-size: 18px;
	border-radius: 50px;
	margin-left: 10px;
	min-width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.jobs-page .btn-upload:hover i{
	background: var(--contrast-color);
	color: var(--default-color);
}

.jobs-page .filter {
	padding: 8px;
	border-radius: 50px;
	background: #ffffff2b;
	background: linear-gradient(90deg, rgb(11 70 115) 5%, #B4C1D5 80%);
}
.jobs-page .filter .form-control,
.jobs-page .filter .form-select {
	border-radius: 50px;
	border: #ffffff;
	font-size: 16px;
	height: 46px;
}

.jobs-page .filter .form-control::-webkit-input-placeholder {
	color: #353535;
}

.jobs-page .filter .btn-search,
.jobs-page .filter .btn-search:focus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--poppins-font);
	background: var(--accent-color);
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	width: 100%;
	height: 46px;
	padding: 5px 48px 5px 5px;
	border-radius: 50px;
	transition: 0.3s ease;
	min-width: 180px;
	justify-content: space-between;
}

.jobs-page .filter .btn-search i {
	background: #fff;
	color: var(--accent-color);
	font-size: 18px;
	border-radius: 50px;
	margin-right: 8px;
	min-width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.jobs-page .filter .btn-search:hover,
.jobs-page .filter .btn-search:focus:hover {
	background: var(--default-color);
}

.job-list .table{
	border-spacing: 0 6px;
	border-collapse: inherit;
	min-width: 500px;
}
.job-list .table>:not(caption)>*>* {
	vertical-align: middle;
}
.job-list .table thead tr th {
	background: transparent;
	font-size: 14px;
	color: #515151;
	font-weight: 400;
}
.job-list .table tr td:first-child{
	border-radius: 50px 0 0 50px;
}
.job-list .table tr td:last-child{
	border-radius: 0 50px 50px 0;
	width: 50px;
}
.job-list .table thead tr {
	height: 30px;
	transition: all 0.4s ease;
}
.job-list .table tr {
	height: 50px;
  transition: all 0.4s ease;
}

.job-list .table i {
	
}

.job-list .table tbody tr:hover {
	cursor: pointer;
	border-radius: 50px;
	box-shadow: 0 15px 40px rgba(30,10,60,.1);
	transform: scale(1.005);
	position: relative;
	z-index: 109000;
}
.job-list .apply-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--poppins-font);
	background: #fff;
	color: #fff;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 400;
	width: 100%;
	border-radius: 50px;
	transition: 0.3s ease;
}

.job-list .apply-btn:hover {
	color: #000;
}
.job-list .table tbody tr:hover .apply-btn {
	color: #2a2a2a;
}
.job-list .table tbody tr:hover .apply-btn .bi-arrow-right {
	background: var(--accent-color);
	color: #fff;
}

.job-list .apply-btn .bi-arrow-right {
	width: 38px;
	height: 38px;
	padding: 5px;
	margin: 0 5px 0 10px;
	background: #DFF3FE;
	color: #3d3d3d;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.job-list .apply-btn:hover .bi-arrow-right {
	background: #b7dff5;
}

.job-list .title-box {
	background: #e8f7ff;
	font-size: 16px;
	font-weight: 600;
  height: 44px;
	padding: 5px;
	padding-left: 15px;
	border-radius: 50px 10px 10px 50px;
	display: flex;
	align-items: center;
}

.job-list .title-box .title-img {
	width: 38px;
	height: 38px;
	padding: 5px;
	margin-right: 10px;
	background: #000;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.job-list .title-box .title-img img {
	width: 15px;
	filter: brightness(0) invert(1);
}
.jobs-page .contact h2 {
	color: #fff;
}
.jobs-page .contact h2::before {
	background: var(--contrast-color);
}
.jobs-page .contact h2::after {
	background: var(--contrast-color);
}

@media (max-width: 768px) {
	.job-list .table tr td:nth-child(2) {
    white-space: nowrap;
	}
	.job-list {
		overflow: auto;
	}
}
.job-box .job-item {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
    height: 100%;
    border-bottom: 10px solid var(--default-color);
}
.job-box .job-item h3 {
	font-weight: 600;
	margin: 0 0 10px 0;
	font-size: 20px;
	line-height: inherit;
}
.job-box .job-item p {
    color: #2a2a2a;
    font-size: 16px;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.job-box .job-item .date {
    background: #f0f0f0;
    color: #2a2a2a;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}
.job-box .job-item:hover {
  background-image: linear-gradient(135deg, rgb(46 103 172 / 30%), rgb(46 103 172 / 90%) 80%), url(../img/pattern.svg);
	background-size: cover;
	background-repeat: no-repeat;
	transition: all ease-in-out 0.3s;
}
.job-box .job-item:hover h3,
.job-box .job-item:hover p {
  color: var(--contrast-color);
	transition: all ease-in-out 0.3s;
}

/* # Job detail */

.job-det {
	background: #F4F7FB;
	top: 80px;
	min-height: 600px;
}
.job-det .main-det,
.job-det .right-det {
	background: #fff;
	border-radius: 14px;
	padding: 15px;
	min-height: 120px;
	transition: 0.3s ease;
}
.job-det .right-det.sticky-top {
	top: 80px;
}
.job-det .main-det h1 {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 14px;
}
.job-det .main-det h2 {
    font-size: 20px;
    color: #2a2a2a;
    margin-bottom: 10px;
}
.job-det .main-det p {
    color: #2a2a2a;
}
.job-det .main-det ul {
    color: #2a2a2a;
}
.job-det .main-det h3 {
	font-size: 16px;
	color: #7f7f7f;
	margin-bottom: 2px;
}
.job-det .main-det small {
	color: #7f7f7f;
}
.job-det .main-det .job-id {
	color: #7f7f7f;
	font-weight: 600;
}
.job-det .main-det .det-points {
	background: #DFF3FE;
	padding: 10px;
	border-radius: 10px;
  height: 100%;
}
.job-det .main-det h5 {
	margin-bottom: 0;
  font-size: 16px;
}
.job-det .tags .tag-box {
	font-size: 12px;
	display: inline-block;
	border: 1px solid #e7e7f1;
	border-radius: 50px;
	padding: 4px 8px;
}
.job-det .tags .tag-box:hover {
	border: 1px solid #275df5;
}
.job-det .main-det .date {
	font-size: 14px;
}
.job-det .btn-apply,
.job-det .btn-apply:focus {
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--poppins-font);
	background: var(--default-color);
	font-size: 16px;
	font-weight: 400;
	padding: 12px 35px;
	border-radius: 50px;
	transition: 0.3s ease;
}
.job-det .btn-apply i {
	display: flex;
	font-size: 32px;
  
}
.job-det .btn-apply:hover,
.job-det .btn-apply:focus:hover {
    color: #fff;
	background: var(--heading-color);
	transition: 0.3s ease;
}
.job-det .btn-back,
.job-det .btn-back:focus {
	color: #000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--poppins-font);
	background: #f0f0f0;
	font-size: 16px;
	font-weight: 400;
	padding: 12px 35px;
	border-radius: 50px;
	transition: 0.3s ease;
}
.job-det .btn-back i {
	display: flex;
	font-size: 32px;
  
}
.job-det .btn-back:hover,
.job-det .btn-back:focus:hover {
  color: #fff;
	background: var(--default-color);
	transition: 0.3s ease;
}

.job-det .nav-link {
	background: #fff;
	border-radius: 14px;
	color: var(--heading-color);
	border: 2px solid #fff;
	padding: 12px 38px;
	transition: 0.3s ease;
}
.job-det .nav-link.active {
	background: #fff;
	border: 2px solid #fff;
	color: #2a2a2a;
}
.job-det .nav-link:hover {
	border: 2px solid #ebebeb;
}
.job-det .tab-content {
	background: #fff;
	color: #2a2a2a;
	border-radius: 14px;
	padding: 15px;
	min-height: 200px;
}

/*--------------------------------------------------------------
# Find Care Section
--------------------------------------------------------------*/
.find-care .search {
	background: #d6e9ff;
	padding: 10px;
	border-radius: 50px;
}
.find-care .search .input-group {
	background: #fff;
	border: 1.5px solid #fff;
	border-radius: 50px;
  width:100%;
	min-width: 340px;
	padding: 6px;
}
.find-care .search .input-group input::-webkit-input-placeholder {
	color: #999999;
}
.find-care .search .input-group i {
	color: #fff;
}
.find-care .search .input-group .form-control {
	background: transparent;
	border-radius: 50px!important;
}
.find-care .search .btn-search,
.find-care .search .btn-search:focus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	width: 36px;
	font-size: 16px;
	background: #0962CF;
	border-radius: 50px!important;
	transition: 0.3s ease;
}
.find-care .search .btn-search i {
	display: flex;
}

.find-care .search .btn-search:hover,
.find-care .search .btn-search:focus:hover {
  background: #4e4e4e;
	transform: scale(1.02);
	transition: 0.3s ease;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/

.login .php-email-form {
    height: 100%;
    padding: 30px;
    background: var(--contrast-color);
    background-image: linear-gradient(316deg, #ffffff00, #ffffff 65%), url(../img/pattern.svg);
    border-radius: 15px;
}

@media (max-width: 575px) {
  .login .php-email-form {
    padding: 20px;
  }
}

.login .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: var(--contrast-color);
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.login .php-email-form .sent-message {
  display: none;
  color: var(--contrast-color);
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.login .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.login .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.login .php-email-form .form-floating input,
.login .php-email-form .form-floating textarea,
.login .php-email-form .form-floating select {
	font-size: 14px;
	box-shadow: none;
	border-radius: 0;
	background-color: color-mix(in srgb, var(--background-color), transparent 50%);
	border: none;
	border-bottom: 1px solid #000;
	min-height: 40px;
	height: 50px!important;
	position: relative;
	z-index: 10;
}
.login .php-email-form .form-floating textarea {
	height: 120px!important;
}
.login .php-email-form .form-floating label {
	padding: 8px 10px;
	color: #000;
}

.login .php-email-form .form-floating input:focus,
.login .php-email-form .form-floating textarea:focus,
.login .php-email-form .form-floating select:focus {
  border-color: var(--accent-color);
}

.login .php-email-form .form-floating input::placeholder,
.login .php-email-form .form-floating textarea::placeholder,
.login .php-email-form .form-floating select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.login .btn-login {
	color: #fff;
	background: var(--accent-color);
	backdrop-filter: blur(10px);
	border: 1.5px solid var(--accent-color);
	font-size: 16px;
	font-weight: 500;
	padding: 8px 8px 8px 16px;
	margin: 25px 0 0 0;
	border-radius: 50px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
}
.login .btn-login i {
	color: var(--accent-color);
	background: var(--contrast-color);
	border-radius: 50px;
	width: 32px;
	height: 32px;
	padding: 5px;
	margin-left: 15px;
	font-size: 25px;
	transform: rotate(45deg);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}

.login .btn-login:hover {
	color: var(--contrast-color);
	background: var(--default-color);
	border: 1.5px solid var(--default-color);
}
.login .btn-login:hover i{
	color: var(--contrast-color);
	background: var(--accent-color);
}

/*--------------------------------------------------------------
# Cookie
--------------------------------------------------------------*/

.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    width: calc(100% - 2rem);
    z-index: 9999;
    font-family: system-ui, sans-serif;
    gap: 1rem;
}

  .cookie-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
  }

  .cookie-icon {
    font-size: 1.5rem;
  }

  .cookie-text {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    color: #333;
  }

  .cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .cookie-settings {
    text-decoration: underline;
    font-size: 0.95rem;
    color: #000;
    margin-right: 0.5rem;
    align-self: center;
  }

  .cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

  .cookie-btn.primary {
    background: #ff5c00;
    color: #fff;
  }

  .cookie-btn.secondary {
    background: #eee;
    color: #333;
  }

  .cookie-btn:hover {
    opacity: 0.9;
  }

  .hidden {
    display: none;
  }