/*
Theme Name: Pharmacy Mentor
Author: Pharmacy Mentor
Author URI: https://www.pharmacymentor.com/
Description: Custom built pharmacy mentor theme
Version: 1.0
*/

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}/*# sourceMappingURL=normalize.min.css.map */

:root {
	--main-color: #34982c;
	--second-color: #07133a;
	--btn-text: white;
	--dark-background: rgb(245, 245, 245);
}

/* Defaults */

html {
	scroll-behavior: smooth;
}

section,
article
{
	position: relative;
	padding: 60px 0px;
	background: #fdfdfe;
	isolation: isolate;
}

.sectionTitle h2,
article h2
{
	font-weight: 600;
	text-align: center;
	margin-bottom: 40px;
}

.bgimage {
	position: absolute;
	z-index: -1;
	inset:0;
	overflow: hidden;
}

.bgimage img {
	object-fit: cover;
	object-position: center;
	width:100%;
	height:100%;
}

.darkSection {
	background: var(--dark-background);
}

.tile {
	padding: 20px;
	box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
	border-radius: 5px;
	position: relative;
	margin-bottom: 30px;
	background: #231f20;
}

.tile h2, .tile h3 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

.tile p {
	font-size: 16px;
	color: #fff;
	overflow: hidden;
   	display: -webkit-box;
   	-webkit-line-clamp: 2;
           line-clamp: 2; 
   	-webkit-box-orient: vertical;
}

.tile::after {
	content: "";
	position: absolute;
	height: 5px;
	background: var(--main-color);
	width: 100%;
	top: 0;
	left: 0;
}

.tileIcon {
	width: 50px;
	height: 50px;
	padding: 5px;
	background: #eaeaea;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.tileIcon i {
	font-size: 30px;
	color: var(--main-color);
}

.tile img {
	height: 100%;
	margin-bottom: 20px;
	border-radius: 8px;
}

.blog-tile {
	padding: 20px;
	box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
	border-radius: 5px;
	position: relative;
	margin-bottom: 30px;
	background: #fff;
}

.blog-tile h2 {
  font-size: 26px;
  font-weight: 600;
  color: #333;
}

.blog-tile p {
	font-size: 16px;
	color: #333;
	overflow: hidden;
   	display: -webkit-box;
   	-webkit-line-clamp: 2;
           line-clamp: 2; 
   	-webkit-box-orient: vertical;
}

.blog-tile::after {
	content: "";
	position: absolute;
	height: 5px;
	background: var(--main-color);
	width: 100%;
	top: 0;
	left: 0;
}

.blog-tile img {
	height: 100%;
	margin-bottom: 20px;
	border-radius: 8px;
}

img {
	height:auto;
	max-width: 100%;
}

a {
	transition: all ease .2s;
}

.primary-colour {
	color: var(--main-color);
}

.secondary-colour {
	color: var(--second-color);
}

/* WP Default */

img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}

/* Header */

header {
	padding: 15px 0px;
	border-bottom: 5px solid var(--main-color);
}

