/**
 * Theme Name: Multistudio Template
 * Author: ashrafulsarkar47@gmail.com
 * Support: ashrafulsarkar47@gmail.com
 * Version: 1.0.0
*/
/*======================
    Theme default css
=====================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Arial Nova", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--site_text_color);
    font-size: 16px;
    line-height: 1.4;
    background: var(--site_primary_color);
}
img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}
a,
.button {
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
a:focus,
.button:focus,
a:focus-visible,
a:visited,
a:active {
    text-decoration: none;
    outline: none;
}
a {
    text-decoration: none;
    color: var(--site_secondary_color);
}
a:hover {
    color: #EAE6CF;
}
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 400;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}
h1 {
    font-size: 100px;
    line-height: 1.2;
}
h2 {
    font-size: 48px;
    line-height: 1.1;
}
h3 {
    font-size: 42px;
    line-height: 1.1;
}
h4 {
    font-size: 32px;
    line-height: 1.3;
}
h5 {
    font-size: 24px;
    line-height: 1.3;
}
h6 {
    font-size: 20px;
    line-height: 1.3;
}
ul, ol {
    margin: 0px;
    padding: 0px;
    list-style-position: inside;
    list-style: none;
}
p {
    margin-bottom: 0;
}
*::-moz-selection {
    background: #555555;
    color: #fff;
    text-shadow: none;
}
::-moz-selection {
    background: #555555;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #555555;
    color: #fff;
    text-shadow: none;
}
*::-moz-placeholder {
    color: #555555;
    font-size: 14px;
    opacity: 1;
}
*::placeholder {
    color: #555555;
    font-size: 14px;
    opacity: 1;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
/*==========================
	Herder css 
==========================*/
header.header {
    padding: 32px 0;
}
header.header.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: var(--site_primary_color);
    border-bottom: 1px solid #4F688C;
    width: 100%;
    z-index: 999 !important;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}
