/*
 * st4rt3r CSS
 */

/* --------- Globals --------- */


:root {
  --main-bg-color: #fff;
	--main-color: #1A1A1A;
	--main-font: 'Montserrat', 'Helvetica', sans-serif;
	--heading-font:'Montserrat', 'Helvetica', sans-serif;
	--primary: #1a0f8b;
	--primary-hover:#100865;
	--success: #2fb7aa;
	--success-hover: #21a094;
	--secondary: #999999;
	--secondary-hover: #484e54;
	--danger:#dc3545;
	--danger-hover:#c73442;
	--warning:#FFDC00;
	--warning-hover:#cbaf00;
	--info:#17a2b8;
	--info-hover:#128b9e;
	--light:#fff;
	--light-hover:#eee;
	--dark:#333;
	--dark-hover:#222;
	--link:#4c44a7;
	--link-hover:#1a0f8b;
	
	
	/* navbar-colors */
	
	--navbar-bg:#fff;
	--navbar-fixed-bg:#fff;
	--navbar-color:#333;
	--navbar-fixed-color:#333;

		}


body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	color: var(--main-color);
	font-family: var(--main-font);
	line-height: 1.6;
	background: var(--main-bg-color);
}

main {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}



/* --------------------- CONTAINERS  ----------------- */


.main-wrapper {
	position: relative;
	overflow: hidden;
}


.navbar .container-full {
	width: 100%;
	display: block;
	padding-left: 1rem;
	padding-right: 1rem;
	}

@media (min-width:765px) {
.container-fluid {
	max-width: 720px;
	}
}

@media (min-width:992px) {
	
.container-fluid {
	max-width: 1200px;
	padding-left: 2rem;
	padding-right: 2rem;
	}
.navbar .container-full {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	}
	
}

@media (min-width:1200px) {
	
.container-fluid {
	max-width: 1460px;
	padding-left: 3rem;
	padding-right: 3rem;
}
.navbar .container-full {
	padding-left: 3rem;
	padding-right: 3rem;
	}
	
}


/* Typography */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 { 
	font-family: var(--heading-font); 
	color: #1A0F8A;
}

h1, .h1 { font-size: 2rem; letter-spacing: -0.5px }
h2, .h2 { font-size: 1.75rem; letter-spacing: -0.4px }
h3, .h3 { font-size: 1.5rem; letter-spacing: -0.3px }
h4, .h4 { font-size: 1.25rem; letter-spacing: -0.2px }
h5, .h5 { font-size: 1.125rem; letter-spacing: -0.1px }
h6, .h6 { font-size: 1rem; }

@media (min-width: 768px) {
h1, .h1 { font-size: 2.25rem; letter-spacing: -0.75px }
h2, .h2 { font-size: 2rem; letter-spacing: -0.5px }
h3, .h3 { font-size: 1.75rem; letter-spacing: -0.4px}
h4, .h4 { font-size: 1.5rem; letter-spacing: -0.3px }
h5, .h5 { font-size: 1.25rem;letter-spacing: -0.1px }
h6, .h6 { font-size: 1.125rem; letter-spacing: -0.1px}
}

@media (min-width: 1200px) {
h1, .h1 { font-size: 2.5rem; letter-spacing: -1px}
h2, .h2 { font-size: 2.25rem; letter-spacing: -0.75px}
h3, .h3 { font-size: 2rem; letter-spacing: -0.75px}	
h4, .h4 { font-size: 1.75rem; letter-spacing: -0.2px }
h5, .h5 { font-size: 1.25rem; letter-spacing: -0.1px }
h6, .h6 { font-size: 1rem; }
}

p.lead {
	font-size: 1.125rem;
	font-weight: 300;
}


b, strong { font-weight: 600; }
.underline { text-decoration: underline!important;}
.uppercase {text-transform:uppercase!important;}


.pretitle {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 18px;
	letter-spacing: .3px;
	font-weight: 500;
	font-family: var(--heading-font);
}

.pretitle.has-after:after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	border-bottom: 2px solid var(--primary);
	margin-left: 1rem;
	position: relative;
	}

.pretitle.has-after.reveal:after {
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 1s;
	transition: all 1s;
	-webkit-transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
}

.pretitle.has-after.appear:after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}


.has-divider-top:before,
.has-divider-bottom:after {
	content: '';
	width: 60px;
	height: 3px;
	background: #1a0f8b;
	display: block;
	position: relative;
	margin: 2rem 0;
	}




	/* a links */
a { color: var(--link); }
a:hover, 
a:focus { 
	color: var(--link-hover); 
	text-decoration: underline; 
	}

 /* font-size */
.fs-lg {font-size: 20px !important;}
.fs-md {font-size: 18px !important;}
.fs-sm {font-size: 14px !important;}
.fs-xs {font-size: 12px !important;}
.fs-xxs {font-size: 10px;}

@media(max-width:767.98px) {
.fs-lg {font-size: 18px !important;}
}

 /* font-weight */
.fw-100 {font-weight: 100 !important;}
.fw-200 {font-weight: 200 !important;}
.fw-300 {font-weight: 300 !important;}
.fw-400 {font-weight: 400 !important;}
.fw-500 {font-weight: 500 !important;}
.fw-600 {font-weight: 600 !important;}
.fw-700 {font-weight: 700 !important;}
.fw-800 {font-weight: 800 !important;}
.fw-900 {font-weight: 900 !important;}

 /* letter-spacing */
.ls-01 {letter-spacing: 0.1px!important;}
.ls-02 {letter-spacing: 0.2px!important;}
.ls-03 {letter-spacing: 0.2px!important;}
.ls-04 {letter-spacing: 0.4px!important;}
.ls-05 {letter-spacing: 0.5px!important;}
.ls-1 {letter-spacing: 1px!important;}
.ls-2 {letter-spacing: 2px!important;}
.ls-3 {letter-spacing: 3px!important;}

 /* line-height */
.lh-12 {line-height: 1.2 !important;}
.lh-13 {line-height: 1.3 !important;}
.lh-14 {line-height: 1.4 !important;}
.lh-15 {line-height: 1.5 !important;}
.lh-16 {line-height: 1.6 !important;}


/* Buttons */

.btn {
	font-weight: 500;
	letter-spacing: .3px;
	border-radius:0;
	}

.btn-primary {
	background: var(--primary);
	border-color:var(--primary);
}
.btn-outline-primary {
	color: var(--primary);
	border-color:var(--primary);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background: var(--primary-hover);
	border-color:var(--primary-hover);
}



.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #534dab;
    border-color: #534dab;
}



