@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

* {
    font-family: 'Source Sans Pro', sans-serif;
}

:root {
    --color-blue: #0c4a6e;
    --color-blue-hover: #0ea5e9;
    --color-red: #e3003e;
    --color-red-hover: #e83f5b;
    --color-green: #04d361;
    --color-orange: #fd951f;
    --color-yellow: #f7df1e;
    --color-primary: #8257e6;
    --color-primary-hover: #9466ff;
    --color-info: #001d28;
    --color-info-hover: #06b6d4;
    --color-background-black: #121214;
    --color-secondary: #e1e1e6;
    --color-text: #a8a8b3;
    --color-support: #737380;
    --color-shape: #202024;
    --color-shape-hover: #29292e;
    --color-icons: #41414d;
    --color-borders: #323238;
    --color-black: #0d0d0f;
    --color-white: #fff;
    --br-7: 7px;
}

.btn-web {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-web:hover {
    background: var(--color-primary-hover);
    color: var(--color-white);
}

.bg-web-primary {
    background-color: #3a86ff;
}

.text-web-primary {
    color: var(--color-primary);
    border-radius: var(--br-7);
}

.text-web-primary:hover {
    color: var(--color-primary-hover);
}

.navbar-nav .nav-link.active {
    color: var(--color-primary);
    border-radius: var(--br-7);
}

input::placeholder,
textarea::placeholder{
    color: var(--color-support) !important;
}

/**
HOME
 */
.section-home-header b {
    color: var(--color-primary);
}

/**
GALLERY
 */
.gallery .gallery-item {
    /*height: 350px;*/
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.3s;
}

.gallery .gallery-links {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    line-height: 1.2;
    margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
    color: #fff;
}

.gallery .gallery-links .details-link {
    font-size: 30px;
    line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
    opacity: 1;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

/**
CONTACT
 */
.response_success {
    display: none;
}