@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
}

h1, h2 {
    font-weight: 600;
    line-height: 1.2;
}
h3 { 
    font-weight: 300;
    color: rgb(228, 26, 26);    
}
h4 { 
    font-weight: 600;
    align-content: center;
    text-align: center;
}

p {
    margin: 10px 0;
    border-bottom: 10px;
    border-left: 4px; 
    border-right: 4px;
    border-top: 10px;
    text-align: justify;

}
p.type-1 {
    margin: 10px 0;
    text-align: justify;
}

p.type-2 {
    margin: 10px 10px;
    text-align:justify;
    width: 100%;   
    color: rgb(185, 236, 198);      
}

img {
    width: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    opacity: 0.8;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0px;
    padding: 0 30px;
    transition: 0.5s;
}

.navbar.top {
    background: transparent;
}

.navbar a {
    color: #fff;
    padding: 10px 20px;
    margin: 0 5px;
}

.navbar a:hover {
    border-bottom: #2835a7 2px solid;
}

.navbar ul {
    display: flex;
}

.navbar .logo {
    /*font-weight: 900;*/
    background: url('../images/home/bcard.jpg') no-repeat center center/cover;
}

/* Header */
.hero {
    background: url('../images/home/pcb.jpg') no-repeat center center/cover;
    height: 88vh;
    position: relative;
    color: rgba(184, 189, 155, 0.89);
}

.hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0 20px;
}

.hero .content h1 {
    font-size: 55px;
}

.hero .content p {
    font-size: 25px;
    max-width: 1200px;
    margin: 20px 0 30px;
}
.hero .content p.type-2 {
    margin: 10px 10px;
    text-align:justify;
    width: 100%;   
    color: rgb(217, 231, 19); 
    font-size: 16px;     
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero * {
    z-index: 10;
}
.about {
    background: url('../images/home/pcb.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    color: #fff;
}



/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80px;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #28a745;
}

.footer .social > * {
    margin-right: 30px;
}

/* Mobile */
@media(max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: 120px;
        padding: 10px;
    }

    .navbar a {
        padding: 10px 10px;
        margin: 0 3px;
    }

    .flex-items {
        flex-direction: column;
    }

    .flex-columns .column, .flex-grid .column {
        flex: 100%;
        max-width: 100%;
    }
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 80px;
    }
    .hero .content p {
        font-size: 16px;
        max-width: 1200px;
        margin: 20px 0 30px;
    }
    .hero .content p.type-2 {
        margin: 10px 10px;
        text-align:justify;
        width: 100%;   
        color: rgb(217, 231, 19); 
        font-size: 10px;     
    }
    h1, h2 {
        font-size: 60px;
        font-weight: 300;
        line-height: 1.2;
    }
    .hero .content h1 {
        font-size: 20px;
    }
}