.btn-success {
	background: var(--success);
	border-color:var(--success);
}
.btn-outline-success {
	color: var(--success);
	border-color:var(--success);
}
.btn-success:hover,
.btn-success:focus,
.btn-outline-success:hover,
.btn-outline-success:focus {
	background: var(--success-hover)!important;
	border-color:var(--success-hover)!important;
}
.btn-secondary {
	background: var(--secondary);
	border-color:var(--secondary);
}
.btn-outline-secondary {
	color: var(--secondary);
	border-color:var(--secondary);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
	background: var(--secondary-hover);
	border-color:var(--secondary-hover);
}
.btn-danger {
	background: var(--danger);
	border-color:var(--danger);
}
.btn-outline-danger {
	color: var(--danger);
	border-color:var(--danger);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-outline-danger:hover,
.btn-outline-danger:focus {
	background: var(--danger-hover);
	border-color:var(--danger-hover);
}
.btn-warning {
	background: var(--warning);
	border-color:var(--warning);
}
.btn-outline-warning {
	color: var(--warning);
	border-color:var(--warning);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-outline-warning:hover,
.btn-outline-warning:focus {
	background: var(--warning-hover);
	border-color:var(--warning-hover);
}
.btn-info {
	background: var(--info);
	border-color:var(--info);
}
.btn-outline-info {
	color: var(--info);
	border-color:var(--info);
}
.btn-info:hover,
.btn-info:focus,
.btn-outline-info:hover,
.btn-outline-info:focus{
	background: var(--info-hover);
	border-color:var(--info-hover);
}
.btn-light {
	color:var(--dark);
	background: var(--light);
	border-color:var(--light);
}
.btn-outline-light {
	color:var(--light);
	border-color:var(--light);
}
.btn-light:hover,
.btn-light:focus,
.btn-outline-light:hover,
.btn-outline-light:focus {
	color:var(--dark);
	background: var(--light);
	border-color:var(--light);
}
.btn-dark {
	color:var(--light);
	background: var(--dark);
	border-color:var(--dark);
}
.btn-outline-dark {
	color:var(--dark);
	border-color:var(--dark);
}
.btn-dark:hover,
.btn-dark:focus,
.btn-outline-dark:hover,
.btn-outline-dark:focus {
	color:var(--light);
	background: var(--dark);
	border-color:var(--dark);
}
.btn-link {
	padding-left: 0;
    padding-right: 0;
	color: #534dab;
    border-bottom: 1px solid;
    border-radius: 0;
    padding-bottom: 0.25rem;
}
.btn-link:hover,
.btn-link:focus {
	color: var(--link-hover);
	text-decoration: none;
	border-bottom: 1px solid;
}


    




.ws-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	align-items: center;
	text-decoration: none!important;
}

.ws-btn svg {
	margin-right: 1rem;
	}

.ws-btn span {
    content: "";
    width: 44px;
    height: 44px;
		margin-right:1rem; 
		}




a .btn-icon .inner {
  stroke: #000;
	fill: transparent;
  stroke-width: 1;
  stroke-dasharray: 145;
	stroke-dashoffset: 145;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transition: all 1s;
	transition: all 1s;
	}

a:hover .btn-icon .inner {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
	stroke-dashoffset: 0;
	}



.btn-icon .outer  {
	stroke-dasharray: 145;
	stroke-dashoffset: 0;
	-webkit-transition: all .3s;
	-webkit-transition: all 1s;
	-webkit-transition: all 2s;
	transition: all 2s;
	}


.btn-icon.reveal .outer {
	stroke-dasharray: 145;
	stroke-dashoffset: 145;
	
	}

.btn-icon .outer,
.btn-icon.appear .outer {
	stroke-dasharray: 145;
	stroke-dashoffset: 0;
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
	}



svg .btn-line{
	fill:none;
	stroke:#000000;
	stroke-linecap:round;
	stroke-linejoin:round;
	stroke-miterlimit:10;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;

}


a svg.btn-icon .plus {
	-webkit-transition: all .3s;
	transition: all .3s;
	stroke: #013764;
  stroke-width: 2px;
	}

a:hover svg.btn-icon .plus {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	}


svg.btn-icon.dark > * {
	stroke: #fff;
}

svg.btn-icon > .outer {
	fill: #fff;
	stroke: #fff;
	stroke-width: 2px;
	-webkit-transition: all .5s;
	transition: all .5s;
}

svg.btn-icon > .inner {
	fill: transparent;
  stroke: #ffffff;
	stroke-width: 2px;
  stroke-width: 2px;
}


a svg.btn-icon .outer {
	-webkit-transition: all .5s;
	transition: all .5s;	
	stroke: #ffffff;
	}

a:hover svg.btn-icon .outer {
	fill:transparent;	 
	}

a:hover svg.btn-icon .plus {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: all .3s;
	transition: all .3s;
	stroke: #ffffff;
	}


.btn-icon {
	width: 42px;
  height: 42px;
	}

.btn-icon.arrow-right {
  margin-left: 0.25rem;
	}

.btn-icon.arrow-left {
  margin-right: 0.25rem;
	}


.btn-lg {
    padding: 1.125rem;
    font-size: 1.125rem;
    line-height: 1.5;
    border-radius: 0.3rem;
    font-weight: 600!important;
    letter-spacing: -.2px!important;
}



.btn-view-all {
	border-radius: 0;
	border:0;
	border-bottom: 2px solid #98a4af;
	padding-left: 0;
	padding-right: 0;
	font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
	color: #6f8090;
}




/* ------ COLORS ------ */

.c-inherit {
	color: inherit!important;
}

.c-white {color: #fff !important;}

.bg-white, 
.pseudo-bg-white:after,
.pseudo-bg-white:before {
	background-color: #fff!important;
	}
	

.c-grey-8 {
	color: #888;
}
.c-grey-7 {
	color: #777;
}
.c-grey-6 {
	color: #666;
}

.c-grey {
    color:#1A1A1A;
}

.c-grey-300 {
	color: #777;
}

.c-green {
	color:#75cb79;
}



.c-foz {color:#00a7e1!important;}
.c-alfeizerao {color:#ac162c!important;}
.c-torres {color:#83276b!important;}
.c-coz {color:#46b557!important;}
.c-farmacia {color:#2fb6aa!important;}



/* ------ LISTS ------- */


dl, ol, ul {
	padding-left: 1rem;
	/*list-style: none;*/
	}


.check-list {
  margin: 0;
  padding-left: 0;
  color: #555555;
  font-size: 16px!important;
  }

.check-list li {
  position: relative;
  list-style-type: none;
  padding-left: 1.5rem!important;
  padding-top:0.5rem;
  padding-bottom: 0.5rem;
  }

.check-list li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 7px;
    height: 13px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #31b297;
    transform-origin: bottom left;
    transform: rotate(45deg);
}

ul.bullet {
	list-style: none;
	padding-left: 1rem;
	}

ul.bullet li {
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	}

ul.bullet li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #6f91bf;
	font-weight: bold;
	margin-right: .5rem;
	margin-left: -1rem;
	position: relative;
	display: inline;
	float: left;
	margin-top: .75rem;
	}


ul.document_list,
ul.block-list {
	list-style: none;
	}

ul.document_list li,
ul.block-list li {
	letter-spacing: .2px;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

ul.block-list li:first-child {
	padding-top: 0;
} 

ul.block-list li:last-child {
	border-bottom: 0;
} 

ul.document_list li .btn-download {
	color: #ccc;
	}

ul.document_list li .btn-download:hover {
	color: #999;
	} 



ul.inline-list {
    list-style:none;
    margin:0;
    padding:0;
    }
    
ul.inline-list li {
    padding-right:0.5rem;
    display:inline-block;
    }
    

/* ----- IMAGES ----- */


img,
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
	max-width: 100%;
	height: auto;
	}


/* ----- HEIGHTS ----- */


.full-height {
	min-height: 100vh;
	}

@media(min-width:992px) {
.full-height-lg {
	min-height: 100vh;
	}
}


/* ----- RELATIVE POSITIONS ----- */

.relative { position: relative; }

.not-relative { position: inherit;}


/* ----- ABSOLUTE POSITIONS ----- */

.absolute {
	position: absolute;
	}


@media(min-width:992px) {
	.absolute-lg {
		position: absolute;
		}
	}

.top-0 {top:0;}
.bottom {bottom:0}
.left-0 {left:0;}
.right-0 {right:0}



/* ----- FLEX CLASSES ----- */


.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	}

.flex-row,
.flex-col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	}

.flex-col {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	}

.flex-row.row-center,
.flex-col.col-middle {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	}

.flex-row.col-middle,
.flex-col.row-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	}

.flex-col.col-end,
.flex-row.row-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	}

.flex-col.col-start
.flex-row.row-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	}

.flex-col.row-start
.flex-row.col-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	}

.flex-col.row-end,
.flex-row.col-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	}


/* ----- BACKGROUND DIVS ----- */

.bg-image {
	background-position: center;
	background-size: cover;
	}

.bg-image-lg,
.bg-image-xl {
	background: transparent;
	background-image: none;
}

@media(min-width:992px) {
	.bg-image-lg {
		background-position: center;
		background-size: cover;
	}
}
@media(min-width:1200px) {
	.bg-image-xl {
		background-position: center;
		background-size: cover;
	}
}

.bg-21by9 {
	 padding-top: 42.857143%;
	}
.bg-16by9 {
	padding-top: 42.857143%;
	}
.bg-4by3 {
  padding-top: 75%;
	}	
.bg-1by1 {
  padding-top: 100%;
	}



/* ----- IMGWRAP REVEAL ----- */


.imgwrap.reveal {
	overflow: hidden;
	position: relative;
	}

.imgwrap.reveal:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--main-bg-color);
	-webkit-transition: all 1s cubic-bezier(1,.01,1,.9);
	transition: all 1s cubic-bezier(1,.01,1,.9);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	}


.imgwrap.to-right.appear:after {
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	}
.imgwrap.to-left.appear:after {
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
	}
.imgwrap.to-top.appear:after {
	-webkit-transform: translate3d(0,-100%,0);
	transform: translate3d(0,-100%,0);
	}
.imgwrap.to-bottom.appear:after {
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
	}






/* ------ REVEAL STYLES ----- */


.anime.reveal {
	opacity: 0;
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
	-webkit-transition: all 1s ease-out;
	transition: all 1s ease-out;
	}

.anime.reveal.to-top {
	-webkit-transform: translate3d(0, 3rem, 0);
	transform: translate3d(0, 3rem, 0);
	}
.anime.reveal.to-bottom {
	-webkit-transform: translate3d(0, -3rem, 0);
	transform: translate3d(0, -3rem, 0);
	}
.anime.reveal.to-left {
	-webkit-transform: translate3d(3rem, 0, 0);
	transform: translate3d(3rem, 0, 0);
	}
.anime.reveal.to-right {
	-webkit-transform: translate3d(-3rem, 0, 0);
	transform: translate3d(-3rem, 0, 0);
	}

.anime.reveal.appear {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0) !important;
	transform: translate3d(0, 0, 0) !important;
	}



/* ANIME DELAYS */

.delay-01,
.pseudo-delay-01:after,
.pseudo-delay-01:before {
	-webkit-transition-delay: .1s!important;
	transition-delay: .1s!important;
}
.delay-02,
.pseudo-delay-02:after,
.pseudo-delay-02:before {
	-webkit-transition-delay: .2s!important;
	transition-delay: .2s!important;
}
.delay-03,
.pseudo-delay-03:after,
.pseudo-delay-03:before {
	-webkit-transition-delay: .3s!important;
	transition-delay: .3s!important;
}
.delay-04,
.pseudo-delay-04:after,
.pseudo-delay-04:before {
	-webkit-transition-delay: .4s!important;
	transition-delay: .4s!important;
}
.delay-05,
.pseudo-delay-05:after,
.pseudo-delay-05:before {
	-webkit-transition-delay: .5s!important;
	transition-delay: .5s!important;
}
.delay-06,
.pseudo-delay-06:after,
.pseudo-delay-06:before {
	-webkit-transition-delay: .6s!important;
	transition-delay: .6s!important;
}
.delay-07,
.pseudo-delay-07:after,
.pseudo-delay-07:before {
	-webkit-transition-delay: .7s!important;
	transition-delay: .7s!important;
}
.delay-08,
.pseudo-delay-08:after,
.pseudo-delay-08:before {
	-webkit-transition-delay: .8s!important;
	transition-delay: .8s!important;
}
.delay-09,
.pseudo-delay-09:after,
.pseudo-delay-09:before {
	-webkit-transition-delay: .9s!important;
	transition-delay: .9s!important;
}
.delay-1,
.pseudo-delay-1:after,
.pseudo-delay-1:before {
	-webkit-transition-delay: 1s!important;
	transition-delay: 1s!important;
}



/* PUSH CLASSES */

@media (min-width:992px) {
.push-lg-1 { margin-left: -8.333334%;}
.push-lg-2 { margin-left: -16.666668%;}
.push-lg-3 { margin-left: -24.999999%;}
.push-lg-4 { margin-left: -33.333334%;}
.push-lg-5 { margin-left: -41.666668%;}
.push-lg-6 { margin-left: -49.999999%;}
.push-lg-7 { margin-left: -58.333334%;}
.push-lg-8 { margin-left: -66.666668%;}
.push-lg-9 { margin-left: -74.999999%;}
.push-lg-10 { margin-left: -83.333334%;}
.push-lg-11 { margin-left: -91.666668%;}
}
}

/* NEG MARGINS */

@media (min-width:992px) {
.neg-mt-lg-1 {margin-top: -1rem;}
.neg-mt-lg-2 {margin-top: -2rem;}
.neg-mt-lg-3 {margin-top: -3rem;}
.neg-mt-lg-4 {margin-top: -4rem;}	
.neg-mt-lg-5 {margin-top: -5rem;}
.neg-mt-lg-6 {margin-top: -6rem;}
.neg-mt-lg-7 {margin-top: -7rem;}	
.neg-mt-lg-8 {margin-top: -8rem;}
.neg-mt-lg-9 {margin-top: -1rem;}	
}







.slide-list {
	position: relative;
}

.slide-list .slide-list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
	position: relative;
	overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 1.2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: slide-left 45s linear infinite;
  animation: slide-left 45s linear infinite;
	}

.slide-list .slide-list-items p {
    margin: 0.75rem 0.5rem;
    color: rgba(255,255,255,0.75);
	}

.slide-list  {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	position: relative;
  overflow: hidden;
	}




