body {
    font-family: 'Prompt', sans-serif;
    overflow-x: hidden;
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
  }

.container-center {
    padding: 40px;
    margin: auto;
}

.jumbotron-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

.tag-wrapper {
    padding: 0 0 40px 0;
}

/* Social */
.fa, .fa a {
    padding: 10px;
    font-size: 30px;
    width: 40px;
    text-align: center;
    text-decoration: none !important;
    margin: 5px 2px;
}
  
.fa:hover {
    opacity: 0.7;
    color: rgb(255, 255, 255);
}

.fa-facebook {
    background: #3B5998;
    color: white;
}


.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-envelope-o {
    background: #dd4b39;
    color: white;
}

.fa-linkedin {
    background: #007bb5;
    color: white;
}

.fa-instagram {
    background: #125688;
    color: white;
}

.fa-youtube {
    background: #bb0000;
    color: white;
}

.fa-comment {
    background: #01ca0d;
    color: white;
}

.social-link {
    /*background: #757575;*/
    /*color: white;*/
    border-radius: 50%;
    padding: 12px 0 12px 0;
    text-align: center;
    text-decoration: none;
}

a[target="_blank"]:after {
    font-family: 'FontAwesome';
    content: " \f08e";
}

/* Footer */
.footer-large {
    margin-top: 40px;
    padding-top: 35px;
    padding-bottom: 25px;
    background: #f2f2f2;
  }
  
.footer-copyright {
    padding: 20px, 0px, 20px, 0px;
    height: 60px;
    background: #595959;
    border-top: 3px solid rgb(230, 148, 18);
}

.dark {
    color: white !important;
    background-color: #595959 !important;
}

.tag a::before {
    content: "#";
}
.tag a {
    color: white;
    text-decoration: none;
}
.tag {
    margin-right: 5px;
}

.title-overlay {
    padding: 20px;
    background-color: rgba(0,0,0,0.5);
}

/* card style */
.box-shadow-full {
    position: relative;
    background-color: #fff;
    margin-bottom: 20px;
    z-index: 2;
    padding: 15px;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 6%), 0 2px 5px 0 rgb(0 0 0 / 20%);
}

/* Link color */
a {
    color: rgb(14, 165, 157);
    text-decoration: none;
}

a:hover {
    color: rgb(14, 165, 157);
    text-decoration: underline;
}

/* alert */
.alert {
    display: none;
    position: fixed;
    bottom: 0px;
    right: 20px;
    color: white;
    margin-bottom: 20px;
    z-index: 100;
    padding: 15px;
    transition: opacity 600ms, visibility 600ms;
    background-color: rgb(14, 165, 157);
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 6%), 0 2px 5px 0 rgb(0 0 0 / 20%);
  }
  
  .closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  