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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2E67AC; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0B4673; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0B4673; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --contrast-color: #ffffff; /* The contrast color is used for elements when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant colors */
}

/* 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;  /* The default color of the main navmenu links */
  --nav-hover-color: #f4f4f4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #000; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2a2a2a; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

/*--------------------------------------------------------------
# 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;
}


.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 {
  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;
  color: #fafafa;
}

/*--------------------------------------------------------------
# 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 - 45px);
	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, rgba(11, 70, 115, 90%) 5%, rgba(11, 70, 115, 0%) 80%);
	transition: all ease-in-out 0.5s;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  z-index: 3;
}
.hero .welcome h2 {
	margin: 0;
	font-size: 80px;
	line-height: 90px;
	font-weight: 300;
	color: #fff;
}

.hero .welcome p {
  font-size: 24px;
  margin: 0;
	color: #fff;
}

.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: 46px;
	line-height: 64px;
	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;
}

@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 {
    margin: 0 0 15px 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 300;
    color: #fff;
	}
}

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

.btn-contact, .btn-contact: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;
	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 .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-bottom: 0;
	margin-top: 20px;
}

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

.four-box .icon-box span {
	color: #fff;
	background: #407C75;
	width: 30px;
	height: 30px;
	border: 2px solid #fff;
	outline: 3px solid #407C75;
	margin-left: 10px;
	border-radius: 50px;
	display: inline-grid;
	justify-content: center;
	align-items: center;
}

@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 p {
	color: #2a2a2a;
	font-size: 16px;
	margin-bottom: 0;
}
.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 .content {
	display: flex;
	align-items: center;
	margin-top: 5px;
}
.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);
}

/*--------------------------------------------------------------
# What Section
--------------------------------------------------------------*/
.what {
	background: linear-gradient(rgb(255 255 255) 50%, rgb(239 243 249) 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: #fff;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	display: grid;
	place-content: center;
	position: absolute;
	top: -90px;
	left: 0;
}
.testimonials .container-fluid:nth-child(2) {
	margin-left: 11%;
	padding: 80px 0;
}

.testimonials .info h3 {
	font-weight: 600;
	font-size: 32px;
	margin-bottom: 50px;
	color: #fff;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
	box-sizing: content-box;
	background: #fff;
	height: 100%;
	min-height: 260px;
	border-radius: 10px;
	position: relative;
	padding: 20px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 65px;
  height: 65px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
	.testimonials .container-fluid:first-child {
    min-height: 200px;
	}
	.testimonials .container-fluid:first-child h2 {
    font-size: 24px;
    margin-top: 0;
	}
	.testimonials .quote {
    position: relative;
    width: 80px;
    height: 80px;
    top: 0;
    margin: 20px 0;
	}
	.testimonials .quote svg {
    width: 34px;
	}
	.testimonials .container-fluid:nth-child(2) {
    margin-left: 0;
		padding: 20px;
	}
  .testimonials .testimonials-carousel,
  .testimonials .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 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 input,
.contact .php-email-form textarea,
.contact .php-email-form select {
	font-size: 14px;
	box-shadow: none;
	border-radius: 0;
	color: var(--default-color);
	background-color: color-mix(in srgb, var(--background-color), transparent 50%);
	border: none;
	border-bottom: 1px solid #000;
	min-height: 40px;
	height: 50px!important;
}
.contact .php-email-form textarea {
	height: 120px!important;
}
.contact .php-email-form label {
	padding: 8px 10px;
}

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

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder,
.contact .php-email-form 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-hero.hero .welcome h2 {
	margin: 0;
	font-size: 64px;
	line-height: 74px;
	margin-bottom: 20px;
	font-weight: 400;
	color: #fff;
}
.about-page .main-img {
	border-radius: 20px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.about-page .section-title.left h2 {
	font-size: 26px;
	line-height: 34px;
}
.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;
	}
}

/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# 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;
}