@-webkit-keyframes slide-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slide-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}




/* ------------- NAVBAR ------------------ */



.navbar-toggler {
	position: absolute;
	top: 2rem;
	right: 0.5rem;
	}

.navbar-nav .nav-link {
	padding-right: 1rem;
	padding-left: 1rem;
	}


/* --- navbar-brand --- */

.navbar-brand {
	max-width: 200px;
	}

.navbar-brand img,
.navbar-brand svg {
	display: block;
	width: 100%;
	}



@media (min-width:992px) {
	
	
	/*
.navbar-brand .logo-blue,
.navbar-brand .logo-grey {
		fill:#fff;
	transform: all .5s;
	}
	
navbar-scrollup.is-fixed .navbar-brand .logo-blue {
	fill:#003764;
	}
	
.navbar-scrollup.is-fixed .navbar-brand .logo-grey {
		fill:#666360;
	}
	*/
	
	
	
/* Navbar */	
	
.site-header {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
	position: absolute;
	width: 100%;
	left: 0;
	top:0;
	z-index: 9;
	min-height: 100px;
	padding: 0;
	letter-spacing: 0.1px;
	font-size: 15px;
	font-weight: 500;
	transition: all .5s;
	}
	
.site-header.is-fixed  {
  position: fixed;
	top:-140px;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	-webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
	width: 100%;
	z-index: 9;
	}
	
	
.site-header.is-visible  {
  -webkit-transform: translate3d(0, 100px, 0)!important;
  transform: translate3d(0, 100px, 0)!important;
	top:-140px;
  }
	
		

	

/* Navbar - background */
	
.site-header .navbar-scrollup {
	min-height: 100px;
	background: var(--navbar-bg);
	}
	
	
	/*
.site-header .navbar-scrollup:before { 
	
	content: '';
	position: absolute;
	-webkit-transition: all .5s;
	transition: all .5s;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	}

.site-header .navbar-scrollup.is-fixed:before {
	background: var(--navbar-fixed-bg);
	}
	
	*/

.site-header .navbar-scrollup > * {
	z-index: 2;
	}
	


/* Navbar Menu Items */
	
.navbar-scrollup .nav-link {
		color: var(--navbar-color);
		font-weight: 500;
		-webkit-transition: all .25s;
		transition: all .25s;
		-webkit-transition: all 0.23s;
	    font-size: 15px;
	    letter-spacing: -.2px;
    	padding-left: 0.75rem!important;
    	padding-right: 0.75rem!important;
		}

	.navbar-scrollup.is-fixed .nav-link,
	.navbar-scrollup.is-visible .nav-link	{
		color: var(--navbar-fixed-color);
		}

	.navbar-scrollup .current-menu-item .nav-link,
	.navbar-scrollup .current-menu-parent .nav-link,
	.navbar-scrollup .nav-link:hover,
	.navbar-scrollup .nav-link:focus {}

	.navbar-expand-lg .navbar-nav .dropdown-menu {
		position: absolute;
    border: 0;
		border-top: 3px solid #4f7cdf;
    border-radius: 0;
    margin-left: -1rem;
    margin-right: -1rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
		box-shadow: 0 5px 10px rgba(0,0,0,0.1);
		}

	.navbar-nav .dropdown-menu .dropdown-item {
		padding: .5rem 1.5rem;
		font-size: 15px;
    font-weight: 400;
		position: relative;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		}

	.navbar-nav .dropdown-menu li:last-child .dropdown-item {
		border-bottom: 1px solid rgba(0, 0, 0, 0);
		}

	.navbar-nav .dropdown-menu .dropdown-item:hover,
	.navbar-nav .dropdown-menu .dropdown-item:focus {
		background: transparent;
		outline: 0 none;
		}
	
} /* -- end navbar desktop */



@media (max-width:991.98px) {

	.navbar {
		display: block;
		position: relative;
	}

	.navbar > .container,
	.navbar > .container-fluid,
	.navbar > .container-full {
		display: block;
		position: relative;
	}

	.navbar-nav {
		position: relative;
		display: block;
	}

	.navbar-brand {
		margin-top: 0.75rem;
	}

	.navbar-scrollup .navbar-brand svg #partners path,
	.navbar-scrollup .navbar-brand svg #signature path {
		fill: #fff;
	}

	.navbar-nav .nav-link {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		font-weight: 500;
		font-size: 16px;
	}

	.navbar-nav .dropdown-menu {
		background: transparent;
		border: 0;
	}

	.navbar-nav .dropdown-menu .dropdown-item {
		font-size: 14px;
		font-weight: 500;
		color: #AFB8C2;
		padding: 0.5rem 1rem;
	}

	.navbar-nav .dropdown-toggle {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.navbar-nav .dropdown-toggle::after {
		margin-left: auto;
	}

	.navbar-nav .dropdown-menu .dropdown-item:hover,
	.navbar-nav .dropdown-menu .dropdown-item:focus {
		background: transparent !important;
		outline: 0 none;
	}

}




/* --------------  SECTIONS BLOCK STYLES ---------------- */



/* RELATED PAGES */

.related-pages-wrap {}

.related-page {
	margin-bottom: 1rem;
	}

.related-page-image {
	background: #eee;
	width: 60px;
	height: 60px;
	min-width: 60px;
	margin-right:1rem;
	}


/* CLASSIC TABS */

.classic-tabs--image-wrap {
	 position: relative;
   padding-bottom: 36%;
   overflow: hidden;
   margin-left: auto;
   margin-right: auto;
	}


@media (max-width:991.98px) {
.classic-tabs--image-wrap {	
    padding-bottom: 56%;
	}
	}	


.classic-tabs--image.image-1,
.classic-tabs--image.image-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	}


.classic-tabs .nav-tabs.has-image {
	margin-top: -3rem;
	}

.classic-tabs .nav-tabs .nav-link {
	position: relative;
	min-height: 3rem;
	display: flex;
	align-items: center;
	padding: 0.5rem 1.5rem;
	background: #fff;
	border: 0px solid transparent;
	margin-right: 1px;
	color: inherit;
	}


.classic-tabs .nav-tabs .nav-link:hover {
	background: #777;
	}

.classic-tabs .nav-tabs .nav-item.show .nav-link,
.classic-tabs .nav-tabs .nav-link.active {
	color: #fff;
	background-color: #333;
	}

.classic-tabs .tab-pane {
	padding: 1rem 0 0;
	}


/* VPILLS TABS */

.vpills-tabs {}

.vpills-tabs .nav-pills .nav-link {
	padding: 0 1rem;
	margin-bottom: 1rem;
	border-radius: 0;
	color: inherit;
	border-left: 3px solid #999;
}

.vpills-tabs .nav-pills .nav-link:hover {
	border-left: 3px solid var(--primary);
}

.vpills-tabs .nav-pills .nav-link.active,
.vpills-tabs .nav-pills .show > .nav-link {
	color: var(--primary);
	background: transparent;
	border-left: 3px solid var(--primary);
}




/* ACCORDION TABS */


.accordion .card-header {
  position: relative;
}
  
.accordion .card-header {
  padding: 0;
	display: flex;
	align-items: center;
	background: transparent;
	}

.accordion .card-header .btn{
  padding: 10px 0px;
	display: flex;
	align-items: center;
	flex: 1;
	border-radius: 0;
	color: inherit;
	background: transparent;
	white-space: normal;
    text-align: left;
	}

.accordion .card-header .btn.btn-link {
	border-bottom: 0!important;
	}

.accordion .card-header .btn:hover,
.accordion .card-header .btn:focus {
	text-decoration: none;
	}

.accordion .card-header .btn::after {
  content: "\f107";
  color: #333;
	font-size: 20px;
  top: -2px;
  margin-left:  auto;
  font-family: "FontAwesome"
}

.accordion .card-header .btn[aria-expanded="true"]::after {
  content: "\f106";
}

.accordion-counter {
	margin-right: 0.5rem;
	width: 26px;
	min-width: 26px;
	height: 26px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	line-height: 1;
}

.accordion .card-header .btn[aria-expanded="true"] .accordion-counter {
	background: var(--primary);
	color: #fff;
}


/* ----- SWIPERS ----- */

.logos-slider {
	position: relative;
	overflow: hidden;
	}


/* ------- SWIPER AND TABS NAVIGATIONS --------- */


.slider-header,
.slider-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 2rem;
	}


.slider-footer {
	padding-bottom: 2rem;
	padding-top: 2rem;
}

.slider-header .view-all,
.slider-footer .view-all {
	margin-left: auto;
	padding: 0.5rem;
	}

.slider-navigation {
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 82px;
	}

.link--arrowed svg path,
.link--arrowed svg circle {
	stroke: #758594;
	stroke-width: 1.5px;
	fill: transparent;
	}

.next-link {
	color: #777;
	height: auto !important;
	font-size: 14px;
	}

.next-link span {
	color: #49678a;
	}

.next-link svg path,
.next-link svg circle {
	stroke: #999;
	stroke-width: 1.5px;
	fill: transparent;
	}

.next-link:hover {
	color: #474d57;
	text-decoration: none;
	}

.next-link:hover svg path,
.next-link:hover svg circle {
	stroke: #474d57;
	stroke-width: 1.5px;
	fill: transparent;
	}

.next-link:hover svg circle {
	stroke: transparent;
	}

.hero-right svg path,
.hero-left svg path {
	stroke: rgba(255, 255, 255, 0.75) !important;
	}

.link--arrowed {
	display: inline-block;
	height: 2rem;
	line-height: 2rem;
	margin-left: 5px;
	margin-right: 5px;
	}

.link--arrowed .arrow-icon {
	position: relative;
	top: -1px;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	vertical-align: middle;
	}

.link--arrowed .arrow-icon--circle {
	stroke-dashoffset: 0;
	stroke-width: 1px;
	stroke: transparent;
	}


.vpills-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	}



/* --------------- POSTS --------------------- */

.services-locations {
    display:block;
    visibility:visible;
    }

.services-sidebar-locations {
    display:none;
    visibility:hidden;
    }
    
@media(min-width:992px) {
    .services-sidebar-locations {
    display:block;
    visibility:visible;
    }
.services-locations {
    display:none;
    visibility:hidden;
}
}

@media(min-width:992px) {
.single-post-services-page,
.single-post-page {
    padding-top:100px;
    }
}

.single-header,    
.services-header {
     background:#11095d;
     margin-bottom:5rem;
     padding:2rem 0;
     color:rgba(255,255,255,0.75);
    }


.archive-template {
	padding-top: 12rem!important;
	}

