/* Additional Footer Styles */
.a-footer {
color: #bd9e66 ;
text-decoration: none ;
}
.a-footer:hover {
color: #bd9e66 ;
text-decoration: underline ;
text-underline-offset: 4px ;
}
.footer-items {
align-items: center ;
display: flex ;
flex-wrap: wrap ;
justify-content: space-between ;
}
.footer-items .col-md-6 {
flex: 0 0 50% ;
max-width: 50% ;
}
.footer-items h5 {
margin-bottom: 1rem ;
}
.footer-items ul {
list-style: none ;
padding: 0 ;
}
.footer-items ul li, .footer ul li {
margin-bottom: 10px ;
}
.social-icons {
display: flex ;
justify-content: center ;
margin-top: 1rem ;
}
.social-icons a {
margin: 0 0.5rem ;
text-decoration: none ;
}
/* Additional Styles */
.btn-danger {
background-color: #bd9e66 ;
border-color: #bd9e66 ;
}
.btn-danger:hover {
background-color: #977e51 ;
border-color: #977e51 ;
}
.btn.btn-lg {
width: 200px ;
}
.p-descr {
color: #333 ;
font-size: 18px ;
line-height: 1.6 ;
margin-bottom: 10px ;
}
.p-intro {
color: #ffffff ;
font-size: 28px ;
line-height: 1.6 ;
margin-bottom: 10px ;
padding: 0 5vw;
}
.two-column-section {
background-color: #f8f8f8 ;
padding: 100px 20px ;
}
/* Black Background */
.black-bg {
background-color: #333;
border-radius: 10px;
margin: 10px 0;
padding: 20px;
}
/* Content Section */
.content {
margin-bottom: 30px ;
}
.content .btn.btn-danger {
margin-bottom: 20px ;
margin-top: 10px ;
}
.content h2 {
font-size: 2em ;
margin: 20px 0 10px ;
}
.content img {
display: block ;
height: 360px ;
margin: 0 auto ;
max-width: 100% ;
width: 640px ;
}
/* Content with Background Image Styles */
.container.mt-5 {
position: relative ;
}
.container.mt-5 > div {
background-color: rgba(0, 0, 0, 0.5) ;
height: 100% ;
left: 0 ;
position: absolute ;
top: 0 ;
width: 100% ;
}
.container.mt-5 .content {
color: #ffffff ;
padding: 50px ;
text-align: center ;
}
.container.mt-5 img {
height: 100vh ;
object-fit: cover ;
width: 100% ;
z-index: -1 ;
}
/* Custom Row */
.custom-row {
align-items: stretch;
display: flex;
flex-direction: row;
}
/* Custom Image Responsive */
.custom-img-responsive {
display: block;
height: auto;
max-width: 100%;
width: 100%;
}
/* Footer Styles */
footer {
background-color: #333 ;
color: #ffffff ;
}
.p-footer {
font-size: 16px ;
margin: 0 ;
padding-bottom: 20px ;
padding-top: 20px ;
}
/* Global Styles */
body {
font-family: 'Source Sans Pro', sans-serif ;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Oswald', sans-serif ;
}
h1 {
font-size: 60px ;
padding: 0 1vw;
}
h2 {
color: #333 ;
font-size: 38px ;
line-height: 1.6 ;
margin-bottom: 10px ;
}
* {
box-sizing: border-box;
}
img {
max-width: 100%;
}
/* Investment */
.investment {
align-items: center;
color: #ffffff;
display: flex;
font-size: 28px;
justify-content: center;
min-height: 100px;
}
/* List Inline */
.list-inline {
display: flex ;
justify-content: center ;
list-style: none ;
margin-top: 10px ;
padding-left: 0 ;
}
.list-inline-item:not(:last-child)::after {
color: #bd9e66 ;
content: "|";
margin-left: 5px ;
}
/* Media Queries */
@media (max-width: 767px) {
h1 {
font-size: 34px ;
margin-bottom: 15px ;
}
p {
font-size: 20px ;
}
.p-intro {
color: #ffffff ;
font-size: 20px ;
line-height: 1.3 ;
margin-bottom: 10px ;
}
}
/* Navbar Styles */
.navbar {
background-color: #333 ;
}
.navbar-brand {
font-size: 1.5rem ;
margin-left: 75px ;
}
.navbar-nav {
margin-right: 75px ;
}
.navbar-nav .nav-item {
margin: 0 10px ;
}
.navbar-nav .nav-link {
color: #ffffff ;
font-size: 1.1rem ;
text-transform: none ;
}
.navbar-nav .nav-link:hover {
color: #bd9e66 ;
}
/* Text Alignment */
.text-center {
padding-bottom: 20px ;
padding-top: 20px ;
text-align: center ;
}
.text-left {
text-align: left ;
}
/* White Text */
.white-text {
color: white;
}
/* Medium button */
.btn-medium {
    width: 200px; /* Adjust as needed */
    height: 60px; /* Adjust as needed */
    margin: 0 auto; /* Automatically centers the button */
    display: block; /* Makes the button a block element to fill the width */
    font-size: 20px; /* Updated font size */
    border-radius: 5px; /* Adjust as needed */
}
/* Navbar brand mobile sizing */
@media (max-width: 767px) {
    .navbar-brand {
        position: absolute ;
        top: 50% ;
        right: 100px ; /* Adjust as needed to give some space from the left */
        transform: translateY(-50%) ; /* Vertically center the text */
        font-size: 14px ;
    }
}
/* Hide logo */
/*.hidden {
    display: none ;
}*/

