:root {
    --primary-color: #005baf;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f4f5f7;
    --dark-color: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Anton SC", sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1400px;
    position: relative;
}

.display-4 {
    font-size: 2.5rem;
}

.text-white {
    color: var(--light-color);
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.clearfix {
    clear: both;
}

.pos-rel {
    position: relative;
}

.d-flex {
    display: flex;
    flex-flow: row wrap;
}

@media (max-width: 767px) {
    .display-4 {
        font-size: 1.75rem;
    }
    .d-flex {
        flex-flow: column wrap;
    }
}

.center {
    text-align: center;
    justify-content: center;
    align-items: center;
}

.flex-left {
    justify-content: flex-start;
}

.flex-right {
    justify-content: flex-end;
}

.space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.transition {
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}


/* components */
.button-light {
    display: block;
    margin: 1em auto;
    text-align: center;
    border: 2px solid var(--light-color);
    color: var(--light-color);
    background: transparent;
    padding: .75em 3em;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: .8rem;
    text-decoration: none;
    border-radius: 2px;
}
.button-light:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

/* components end */



/* header */
header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

header .logo-image img {
    width: 50px;
    height: 50px;
}

header .main-menu, header .main-menu li {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: 2px;
}

header .main-menu li {
    display: inline-block;
}

header .main-menu li a {
    display: inline-block;
    padding: .5em 1em;
    color: var(--light-color);
    text-decoration: none;
    opacity: .8;
}
header .main-menu li:hover a {
    opacity: 1;
}

header.scrolled {
    background: rgb(0,0,0);
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0.5046393557422969) 0%, rgba(20,20,20,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.5046393557422969) 0%, rgba(20,20,20,0) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,0.5046393557422969) 0%, rgba(20,20,20,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#141414",GradientType=1);
}

header .hamburger-menu {
    display: none;
}

@media (max-width: 767px) {
    header .main-menu {
        top: 80px;
        position: absolute; 
        background: url('images/blue-gradient.jpg') no-repeat center;
        border-radius: 10px;
        display: none;
    }
    header .main-menu.visible {
        display: block;
    }
    header .main-menu, header .main-menu li {
        width: 100%;
        text-align: center;
    }
    header .main-menu li {
        display: block;
    }

    header .hamburger-menu {
        display: block; 
        position: absolute; 
        color: var(--light-color);
        right: 0px;
        font-size: 30px;
    }

}
/* header end */

#hero {
    width: 100%;
    height: 100vh;
    position: relative; 
    background: url('images/hero-1.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
}

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

#hero .main-title {
    position: relative; 
    color: var(--light-color);
}

#hero .main-title h1 {
    font-size: 4rem;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.25;
}

#hero .main-title h2 {
    font-size: 1.2rem;
    font-weight: normal;
    margin: 0;
    font-family: "Ubuntu", sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media (max-width: 767px) {
    #hero .main-title {
        padding-top: 60%;
        padding-left: 5%;
        padding-right: 5%;
        text-align: center;
    }
    #hero .main-title h1 {
        font-size: 2.5rem;
    }
    #hero .main-title h2 {
        font-size: 1rem;
        letter-spacing: 0;
    }
}

section {
    background: url('images/blue-gradient.jpg') no-repeat center;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
}

#about {
    min-height: 200px;
    background: var(--primary-color);
    color: var(--light-color);
}

#about::before {
    content: "";
    position: absolute;
    left: 0;
    top: -50px;
    width: 100%;
    height: 50px;
    border-radius: 40px 40px 0 0;
    background: var(--primary-color);
}

#about blockquote {
    font-size: 1.5rem;
    margin: 0;
    font-family: "Anton SC", sans-serif;
}

#about .mission {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

#about .mission .mission-item {
    width: 100%;
    text-align: center;
    font-size: .9rem;
    letter-spacing: 2px;
}

#about .mission .mission-item .icon {
    font-size: 40px;
}

#about .mission .mission-item .text {
    display: block;
}

@media (max-width: 767px) {
    #about .mission {
        flex-flow: column wrap;
    }

    #about .mission .mission-item {
        padding: 1rem 0;
        letter-spacing: 0;
        text-align: left;
    }

    #about .mission .mission-item .icon {
        position: absolute;
    }

    #about .mission .mission-item .text {
        display: inline-block;
        padding-left: 55px;
    }

    #about blockquote {
        font-size: 1rem;
        position: relative;
        padding: 1rem 0;
    }

    #about blockquote span.quote {
        position: absolute;
        top: -40px;
    }
}

.quote {
    font-size: 5rem;
    opacity: .25;
    font-family: serif;
}

#kkb {
    min-height: 400px;
    background: url('images/kkb.jpeg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

#kkb::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background:url('images/blue-gradient.jpg') no-repeat center;
    background-size: cover;
    opacity: .8;
}

#komed {
    min-height: 400px;
    background: url('images/komed.jpeg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

#komed::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background:url('images/blue-gradient.jpg') no-repeat center;
    background-size: cover;
    opacity: .8;
}

#contact {
    background: url('images/contact-bg.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--light-color);
    display: flex;
}

#contact #map {
    position: relative;
    width: 50%;
    height: 100vh;
}

#contact #map iframe {
    width: 100%;
    height: 100%;
}

#contact #contact-detail {
    position: relative;
    width: 50%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    background: url('images/tree.jpg') no-repeat right;
    background-size: 60% 100%;
    background-attachment: fixed;
}

#contact #contact-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#contact #contact-detail .contact-item {
    position: relative;
    padding: 1rem 0;
}

#contact #contact-detail .contact-item .text {
    font-size: 1.25rem;
}

@media (max-width: 767px) {
    #contact {
        flex-flow: column wrap;
        height: auto;
        min-height: 0;
    }
    #contact #map {
        width: 100%;
        height: 250px;
    }

    #contact #contact-detail {
        width: 100%;
        background-size: cover;
    }
}

section#page-title {
    min-height: 400px;
}

section#content {
    background: var(--light-color);
    min-height: 100px;
}

#content .card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative; 
    top: -80px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
}

#content .card .text-container {
    padding: 2rem;
    width: 65%;
}

#content .card img {
    width: 35%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
}

@media (max-width: 1366px) {
    #content .card img {
        max-height: inherit;
    }
}

@media (max-width: 767px) {
    #content .card .text-container {
        width: 100%;
    }

    #content .card img {
        display: none;
    }
}

.entry-content {
    padding: 1.5rem;
    width: 100%;
}

.entry-content .card-header {
    font-family: "Anton SC", sans-serif;
    font-size: 1.75rem;
    text-align: center;
}

.entry-content .half {
    width: 50%;
    float: left;
}

.row {
    display: flex; 
    flex-flow: row;
    gap: 1rem;
    font-size: 1.25rem;
}

.row img {
    width: 100%!important;
    max-height: inherit!important;
    height: auto!important;
    display: block!important;
}

.row .col-lg-4 {
    width: 33.333333%;
}

.row .col-lg-8 {
    width: 66.666666%;
}

@media (max-width: 767px) {
    .entry-content .card-header {
        font-size: 1.25rem;
    }
    .row {
        font-size: 1rem;
    }
    .entry-content .half {
        width: 100%;
    }
}