.single-post-page .image-wrap,
.block-part-wrap {
	margin-bottom: 3rem;
	}


/* Post Sidebars */


.post-navigation {
	font-size: 12px;
	margin-bottom: 6rem;
	}

.sidebar > section {
	margin-bottom: 3rem;
	}

.sidebar h2.h4 {
    margin-bottom: 1.5rem;
    letter-spacing: 0.1px;
    font-size: 18px;
    font-weight: 500;
	}

.sidebar ul {
	font-size: 14px;
	padding-left: 0;
	list-style: none;
	margin-bottom: 3rem;
	}

.sidebar ul li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 0.5rem 0;
	}

.sidebar ul li:last-child {
	border-bottom: 1px solid transparent;
	}
	
.sidebar a {
    color:#555555;
    }


/* ----- PAGINATION ----- */

.page-link,
.pagination .page-item span {
	position: relative;
	display: block;
	padding: .5rem .75rem;
	margin-left: -1px;
	line-height: 1;
	font-size: 14px;
	font-weight: 500;
	color: #3d5b80;
	background-color: #fff;
	border: 1px solid #dee2e6;
}

.pagination .page-item span {
	z-index: 1;
	color: #fff;
	font-weight: 600;
	background-color: var(--primary);
	border-color: var(--primary);
}

.page-link:hover,
.page-link:focus {
	color: #3d5b80 !important;
}



/* ------------------ HERO SLIDER -------------------------*/




.hero-swiper {
	overflow: hidden;
	position: relative;
	}
	
	
.hero-swiper .link--arrowed {
	display: inline-flex;
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    margin-left: 0;
    margin-right: 0;
    background: #082a4cb5;
    justify-content: center;
    align-items: center;
    }


@media(min-width:992px) {
	.hero-slider {
		padding-top: 90px;
		}
	}



.hero-swiper .swiper-slide .row-reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.hero-swiper .swiper-slide {
	background-position: center;
	background-size: cover;
	overflow: hidden;
	position: relative;
	}

.slide-content-image {
	position: relative;
	overflow: hidden;
	transform-origin: center;
}


.slide-content.light .h1,
.slide-content.light .h2,
.slide-content.light .h3,
.slide-content.light .h4,
.slide-content.light .h5,
.slide-content.light .h6,
.slide-content.light .slide-title{
	color: #fff;
}


/* Slide Overlay */

@media(min-width:992px) {
	
.overlay .slide-image-overlay {
    position: absolute;
    width: 25%;
    right: 0;
    top: 0;
    height: 100%;
    opacity: 0.8;
    display: block;
	  z-index: 1;
		}
	
.overlay .slide-image-overlay.rightoverlay {
	left: auto;
	right: 0;
	}	

.overlay .slide-image-overlay.leftoverlay {
	left: 0;
	right: auto;
	}
	

.deskfull-image.overlay .slide-image-overlay {
		width: 100%;
		opacity: 0.6;
		}	
	}




/*
.slide-content-image-inner:before {
		content: '';
    position: absolute;
    width: 25%;
    right: 0;
    bottom: 0;
    height: 25%;
    background: #013764;
    opacity: 1;
    display: block;
		}
*/

.slide-content-image-inner {
	  background-position: center;
		overflow: hidden;
		display: block;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0rem;
    transform: translate3d(0,0,0);
		transition: all 1s;
		opacity: 0;
	
		}


.hero-swiper .row-reverse .slide-content-image-inner {
 	border-top-right-radius: 0;
	left: auto;
	right: 0;
	}


.swiper-slide-active .slide-content-image-inner {
	transform: translate3d(0,0,0);
}


.swiper-slide-active.row-reverse .slide-content-image-inner {
	transform: translate3d(0,0,0);
}


.swiper-slide-active .slide-content-image-inner {
	opacity: 1;
}



.hero-swiper .swiper-slide .slide-content {
	padding: 4.5rem 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}



@media (min-width:992px) {

	.hero-swiper .swiper-slide .slide-content {
		background: transparent!important;
	}
	
	
	.hero-swiper.h100vh .swiper-slide.custom-slide,
	.hero-swiper.h100vh .swiper-slide .slide-content,
	.hero-swiper.h100vh .swiper-slide .slide-content-image {
		min-height: 100vh;
	}
  .hero-swiper.h75vh .swiper-slide.custom-slide,
	.hero-swiper.h75vh .swiper-slide .slide-content,
	.hero-swiper.h100vh .swiper-slide .slide-content-image {
		min-height: 65vh;
	}
  .hero-swiper.h50vh .swiper-slide.custom-slide,
	.hero-swiper.h50vh .swiper-slide .slide-content,
	.hero-swiper.h100vh .swiper-slide .slide-content-image {
		min-height: 50vh;
	}

}




@media (max-width:991.98px) {
	.hero-swiper .swiper-slide .slide-content-image {
		padding-bottom: 64%;
	}
}


.hero-swiper .swiper-slide.row-reverse {
	margin: 0 !important;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}


/* Slide Colors */

.hero-swiper .swiper-slide .slide-content.dark {
	color: #0a2a4c;
	}

.hero-swiper .swiper-slide .slide-content.light {
	color: #fff;
	}








.hero-swiper .swiper-slide .slide-content-inner {
	z-index: 2;
}


@media (max-width:991.98px) {
	.hero-swiper .swiper-slide .slide-content-inner {
		max-width: 680px !important;
		padding-bottom: 2rem !important;
	}
	
	

}

@media (min-width:992px) {
	.hero-swiper .swiper-slide .slide-content-inner {
		max-width: 560px;
	}
	
	
.hero-swiper .swiper-slide .slide-content-inner .slide-title {
	font-weight: 600!important;
	margin-bottom: 1.5rem;
	}
	
	
	.hero-swiper .swiper-slide .slide-content-inner .slide-title .highlight {
		position: relative;
		display: inline-block;
	}	
	
.hero-swiper .swiper-slide .slide-content-inner .slide-title .highlight:after {
		content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #7cc97c;
    bottom: -3px;
    transform: scaleX(0);
    transition: all .5s;
    display: block;
	transform-origin: left;
	transition-delay: .5s;
		}
	
.hero-swiper .swiper-slide-active .slide-content-inner .slide-title .highlight:after {
		transform: scaleX(1);
		}
	
	
}


.hero-swiper .swiper-slide .slide-content-inner .h1 .c-highlight {
	color: #55a6e7;
}


.hero-swiper .swiper-slide .slide-content .pretitle {
	margin-bottom: 1.5rem!important;
}


@media (min-width:992px) and (max-width:1199.98px) {

	.hero-swiper .swiper-slide .slide-content p {
		font-size: 1.125rem;
	}

	.hero-swiper .swiper-slide .slide-content p.lead {
		font-size: 3rem;
	}

	.swiper-slide.deskfull-image .slide-content {
		padding: 4rem 0 4rem 4rem;
	}

}


@media (max-width:991.98px) {
	.hero-swiper .swiper-slide .slide-content {
		padding: 3rem 3rem 4rem !important;
	}



	.hero-swiper .swiper-slide .slide-content p.lead {
		font-size: 2.75rem;
	}
}




@media (max-width: 767.98px) {
	.hero-swiper .swiper-slide .slide-content {
		padding: 3rem 2rem 4rem !important;
	}
}

@media (max-width: 575.98px) {
	.hero-swiper .swiper-slide .slide-content p.lead {
		font-size: 2rem;
	}
}

.hero-swiper .swiper-slide .pretitle:after {
	background: rgba(255, 255, 255, 0.25);
	display: none;
}


/* animation */

@media (min-width:992px) {
	.hero-swiper .swiper-slide .slide-content p {
		opacity: 0;
		-webkit-transition: all .5s;
		transition: all .5s;
		-webkit-transform: translate3d(0, 1rem, 0);
		transform: translate3d(0, 1rem, 0);
		-webkit-transition-delay: 0.25s;
		transition-delay: 0.25s;
	}

	.hero-swiper .swiper-slide .slide-content p.lead {
		-webkit-transition-delay: 0.15s;
		transition-delay: 0.15s;
	}

	.hero-swiper .swiper-slide-active .slide-content p {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	.hero-swiper .swiper-slide .slider-sticker-bg {
		-webkit-transform: scale(.8);
		-ms-transform: scale(.8);
		transform: scale(.8);
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		-webkit-transition: all 1s;
		transition: all 1s;
		opacity: 0;
	}

	.hero-swiper .swiper-slide-active .slider-sticker-bg {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 0.5;
	}
	
	.hero-swiper .swiper-slide .pretitle:after {
		-webkit-transform-origin: left;
		-ms-transform-origin: left;
		transform-origin: left;
		-webkit-transition: all .5s;
		transition: all .5s;
		-webkit-transition-delay: .5s;
		transition-delay: .5s;
		-webkit-transform: scaleX(0);
		-ms-transform: scaleX(0);
		transform: scaleX(0)
	}

	.hero-swiper .swiper-slide-active .pretitle:after {
		-webkit-transform: scaleX(1);
		-ms-transform: scaleX(1);
		transform: scaleX(1)
	}

}

/* hero slider navigation */

.hero-slider-nav {
	position: absolute;
	bottom: 1rem;
	z-index: 8;
	width: 100%;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}






/* ----- TOP BAR ----- */


.top-bar {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 40px;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transition-delay: .25s;
	transition-delay: .25s;
	z-index: 9;
	}




.top-bar .container-fluid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	}

.top-bar .widget_nav_menu {
	margin-left: auto;
	margin-right: 1rem;
	}

.top-bar .menu {
	list-style: none;
	margin-bottom: 0;
	}

.top-bar .menu li {
	display: inline-block;
	}

.top-bar .menu li a {
	height: 40px;
	padding: 0 0.75rem;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
	font-size: 13px;
	border-right: 1px solid #aaa;
}

.top-bar .menu li.highlight a {
	color: #e0bf97;
}

.top-bar .menu li:last-child a {
	border-right: 0px;
}

.top-bar nav.topbar-nav{
	background: #0a2a4c;
	z-index: 2;
	position: relative;
	width: 100%;
	}

.search-wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
	-webkit-transition: 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	margin-left: 0;
	min-height: 100px;
	background: #fff;
	-webkit-transform: translate3d(0,-100%,0);
	transform: translate3d(0,-100%,0);
	opacity: 0;
	z-index: 0;
	width: 100%;
	}

.search-wrapper.active {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-box-shadow: 0 0 5px rgb(0,0,0,0.2);
	box-shadow: 0 0 5px rgb(0,0,0,0.2);
	}