.logo {
    max-width: 168px;
    position: relative;
}
.logo a {
    line-height: 0;
    display: block;
}
.logo .mobile_logo {
    display: none;
}
/* header .logo::before {
    position: absolute;
    content: '';
    height: 2px;
    width: 10000%;
    background: var(--site_secondary_color);
    bottom: 0;
    right: 180px;
} */
.menu_bar {
    text-align: right;
}
.menu_bar span {
    padding: 18px 12px;
    display: inline-block;
    position: relative;
    width: 86px;
    cursor: pointer;
}
.menu_bar span::before,
.menu_bar span::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 62px;
    background: #fff;
    right: 12px;
    transition: all 0.3s;
}
.menu_bar span::before {
    bottom: 10px;
}
.menu_bar span::after {
    top: 14px;
}
.menu_bar.active span::before,
.menu_bar.active span::after {
    transform-origin: center;
    top: 17px;
}
.menu_bar.active span::before{
    transform: rotate(45deg) scale(0.8);
}
.menu_bar.active span::after {
    transform: rotate(-45deg) scale(0.8);
}
.primary-menu {
    width: 560px;
    background: var(--site_secondary_color);
    position: fixed;
    top: 0;
    height: 100%;
    right: -100%;
    transition: all 0.3s;
    padding: 32px 72px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9;
}
.primary-menu nav {
    padding-top: 35px;
    padding-bottom: 140px;
}
.primary-menu.active {
    right: 0;
}
.primary-menu .close {
    text-align: right;
}
.primary-menu .close span {
    width: 48px;
    height: 48px;
    display: inline-block;
}
.primary-menu .close {
    text-align: right;
}
.primary-menu .close span {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.primary-menu .close span::before,
.primary-menu .close span::after {
    position: absolute;
    content: '';
    height: 2px;
    background: var(--site_primary_color);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.primary-menu .close span::before{
    transform: rotate(45deg);
}
.primary-menu .close span::after {
    transform: rotate(-45deg);
}
.primary-menu ul li,
.primary-menu ul li.menu-item-has-children a {
    margin-bottom: 24px;
}
.primary-menu ul li {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.primary-menu ul li.menu-item-has-children{
    margin-bottom: 0px;
}
.primary-menu ul li a {
    color: var(--site_primary_color);
    font-size: 48px;
    line-height: 1.1;
    display: block;
    padding: 12px 0;
    position: relative;
    font-style: normal;
    transition: all 0.3s ease;
}
.primary-menu ul li a:hover {
    transform: skewX(-10deg);
}
.primary-menu ul li a::before {
    position: absolute;
    content: '';
    width: 48px;
    height: 48px;
    display: block;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: cover;
    transform: skewX(10deg);
}
.primary-menu ul li a:hover::before{
    opacity: 1;
}
.primary-menu ul li ul li a {
    font-size: 24px;
    padding-left: 20px;
}
.primary-menu ul li ul li a::before{
    width: 24px;
    height: 24px;
}
.primary-menu.active .menu-item-animation {
    opacity: 0;
    --delay: calc(var(--item-index, 0) * 0.1s);
    animation: slideInRight 0.7s forwards var(--delay);
}
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/*=================
    Footer
================*/
footer.footer {
    padding: 50px 0;
    border-top: 1px solid #4F688C;
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.footer_logo {
    max-width: 168px;
    margin: auto;
}
.footer-menu {
    overflow: hidden;
}
.footer-menu ul {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 40px;
}
.footer-menu ul li a {
    font-size: 16px;
    line-height: 1.4;
}
.footer-menu.animate-on-scroll .menu-item-animation {
    opacity: 0;
    visibility: hidden;
}
.footer-menu.animate-on-scroll.is-visible .menu-item-animation {
    visibility: visible;
    --delay: calc(var(--item-index, 0) * 0.1s);
    animation: slideInRight 1s forwards var(--delay);
}
.social-icons a {
    display: inline-block;
    padding: 17px;
    line-height: 1;
    font-size: 24px;
}
.social-icons a:hover {
    color: #EAE6CF;
}
.social-icons {
    text-align: right;
}
p.copyright {
    color: var(--site_secondary_color);
}
/*===================
    Form Section
===================*/
/*===================
    Blog Section
===================*/
h1.page-title {
    font-size: 32px !important;
    line-height: 1.1;
    color: var(--site_secondary_color);
    padding-top: 128px;
    padding-bottom: 38px;
    border-bottom: 1px solid #4F688C;
    margin-bottom: 90px;
}
.entry-meta time {
    font-size: 18px;
    color: var(--site_text_color);
    line-height: 1.4;
    margin-bottom: 8px;
    display: block;
}
.entry-header .entry-title {
    font-size: 24px;
    line-height: 1.3;
    color: var(--site_secondary_color);
    letter-spacing: 0.12px;
    margin-bottom: 32px;
    display: block;
}
.post_thumb_link{
    display: block;
    height: 530px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 24px;
}
.post_thumb {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center;
}
.post_thumb:hover {
    transform: scale(1.05);
}
.entry-content p {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
}
.read_more_btn {
    display: flex;
    padding: 16px 32px 16px 0;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    letter-spacing: 0.16px;
    line-height: 1.4;
    justify-content: flex-start;
    transition: all 0.3s ease;
    width: 100%;
}
.read_more_btn span {
    line-height: 0;
}
.posts-container article {
    margin-bottom: 90px;
}
.load-more-container {
    text-align: center;
}
/* .load-more-container button {
    padding: 16px 32px;
    background-color: var(--site_secondary_color);
    color: var(--site_primary_color);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.16px;
    margin-bottom: 208px;
}
.load-more-container button:hover {
    background-color: #EAE6CF;
} */
.load-more #load-more-projects,
.load-more-container button {
    width: 134px;
    height: 134px;
    padding: 24px;
    color: var(--site_secondary_color);
    border: 1px solid var(--site_secondary_color);
    border-radius: 50%;
    cursor: pointer;
    background: no-repeat;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.16px;
    margin-bottom: 208px;
    font-family: "Arial Nova", sans-serif;
}
.load-more #load-more-projects:hover,
.load-more-container button:hover{
    transform: scale(1.05);
}
.load-more-container button[data-loading="true"] {
    opacity: 0.7;
    cursor: wait;
}
.post_image {
    height: 750px;
    background-size: cover;
    background-position: center;
    margin-top: 120px;
    margin-bottom: 90px;
}
.post-content {
    max-width: 880px;
}
.single_project .post_content_part {
    padding-top: 120px;
}
.post_content_part{
    position: relative;
}
.post_content_part::before {
    position: absolute;
    content: '';
    height: 600px;
    width: 400px;
    background-repeat: no-repeat;
    right: 0;
    top: -120px;
    z-index: -1;
}
.post_date span {
    font-size: 20px;
    color: var(--site_text_color);
    letter-spacing: 0.12px;
    line-height: 1.3;
    margin-bottom: 12px;
    display: block;
}
.post_title {
    max-width: 880px;
}
.post_title h1 {
    font-size: 32px !important;
    line-height: 1.1;
    margin-bottom: 56px;
    color: var(--site_secondary_color);
}
.post-content p {
    font-size: 16px;
    line-height: 1.4;
}
.post-content > * {
    margin-bottom: 16px;
}
.project_content p {
    /* font-size: 20px; */
    line-height: 1.3;
}
.post-content ol {
    list-style: decimal;
    list-style-position: inside;
}
.post-content ul{
    list-style: disc;
    list-style-position: inside;
}
.post_page_content {
    margin-bottom: 220px;
}
.random-link {
    text-align: right;
}
.random-link a {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.random-link a span {
    line-height: 0;
}
.random_post_title {
    padding-bottom: 38px;
    border-bottom: 1px solid #4F688C;
    margin-bottom: 90px;
}
.random-title {
    color: var(--site_secondary_color);
    font-size: 32px !important;
}
/* Project css */
.project-image {
    height: 534px;
    background-size: cover;
    background-position: center;
}
.project_tabbar {
    border-bottom: 1.5px solid #c9d2df59;
    margin-bottom: 90px;
    margin-top: 120px;
}
.project-categories ul {
    display: flex;
    justify-content: flex-end;
}
.project-categories ul li a {
    text-align: center;
    display: block;
    padding: 25px 35px;
    position: relative;
}
.project-categories ul li a::after {
    position: absolute;
    content: '';
    width: 0;
    height: 1.5px;
    left: 0;
    bottom: -1.5px;
    background: var(--site_secondary_color);
    transition: all 0.3s ease;
}
.project-categories ul li a.active::after,
.project-categories ul li a:hover::after {
    width: 100%;
}
.project_title h4 {
    color: var(--site_secondary_color);
}
.project-link {
    position: relative;
    margin-bottom: 10px;
    display: block;
}
.row.projects-container,
.row.posts-container {
    --bs-gutter-x: 9px;
}
.project-link:hover .project-info {
    opacity: 1;
}
.project-info {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 32px;
    background: #0e2d58d6;
    transition: all 0.3s ease;
    opacity: 0;
}
.project-title {
    margin-bottom: 8px;
}
.project-info-part span {
    font-size: 20px;
    line-height: 1.3;
    color: var(--site_text_color);
}
.project-info-part span.project-location {
    margin-right: 5px;
    padding-right: 12px;
    position: relative;
}
.project-info-part span.project-location::before {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    background: var(--site_text_color);
    border-radius: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.load-more {
    text-align: center;
    margin-top: 90px;
}
.project_gallery_items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 9px;
}
.project_gallery-item:nth-child(10n+4) {
    grid-column: 1 / 3;
}
.project_gallery-item:nth-child(10n){
    grid-column: 2 / 4;
}
.project_gallery-item .images {
    height: 534px;
    background-position: center;
    background-size: cover;
}
.project_gallery-item {
    position: relative;
}
.project_gallery-item .image-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    background: #0e2d58d6;
    opacity: 0;
    transition: all 0.3s ease;
}
.project_gallery-item:hover .image-details {
    opacity: 1;
}
.project_title,
.project_content {
    max-width: 784px;
}
.project_service_title {
    margin-top: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #4F688C;
    margin-bottom: 24px;
}
.project_service_part {
    max-width: 784px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 24px 48px;
    justify-content: start;
}
.project_service_part span,
.project_service_part span a {
    font-size: 16px;
    line-height: 1.3;
    color: var(--site_text_color);
}
.image-details .image-title {
    margin-bottom: 8px;
}
.project_credits {
    margin-top: 78px;
}
.random_projects{
    margin-top: 208px;
}
.project_credits_part {
    gap: 20px 32px;
}
.project-more-title {
    font-size: 24px;
    line-height: 1.3;
    display: flex;
    gap: 16px;
    padding-top: 8px;
    margin-bottom: 8px;
}
.project-single-page span {
    color: #4F688C;
}
.project_more_item article {
    margin-bottom: 208px;
}
.project_service_title h5 {
    font-size: 32px !important;
}
.about_image {
    max-width: 426px;
    line-height: 0;
}
.about_image img {
    height: auto;
}
.about_title h3 {
    margin-top: 128px;
    padding-bottom: 38px;
    border-bottom: 1px solid #4F688C;
    margin-bottom: 90px;
    color: var(--site_secondary_color);
    font-size: 32px;
}
.about_text p {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 72px;
    color: var(--site_secondary_color);
}
.about_text h5 {
    font-size: 20px !important;
    line-height: 1.3;
    margin-top: 10px;
}
.about_text h4 {
    color: var(--site_secondary_color);
}
.about_team_part{
    margin-bottom: 90px;
}
.about_service_part {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 64px;
}
.about_team_service_items {
    display: grid;
    gap: 64px;
    grid-template-columns: 2fr 1fr;
}
.about_team_service_items .title {
    font-size: 20px;
    line-height: 1.3;
    padding-bottom: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #4F688C;
    color: var(--site_secondary_color);
}
.about_kontact_items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about_kontact_info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about_kontact_info p a {
    color: var(--site_text_color);
}
.about_kontact_social a {
    margin-left: 2px;
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    color: var(--site_secondary_color);
}
.about_team_contact {
    margin-bottom: 208px;
}
.multistudio_kontakt label {
    font-size: 20px !important;
    color: #C9D2DF !important;
}
.multistudio_kontakt input {
    border-color: #4F688C !important;
}
.multistudio_kontakt .forminator-button-submit {
    padding: 18px !important;
    width: 318px !important;
    margin-top: 36px !important;
    font-size: 16px !important;
}
.multistudio_kontakt .forminator-error-message{
    font-size: 14px !important;
    font-family: 'Arial Nova', sans-serif !important;
    font-weight: 400 !important;
}