/*=============
Main css
==============*/

/* Colors */
:root {
    --black: #000;
    --primary: #484847;
    --dark-gray: #757575;
    --min-gray: #d8d8d8;
    --light-gray: #e9e8e8;
    --lighter-gray: #F5F7F8;
    --almost-white: #f4f4f4;
    --white: #fff;

}

/* wp editor text color */
.has-text-color.has-bb-black-color {
    color: var(--black);
}

.has-text-color.has-bb-primary-color {
    color: var(--primary);
}

.has-text-color.has-bb-dark-gray-color {
    color: var(--dark-gray);
}

.has-text-color.has-bb-min-gray-color {
    color: var(--min-gray);
}

.has-text-color.has-bb-light-gray-color {
    color: var(--light-gray);
}

.has-text-color.has-bb-almost-white-color {
    color: var(--almost-white);
}

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

/* wp editor bg color */
.has-background.has-bb-black-background-color {
    background-color: var(--black);
}

.has-background.has-bb-primary-background-color {
    background-color: var(--primary);
}

.has-background.has-bb-dark-gray-background-color {
    background-color: var(--dark-gray);
}

.has-background.has-bb-min-gray-background-color {
    background-color: var(--min-gray);
}

.has-background.has-bb-light-gray-background-color {
    background-color: var(--light-gray);
}

.has-background.has-bb-almost-white-background-color {
    background-color: var(--almost-white);
}

.has-background.has-bb-white-background-color {
    background-color: var(--white);
}

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

body {
    font-family: 'Acumin Pro', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    background-color: var(--lighter-gray);
    color: var(--primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: never;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 700;
}

/* fontzize  */
h1 {
    font-size: 36px;
    line-height: 1.5;
}

h2 {
    font-size: 21px;
    line-height: 1.2;
}

h3,
h4,
h5,
h6 {
    font-size: 18px;
    line-height: 1.4;
}


a {
    text-decoration: none;
    color: var(--primary);
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%
}


/* error */
.error_page {
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* utility */
.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

/* layout  */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

.col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    max-width: none;
}

@media only screen and (max-width: 767px) {

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Header  */
.header_area {
    background-color: var(--white);
    padding: 43px 0;
}

#menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

#menu li {
    padding: 0 15px;
}

#menu li a {
    color: var(--primary);
    padding: 0 10px;
}

#menu li:hover a {
    color: var(--black);
}

#menu li.current-menu-item a {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-style: solid;
}

#menu li.current_page_item a {
    text-decoration: underline solid 2px currentColor;
}

/* Footer  */
#footer {
    background-color: var(--primary);
    padding: 50px 0;
}

#footermenu {
    font-size: 14px;
    list-style: none;
}

#footermenu li a {
    display: block;
    color: var(--white);
    padding: 5px 0;
    text-transform: uppercase;
}

.footer_logo img {
    max-width: 255px;
}

.social ul {
    text-align: right;
    list-style: none;
}

.social li {
    margin-bottom: 6px;
}

.social li img {
    max-width: 20px;
}

.footer_text {
    color: #fff;
    margin-top: 20px;

}

.footer_text p {
    font-size: 14px;
}

/* inner page layout  */

.page_layout {
    display: flex;
    justify-content: center;
}

.sidebar {
    width: 240px;
    text-align: right;
    padding-right: 15px;
}

.page_container,
.post_container {
    padding: 0 15px;
    width: 800px;
}

/* .page_container p {
    padding-right: 175px;
} */

.sidebar.false_sidebar {
    opacity: 0;
}

.main_page_content {
    padding: 80px 0;
    background-image: url(../img/BigBoom_star.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 550px;
    min-height: 530px;
}

.page_content p>a {
    text-decoration: underline;
}

.side_bar_link a {
    background: var(--white);
    padding: 6px 6px 3px;
    font-size: 16px;
    display: inline-block;
}

.side_bar_link a.active,
.side_bar_link:hover a {
    background: var(--primary);
    color: var(--white);
}

.side_bar_link {
    margin-bottom: 6px;
}

/* contact form  */

.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
    border: none;
    padding: 10px;
    margin-bottom: 30px;
    display: inline-block;
}

.wpcf7-form p {
    padding: 0;
}

.wpcf7-form .row {
    margin: 0 -15px;
}