.search-wrapper form {
	position: relative;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.search-wrapper .form-control {
	border-radius: 0;
	border: 0 solid transparent;
	height: 100px;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	width: 100%;
	background: transparent;
	-webkit-box-shadow: 0 0 0 transparent !important;
	box-shadow: 0 0 0 transparent !important;
	}

.search-wrapper .btn {
	border: 1px solid transparent;
	position: absolute;
	padding: 0;
	font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
	width: 42px;
	height: 42px;
	right: 1.25rem;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	border-radius: 50%;
	}


.search-wrapper .btn:hover,
.search-wrapper .btn:focus {
	-webkit-box-shadow: 0 0 0 0;
	box-shadow: 0 0 0 #fff;
	outline: 0 none !important;
	border-color: transparent !important;
	background: transparent;
	}


.search-btn {
	margin-left: 1rem;
	position: relative;
	right: 2rem;
	top: 0;
	width: 40px;
	height: 40px;
	}

.search-btn .fa {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	position: absolute;
	font-size: 16px;
	top: 0.625rem;
	right: 0rem;
	}


.search-btn .fa.active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.search-btn .fa.fa-search {
	color: inherit;
	font-size: 18px;
}

.search-btn:hover .fa.fa-search {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	-webkit-transition-delay: 0;
	transition-delay: 0;
}

.search-btn .fa.fa-times {
	color: #f26581;
}

.search-btn .fa.fa-times:hover {
	color: #f26581;
}



@media (min-width:992px) {
	.search-wrapper .fa-long-arrow-right {
		display: none;
		visibility: hidden;
	}
}

@media (max-width:991.98px) {
	.search-wrapper .fa-times {
		display: none;
		visibility: hidden;
	}
}

.search-wrapper.active:after {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}





.grid__image-wrapper {
		display: inline-block;
    width: 100%;
    padding-bottom: 150%;
    overflow: hidden;
    position: relative;
}



.grid__image-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.grid__bg-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    background-size: cover;
    background-position: 50%;
}









/* Slider Custom Styles */

.promos-section {
	position: relative;
	padding-top: 1.75rem!important;
	}


.promos-section:before {
	position: absolute;
	content: '';
	background: #fff;
	width: 100%;
	height: 350px;
	left: 0;
	top: 0;
	
} 

.promos-section .swiper-container {
	overflow: hidden;
	}	

.promos-section .swiper-container .post-index-content {
	min-height: 200px;
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 0.5rem;
    z-index: 3;
    position: relative;
	}



.promos-section .swiper-container .swiper-slide {
	transition: background 1s;
	}







.promos-section .swiper-container .post-index-content .dates {
	margin-top: auto;
}

.promos-section .swiper-container .post-index-content p {
	margin-bottom: 0.5rem;
	}


.promos-section .swiper-container h2 {
	line-height: 1.3;
    font-weight: 500;
	margin-bottom: 0.5rem;
	color:#2eb8aa;
	}	


.promos-section .promo-title {
	font-size:1.5rem;
	font-weight:400;
	line-height:1.3;
	}

.promos-section .promo-title b,
.promos-section .promo-title strong {
	font-weight:700;
}
	

.promos-section .swiper-container .promo-thumb {
	overflow: hidden;
	position: relative;
	}

.promos-section .swiper-container .swiper-slide img {
	transform: scale(1);
	transition: transform 0.5s;
	}

.promos-section .swiper-container .swiper-slide:hover img {
	transform: scale(1.05);		
	}




.promos-section .swiper-container .post-index-content .date {
	text-transform: uppercase;
	font-weight: 500;
	}

.promo-slider .swiper-slide {
	background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
	}

.promo-slider .swiper-slide article {
	margin-bottom: 0!important;
}




/* -- Promo Thumbs --*/



.promo-thumb {
	position: relative;
	margin-bottom: 0;
	}

.promo-thumb img {
	}

.promo-labels-wrap {
	display: flex;
	margin-bottom: 0.5rem;
	justify-content: flex-end;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 3;
	}


.discount {
	font-size: 12px;
	font-weight: 600;
/*	color: #fff;*/
	padding: 0.188rem 0.5rem;
	background: #4f7cdf;
	background: #fff;
	}

.info {
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	padding: 0.188rem 0.5rem;
	background: #082a4c;

	}




.alfasymbol {
		position: absolute;
    width: 90%;
    height: auto;
    left: -10%;
    bottom: -10%;
    opacity: 0;
	}

.alfasymbol svg {
	width: 100%;
	height: auto;
	}


.alfasymbol svg#LogoSymbol {
	max-width: none;
	}

.alfasymbol svg#LogoSymbol path {
	stroke:#fff;
	}





/* */

.sm-icon {
	width: 50px;
	margin-bottom: 0.5rem;
}


.xs-icon {
	width: 40px;
	}



.home-encomendas {
	position: relative;

}

/*
.home-encomendas:before {
content: '';
    background: #fff;
    opacity: 0.5;
    position: absolute;
    top: -17rem;
    right: 0;
    width: 40%;
    height: calc(100% + 18rem);
    border-bottom-left-radius: 250px;
}

*/





.encomendas-figure {
		position: absolute;
    bottom: -7.5rem;
    max-width: 500px;
    display: block;
    margin-left: -6rem;
}


.home-encomendas .box {
	border-radius: 10px;
	box-shadow: 0 0 15px rgb(0 0 0 / 10%);
	height: 100%;
}

.home-encomendas .box.cta-box {
height: auto;
    background: #4f7cdf!important;
}


.home-encomendas .topics p {
	margin-bottom: 0;
}


/* farmacias-section */



.farmacias-section .farmacia-contacts {
	position: relative;
	}



.farmacias-section .farmacia-contacts h2 {
	color: #4f5252!important;
	text-transform: uppercase;
	font-weight: 300;
	margin-bottom: 1rem;
	}

@media(min-width:992px) {
.farmacias-section .farmacia-contacts h2.h4 {
		font-size: 1.5rem	
		}
	}



.farmacias-section .farmacia-contacts h2 span {
	display: block;
	font-weight: 600;
	}

.farmacias-section .farmacia-contacts .farmacia-symbol {
	width: 60px;
    max-width: 60px;
    height: 60px;
    margin-bottom: 1rem;
	}


.farmacias-section.blue-section .farmacia-contacts .farmacia-symbol {
	display: none;
	}

.farmacias-section.blue-section {
    background: #1A0F8A;
    color: #fff;
    padding-bottom:3rem;
    padding-top:3rem;
    }






.blue-section .farmacia-contacts h2,
.blue-section .c-torres,
.blue-section .c-foz,
.blue-section .c-alfeizerao,
.blue-section .c-coz,
.blue-section .c-farmacia {
    color:#fff!important;
    }
    
    
    


.blue-section .farmacia-contacts a {
    color:#fff!important;
    text-decoration:underline;
    }



.farmacias-home-section .farmacia-contacts h2.h5 {
	position: absolute!important;
    top: 1.875rem;
    left:5.5rem;
}


@media (min-width:1200px) {
    .blue-section .farmacia-contacts h2.h5 {
    font-size:1.5rem;
    }
}



section.promo-intro .promo-label {
	font-size: 14vw;
	font-weight: 900;
	color:#eee;
	line-height: 0.8;
	font-family: var(--heading-font); 
	display: block;
}










/* SPLITTING ANIMES */
/* more examples - https://codepen.io/shshaw/pen/XVjKrG */

/* Anime Words */


.animewords {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.animewords span.word {
	color: transparent;
	overflow: hidden;
	position: relative;
	padding: 0rem .15em;
}

.animewords span.word:before {
	display: block;
	content: attr(data-word);
	position: absolute;
	color: #333;
	top: 0;
	left: 0;
	padding: 0;
	}


.animewords.c-white  span.word:before {
color:#fff;
	}


.animewords span.word:before {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	}

.animewords span.word.appear:before {
	-webkit-animation: reveal-wors 1.5s cubic-bezier(1,.08,.6,1.16) both;
	animation: reveal-wors 1.5s  cubic-bezier(1,.08,.6,1.16) both;
	-webkit-animation-delay: calc(.05s * var(--line-index));
	animation-delay: calc(.05s * var(--line-index));
	}


@-webkit-keyframes reveal-wors {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	100% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1;
	}
}

@keyframes reveal-wors {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	100% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1;
	}
}



/* Anime Chars */


.animechars span.word {
	color: transparent;
	overflow: hidden;
	position: relative;
	line-height: 1;
	display: inline-block;
	} 

.animechars span.word .char {
	color: transparent;
	overflow: hidden;
	position: relative;
	display: inline-block;
	} 

.animechars span.word .char:before {
	content: '';
	display: block;
	content: attr(data-char);
	position: absolute;
	top:0;
	left: 0;
	color: #333;
	opacity: 0;
	}

.animechars.appear span.char.appear:before {
	-webkit-animation: reveal-chars 0.5s cubic-bezier(1,.08,.6,1.16) forwards;
	animation: reveal-chars 0.5s cubic-bezier(1,.08,.6,1.16) forwards;
	-webkit-animation-delay: calc(.01s * var(--char-index));
	animation-delay: calc(.01s * var(--char-index));
	} 

@-webkit-keyframes reveal-chars {
	0% {
		-webkit-transform: translate3d(0,100%,0);
		transform: translate3d(0,100%,0);
	}

	100% {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
		opacity: 1;
	}
}

@keyframes reveal-chars {
	0% {
		-webkit-transform: translate3d(0,100%,0);
		transform: translate3d(0,100%,0);
	}

	100% {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
		opacity: 1;
	}
}




/* ----------------------- FOOTER --------------------------*/



.site-footer {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .1px;
	padding-top:3rem;
	color:rgba(255,255,255,0.8);
	background:#11095d;
	}

.site-footer a {
	text-decoration: underline;
	color:rgba(255,255,255,0.8);
	}

.site-footer h2 {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
	margin-bottom: 1.5rem;
	}

.site-footer .btn {
	color: #fef5ee;
	font-weight: 500;
	font-size: 13px;
	padding-left: 1rem;
	padding-right: 1rem;
	text-decoration: none;
	}

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

.site-footer ul li a {
	text-decoration: none !important;
	}

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

.bottomline ul li {
	display: inline;
	float: left;
	font-size: 12px;
	}

.bottomline ul li a {
	padding: 0 0.5rem;
	}



/* -----  CONTACT NOTES ----- */

.contact-notes p {
	font-size: 12px;
}

.contact-notes a {
	color: inherit;
	text-decoration: underline;
}



