/*============== Additional Css Start ==============*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&family=Poppins:wght@200;300;400;500;600;700;800&display=swap');
:root {
    --white-color: #fff;
    --dark-color: #111;
    --lite-dark-color: #666;
    --lite-color: #E6E6E6;
    --lite-white-color: #eae0d5;
    --border-color: #e1e1e1;
    --theme-color: #342014;
    --lite-theme-color: #6a3212;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
}
#about-section figure img {
    width: 518px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
figure {
    margin-bottom: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: inherit;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
input {
    outline: 0;
}
button {
    outline: 0;
}
textarea {
    resize: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::placeholder {
    color: var(--white-color) !important;
}
.desc {
    font-family: "Inter", sans-serif;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 300;
}
section {
    background-color: var(--dark-color);
    padding-top: 170px;
    z-index: 2;
    display: none;
    padding-bottom: 60px;
    position: relative;
}
section#studio-section {
    padding-top: 0;
}
section.active {    
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    animation-delay: .2s;
    z-index: 10;
    display: block;
}
.header-bottom .container {
    position: relative;
}
.menu-toggler {
    display: flex;
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: none;
    position: absolute;
    right: 30px;
    top: 10px;
    align-items: center;
    justify-content: center;
}
.menu-toggler span {
    display: block;
    width: 100%;
    position: relative;
    height: 2px;
    background-color: var(--white-color);
    transition: all 0.3s ease;
}
.menu-toggler.active span {
    background-color: transparent;
}
.menu-toggler span::before {
    content: '';
    position: absolute;
    left: 0;
    top: -10px;
    width: 100%;
    height: 2px;
    background-color: var(--white-color);
    transition: all 0.3s ease;
}
.menu-toggler span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background-color: var(--white-color);
    transition: all 0.3s ease;
}
.menu-toggler.active span::before {
    transform: rotate(45deg) translate(5px, 9px);
}
.menu-toggler.active span::after {
    transform: rotate(-45deg) translate(5px, -9px);
}
/*============== Additional Css End ==============*/


/*============== Header Section Css Start ==============*/
.header-section {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    color: var(--white-color);
    padding: 25px 0;
}
.header-top {}
.header-top .top-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header-top .left-area {}
.header-top .left-area ul {
    display: flex;
    align-items: center;
    column-gap: 25px;
    flex-wrap: wrap;
}
.header-top .left-area ul li {}
.header-top .left-area ul li a {
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    font-size: 14px;
    letter-spacing: .5px;
}
.header-top .left-area ul li i {}
.header-top .right-area ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    align-items: center;
}
.header-top .right-area ul li {
    display: flex;
}
.header-top .right-area ul li a {
    font-size: 18px;
    display: inline-flex;
    line-height: 1;
}
.header-top .right-area ul li i {}
.header-bottom {
    padding: 25px 0;
}
.header-bottom .bottom-wrapper {
    display: flex;
    align-items: flex-end;
    column-gap: 70px;
}
.header-bottom .logo-area {
    flex: 0 0 auto;
    max-width: 220px;
    width: 100%;
}
.header-bottom .logo-area .logo {
    padding-left: 16px;
    position: relative;
}
.header-bottom .logo-area .logo::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 75%;
    width: 4px;
    background-color: var(--white-color);
}
.header-bottom .logo-area a {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    letter-spacing: .5px;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    line-height: 1.2;
}
.header-bottom .logo-area a span {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 5px;
}
.header-bottom .logo-area .logo img {}
.header-bottom #main-menu {
    flex: 1;
}
.header-bottom #main-menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 8px;
}
.header-bottom #main-menu ul li {
    position: relative;
}
.header-bottom #main-menu ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white-color);
    pointer-events: none;
}
.header-bottom #main-menu ul li.active::after,
.header-bottom #main-menu ul li:hover::after {
    height: 4px;
}
.header-bottom #main-menu ul li a {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 8px;
    display: inline-block;
    font-weight: normal;
}
/*============== Header Section Css End ==============*/

/*============== Studio Section Css Start ==============*/
#studio-section {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
}
#studio-section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 40%);
}
#studio-section .hero-area {
}
#studio-section .hero-area img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: -1;
}
/*============== Studio Section Css End ==============*/