.main-menu-box {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.headerLogo {
	width: 250px;
}

header .col-sm-12 {
	text-align: center;
}

/* Footer */

footer {
	background: #070212;
}

.contact-list span {
  display: flex;
}

.contact-list span p {
  font-size: 16px;
  margin-top: -5px;
  margin-left: 10px;
}

.contact-list span p a:hover {
	text-decoration: none;
}

.footerCopyright {
	background: #191621;
	padding: 30px 0px;
	margin-top: 30px;
}

footer {
	color: white !important;
	padding-top: 50px;
}

.footer-info {
  font-size: 16px;
}

footer ul {
	list-style-type: none;
	padding: 0;
}

footer ul li {
	margin-bottom: 10px;
}

footer a {
	color: white;
	text-decoration: none;
}

footer a:hover {
	color: var(--main-color);
}

footer img {
	display: block;
	margin-bottom: 10px;
}

footer i {
	color: var(--main-color);
}

footer h2 {
	font-size: 26px;
 	font-weight: 600;
	position: relative;
	margin-bottom: 30px;
}

footer h2::before {
	position: absolute;
	content: '';
	bottom: -10px;
	left: 0;
	height: 2px;
	width: 50px;
	background-color: var(--main-color);
}

/* Buttons */

.buttons {
	margin-top: 40px;
}

.buttons .main-btn {
	margin-right: 10px;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  width: 30%;
  margin-left: 20px;
}

.nav-btn-01 {
	display: inline-block;
	padding: 5px 20px;
	font-weight: 600;
	background: #28a3dc;
	color: white;
	border: 3px solid #28a3dc;
	border-radius: 5px;
	transform: translateY(0px);
	transition: all 0.3s;
	z-index: 99;
}

.nav-btn-01:hover {
	color: white;
	background: var(--second-color);
	border-color: var(--second-color);
	text-decoration: none;
	transition: all 0.3s;
}

.nav-btn-02 {
	display: inline-block;
	padding: 5px 20px;
	font-weight: 600;
	background: #9bcd20;
	color: white;
	border: 3px solid #9bcd20;
	border-radius: 5px;
	transform: translateY(0px);
	transition: all 0.3s;
}

.nav-btn-02:hover {
	color: white;
	background: var(--second-color);
	border-color: var(--second-color);
	text-decoration: none;
	transition: all 0.3s;
}


.main-btn,
.theme-btn-one {
	display: inline-block;
	padding: 10px 20px;
	background: var(--main-color);
	color: white;
	border: 3px solid var(--main-color);
	border-radius: 5px;
	transform: translateY(0px);
	transition: all 0.3s;
}

.optional-btn {
  z-index: 9;
  position: relative;
}

.main-btn:hover,
.theme-btn-one:hover {
	color: white;
	background: var(--second-color);
	border-color: var(--second-color);
	text-decoration: none;
	transform: translateY(-2px);
	transition: all 0.3s;
}

.second-btn {
	display: inline-block;
	padding: 10px 20px;
	color: white;
	border: 3px solid white;
	border-radius: 5px;
	transform: translateY(0px);
	transition: all 0.3s;
}

.second-btn:hover {
	color: white;
	border-color: var(--main-color);
	background: var(--main-color);
	text-decoration: none;
	transform: translateY(-2px);
	transition: all 0.3s;
}

.third-btn {
	display: inline-block;
	padding: 5px 20px;
	color: white;
	border: 3px solid white;
	transform: translateY(0px);
	transition: all 0.3s;
}

.third-btn:hover {
	color: white;
	border-color: var(--main-color);
	background: var(--main-color);
	text-decoration: none;
	transform: translateY(-2px);
	transition: all 0.3s;
}

.blog-btn {
	display: inline-block;
	padding: 5px 20px;
	color: #333;
	border: 2px solid #333;
	transform: translateY(0px);
	transition: all 0.3s;
}

.blog-btn:hover {
	color: white;
	border-color: var(--main-color);
	background: var(--main-color);
	text-decoration: none;
	transform: translateY(-2px);
	transition: all 0.3s;
}

.banner-btn {
	display: inline-block;
	padding: 8px 20px;
	color: #fff;
	border: 3px solid #fff;
	transform: translateY(0px);
	transition: all 0.3s;
}

.banner-btn:hover {
	color: white;
	border-color: var(--main-color);
	background: var(--main-color);
	text-decoration: none;
	transform: translateY(-2px);
	transition: all 0.3s;
}

/* Home Page */

.homeBanner {
	border-bottom: 5px solid var(--main-color);
	height: 500px;
	display: flex;
	align-items: center;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center !important;
}

.bannerContent {
	color: white;
}

.bannerContent h1 {
	margin-top:0;
	font-size: 50px;
}

/* Basic Page */

.pageBanner {
	background: gray;
	border-bottom: 5px solid;
	border-color: var(--main-color);
	height: 250px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
}

.pageBanner::before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.4;
}

.pageBanner::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: gray;
	opacity: 0.3;
	z-index: 1;
}

.pageBannerTitle {
	font-size: 36px;
  	font-weight: 600;
  	padding-bottom: 10px;
	margin: 0;
	color: white;
	position: relative;
	z-index: 3;
	text-shadow: 1px 1px #333;
}

#breadcrumbs {
	margin-bottom: 15px;
}

#breadcrumbs, #breadcrumbs a {
	position: relative;
	z-index: 3;
	color:#fff;
}

#breadcrumbs a {
	font-weight: bold;
}

.about-image {
  margin-bottom: 30px;
  box-shadow: -10px -10px var(--main-color);
}


.about-text h3 {
  font-weight: 600; 
}

/* Contact Form */

.contactDetails {
	max-width: 100%;
	margin: 30px auto;
	padding: 0px 50px;
}

.contactbox {
  text-align: center;
  background: #231f20;
  padding: 30px 20px;
  border-radius: 15px;
  margin: 20px 0px;
}

.contactbox i {
  font-size: 26px;
  color: var(--main-color);
}

.contactbox h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  padding: 15px 0px;
}

.contactbox p, .contactbox p a {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
}

.contactbox p a:hover {
  text-decoration: none;
}

.contactForm {
	max-width: 600px;
	margin: 0 auto;
	box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
	padding: 50px 30px;
}

.formDetails {
	padding: 0px 50px;
}

input, textarea {
  width: 100%;
  padding: 5px 15px;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: inherit;
}