/* ----- CONTACT FORM 7 ----- */


label {
	font-size: 15px;
	margin-bottom: 0.5rem;
}



.form-control {
	height: 42px;
}


.form-control:hover,
.form-control:focus {
	outline: 0 none !important;
	-webkit-box-shadow: 0 0 0px #3962ff;
	box-shadow: 0 0 0px #3962ff;
}


.wpcf7-list-item {
    display: inline-block;
    margin: 0 1rem 0 0;
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    margin-right: 0.25rem;
	}

span.wpcf7-not-valid-tip {
	color: #da5a45;
	font-size: 12px;
	font-weight: normal;
	display: block;
	padding-top: 0.25rem;
}


div.wpcf7-response-output {
    margin: 3em 0 1.5em!important;
    color: #fff;
    padding: 0.2em 1em;
    border: 2px solid #da5a45;
    background: #da5a45;
    font-size: 13px;
    font-weight: 500;
	}

.wpcf7 form.invalid .wpcf7-response-output {
	border-color: #da5a45!important;
}


.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
		background:  #46b450;
	}


div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
	border: 2px solid #d8b62c;
	background: #d8b62c;
}

div.wpcf7-mail-sent-ok {
	border: 2px solid #60c78a;
	background: #60c78a;
}



span.req {
	color: #ff5d54;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
}


.privacy-modal .modal-header {
	padding-left: 2rem;
	}

.privacy-modal .modal-body {
	padding: 2rem;
	font-size: 14px;
	}





/* Multistep-form */


.form-step:not(:first-of-type) {
    display: none;
  }

.form-step {
	display: none;
	min-height: 300px;
	}

.form-step.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	}

.form-nav {
	margin-top: auto;
	padding-top: 1.5rem;
	} 

.form-nav .btn {
	padding-left: 2.5rem!important;
	padding-right: 2.5rem!important; 
	} 
	
@media (max-width:575.98px) {
  .form-nav .btn {
	padding-left: 1.5rem!important;
	padding-right: 1.5rem!important; 
	}   
}

.form-nav .btn.btn-primary:not(:disabled):not(.disabled) {
 box-shadow: 0 16px 24px 2px rgb(0 0 0 / 5%), 0 6px 30px 5px rgb(0 0 0 / 5%), 0 8px 10px -5px rgb(0 0 0 / 5%);
}
	
.wpcf7-radio.imageradio {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    }


.wpcf7-radio.imageradio .wpcf7-list-item {
    padding: 0.5rem;
    width: 33.33333%;
    min-width: 33.33333%;
    border: 1px solid #eee;
    margin: 0.75rem 0.25rem;
    }

.wpcf7-radio.imageradio .wpcf7-list-item label {
    display: block; /* You Can remove display block, since your buttons are already stacked */
    text-align:center;
    position:relative;
    }
    
.wpcf7-radio.imageradio .wpcf7-list-item label:before {
    background-size:cover;
    background-position:center;
    background-color:#eee;
    content: '';
    padding-bottom:100%;
    display: inline-block;
    background-size: cover;
    width: 100%;
    margin-bottom: 0.5rem;
    border:1px solid #fff;
    }
    
.wpcf7-radio.imageradio .wpcf7-list-item label.active:before   {
    background-color:#cfe1ff;
    border:1px solid #81b0ff;
    }      
    



@media (max-width:575.98px) {
.wpcf7-radio .wpcf7-list-item {
    display: block;
    margin: 0 0rem 1rem 0;
    width: 100%;
} 

.wpcf7-form .wpcf7-radio label {
width: 100%;
}

}

/* ---------------- SECTIONS  -------------- */


.section-wrappers {
	display: flex;
	flex-direction: column;
}

section.pt-15 { padding-top: 12rem !important; }
section.pt-12 { padding-top: 9rem !important; }
section.pt-9 { padding-top: 6rem !important; }
section.pt-6 { padding-top: 3rem !important; }
section.pt-3 { padding-top: 1.5rem !important; }

section.pb-15 { padding-bottom: 12rem !important; }
section.pb-12 { padding-bottom: 9rem !important; }
section.pb-9 { padding-bottom: 6rem !important; }
section.pb-6 { padding-bottom: 3rem !important; }
section.pb-3 { padding-bottom: 1.5rem !important; }

section.mt-15 { margin-top: 12rem !important; }
section.mt-12 { margin-top: 9rem !important; }
section.mt-9 { margin-top: 6rem !important; }
section.mt-6 { margin-top: 3rem !important; }
section.mt-3 { margin-top: 1.5rem !important;}

section.mb-15 { margin-bottom: 12rem !important; }
section.mb-12 {	margin-bottom: 9rem !important; }
section.mb-9 { margin-bottom: 6rem !important; }
section.mb-6 { margin-bottom: 3rem !important; }
section.mb-3 {	margin-bottom: 1.5rem !important; }


@media (min-width:992px) {

section.pt-15 { padding-top: 15rem !important; }
section.pt-12 { padding-top: 12rem !important; }
section.pt-9 { padding-top: 9rem !important; }
section.pt-6 { padding-top: 6rem !important; }
section.pt-3 { padding-top: 3rem !important; }
	
section.pb-15 { padding-bottom: 15rem !important; }
section.pb-12 { padding-bottom: 12rem !important; }
section.pb-9 { padding-bottom: 9rem !important; }
section.pb-6 { padding-bottom: 6rem !important; }
section.pb-3 { padding-bottom: 3rem !important; }

section.mt-15 { margin-top: 15rem !important; }
section.mt-12 { margin-top: 12rem !important; }
section.mt-9 { margin-top: 9rem !important; }
section.mt-6 { margin-top: 6rem !important; }
section.mt-3 { margin-top: 3rem !important; }
	
section.mb-15 { margin-bottom: 15rem !important; }
section.mb-12 { margin-bottom: 12rem !important; }
section.mb-9 { margin-bottom: 12rem !important; }
section.mb-6 { margin-bottom: 6rem !important; }
section.mb-3 { margin-bottom: 3rem !important; }
	
}


section.first-section {
	padding-top: 12rem!important;	
}

@media(max-width:991.98px) {
	section.first-section {
	padding-top: 3rem!important;	
}
}


.order-1 {order:1}
.order-2 {order:2}
.order-3 {order:3}
.order-4 {order:4}
.order-5 {order:5}
.order-6 {order:6}
.order-7 {order:7}
.order-8 {order:8}



/* --------------  SOCIAL ICONS ------------------ */

.social-media-icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: -0.5rem !important;
}

.social-media-icons li {
	border-left: 1px solid rgba(0, 0, 0, 0.1);
	padding: 0;
}

.social-media-icons li:first-child {
	border-left: 0px solid rgba(0, 0, 0, 0);
}

.social-media-icons i {
	font-size: 18px !important;
	color: inherit !important;
	text-align: center;
	line-height: 40px;
	height: 40px;
	width: 40px;
	overflow: hidden;
	transition: all 0.25s ease, opacity 0.2s linear;
	-webkit-transition: all 0.25s ease, opacity 0.2s linear;
}

.social-media-icons a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-decoration: none;
}

.social-media-icons a:hover {
	text-decoration: none;
}

.social-media-icons i:before,
.social-media-icons i:after {
	display: block;
	-webkit-transition: opacity 0.2s linear, -webkit-transform 0.25s ease;
	transition: opacity 0.2s linear, -webkit-transform 0.25s ease;
	transition: transform 0.25s ease, opacity 0.2s linear;
	transition: transform 0.25s ease, opacity 0.2s linear, -webkit-transform 0.25s ease;
	-webkit-transition: -webkit-transform 0.25s ease, opacity 0.2s linear;
}

.social-media-icons i:hover:before,
.social-media-icons i:hover:after {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.social-media-icons .fa-facebook-f:before,
.social-media-icons .fa-facebook:before,
.social-media-icons .fa-facebook-f:after,
.social-media-icons .fa-facebook:after {
	content: "\f09a";
}

.social-media-icons .fa-google-plus:before,
.social-media-icons .fa-google-plus:after {
	content: "\f0d5";
}

.social-media-icons .fa-instagram:before,
.social-media-icons .fa-instagram:after {
	content: "\f16d";
}

.social-media-icons .fa-twitter:before,
.social-media-icons .fa-twitter:after {
	content: "\f099";
}

.social-media-icons .fa-flickr:before,
.social-media-icons .fa-flickr:after {
	content: "\f16e";
}

.social-media-icons .fa-pinterest:before,
.social-media-icons .fa-pinterest:after {
	content: "\f0d2";
}

.social-media-icons .fa-youtube:before,
.social-media-icons .fa-youtube:after {
	content: "\f167";
}

.social-media-icons .fa-vimeo-square:before,
.social-media-icons .fa-vimeo-square:after {
	content: "\f194";
}

.social-media-icons .fa-tumblr:before,
.social-media-icons .fa-tumblr:after {
	content: "\f173";
}

.social-media-icons .fa-dribbble:before,
.social-media-icons .fa-dribbble:after {
	content: "\f17d";
}

.social-media-icons .fa-whatsapp:before,
.social-media-icons .fa-whatsapp:after {
	content: "\f232";
}

.social-media-icons .fa-feed:before,
.social-media-icons .fa-rss:before,
.social-media-icons .fa-feed:after,
.social-media-icons .fa-rss:after {
	content: "\f09e";
}

.social-media-icons .fa-linkedin:before,
.social-media-icons .fa-linkedin:after {
	content: "\f0e1";
}

.social-media-icons .fa-tripadvisor:before,
.social-media-icons .fa-tripadvisor:after {
	content: "\f262" !important;
}

.social-media-icons .fa-envelope:before,
.social-media-icons .fa-envelope:after {
	content: "\f0e0";
}

/* ----- FONT AWESOME ----- */


@font-face {
	font-family: 'FontAwesome';
	src: url('../font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0');
	src: url('../font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.fa-search:before {
	content: "\f002";
}

.fa-envelope-o:before {
	content: "\f003";
}

.fa-heart:before {
	content: "\f004";
}

.fa-user:before {
	content: "\f007";
}

.fa-check:before {
	content: "\f00c";
}

.fa-at:before {
	content: "\f1fa";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
	content: "\f00d";
}

.fa-search-plus:before {
	content: "\f00e";
}

.fa-search-minus:before {
	content: "\f010";
}

.fa-file-o:before {
	content: "\f016";
}

.fa-clock-o:before {
	content: "\f017";
}

.fa-phone:before {
	content: "\f095";
}

.fa-twitter:before {
	content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
	content: "\f09a";
}

.fa-linkedin:before {
	content: "\f0e1";
}

.fa-mobile-phone:before,
.fa-mobile:before {
	content: "\f10b";
}

.fa-question:before {
	content: "\f128";
}

.fa-info:before {
	content: "\f129";
}

.fa-calendar-o:before {
	content: "\f133";
}

.fa-file:before {
	content: "\f15b";
}

.fa-file-photo-o:before, 
.fa-file-picture-o:before, 
.fa-file-image-o:before {
    content: "\f1c5";
}

.fa-file-pdf-o:before {
    content: "\f1c1";
}

.fa-file-word-o:before {
    content: "\f1c2";
}

.fa-file-zip-o:before, 
.fa-file-archive-o:before {
    content: "\f1c6";
}

.fa-download:before {
    content: "\f019";
}

.fa-youtube:before {
	content: "\f167";
}

.fa-youtube-play:before {
	content: "\f16a";
}

.fa-instagram:before {
	content: "\f16d";
}

.fa-skype:before {
	content: "\f17e";
}

.fa-google:before {
	content: "\f1a0";
}

.fa-fax:before {
	content: "\f1ac";
}

.fa-file-pdf-o:before {
	content: "\f1c1";
}

.fa-map-pin:before {
	content: "\f276";
}

.fa-map-signs:before {
	content: "\f277";
}

.fa-map-o:before {
	content: "\f278";
}

.fa-map:before {
	content: "\f279";
}

.fa-angle-down:before {
	content: "\f107";
	}

.fa-angle-left:before {
	content: "\f104";
	}

.fa-angle-right:before {
	content: "\f105";
	}

.fa-angle-up:before {
	content: "\f106";
	}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}





section.home-intro {
	min-height: 100vh;
  transition: all 1.5s;
  position: relative;
  overflow: hidden;
  background: #eee;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
	}



.logo-group {
	display: flex;
	align-items: center;
}

#LogoSymbol {
	max-width: 350px;
	margin: auto;
	transform-origin: center;
}


