body {
    font-family: 'Roboto', sans-serif;;
}
a {
	transition: 0.3s;
}

hr {
    max-width: 70px;
    border-width: 3px;
}
/* HOME HEADER */
#header {
    position: relative;
    height: calc(100vh - 66.5px);
    min-height: 600px;
    max-height: 1000px;
}
@media (max-width: 768px) {
    #header {
        min-height: 700px;
    }
    .home-header h2 {
        font-size: 1.5rem;
    } 
    .lead {
        font-size: 1rem;
    }
}
.home-header {
    height: 100%!important;
    background-color: #4F617D;
    background-image: url(../images/header-bg.jpg);
    background-position: 0 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.home-header a.btn {
    display: inline-block;
    position: relative;
    /*animation: pulse 1.5s infinite;*/
    box-shadow: 0 0 0 rgba(0,189,157, 0.4);
}
.home-header a.btn::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: transparent;
    border-radius: 0.3rem;
    animation: pulse-border 1.5s cubic-bezier(.21,.68,.44,.86) infinite;
    border: 1px solid rgba(0,189,157, 1);
}
.home-header a.btn:hover::after {
    border: 1px solid rgba(0, 151, 125, 1);
}
.home-header a.btn i {
    animation: bounce 1.5s cubic-bezier(.21,.68,.44,.86) infinite;
}
@keyframes bounce {
    0% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(0px);
    }
}
@-webkit-keyframes pulse-border {
    0% {
        transform: scale(1,1);
        opacity: 1;
        -webkit-box-shadow: 0 0 0 3px rgba(0,189,157, 0.6);
    }
    100% {
        transform: scale(1.6,1.6);
        opacity: 0;
        -webkit-box-shadow: 0 0 0 0 rgba(0,189,157, 0.6);
    }
}
@keyframes pulse-border {
    0% {
        transform: scale(1,1);
        opacity: 1;
        -moz-box-shadow: 0 0 0 3px rgba(0,189,157, 0.6);
        box-shadow: 0 0 0 3px rgba(0,189,157, 0.6);
    }
    100% {
        transform: scale(1.6,1.6);
        opacity: 0;
        -moz-box-shadow: 0 0 0 0 rgba(0,189,157, 0.6);
        box-shadow: 0 0 0 0 rgba(0,189,157, 0.6);
    }
}
/* HOME SERVICES */
.home-services h3 {
    font-size: 1.35rem;
    line-height: 1.3;
}
/* PAGE HEADERS */
#pageContent h1 {
    font-size: 2rem;
}
/* PAGE BACKGROUNDS */
#pageContent > div {
    position: relative;
}
#home::after, #services::after, #trade::after, #certificate::after, #contact::after, #event-registration:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0.5;
    background: url('../images/page-bg.jpg') no-repeat 50% 0;
}
/* BOOTSTRAP NAV DROPDOWN ANIMATION */
.dropdown-menu {
    max-height: 0px;
    display: block!important;
    overflow: hidden;
    opacity: 0;
    height: auto;
    transition: all 0.3s;
    /*animation: dropdown 0.3s ease;*/
}
.dropdown-menu.show {
    max-height: 147px;
    opacity: 1;
    /*animation: dropdown 0.3s ease;*/
}
/* BOOTSTRAP ACCORDION */
.accordion .card-header {
    padding: 0;
}
.accordion .card-header a, .accordion .card-header a:active {
    display: block;
    padding: 1.45rem 1.25rem;
    font-weight: bold;
    text-decoration: none;
 }
 .accordion .card-header h6 a i {
     float: right;
     transition: all 0.3s;
}
.accordion .card-header.active h6 a i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
 }
 /* BOOTSRAP CARD WITH LIST GROUP LINKS */
.list-group-item {    
    color: #718096;
}
.list-group-item-action:focus, .list-group-item-action:hover {    
    padding-left: 1.55rem;
}
/* CATEGORY MENU */
#categoryMenu {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
}
/* POST */
.post h3, .post h4 {
    margin-bottom: 1rem;
}
.post-category-img {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.2;
    background-size: 100px;
    background-position: 103% 118%;
    background-attachment: scroll;
    background-repeat: no-repeat;
}
/* BOOTSTRAP BTN ICON */
.align-icon-1 {
    vertical-align: 1px;
}
.align-icon-2 {
    vertical-align: 2px;
}
.icon-sm {
    font-size: 0.8rem;
}
/* IMG FIT */
.img-fit {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
/* LIST CHECK */
ul.list-check {
    list-style: none;
    padding-left: 0;
}
ul.list-check li {
    padding: 0.6rem 0 0.6rem 1.6rem;
    border-bottom: 1px solid #EDF2F7;
}
ul.list-check li:before {
    float: left;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f058";
    color: var(--success);
    margin-left: -1.6rem;
}
/* TO TOP */
.to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
}
@media (max-width: 1200px) {
    .to-top {
        display: none!important;
    }
}
/* UTILITIES */
.border-top-primary {
    border-top: 5px solid var(--primary);
}
.border-left-primary {
    border-left: 5px solid var(--primary);
}
.border-left-danger {
    border-left: 5px solid var(--danger);
}
.letter-spacing-md {
    letter-spacing: 0.1rem;
}
.glow-white {
    text-shadow: 0px 0px 2px rgba(255,255,255,0.6);
}
.load-hidden {
    visibility: hidden;
}