/******* ITS Tecnologia Criativa ********/
/*! Desenvolvido por Iaponã Pedroza -
- Jaboatão dos Guararapes - PE - BR -
Agosto - Dezembro - 2021 */
/*Paleta de cores padrão base*/
:root {
    --cyan: #17a2b8;
    --ciano: rgb(0, 174, 239);
    --blue: #007bff;
    --myBgBlue1: #0d338c;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: rgb(0, 174, 239);
    --secondary: #6ebbf6;
    --mySecColor: #cfdcfc;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #fef1ef;
    --dark: #211e1c;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Poppins", sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
}

@font-face {
    font-family: "Philosopher";
    src: local(Philosopher), url(../fonts/Philosopher-Regular.ttf);
}

@font-face {
    font-family: "PhilosopherBd";
    src: local(PhilosopherBd), url(../fonts/Philosopher-Bold.ttf);
}

@font-face {
    font-family: "PhilosopherBdIt";
    src: local(PhilosopherBdIt), url(../fonts/Philosopher-BoldItalic.ttf);
}

@font-face {
    font-family: "PhilosopherIt";
    src: local(PhilosopherIt), url(../fonts/Philosopher-Italic.ttf);
}

/* Hacking for boxing models */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    font-family: "Philosopher" !important;
}

body {
    background-color: var(--myBgBlue1);
}

.navbar {
    background-color: var(--myBgBlue1);
    color: var(--mySecColor) !important;
}

.navbar a {
    color: var(--mySecColor);
}

#sobre {
    background-color: #0d338c;
    padding: 25px;
}

#sobre .quem-somos {
    padding: 30px;
    background-color: #97a5c6;
}

#rodape {
    background-color: var(--myBgBlue1);
    color: var(--white);
}

header.masthead {
    /* top: -50px; */
    padding-top: 0rem;
    padding-bottom: 0rem;
    text-align: center;
    color: #fff;
    background-image: url("../img/bgIts2.jpg");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    min-height: 100vh;
}

header.masthead .masthead-heading {
    font-size: 2.25rem;
    /* font-weight: 700; */
    /* line-height: 3.25rem; */
    /* font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
}

.masthead .my-bg-transparent {
    background-color: #0d338ca1;
    /* opacity: 0.5; */
}

.carousel {
    width: 100%;
    height: 100vh;
}

.carousel .carousel-inner {
    width: 100%;
    height: 100%;
}

.carousel .carousel-item {
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Responsive typography */
@media (max-width: 768px) {
    .carousel-caption {
        font-size: 14px;
        padding: 10px;
    }
}

header.masthead .masthead-subheading {
    font-size: 1.8rem;
    text-align: end;
    font-style: italic;
    line-height: 1.5rem;
    /* margin-bottom: 25px; */
}

.btn-social {
    height: 2.5rem;
    width: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 100%;
}

@media (min-width: 768px) {
    header.masthead {
        /* top: -50px; */
        padding-top: 0rem;
        padding-bottom: 0rem;
    }

    header.masthead .masthead-subheading {
        font-size: 2.5rem;
        text-align: end;
        font-style: italic;
        line-height: 2rem;
        /* margin-bottom: 2rem; */
    }

    header.masthead .masthead-heading {
        font-size: 2.2rem;
        color: yellowgreen;
        font-weight: 700;
        /* line-height: 4.5rem; */
        /* margin-bottom: 4rem; */
    }
}

/* Animathings */
.animated-text {
    animation-duration: 2s;
    animation-name: textAnimation;
    animation-iteration-count: infinite;
}

@keyframes textAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* HOrizontal */
.animated-text-horizontal {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.animated-text-horizontal span {
    display: inline-block;
    animation: slideRight 5s linear infinite;
}

@keyframes slideRight {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}

.btn-close:hover {
    color: #0d338c;
    text-decoration: none;
    opacity: 0.75;
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 200, 0, 0.25);
    opacity: 1;
}

.btn-close:disabled,
.btn-close.disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0.25;
}

/* Customize scrollbar for Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--myBgBlue1);
}

::-webkit-scrollbar-thumb {
    background-color: #b7cce1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #87aedf;
}

::-webkit-scrollbar-thumb:active {
    background-color: #628cc8;
}

::-webkit-scrollbar-thumb:vertical {
    min-height: 30px;
}

/* Customize scrollbar for Firefox */
* {
    scrollbar-color: #b7cce1 #f0f3f8;
    scrollbar-width: thin;
}

*::-moz-scrollbar-thumb {
    background-color: #b7cce1;
    border-radius: 4px;
}

*::-moz-scrollbar-thumb:hover {
    background-color: #87aedf;
}

*::-moz-scrollbar-thumb:active {
    background-color: #628cc8;
}

/** 2.6 Carousel **/
.carousel-inner .carousel-caption {
    padding: 0;
    margin: 0 !important;
}

/* TEAM */
.team-member {
    margin-bottom: 1rem;
    text-align: center;
}

.team-member img {
    width: 5rem;
    height: 5rem;
    border: 0.5rem solid rgba(0, 0, 0, 0.1);
}

.team-member h4,
.team-member .h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
}
.team-member .btn-social {
    color: var(--primary);
    background-color: var(--white);
}

.team-member .btn-social:hover {
    color: var(--white);
    background-color: var(--danger);
}

.team-member .btn-social:focus {
    color: var(--white);
    background-color: var(--primary);
}

.team-member .btn-social:active {
    color: var(--white);
    background-color: var(--primary);  
}