.wpcf7-form .col-6,
.wpcf7-form .col-12 {
    padding: 0 15px;
}

.wpcf7-form .wpcf7-submit {
    background: var(--white);
    width: 100px;
}

.col-12.text-right {
    text-align: right;
}

.wpcf7-spinner {
    position: absolute;
    left: 0;
}

.wpcf7-form {
    position: relative;
}

.page_content .container {
    padding: 0;
}

.post_container {
    margin-bottom: 100px;
}

.post_container p {
    margin-bottom: 15px;
}

.post_container ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.post_title h1 {
    background: #fff;
    display: inline-block;
    font-size: 36px;
    color: var(--primary);
    padding: 10px 10px 1px;
    line-height: 1;
}

.post_navigation {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 0 33px;
}

.post_navigation a {
    display: inline-block;
    background: var(--white);
    padding: 3px 10px;
    font-size: 12px;
    text-decoration: underline;
}

/* archive page  */
.project_card,
.project_card a {
    height: 100%;
    display: block;
}

.project_card {
    position: relative;
    height: 173px;
}

.project_card .project_taxonomy {
    right: 5px;
    left: auto;
}

.project_card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.row.projects_list {
    margin: 0 -15px;
}

.row.projects_list .col-4 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.archive_post_content {
    padding: 77px 0 47px;
}

.desktop-none {
    display: none;
}

.mobile-none {
    display: block;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
}

/* Responsive CSS  */
/* header  */

@media only screen and (max-width: 767px) {

    .logo a {
        display: block;
    }

    .logo img {
        width: 200px;
    }

    .header_area {
        padding: 20px 0;
    }

    .desktop-none {
        display: block;
    }

    .mobile-none {
        display: none;
    }

    .header_wrapper {
        display: flex;
        justify-content: space-between;
        align-content: center;
    }

    .mobile_menu {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        gap: 3px;
        cursor: pointer;
        margin-top: -7px;
    }

    .mobile_menu span {
        width: 22px;
        height: 4px;
        background: var(--primary);
        display: block;
        transition: all .5s;
    }

    #menu {
        display: none;
        text-align: right;
        position: absolute;
        right: 30px;
        z-index: 99;
    }

    #menu li {
        padding: 4px 0;
    }

    #menu li a {
        display: inline-block;
        background: var(--white);
        padding: 10px 10px 5px;
    }

    .container {
        padding: 0 30px;
    }

    .copyright .row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .footer_text {
        width: 50%;
        font-size: 14px;
        margin-top: 0;
    }

    .copyright {
        margin-top: 30px;
    }

    .footer_logo {
        margin-bottom: 30px;
    }

    .sidebar {
        width: 100%;
    }

    .page_layout {
        display: block;
    }

    .main_page_content {
        background-size: 150px;
        padding: 0;
    }

    .sidebar {
        text-align: left;
        padding: 30px;
    }

    .page_container,
    .post_container {
        padding: 30px;
        background: #fff;
        width: 100%;
    }

    .page_container p {
        padding: 0;
    }

    .sidebar.false_sidebar {
        display: none;
    }

    .archive_post_content {
        padding: 0;
    }

    .post_navigation {
        padding-bottom: 0;
        justify-content: flex-start;
        padding-top: 30px;
    }

    .single .page_container,
    .single .post_container {
        background-color: var(--light-gray);
        margin-bottom: 30px;
        padding: 0 30px;
    }

    .post_title h1 {
        /*         display: inline; */
        padding-bottom: 5px;
    }

    /*     .post_title {
        margin-bottom: 30px;
    } */
    .page_container.no_sidebar {
        background: var(--light-gray);
    }

    .wpcf7-form .wpcf7-submit {
        border: 1px solid;
    }

    /* 	Menu active  */


    .mobile_menu.active span {
        position: absolute;
        right: 0;
    }

    .mobile_menu {
        position: relative;
    }

    .mobile_menu.active span:nth-child(2) {
        display: none;
    }

    .mobile_menu.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile_menu.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .footer_text span {
        color: transparent;
        display: block;
        font-size: 0;
    }
}


.logo img {
    max-width: 255px;
}

.post_container p a {
    text-decoration: underline;
}

.project_taxonomy {
    position: absolute;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    padding: 5px;
    top: 5px;
    right: 5px;
}

.project_taxonomy a {
    color: var(--white);
    line-height: 1;
}