/*============== About Section Css Start ==============*/
#about-section {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: var(--white-color);
    font-weight: 300;
    line-height: 1.6;
}
#about-section .row .left {
    flex: 1;
}
#about-section .row .right {
    max-width: 490px;
}
#about-section figure {
    margin-bottom: 30px;
    text-align: center;
}
#about-section figure img {}
#about-section .desc {
    color: var(--white-color);
}
#about-section .desc * {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    text-align: justify;
    font-family: 'Open Sans',sans-serif !important;
}
p.MsoNormal {
    font-size: 14px;
    font-size: 450;
    font-weight: 450;
    font-family: 'Open Sans',sans-serif !important;
}
/*============== About Section Css End ==============*/

/*============== Architecture Section Css Start ==============*/
#architecture-section {}
#architecture-section .single-category {
    margin-bottom: 40px;
}
#architecture-section .category-name {
    color: var(--white-color);
    font-size: 22px;
    margin-bottom: 20px;
}
#architecture-section .gallery {}
#architecture-section .gallery .big-images-wrapper {
    margin-bottom: 20px;
}
#architecture-section .gallery .img-gallery {}
#architecture-section .gallery .img-gallery li {}
#architecture-section .gallery .img-gallery li img {
    width: 100%;
    aspect-ratio: 1/.45;
    object-fit: cover;
}
#architecture-section .gallery .img-gallery .owl-nav {}
#architecture-section .gallery .img-gallery .owl-nav button {
    position: absolute;
    left: 20px;
    top: 50%;
    color: var(--white-color);
    font-size: 50px;
    transform: translateY(-50%);
}
#architecture-section .gallery .img-gallery .owl-nav button.owl-next {
    left: auto;
    right: 20px;
}
#architecture-section .small-images-wrapper {}
#architecture-section .image-indecator {}
#architecture-section .image-indecator li {}
#architecture-section .image-indecator li img {
    width: 100%;
    aspect-ratio: 1/.5;
    object-fit: cover;
}
#architecture-section .image-indecator .owl-nav {}
#architecture-section .image-indecator .owl-nav button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-color);
    font-size: 30px;
    opacity: 0.8;
}
#architecture-section .image-indecator .owl-nav button.owl-next {
    left: auto;
    right: 0;
}
/*============== Architecture Section Css End ==============*/

/*============== Photography Section Css Start ==============*/
#photography-section {}
#photography-section .single-category {
    margin-bottom: 40px;
}
#photography-section .single-category .category-name {
    color: var(--white-color);
    font-size: 24px;
    margin-bottom: 20px;
}
#photography-section .single-gallery {
    display: flex;
    flex-wrap: wrap;
}
#photography-section .single-gallery li {
    flex: 0 0 auto;
    width: 25%;
    padding: 5px;
    position: relative;
}
#photography-section .single-gallery li a {
    position: relative;
    display: block;
    z-index: 1;
}
#photography-section .single-gallery li a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0003;
    z-index: 1;
    transition: all 0.3s ease;
}
#photography-section .single-gallery li::after {
    content: '\F417';
    font-family: 'Bootstrap-icons';
    font-size: 20px;
    color: var(--white-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    padding: 5px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}
#photography-section .single-gallery li:hover::after {
    opacity: 1;
}
#photography-section .single-gallery li.active::after {
    content: '\F415';
}
#photography-section .single-gallery li .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--white-color);
    padding: 8px;
    padding-bottom: 0;
    margin-bottom: 15px;
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    z-index: 55;
    transition: all 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0s;
    transform: translateY(15px);
    visibility: hidden;
    opacity: 0;
    text-align: center;
    overflow: hidden;
}
#photography-section .single-gallery li:hover .caption {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
#photography-section .single-gallery li img {
    width: 100%;
    aspect-ratio: 1/.65;
    object-fit: cover;
    transition: all 0.3s ease;
}
#photography-section .single-gallery li:hover img {
    opacity: .8;
}
/*============== Photography Section Css End ==============*/

/*============== Publications Section Css Start ==============*/
#publications-section {}
#publications-section .gallery-with-captions {
}
#publications-section .gallery-with-captions .single-item {padding: 5px;}
#publications-section .gallery-with-captions .single-item figure {
    background-color: var(--white-color);
    padding: 5px;
    border-radius: 5px;
}
#publications-section .gallery-with-captions .single-item figure .caption {
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    letter-spacing: .3px;
}
#publications-section .gallery-with-captions .single-item figure img {
    width: 100%;
    aspect-ratio: 1/.65;
    border-radius: 5px;
    object-fit: cover;
}
/*============== Publications Section Css End ==============*/

