/**
* Template Name: Ady Ecollect
* Template URL: https://adyecollect.ro/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: VertEvo.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
	--green: #2FC48D;
--------------------------------------------------------------*/
:root {
	--link: #090;
	--green: #090;
	--green-rgb: 0, 153, 0;
	--green-light: #2b2;
	--green-light-rgb: 34, 187, 34;
	--green-dark: #070;
    --green-dark-rgb: 0, 119, 0;
	--success: #18D26E;
	--error: #ED3C0D;
	--text: #444;
	--gray: #282828;
	--gray-rgb: 40, 40, 40;
	--gray-light: #777;
	--gray-light-rgb: 120, 120, 120;
	--white: #FFF;
	--white-rgb: 255, 255, 255;
	--off-white: #EEE;
	--off-black: #111;
	--off-black-rgb: 18, 18, 18;
	--bg: #fff;
}
@media (prefers-color-scheme: dark) {
	:root {
		--link: #5f8;
		--link-dark: #3c5;
		--green-dark: #3c5;
		--bg: #022;
		--text: #eee;
		--gray: #9cc;
		--off-white: #244;
	}
  }
}
::-moz-selection { background: var(--bg); color: var(--text); }
::selection { background: var(--bg); color: var(--text); }

body {
	font-family: "Open Sans", sans-serif;
	color: var(--text);
	background: var(--bg);
}
a {
	color: var(--link);
	text-decoration: none;
}
a:hover {
	color: var(--link-dark);
	text-decoration: none;
}
main a[target="_blank"]::after, 
main a[href^="mailto"]::after, 
main a[href^="tel"]::after {
	content: "\eb3e";
	font-family: boxicons;
	padding-left: 10px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Raleway", sans-serif;
}
/* Buttons */
.btn {
	display: inline-block;
	margin: 5px;
	padding: 12px 32px;
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 1px;
	text-decoration: none;
	white-space: nowrap;
	border: none;
	border-radius: 50px;
	transition: 0.3s;
	animation-delay: 0.8s;
}

.btn-primary, 
.btn-cta {
	background: var(--green);
	color: var(--white);
}
.btn-primary:hover, 
.btn-cta:hover {
	background: var(--green-dark);
}
.btn-secondary {
	background: rgba(var(--white-rgb), .75);
	color: var(--green);
	border: 2px solid var(--green);
}
.btn-secondary:hover {
	background: var(--green-dark);
	color: var(--white);
	border: 2px solid var(--green-dark);
}

@media (max-width: 992px) {
	.btn {
	margin: 0 15px 0 0;
	padding: 6px 18px;
	}
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: var(--green);
}

#preloader svg {
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 100px;
	height: 100px;
	fill: var(--white);
	animation: animate-preloader 1s linear infinite;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
#top {
    height: 0;
    padding: 0;
    overflow: hidden;
}
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 100px;
	z-index: 996;
	background: var(--green);
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: var(--white);
	line-height: 0;
}

.back-to-top:hover {
	background: var(--green-dark);
	color: var(--white);
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	border-bottom: 1px solid rgba(var(--white-rgb), 0.1);
}

#header.header-scrolled {
	background: var(--off-white);
}
#header.header-inner-pages {
	background: rgba(var(--gray-rgb), 0.9);
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.5px;
}

#header .logo a {
	color: var(--white);
}

#header .logo img {
	max-height: 50px;
	filter: drop-shadow(0 0 5px #fff7);
}

@media (max-width: 992px) {
	#header {
	border: 0;
	padding: 15px 0;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

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

.navbar li {
	position: relative;
}

.navbar>ul>li {
	position: relative;
	white-space: nowrap;
	margin: 0 12px;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 3px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gray);
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
}

header:not(.header-scrolled) .navbar a {
	color: rgba(var(--white-rgb), .9);
}

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

