/*
 * This code has been designed and authored by GOVISION SRL. 
   Use of this script is permitted only with explicit consent from GOVISION SRL. 
   Copyright details are as follows:
 * DRIVCERT v1.2.0 (http://govision.ro)
 * Copyright 2008 - 2024 S.C. GOVISION S.R.L.
 * Autor GOVISION SRL
 */
 

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

.logo {
    margin-bottom: 4px;
}
.logo img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

.button-container {
	display: flex;
	justify-content: center;
	margin-top: 3px;
	flex-wrap: wrap;
}
.image-button {
	width: 100px;
	height: 100px;
	margin: 10px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

.image-button img {
	width: 100%;
	height: auto;
	border-radius: 8%;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.image-button:hover img {
	transform: scale(1.1);
	box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}



body {
	background: #d8d8d8;
}
.container {
	margin-top: 7%;
}
.single-team {
	position: relative;
	width: auto;
	height: 500px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
}
.single-team:before {
	content: "";
	width: 100%;
	height: 100%;
	background: #161619;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .35s ease 0s
}
.single-team:hover:before {
	opacity: 1
}
.single-team .content {
	width: 90%;
	height: 90%;
	position: absolute;
	top: 5%;
	left: 5%
}
.single-team .content:after, .single-team .content:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	transition: all .7s ease 0s
}
.single-team .content:before {
	border-bottom: 10px double rgba(255, 255, 255, .5);
	border-top: 10px double rgba(255, 255, 255, .5);
	transform: scale(0, 1);
	transform-origin: 0 0 0
}
.single-team .content:after {
	border-left: 10px double rgba(255, 255, 255, .5);
	border-right: 10px double rgba(255, 255, 255, .5);
	transform: scale(1, 0);
	transform-origin: 100% 0 0
}
.single-team:hover .content:after, .single-team:hover .content:before {
	opacity: 1;
	transform: scale(1);
	transition-delay: .15s
}
.single-team h3 {
	font-size: 31px;
	font-weight: 700;
	color: #fff;
	margin: 160px 0;
	opacity: 0;
	transform: translate3d(0, -50px, 0);
	transition: transform .5s ease 0s;
	text-align: center;
	line-height: 1.4;
	font-family: 'Arial', cursive;
	text-transform: uppercase;
}
.single-team h3 span {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	display: block;
	letter-spacing: 5px;
	opacity: .5;
}
.single-team:hover h3 {
	opacity: 1;
	transform: translate3d(0, 0, 0)
}
@media (max-width: 991px) {
	.single-team {
		margin-bottom: 30px;
	}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    text-align: center; /* Centrăm textul */
    padding: 5px 0; /* Păstrează un padding general */
    background-color: #dedede; /* Poți schimba culoarea fundalului după preferințe  #55575f */
	color: #000000;
	margin-top: 50px; /* Distanța față de elementul de sus, poți ajusta valoarea */
}

.footer-content {
    max-width: 800px; /* Poți modifica această valoare în funcție de necesități */
    margin: 0 auto; /* Centrăm conținutul pe mijlocul paginii */
}

#footer .copyright,
#footer .credits {
    margin: 5px 0; /* Adaugă distanță între secțiuni */
}

#footer a {
    color: #e43c5c; /* Culoarea link-ului, o poți schimba după preferințe */
    text-decoration: none; /* Scoate sublinierea link-ului */
}

#footer a:hover {
    text-decoration: underline; /* Adaugă sublinierea la hover */
}

#footer .copyright span {
    color: #000000; /* Culoarea textului, o poți schimba după preferințe */
}








