@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Poppins', cursive;
    width: 100%;
}

.navbar {
    padding: 10px;
    font-weight: 600;
    font-size: large;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.35);
}

.nav-link {
    transition: ease 0.5s;
}

.jumbotron {
    background-image: url(../img/hero-image.png);
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    height: 120vh;
    text-align: center;
    font-weight: 800;
    font-size: larger;
    color: white;
    position: relative;
}

.jumbotron .jumbotron-text {
    position: absolute;
    width: 100%;
    height: 100%;
}

.jumbotron .display-4 {
    color: rgb(248, 195, 0);
}

.jumbotron .display-4 span {
    color: white;
}

.jumbotron p {
    width: 40%;
}

section .row,
.col {
    justify-content: center;
    align-items: center;
    overflow: visible;
}

#content-1 {
    padding-top: 100px;
    padding-bottom: 100px;
}

#content-1 .about-image {
    width: 80%;
    height: auto;
}

#content-2 img {
    width: 120px;
    height: auto;
}

#content-2 .box {
    height: 360px;
    max-width: 250px;
    justify-content: center;
}

#content-3 .row,
.col {
    justify-content: flex-start;
    align-items: stretch;
}

#content-3 .card-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#content-3 .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#content-3 .card-body {
    padding-bottom: 20px;
}


#content-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#content-3 a {
    padding: 5px 20px;
    text-decoration: none;
    font-weight: 600;
    color: rgb(248, 195, 0);
    transition: ease 0.5s;
}

#content-4 img {
    width: 100%;
    height: auto;
}

#content-2,
#content-4 {
    background-color: rgb(248, 195, 0);
}

footer img {
    width: 200px;
    height: auto;
    padding: 20px;
}

/* Animation */

.hidden {
    opacity: 0;
    filter: blur(5px);
    transition: all 1s;
}

.fade-left {
    transform: translateX(-100%);
    transition: all 1s;
}

.fade-right {
    transform: translateX(100%);
    transition: all 1s;
}

.fade-up {
    transform: translateY(100%);
    transition: all 1s;
}

.fade-down {
    transform: translateY(-100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.hover-able {
    transition: all 1s ease;
}

.hover-able:hover,
.hover-able:focus {
    transform: scale(1.1);
}

#content-3 a:hover,
#content-3 a:focus,
.nav-link:hover,
.nav-link:focus {
    padding-right: 4px;
    padding-left: 4px;
    color: rgb(255, 255, 255);
    background-color: rgb(248, 195, 0);
    border-radius: 20px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.35);
}