.navbar>ul>li>a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -2px;
	left: 0;
	background-color: var(--green);
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
	visibility: visible;
	width: 100%;
}

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

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: var(--white);
	box-shadow: 0px 0px 30px rgba(var(--gray-light-rgb), 0.25);
	transition: 0.3s;
	border-top: 2px solid var(--green);
}

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

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	font-weight: 500;
	color: var(--gray);
}

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

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

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

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

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

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
	left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
	left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: var(--white);
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
	display: block;
	}

	.navbar ul {
	display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(var(--off-black-rgb), 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: var(--white);
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: var(--gray);
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
	visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: var(--green);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: var(--white);
	box-shadow: 0px 0px 30px rgba(var(--gray-light-rgb), 0.25);
}

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

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: var(--green);
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 100vh;
	background: url("img/hero-bg.jpg") top center;
	background-size: cover;
	position: relative;
}

#hero:before {
	content: "";
/* 	background: rgba(var(--off-black-rgb), 0.6); */
	background: radial-gradient(ellipse at center, rgba(0,0,0,.3) 0%, rgba(0,0,0,.85) 85%);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#hero .container {
	padding-top: 72px;
	position: relative;
	text-align: center;
}

#hero h1 {
	margin: 0 0 10px 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: var(--white);
}

#hero h2 {
	color: var(--white);
	margin-bottom: 40px;
	font-size: 24px;
}

#hero .play-btn {
	width: 94px;
	height: 94px;
	margin: 0 auto;
	background: radial-gradient(var(--green) 50%, rgba(var(--green-rgb), 0.4) 52%);
	border-radius: 50%;
	display: block;
	overflow: hidden;
	position: relative;
}

#hero .play-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid var(--white);
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
	content: "";
	position: absolute;
	top: -15%;
	left: -15%;
	width: 120px;
	height: 120px;
	animation-delay: 0s;
	animation: pulsate-btn 3s;
	animation-direction: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(var(--green-dark-rgb), 0.7);
}

#hero .play-btn:hover::after {
	border-left: 15px solid var(--green);
	transform: scale(20);
}

#hero .play-btn:hover::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid var(--white);
	z-index: 200;
	animation: none;
	border-radius: 0;
}

@media (min-width: 1024px) {
	#hero {
	background-attachment: fixed;
	}
}

@media (max-width: 768px) {
	#hero h1 {
	font-size: 28px;
	line-height: 36px;
	}

	#hero h2 {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 30px;
	}
}

@keyframes pulsate-btn {
	0% {
	transform: scale(0.6, 0.6);
	opacity: 1;
	}

	100% {
	transform: scale(1, 1);
	opacity: 0;
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 80px 0;
	overflow: hidden;
}

@media (min-width: 1400px) {
	.container, 
	.container-lg, 
	.container-md, 
	.container-sm, 
	.container-xl, 
	.container-xxl {
	  max-width: 1280px;
	}
  }
.section-bg {
	background-color: var(--green-light);
}

.section-title {
	padding-bottom: 30px;
}

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

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--green);
	bottom: 0;
	left: 0;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.despre .content h3 {
	font-weight: 600;
	font-size: 26px;
}

.despre .content ul {
	list-style: none;
	padding: 0;
}

.despre .content ul li {
	padding-left: 28px;
	position: relative;
}

.despre .content ul li+li {
	margin-top: 10px;
}

.despre .content ul i {
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 20px;
	color: var(--green);
	line-height: 1;
}

.despre .content p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.servicii .icon-box {
	padding: 60px 30px;
	transition: all ease-in-out 0.3s;
	background: var(--bg);
	box-shadow: 0px 5px 90px 0px rgba(var(--gray-light-rgb), 0.1);
	border-radius: 18px;
	border-bottom: 5px solid var(--bg);
}

.servicii .icon-box .icon {
	position: relative;
	width: 92px;
	height: 92px;
	background: var(--green);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: ease-in-out 0.3s;
	color: var(--white);
	background: radial-gradient(var(--green) 50%, rgba(var(--green-rgb), 0.4) 52%);
}

.servicii .icon-box .icon::before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	opacity: 0;
	border-radius: 50%;
	top: -15%;
	left: -15%;
}

.servicii .icon-box:hover .icon::before {
	animation-delay: 0s;
	animation: pulsate-btn 1s;
	border: 5px solid rgba(var(--green-rgb), 0.7);
}

.servicii .icon-box .icon i {
	font-size: 38px;
}

.servicii .icon-box-title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 24px;
	color: var(--gray);
	transition: ease-in-out 0.3s;
}

