/* ================================================== */
@import url('https://fonts.googleapis.com/css2?family=Sacramento&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

/* init */
* {
    --body-font: "Plus Jakarta Sans";
    --title-font: "Marcellus", Helvetica, Arial, sans-serif;
    --deco-font-1: "Sacramento";
    --body-font-color: #707070;
    --body-font-color-dark: #bbbbbb;
    --body-font-size: 15px;
    --body-font-weight: 400;    
    --title-font-color: #000000;
    --title-font-color-dark: #ffffff;
    --title-font-weight: bold;    
    --bg-dark-1: #151c22;
    --bg-dark-1-rgb: 21, 28, 34;
    --bg-dark-2: #18212a;
    --bg-light-1: #ffffff;
    --bg-light-2: #f8f8f8;
    --page-border-size:0;
    --page-border-color:#ffffff;
}

h2{
    font-size: 48px;
    color: #707070 ;
    letter-spacing: -.015em;
    margin-bottom: 20px;
}
.menu-item {
    position: relative;
    width: 100%; /* Make the width flexible based on the container */
    max-width: 600px; /* Optional: Limit max width */
    height: 150px; /* Adjust height based on your content */
    margin: 0px auto; /* Center the box horizontally */
    color: white; /* White text inside */
    text-align: justify;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border: 5px solid rgb(255, 255, 255); /* Main white border */
    border-radius:0px; /* Slight rounding of corners */
    
   
}

/* Pseudo-elements for left and right perforations */
.menu-item::before, 
.menu-item::after {
    content: '';
    position: absolute;
    width: 20px; /* Perforation width */
    height: 100%; /* Full height of the box */
    background: repeating-linear-gradient(
        #000000 0,
        #707070 10px,
        white 10px,
        white 20px
    );
    
}

.menu-item::before {
    left: -2px; /* Position just outside the left border */
    top: 0;
}

.menu-item::after {
    right: -2px; /* Position just outside the right border */
    top: 0;
}

/* Pseudo-elements for vertical lines inside the border */
.menu-item .line {
    position: absolute;
    width: 5px; /* Thickness of the lines */
    height: 100% ; /* Leave space for padding */
    background-color: white;
    top: 0px; /* Align with padding */
}

.menu-item .line-left {
    left: 15px; /* Position of the left line */
}

.menu-item .line-right {
    right: 15px; /* Position of the right line */
}

/* Content styling */
.menu-item .content {
    z-index: 1;
    position: relative;
}
.menu-item:hover  {
    transform: scale(1.05); /* Slightly increase size on hover */
    border-color: #ffffff; /* Change border color on hover */
}


.form-control,
#contact_form input[type=text],
#contact_form textarea,
#contact_form input[type=email],
#contact_form textarea,
#search{
    border-radius:3px !important;
    -moz-border-radius:3px !important;
    -webkit-border-radius:3px !important;
}

@media only screen and (min-width: 992px) {
    #subheader{
        padding-top: 200px;
        padding-bottom: 60px;
    }
}