@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;300;500&display=swap');

#intro-banner {
    background-image: url("../../assets/images/PSFA_Banner.jpg");
    background-repeat: repeat-x;
    background-position: center;
    /* height: 220px; */
    box-sizing: border-box;
}

#main-logo {
    height: auto;
    width: 100%;
}

.main-logo {
    width: 40%;
    margin: 30px 0 30px 0;
    padding: 0;
}

.main-logo>a:hover {
    opacity: 0.6;
}

.transition {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.kanit-100 {
    font-family: 'Kanit', sans-serif;
    font-weight: 100 !important;
}

.kanit-300 {
    font-family: 'Kanit', sans-serif;
    font-weight: 300 !important;
}

.kanit-500 {
    font-family: 'Kanit', sans-serif;
    font-weight: 500 !important;
}

.main-contatos-item:hover {
    opacity: 0.6;
}

.title-sections {
    width: 100%;
    float: left;
    display: block;
    position: relative;
}

.title-sections h4 {
    width: auto;
    float: none;
    display: inline-block;
    position: relative;
    padding: 0 20px 0 0;
}

.fa-envelope {
    position: relative;
    top: 5px;
    font-size: 20px;
}

.fa-envelope::before {
    content: "\e0be";
}

.title-sections::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% + 1px);
    width: 100%;
    height: 2px;
    background: #7ccebb;
}

a.contatos {
    text-decoration: none;
    height: 24px;
    display: inline-block;
}

a.contatos:hover {
    opacity: 0.6;
}

.btn-psfa {
    --bs-btn-color: #fff;
    --bs-btn-bg: #198754;
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #094a2c;
    --bs-btn-hover-border-color: #146c43;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #146c43;
    --bs-btn-active-border-color: #13653f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #556d62;
    --bs-btn-disabled-border-color: #3c6452;
}

.hide {
    display: none;
}

.h-pdf {
    height: calc(100% - 90px) !important;
}

/* LOADER */

#loader span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #34dba3;
    margin: 20px 5px;
    opacity: 0;
}

#loader span:nth-child(1) {
    animation: opacitychange 1s ease-in-out infinite;
}

#loader span:nth-child(2) {
    animation: opacitychange 1s ease-in-out 0.33s infinite;
}

#loader span:nth-child(3) {
    animation: opacitychange 1s ease-in-out 0.66s infinite;
}

@keyframes opacitychange {

    0%,
    100% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }
}