.servicii .icon-box:hover .icon-box-title {
	color: var(--green-dark);
}

.servicii .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.servicii .icon-box:hover {
	transform: translateY(-10px);
	border-color: var(--green);
}

.servicii .icon-box:hover h4 a {
	color: var(--green);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
	background: linear-gradient(rgba(var(--off-black-rgb), 0.6), rgba(var(--off-black-rgb), 0.6)), url("img/cta-bg.jpg") fixed center center;
	background-size: cover;
	padding: 120px 0;
}
.cta .container {
	max-width: 900px;
}

.cta h2 {
	color: var(--white);
	font-size: 28px;
	font-weight: 700;
}

.cta p {
	color: var(--white);
}

.cta .cta-btn {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 30px;
	border-radius: 2px;
	transition: 0.5s;
	margin: 10px;
	background: var(--green);
	color: var(--white);
	border-radius: 50px;
}

.cta .cta-btn:hover {
	background: var(--green-dark);
}

@media (max-width: 1024px) {
	.cta {
	background-attachment: scroll;
	}
}

@media (min-width: 769px) {
	.cta .cta-btn-container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	}
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 5px 0 10px 60px;
}

.features .icon-box i {
	font-size: 48px;
	float: left;
	color: var(--green);
}

.features .icon-box p {
	font-size: 15px;
	color: vat(--text);
	margin-left: 60px;
}