input[type="checkbox"],
input[type="radio"] {
	width:auto;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover,
input[type="checkbox"]:hover + span,
input[type="radio"]:hover + span {
	cursor:pointer;
}

select {
	width: 100%;
	padding: 7px 15px;
	background: white;
	margin-bottom: 10px;
	font-weight: 500;
	border: 1px solid;
	border-color: #8f8f9d;
}

.wpcf7-list-item {
	margin: 0px;
}

.wpcf7-list-item-label {
  font-size: 15px;
}

/* Blog Layout */

article {
	text-align:center;
	font-size:16px;
}

article .container {
    max-width:1000px !important;
    margin:0 auto;
}

article .text > *, article .section-title {
	margin-bottom:15px !important;
	margin-top:0 !important;
}

article .sec-title > * {
	line-height:28px;
}

article .text > h3 {
	margin-top:45px !important;
}

article .text > h4 {
	margin-top:30px !important
}

article .text img {
    display:inline-block;
	margin:15px 0 !important;
	max-width:650px;
    width:100%;
}

.firefox article .text img {
    margin: 30px 0 15px !important;
  }

article .text p:has(img) + h3, article .text p:has(img) + h2 {
    margin-top: 0px!important;
}

article .text .theme-btn-one {
    margin:20px 0 20px;
}

/* Booking Page */

.bookly-form img {
	width: unset;
}

/* 404 Page */

.error-404 h1 {
	font-size: 80px;
	margin-top: 0;
	font-weight: bold;
	font-family: sans-serif;
	position: relative;
}

.error-404 h1::after {
	content: "";
	width: 50px;
	height: 4px;
	background: var(--main-color);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 15px 15px 0px 15px;
}

.footerCopyright p {
  font-size: 16px;
}

#mega-menu-header-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:before {
	content: "\f192";
	font-family: "Font Awesome 6 Free"!important;
    color: var(--main-color)!important;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu a.mega-menu-link {
    border-bottom: 1px solid #e5e5e5;
}

#mega-menu-header-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    font-size: 15px!important;
    font-weight: 500!important;
    padding: 2px 10px!important;
}

a.mega-menu-link:hover {
	background: #eee;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu li:last-child a.mega-menu-link {
    border-bottom: none;
}

.mega-sub-menu .mega-menu-item a.mega-menu-link:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    height: 0%;
    width: 4px;
    background: #17385a;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.mega-sub-menu .mega-menu-item .mega-menu-link:hover:before {
    height: 100%;
}

.hero-slider {
    position: relative;
    height: 600px;
	padding: 0;
}

.hero-slider .container {
    overflow: hidden;
}

.hero-slider .single-slider {
    height: 550px;
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.hero-slider .single-slider:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0.2;
}

.hero-slider .single-slider .text {
    float: none;
    text-align: left;
    margin: 138px 0 0;
}

.hero-slider .single-slider .text h1 {
    color: #fff;
    text-shadow:1px 1px 1px rgba(0,0,0,0.4);
    font-size: 42px;
    text-transform: capitalize;
    font-weight: 800;
    margin-bottom: 30px;
    margin: 0;
    padding: 0;
    line-height: 50px;
}

.hero-slider .single-slider .text h1 span {
    color: #17385a;
    text-shadow: 0px 0px 19px #ffffffb3;
}

.hero-slider .single-slider .text p {
    margin: 30px 0px;
    font-size: 16px;
    color: #fff;
    text-shadow:1px 1px 1px rgba(0,0,0,0.4);
}

.hero-slider .single-slider .button a:last-child {
    margin-right: 0px;
}

.hero-slider .single-slider .button .video {
    margin-left: 10px;
}

.hero-slider .single-slider .button .video i {
    height: 48px;
    width: 48px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    background: #17385a;
    border-radius: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding-left: 3px;
    font-size: 16px;
}

.hero-slider .single-slider .button .video:hover i {
    background: #232323;
    color: #fff;
}

.hero-slider .owl-dots {
    position: absolute;
    left: 50%;
    background: transparent;
    -webkit-box-shadow: 0px 0px 5px rgb(51 51 51 / 50%);
    -moz-box-shadow: 0px 0px 5px rgba(51, 51, 51, 0.5);
    box-shadow: none;
    bottom: 0px;
    padding: 10px 25px;
    border-radius: 4px;
    margin: 0 0 0 -52px;
}

.hero-slider .owl-dots .owl-dot {
    display: inline-block;
    margin-right: 12px;
}

.hero-slider .owl-dots .owl-dot:last-child {
    margin: 0px;
}

.hero-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0;
    background: #fff;
    position: relative;
}

.hero-slider .owl-dots .owl-dot:hover span {
    border-color: transparent;
}

.hero-slider .owl-dots .owl-dot span::before {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 2px solid;
    content: "";
    border-radius: 100%;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hero-slider .owl-dots .owl-dot:hover span:before,
.hero-slider .owl-dots .owl-dot.active span:before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 575px) {
    header {
        height: 90px; 
    }

    .main-menu-box {
        bottom: 50px; 
    }
}

@media (max-width: 991px) {
	.hero-slider .single-slider .text {
		text-align: center;
	}
	.hero-slider .single-slider {
  		height: 500px;
	}
	.tile, .blog-tile, .footerCopyright p {
		text-align: center;
	}
	.iconbox {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.about-text {
	  text-align: center;
	}
}

@media (min-width: 992px) {
    .buttons {
        text-align: right; 
    }
	.blog-tile .buttons {
		text-align: left;
	}
}

@media (max-width: 1199px) {
    .nav-buttons {
        display: none; 
    }
}