#LogoLettring {
	  position: absolute;
    left: 0;
    right: 0;
    margin: auto;
		max-width: 300px;
		}

#LogoLettring path {
	opacity: 0;
	}


section.home-intro.complete {
	min-height: 50vh;
	}


section.home-intro > * {
	position: relative;
	z-index: 1;
}

section.home-intro::before,
section.home-intro::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	transform: translate3d(0,100%,0);
	}


section.home-intro::before {
	background: #FACA30;
	transition: all .75s;
}

section.home-intro::after {
	background: #05ACE1;
	transition: all .5s;
}


section.home-intro.complete::before,
section.home-intro.complete::after {
	transform: translate3d(0,0,0);
} 

section.home-intro.complete::after {
	transition-delay: .75s;
} 


.intro-logo {
	opacity: 0;
	transition: all 1.65s;
	transform-origin: center;
} 

section.home-intro.complete .intro-logo  {
	transform: scale(0.75);
	} 


/*
section.home-intro.complete .intro-logo .haloline  {
	stroke:#333;
	transition: all 2s;
}
section.home-intro.complete .intro-logo .point,
section.home-intro.complete .intro-logo #Glyphs path {
	fill:#333;
	transition: all 2s;
}
*/

svg * { 
  transform-box: fill-box;
}


.intro-logo #Point .point {
	transform-origin: center;
}







.main-features-slider .slider-nav {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	margin-bottom: 3rem;
	}

.main-features-slider .slider-nav .slide-nav {
	padding: 0.5rem 1rem;
	display: flex;
	align-items: center;
	cursor: pointer;
	}

.main-features-slider .slider-nav .slide-nav.active {
	font-weight: 700;
	}

.main-features-slider .slider-nav .slide-nav .counter {
	margin-right: 0.5rem;
	font-size: 13px;
	width: 26px;
	height: 26px;
	border: 1px solid #333;
	border-radius:50%;
	display: flex;
	align-items: center;
	justify-content: center;
	}

.main-features-slider .slider-nav .slide-nav.active .counter {
	background: #333;
	color: #fff;
	}



/* --- reveal anim --- */










.main-features-slider .swiper-button-next,
.main-features-slider .swiper-button-prev {
	background-size:13px;
	}


.main-features-slider .swiper-slide .content {
	position: relative;
	overflow: hidden;
	}


/*
.main-features-slider.reveal .swiper-slide .content:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
	display: block;
	background: #FACA30;
	transition: all .5s;
	transform: translate3d(-105%,0,0);
	}

.main-features-slider.appear .swiper-slide-active .content:before {
	transform: translate3d(0,0,0)!important;
	}
*/

.main-features-slider.reveal .swiper-slide .content > * {
	position: relative;
	z-index: 1;
	}

.main-feat .image-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	}

.main-feat .content {
	padding: 2rem 3rem!important;
	display: flex;
	flex-direction: column;
	justify-content: center;
	}

.main-feat img.icon {
	display: block;
	max-width: 180px;
	width: 100%;
	}

.main-feat .content p {
	margin-bottom: 0;
	}


.main-features-slider .swiper-slide .content .desc  {
	color:#999;
	}

.main-features-slider .swiper-slide .content .desc .word {
	display: inline-block;
	}

.main-features-slider .swiper-slide .content .desc .char {
	display: inline-block;
	opacity: 0;
	}

.main-features-slider .swiper-slide-active .content .desc .char {
	-webkit-animation: slider-reveal-chars 0.75s  forwards;
	animation: slider-reveal-chars 0.75s  forwards;
	-webkit-animation-delay: calc(.05s * var(--char-index));
	animation-delay: calc(.05s * var(--char-index));
	}


@-webkit-keyframes slider-reveal-chars {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes slider-reveal-chars {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}




.form-encomendas {
	padding: 3rem 2.5rem;
	background: #fff;
	border-radius: 1rem;
	margin-top: -9rem;
	color: #6c6c74 !important;
	}
	
	
@media (max-width:575.98px) {
    .form-encomendas {
    margin-left:-1rem;
    margin-right:-1rem;
    padding: 3rem 1rem;
    border-radius: 0rem;
    }
}
	

.form-encomendas .h5 {
	font-weight: 500;
	font-size: 1.313rem;
	margin-bottom: 1.5rem!important;
}


.form-encomendas label,
.form-candidaturas label {
	color: #2f567c;
	font-weight: 500;
}





.form-candidaturas {
	padding: 3rem 2.5rem;
	background: #fff;
	border-radius: 1rem;
	margin-top: -9rem;
	color: #335b7f!important;
	}

@media (max-width:991.98px) {
.form-candidaturas {
	margin-top: 4.5rem;	
	}	
}
	
	
@media (max-width:575.98px) {
.form-candidaturas {
    margin-left:-1rem;
    margin-right:-1rem;
    padding: 3rem 1rem;
    border-radius: 0rem;
    }
}

/* Logos */


.logo-wrap {
	position: relative;
	}

.logo-wrap img {
	max-width: 160px;
	display: block;
	margin: 0 auto;
	opacity: 0.9;
	}

.logo-wrap p {
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	bottom: 1rem;
	font-size: 12px;
	opacity: 0;
	transition: all .5s;
	}

.logo-wrap:hover p {
		opacity: 1;
	}



/* Custom Checkbox / RadioBtns */




.wpcf7-list-item {
    display: inline-block;
    margin: 0 2rem 1rem 0;
	}

.wpcf7-form .wpcf7-radio {
  
}

.wpcf7-form .wpcf7-radio label {
  position: relative;
  cursor: pointer;
}

.wpcf7-form .wpcf7-radio input[type=radio] {
	position: relative;
  visibility: hidden;
}

.wpcf7-form .wpcf7-radio input[type=radio] + span {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	font-size: 17px;
	font-weight: 500;
	color:#37309a;
}

.wpcf7-form .wpcf7-radio input[type=radio] + span:before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 20px;
    width: 20px;
    top: 3px;
    border: 1px solid #9e9e9e;
		}

.wpcf7-form .wpcf7-radio input[type=radio] + span:after {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 12px;
    width: 12px;
    top: 7px;
    left: 4px;
 		transform: scale(1.3);
		transform-origin: center;
		transition: all .5s;
}




.wpcf7-form .wpcf7-radio input[type=radio]:checked + span:before {
    background: transparent;
		}

.wpcf7-form .wpcf7-radio input[type=radio]:checked + span:after {
   background: #37319a;
   transform: scale(1);
		}


.wpcf7-form .wpcf7-checkbox label {
  position: relative;
  cursor: pointer;
}

.wpcf7-form .wpcf7-checkbox input[type=checkbox] {
	position: relative;
  visibility: hidden;
}

.wpcf7-form .wpcf7-checkbox input[type=checkbox] + span {
	  padding-left: 0.75rem;
    padding-right: 0.75rem;
		}


.wpcf7-form .wpcf7-checkbox input[type=checkbox] + span:before {
display: block;
    position: absolute;
    content: '';
    border-radius: 3px;
    height: 20px;
    width: 20px;
    top: 3px;
    border: 1px solid #a0a0a0;
		}

.wpcf7-form .wpcf7-checkbox input[type=checkbox] + span:after {
    display: block;
    position: absolute;
    content: '\2713';
    border-radius: 100%;
    height: 12px;
    width: 12px;
    top: 0px;
    left: 5px;
    visibility: hidden;
    font-size: 16px;
    color: green;
		}

.wpcf7-form .wpcf7-checkbox input[type=checkbox]:checked + span:before {
    background: transparent;
		}

.wpcf7-form .wpcf7-checkbox input[type=checkbox]:checked + span:after {
   visibility: visible;
		}






/*
.productcheckbox input {
	position: absolute;
	opacity: 0;
}
*/

.productcheckbox {
	padding: 0.5rem;
}


.productcheckbox img {
	border: 1px solid #ddd;
	}

.productcheckbox label {
  position: relative;
  cursor: pointer;
}


.productcheckbox label span.price {
	display: block;
	font-weight: 300;
}


.productcheckbox input[type=checkbox]:checked + span > .price  {
	color: #31b297;
	font-weight: 600;
}


.productcheckbox input[type=checkbox] {
	position: absolute;
  visibility: hidden;
}

.productcheckbox input[type=checkbox] + span {
	  padding-left: 1.75rem;
		border-top:4px solid transparent;
    display: block;
		position: relative;
		padding-top: 0.5rem;
	      font-size: 14px;
    line-height: 1.4;
		}


.productcheckbox input[type=checkbox]:checked + span  {
	border-top: 4px solid #31b297;
}
 


