/*
 * 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
--------------------------------------------------------------*/


body {
    background: #222327;
}

/* Custom styles to center the modules */
.container {
    margin-top: 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.single-team {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
    transition: all .35s ease;
}

.single-team:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #161619;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .35s ease;
}

.single-team:hover:before {
    opacity: 1;
}

.single-team .content {
    width: 90%;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 5%;
}

.single-team .content:before,
.single-team .content:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all .7s ease;
}

.single-team .content:before {
    border-bottom: 10px double rgba(255, 255, 255, 0.5);
    border-top: 10px double rgba(255, 255, 255, 0.5);
    transform: scale(0, 1);
    transform-origin: 0 0 0;
}

.single-team .content:after {
    border-left: 10px double rgba(255, 255, 255, 0.5);
    border-right: 10px double rgba(255, 255, 255, 0.5);
    transform: scale(1, 0);
    transform-origin: 100% 0 0;
}

.single-team:hover .content:before,
.single-team:hover .content:after {
    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, opacity .5s ease;
    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 Styles */
#footer {
    text-align: center;
    padding: 15px 0;
    background-color: #323339;
    color: #ffffff;
    margin-top: 70px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

#footer .copyright {
    margin: 5px 0;
}

#footer a {
    color: #e43c5c;
    text-decoration: none;
}

#footer a:hover {
    text-decoration: underline;
}

#footer .copyright span {
    color: #ffffff;
}