.features .image {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 400px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
/* .clienti {
	padding-top: 30px;
} */

.clienti .clienti-wrap {
	border-top: 1px solid var(--off-white);
	border-left: 1px solid var(--off-white);
}
.clienti-wrap > div {
	padding: 0;
}
.clienti .client-logo {
	padding: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 1px solid var(--off-white);
	border-bottom: 1px solid var(--off-white);
	overflow: hidden;
	height: 140px;
}

.clienti .client-logo:hover img {
	transform: scale(1.1);
}

.clienti img {
	transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.numere {
	background: url("img/counts-bg.jpg") center center no-repeat;
	background-size: cover;
	padding: 80px 0 60px 0;
	position: relative;
}

.numere::before {
	content: "";
	position: absolute;
	background: rgba(var(--off-black-rgb), 0.9);
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.numere .title {
	position: relative;
	color: var(--white);
	margin-bottom: 40px;
}

.numere .title h3 {
	font-size: 36px;
	font-weight: 700;
}

.numere .counters span {
	font-size: 48px;
	display: block;
	font-weight: 700;
	color: var(--green);
}

.numere .counters span.plus::after {
	content: '+';
}

.numere .counters p {
	padding: 0;
	margin: 0 0 20px 0;
	font-family: "Raleway", sans-serif;
	font-size: 14px;
	color: var(--white);
}

@media (min-width: 1200px) {
	.numere {
	background-attachment: fixed;
	}
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq {
	padding: 0;
}

.faq .content {
	padding: 60px 100px 0 100px;
}

.faq .content h3 {
	font-weight: 400;
	font-size: 34px;
}

.faq .content h4 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 5px;
}

.faq .content p {
	font-size: 15px;
	color: var(--gray-light);
}

.faq .img {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	min-height: 400px;
}

.faq .accordion-list {
	padding: 0 100px 60px 100px;
}

.faq .accordion-list > ul {
	padding: 0;
	list-style: none;
}

.faq .accordion-list > ul > li+li {
	margin-top: 15px;
}

.faq .accordion-list > ul > li {
	padding: 20px;
	background: var(--bg);
	box-shadow: 0px 5px 90px 0px rgba(var(--gray-light-rgb), 0.1);
	border-radius: 4px;
}

.faq .accordion-list a {
	display: block;
	position: relative;
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	padding-right: 30px;
	outline: none;
	cursor: pointer;
}

.faq .accordion-list i {
	font-size: 24px;
	position: absolute;
	right: 0;
	top: 0;
}

.faq .accordion-list p {
	margin-bottom: 0;
	padding: 10px 0 0 0;
}

.faq .accordion-list .icon-show {
	display: none;
}

.faq .accordion-list a.collapsed {
	color: var(--gray);
}

.faq .accordion-list a.collapsed:hover {
	color: var(--green);
}

.faq .accordion-list a.collapsed .icon-show {
	display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
	display: none;
}

@media (max-width: 1024px) {

	.faq .content,
	.faq .accordion-list {
	padding-left: 0;
	padding-right: 0;
	}
}

@media (max-width: 992px) {
	.faq .content {
	padding-top: 30px;
	}

	.faq .accordion-list {
	padding-bottom: 30px;
	}
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
@media (prefers-color-scheme: dark) {
    .map > iframe {
        filter: invert(.9) hue-rotate(180deg);
    }
}
.contact .info {
	width: 100%;
}

.contact .info i {
	font-size: 32px;
	color: var(--green);
	float: left;
	line-height: 1;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--gray);
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: var(--gray);
}

.contact .info-block:not(:first-child) {
	margin-top: 40px;
}

.contact .hours p > span {
	display: inline-block;
	min-width: 100px;
}

.contact .php-email-form {
	width: 100%;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .error-message {
	display: none;
	color: var(--white);
	background: var(--error);
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .sent-message {
	display: none;
	color: var(--white);
	background: var(--success);
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .sent-message br+br {
	margin-top: 25px;
}

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

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

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	border-radius: 4px;
}

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

.form-control.is-valid, 
.was-validated .form-control:valid, 
.was-validated .form-select:valid {
    border-color: var(--green);
}

.form-control.is-valid:focus, 
.was-validated .form-control:valid:focus, 
.was-validated .form-select:valid:focus {
	box-shadow: 0 0 0 .25rem rgba(var(--green-rgb),.25);
}

.contact .php-email-form input, 
.contact .php-email-form select {
	height: 44px;
}
.contact .php-email-form input, 
.contact .php-email-form textarea, 
.contact .php-email-form select {
	color: var(--text);
	background: var(--off-white);
	border-color: var(--off-white);
}
.contact .php-email-form input::placeholder, 
.contact .php-email-form textarea::placeholder {
	color: var(--gray);
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
	background: var(--green);
	border: 0;
	padding: 10px 30px;
	color: var(--white);
	transition: 0.4s;
	border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
	background: var(--green-dark);
}

.contact form:has(#alert-status > .alert-success ) > div:not(#alert-status) {
	display: none;
}

.valid-feedback {
    color: var(--green-dark);
}

.contact form .alert-success { 
    background: var(--green-light);
    color: var(--white);
    text-align: center;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 15px 0;
	background: var(--off-white);
	min-height: 40px;
	margin-top: 72px;
}

@media (max-width: 992px) {
	.breadcrumbs {
	margin-top: 63px;
	}
}

.breadcrumbs h2 {
	font-size: 26px;
	font-weight: 500;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 14px;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: var(--off-black);
	color: var(--white);
	font-size: 14px;
	text-align: center;
	padding: 30px 0;
}

#footer h3 {
	font-size: 36px;
	font-weight: 700;
	color: var(--white);
	position: relative;
	font-family: "Raleway", sans-serif;
	padding: 0;
	margin: 0 0 15px 0;
}

#footer p {
	font-size: 15;
	font-style: italic;
	padding: 0;
	margin: 0 0 40px 0;
}

#footer .social-links {
	margin: 0 0 40px 0;
}

#footer .social-links a {
	font-size: 18px;
	display: inline-block;
	background: var(--green);
	color: var(--white);
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .social-links a:hover {
	background: var(--green-dark);
	color: var(--white);
	text-decoration: none;
}

#footer .copyright {
	margin: 0 0 5px 0;
}

#footer .credits {
	font-size: 13px;
}

#footer .credits a {
	color: var(--green-dark);
	transition: 0.3s;
}

#footer .credits a:hover {
	color: var(--green);
}

.credits svg path {
	transition: all .3s;
}
footer:not(:hover) .credits svg path {
	fill: var(--green) !important;
}
.credits svg {
	height: 1.1rem;
	width: auto;
	transition: transform .3s;
}
.credits a:hover svg {
	transform: scale(1.2) translateX(.4rem);
}

/* Others */
.grecaptcha-badge:not(:hover) {
    transform: scale(.5) translateX(-58px);
}