.productcheckbox input[type=checkbox] + span:before {
display: block;
    position: absolute;
    content: '';
		left: 0;
    border-radius: 3px;
    height: 20px;
    width: 20px;
    top: 0.5rem;
    border: 1px solid #a0a0a0;
	}

.productcheckbox input[type=checkbox] + span:after {
    display: block;
    position: absolute;
    content: '\2713';
    border-radius: 100%;
    height: 12px;
    width: 12px;
    top: 5px;
    left: 5px;
    visibility: hidden;
    font-size: 16px;
    color: #31b297;
}

.productcheckbox input[type=checkbox]:checked + span:before {
    background: transparent;

}

.productcheckbox input[type=checkbox]:checked + span:after {
   visibility: visible;
}




.entrega_farmacia .wpcf7-list-item {
    display: block;
    margin: 0 1rem 0.5rem 0;
}




.box-shadow--16dp {
     box-shadow: 0 16px 24px 2px rgba(0, 0, 0, .05), 0 6px 30px 5px rgba(0, 0, 0, .05), 0 8px 10px -5px rgba(0, 0, 0, .05)
 }

/*
.c-deepblue-400 {
	color: #003a6a;
} 
*/


.c-grey-800 {
	color: #888;
}



.home-about {
	position: relative;
}



.home-about .image-grid--wrapper {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
    height: 100%;
    width: 100%;
    position: absolute;
}


.home-about .image-grid--wrapper .box {
background: #ccc;
	}


.home-about .image-grid--wrapper .box-1 {
		grid-column: 1 / span 2;
		grid-row: 1 / span 2;
    }

.home-about .image-grid--wrapper .box-2 {
		grid-column: 3;
		grid-row: 1;
    }

.home-about .image-grid--wrapper .box-3 {
		grid-column: 3;
		grid-row: 2;
    }



.home-about-images-wrap {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;

	}

.home-about-images-wrap .figure-1 {
	position: absolute;
	width:35%;
	height: calc(530px + 5rem);
	background: #ccc;
	top: 0;
	}


.home-about-images-wrap .figure-2 {
	position: absolute;
	width:200px;
	height: 300px;
	background: #ccc;
	top: 5rem;
	right: 0;
	}


.home-about-images-wrap .figure-3 {
	position: absolute;
	width:200px;
	height: 200px;
	background: #ccc;
	top: calc(330px + 5rem);
	right: 0;
	}




/*
.home-about .imgwrap.reveal:after {
	background: #013764;
}
*/

@media (min-width: 576px) and (max-width: 767.98px) {
.modal-dialog {
    max-width: 90%;
    }
}


.faqs-modal .modal-header,
.concelhos-modal .modal-header {
	border-bottom: 0;
	}

.faqs-modal .modal-body,
.concelhos-modal .modal-body {
	padding: 0 3rem 3rem;
	} 
	
	
@media (max-width: 767.98px) {	
.faqs-modal .modal-body, 
.concelhos-modal .modal-body {
    padding: 1rem;
    }
}

.page-header-encomendas {
	position: relative;
	overflow: hidden;
	}
	
	
@media (max-width:575.98px) {
.page-header-encomendas {
    background-image: none!important;
    }
}


@media(max-width:991.98px){
section.page-header-encomendas {
	padding-top: 6rem!important;
	padding-bottom: 9rem!important;
	}
}


@media (max-width: 575.98px) {
section.page-header-encomendas {
	padding-top: 3rem!important;
	padding-bottom: 6rem!important;
    }
}

.receita-block {
	margin-bottom: 1rem;
	border-bottom:1px solid #eee;
}

.wpcf7-form-control-wrap.adicionar-1,
.wpcf7-form-control-wrap.adicionar-2,
.wpcf7-form-control-wrap.adicionar-3,
.wpcf7-form-control-wrap.adicionar-4,
.wpcf7-form-control-wrap.adicionar-5,
.wpcf7-form-control-wrap.adicionar-6,
.wpcf7-form-control-wrap.adicionar-7,
.wpcf7-form-control-wrap.adicionar-8,
.wpcf7-form-control-wrap.adicionar-9 {
    text-align: right;
    display: block;
    width: 100%;
    color: #3e9570;
    font-weight: 600;
		}


.wpcf7-form-control-wrap.adicionar-1 .wpcf7-list-item,
.wpcf7-form-control-wrap.adicionar-2 .wpcf7-list-item,
.wpcf7-form-control-wrap.adicionar-3 .wpcf7-list-item,
.wpcf7-form-control-wrap.adicionar-4 .wpcf7-list-item,
.wpcf7-form-control-wrap.adicionar-5 .wpcf7-list-item,
.wpcf7-form-control-wrap.adicionar-6 .wpcf7-list-item,
.wpcf7-form-control-wrap.adicionar-7 .wpcf7-list-item,
.wpcf7-form-control-wrap.adicionar-8 .wpcf7-list-item,
.wpcf7-form-control-wrap.adicionar-9 .wpcf7-list-item {
	margin-right: 0;
}



.wpcf7-form-control-wrap.adicionar-1 label,
.wpcf7-form-control-wrap.adicionar-2 label,
.wpcf7-form-control-wrap.adicionar-3 label,
.wpcf7-form-control-wrap.adicionar-4 label,
.wpcf7-form-control-wrap.adicionar-5 label,
.wpcf7-form-control-wrap.adicionar-6 label,
.wpcf7-form-control-wrap.adicionar-7 label,
.wpcf7-form-control-wrap.adicionar-8 label,
.wpcf7-form-control-wrap.adicionar-9 label {
font-size: 12px;
	padding-top: 0.25rem;
	padding-right: 0;
			}




@media (max-width:575.98px) {
    
.wpcf7-checkbox,
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item label{
    width:100%;
}  


.wpcf7-form-control-wrap.adicionar-1, 
.wpcf7-form-control-wrap.adicionar-2, 
.wpcf7-form-control-wrap.adicionar-3, 
.wpcf7-form-control-wrap.adicionar-4, 
.wpcf7-form-control-wrap.adicionar-5, 
.wpcf7-form-control-wrap.adicionar-6, 
.wpcf7-form-control-wrap.adicionar-7, 
.wpcf7-form-control-wrap.adicionar-8, 
.wpcf7-form-control-wrap.adicionar-9 {
    text-align:left;
    margin-top:1rem;
}

}

.receita-dados input.disabled {
	pointer-events: none;
	background: #ddd;
}



label.label-sm {
	font-size: 13px;
}

@media(min-width:1200px) {
.border-left-lg  {
	border-left: 1px solid #eee;
}
	}






.wpcf7 input[type="file"] {
    cursor: pointer;
    max-width: 100%;
    font-size: 14px;
	margin-top: 5px;
}



@media (max-width:767.98px) {
.delivery-note {
 padding:1.5rem 0!important;   
}
}




#progressbar {
   overflow: hidden;
   color: lightgrey;
   margin-top: 3rem;
}


@media (max-width:575.98px) {
   #progressbar { 
   display:none;
   visibility:hidden;
   }    
}

#progressbar .active {
    color: #87a1ca;
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 20%;
    float: left;
    position: relative;
    font-weight: 400;
    text-align: center;
    padding: 1.5rem 0.25rem 0rem;
}

#progressbar li:before {
		content: '';
		width: 10px;
		height: 10px;
		line-height: 10px;
		display: block;
		font-size: 20px;
		color: #ffffff;
		background: lightgray;
		border-radius: 50%;
		margin: 0 auto;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		padding: 2px;
		background: #eee;
	}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #eee;
    position: absolute;
    left: 0;
    top: 4px;
  }

#progressbar li.active:before,
#progressbar li.active:after {
    background: #bbc9e1;
 }

.progress {
    height: 20px
	}

.progress-bar {
    background-color: #673AB7;
	}

.error-note {
	padding: 0.25rem 1rem;
  font-size: 12px;
	}

.prod_error {
	color: #da5a45;
	display: block;
	cursor: pointer;
	}

#progressbar li.form-error {
	color: #da5a45;
	}


#progressbar li.form-error:after,
#progressbar li.form-error:before {
	background: #da5a45;
}

.form-encomendas .h5.mb-0 {
	margin-bottom:0!important;
}




@media (min-width:992px) {
    
.form-agendamento {
  padding:3rem 2rem 2rem;
  background:#f5f4ff;
  margin-left:-2rem;
  margin-right:-2rem;
  border-radius: 1rem;
    }
}


.service-slider-wrap {
	margin-top: -6rem;
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    }





.farmacia-single-contacts h2 {
	color: #4f5252!important;
	text-transform: uppercase;
	font-weight: 300;
	margin-bottom: 1rem;
	}

@media(min-width:992px) {
.farmacia-single-contacts h2 {
		font-size: 1.75rem	
		}
	}


.farmacias-section .farmacia-contacts h2 span {
	display: block;
	font-weight: 600;
	}
    

.farmacia-single-contacts  .farmacia-symbol {
	width: 70px;
    max-width: 70px;
    height: 70px;
    margin-bottom: 0;
    
	}

@media(min-width:992px) {
	.farmacia-single-contacts  .farmacia-symbol {
	margin-left: -1.25rem;
	}
}	


.farmacia-single-contacts a {
    color: #4f5252!important;
    }






.block-list a { 
    color:#6760b6;
}


.show-mobile {
    display:block;
    visibility:visible;
    }

.hide-mobile {
    display:none;
    visibility:hidden;
    }
    
@media (min-width:576px) {
.show-mobile {
    display:none;
    visibility:hidden;
    }
.hide-mobile {
	display:block!important;
    visibility:visible!important; 
	 }
}


.page-hero {
	padding-top:3rem;
	padding-bottom:3rem;
    }


@media (min-width:992px) {
.page-hero {
    min-height:500px;
	padding-top:12rem;
	padding-bottom:6rem;
	background-position:center;
	background-size:cover;
    }
}

.dicas-hero {
	margin-bottom:3rem;
}

@media (min-width:992px) {
.dicas-hero {
	margin-bottom:6rem;
}
}



@media (max-width:991.98px) {
.banner-lg {
    background-image: none!important;
    }
}


@media (min-width:992px) {
.hide-lg {
	display:none;
	visibility:hidden;
}
}



.highlight-block {
	padding: 2rem;
    background: #f5f4ff;
    margin-left: -2rem;
    margin-right: -2rem;
	border-radius:0.5rem;
	border-radius:0.5rem;
}

.menu-highlight .nav-link {
	background: #1A0F8A;
    color: #fff;
	}




.no-pointer {
        pointer-events: none;
}