.main-section-about {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.main-section-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.main-section-about .overlay-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-section-about .overlay-about .content-about {
    width: 40%;
    padding: 20px;
    background-color: #333;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10%;
    align-items: flex-start; /* This will ensure content is left-aligned */
}

.main-section-about .overlay-about .content-about {
    color: #fff;
}

.main-section-about .overlay-about .content-about h1.h1-about {
    text-align: left !important;
    font-size: 2em;
}

.h1-about {
    text-align: left !important;
    padding-bottom: 15px !important;
    color: #fff !important;
    font-size: 2em !important;
}

.text-image-section-about .text-content-about {
    padding: 20px; /* Adjust as necessary */
}

.text-image-section-about .text-content-about .header-text-about {
    margin-bottom: 20px; /* Adjust as necessary */
}

.text-image-section-about .text-content-about .paragraph-text-about {
    text-align: left;
    margin: 0 20px 20px 20px; /* Adjust as necessary */
}

.text-image-section-about .text-content-about .action-button-about {
    text-align: left;
    margin: 0 20px; /* Adjust as necessary */
}

.text-image-section-about .text-content-about .header-text-about,
.text-image-section-about .text-content-about .paragraph-text-about,
.text-image-section-about .text-content-about .action-button-about {
    text-align: left ;
}

.text-image-section-about .text-content-about {
    padding: 20px ; /* Adjust as necessary */
    margin-top: 20px ; /* Adjust as necessary */
    margin-bottom: 20px ; /* Adjust as necessary */
}
.navbar-brand img { max-height: 75px; }


.contact-form label {
    color: #ffffff;
}

#contactstatus {
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #ffffff;
}

.btn-danger.focus, .btn-danger:focus {
    background-color: #bd9e66 !important;
    border-color: #bd9e66 !important;
    box-shadow: 0 0 0 0.2rem rgba(189, 158, 102,.5) !important;
}

@media (max-width: 767px) {

    .navbar-brand img {
        max-height: 45px;
    }
    .justify-content-right {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .align-items-left {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    footer .list-inline {
        display: block !important;
    }
    .contact-form .contact-form-inner {
        width: 85% !important;
    }
}


@media (min-width: 768px) {
    .justify-content-right {
        -ms-flex-pack: right !important;
        justify-content: right !important;
    }

    .justify-content-left {
        -ms-flex-align: left !important;
        align-items: left !important;
    }
}