/*============== Contact Section Css Start ==============*/
#contact-section {}
#contact-section .inner-section {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
}
.section-title {
    margin-bottom: 30px;
    font-family: "Inter", sans-serif;
    text-transform: capitalize;
    letter-spacing: .5px;
    font-weight: 700;
    text-align: right;
}
#contact-section .name {
    font-size: 18px;
    margin-bottom: 15px;
}
#contact-section .desc {}
#contact-section .social {
    display: flex;
    column-gap: 15px;
    align-items: center;
    margin-top: 30px;
}
#contact-section .social li {
    line-height: 1;
}
#contact-section .social li.facebook a {
    background-color: #3B5998;
}
#contact-section .social li.twitter a {
    background-color: #1DA1F2;
}
#contact-section .social li.linkedin a {
    background-color: #0077B5;
}
#contact-section .social li.youtube a {
    background-color: #DD4B39;
}
#contact-section .social li.facebook:hover a {
    color: #3B5998;
    background-color: var(--white-color);
}
#contact-section .social li.twitter:hover a {
    color: #1da1f2;
    background-color: var(--white-color);
}
#contact-section .social li.linkedin:hover a {
    background-color: var(--white-color);
    color: #0077B5;
}
#contact-section .social li.youtube:hover a {
    background-color: var(--white-color);
    color: #DD4B39;
}
#contact-section .social li a {
    color: var(--white-color);
    font-size: 20px;
    display: flex;
    height: 35px;
    width: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}
#contact-section .contact-form {}
#contact-section .contact-form h4 {
    font-size: 22px;
    color: var(--white-color);
    text-transform: uppercase;
}
#contact-section .contact-form p {
    color: var(--white-color);
    margin-bottom: 30px;
}
#contact-section .contact-form .input-group {
    margin-bottom: 20px;
}
#contact-section .contact-form .input-group label {
    color: var(--white-color);
    margin-right: 20px;
    font-size: 25px;
    cursor: pointer;
}
#contact-section .contact-form .input-group label i {}
#contact-section .contact-form input {
    margin-bottom: 15px;
    border-radius: 0;
    padding: 15px;
    color: var(--white-color);
    font-size: 15px;
    background-color: transparent;
    padding-top: 10px;
    border: none;
    border-bottom: 1px solid var(--white-color);
}
.form-control:focus {
    box-shadow: none;
}
#contact-section .contact-form textarea {
    border-radius: 0;
    margin-bottom: 15px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--white-color);
}
#contact-section .contact-form button {
    background-color: var(--white-color);
    padding: 12px;
    float: right;
    font-size: 16px;
    border: none;
    width: 100%;
    color: var(--dark-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-family: "Inter", sans-serif;
}
.divider-contact {
    color: var(--white-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.divider-contact::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    background-color: rgb(255 255 255 / 30%);
    z-index: -1;
}
.divider-contact i {
    font-size: 30px;
    background-color: #111;
    display: inline-flex;
    padding: 5px 35px;
    position: relative;
}
.contact-info {
    background-color: #000;
    padding: 20px;
    color: var(--white-color);
    border: 1px solid rgb(255 255 255 / 30%);
}
.contact-info .single-info {
    margin-bottom: 25px;
}
.contact-info .single-info label{
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    letter-spacing: 1px;
}
.contact-info .single-info a,
.contact-info .single-info span {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 15px;
}
.contact-info .single-info a i,
.contact-info .single-info span i {
    color: var(--lite-dark-color);
    font-size: 20px;
}
/*============== Contact Section Css End ==============*/

/*============== Footer Section Css Start ==============*/
.footer-section {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--white-color);
}
.copyright {
    position: absolute;
    margin-bottom: 0;
    padding: 15px 0;
    text-align: center;
    letter-spacing: .5px;
    color: #fff;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
.copyright::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(255 255 255 / 30%);
}

textarea#message{
    color: #fff;
}

#publications-section .gallery-with-captions .single-item figure {
    background-color: var(--white-color);
    padding: 5px;
    border-radius: 5px;
    position: relative;
}
#publications-section .gallery-with-captions .single-item figure .caption {
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    letter-spacing: .3px;
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    color: var(--white-color);
    display: block;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
#publications-section .gallery-with-captions .single-item:hover figure .caption {
    bottom: 0;
    visibility: visible;
    opacity: 1;
}
/*============== Footer Section Css End ==============*/