@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;300;400;500;600;700;800&display=swap");
:root {
    --primary-color: #23AA9B;
    --secondary-color: #20669A;
    --dark-color: #111;
    --text-color: #666;
    --border-color: #eee;
    --lite-white-color: #f9f9f9;
    --white-color: #fff;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;
}
body {
    font-family: "Archivo", sans-serif;
    font-size: 15px;
    color: var(--dark-color);
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--tran-03);
}
a:hover {
    color: inherit;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
.block-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.primary-btn {
    color: var(--white-color);
    padding: 10px 24px;
    font-size: 16px;
    display: inline-block;
    border: 1px solid transparent;
    background-color: var(--primary-color);
    border-radius: 50px;
    letter-spacing: 1px;
    transition: var(--tran-05);
}
.primary-btn:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.header-section .primary-btn-two {
    background-color: var(--white-color);
    color: var(--primary-color);
}
.header-section .primary-btn-two:hover {
    box-shadow: 5px 5px var(--white-color);
    color: var(--white-color);
}
.header-section .primary-btn-two:hover::after {
    background-color: var(--primary-color);
}
.header-section.sticky .primary-btn-two:hover {
    color: var(--white-color);
    box-shadow: 5px 5px var(--white-color);
}
.header-section.sticky .primary-btn-two:hover::after {
    background-color: var(--secondary-color);
}
.primary-btn-two {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    transition: var(--tran-03);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.primary-btn-two:hover {
    color: var(--primary-color);
    box-shadow: 5px 5px var(--primary-color);
}
.primary-btn-two::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background-color: var(--lite-white-color);
    transition: var(--tran-03);
}
.primary-btn-two:hover::after {
    width: 100%;
}
.desc {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: var(--text-color);
}
.home .section-padding {
    padding: 85px 0 55px;
    position: relative;
}
.section-padding {
    padding: 55px 0;
}
.section-title {
    font-size: 40px;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    z-index: 1;
    font-weight: 800;
    color: var(--dark-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.interior .section-title {
    font-family: "DM Serif Text", serif;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.interior .subtitle {
    font-family: "DM Serif Text", serif;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--dark-color);
}
.interior .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}
.interior .section-title::after {
    content: attr(data-title);
    position: absolute;
    color: rgba(210, 210, 210, 0.3);
    font-weight: 900;
    font-size: 90px;
    text-transform: uppercase;
    top: -40px;
    white-space: nowrap;
    letter-spacing: 3px;
    left: 0;
    z-index: -1;
}
.interior .section-title.text-center::before {
    left: 50%;
    transform: translateX(-50%);
}
.interior .section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}
.section-title span {
    position: absolute;
    right: -30px;
    bottom: -5px;
    z-index: -1;
    color: rgb(0 0 0 / 7%);
}
.section-title.text-center {
    display: block;
}
.section-title.text-center span {
    left: 50%;
    transform: translateX(-50%);
}
.bg-dot.primary {
    background-image: radial-gradient(
        var(--primary-color) 2px,
        transparent 2.5px
    );
    background-size: 0.75rem 0.75rem;
    opacity: 0.4;
}
.bg-line.primary {
    background: repeating-linear-gradient(
        -55deg,
        rgba(255, 255, 255, 0) 0.8px,
        var(--primary-color) 1.6px,
        var(--primary-color) 3px,
        rgba(255, 255, 255, 0) 3.8px,
        rgba(255, 255, 255, 0) 10px
    );
    opacity: 0.8;
}
.bg-lite {
    background-color: var(--lite-white-color);
}
.limit-width {
    max-width: 800px;
    width: 100%;
}
.limit-width.text-center {
    margin-left: auto;
    margin-right: auto;
}
.scrollTop {
    position: fixed;
    right: 0;
    bottom: 0;
    border: none;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px;
    width: 60px;
    padding-top: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.scrollTop::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: auto;
    top: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary-color);
    transition: var(--tran-04);
    z-index: -1;
}
.scrollTop:hover::after {
    height: 100%;
    bottom: 0;
    top: auto;
}
.scrollTop span {
    transform: rotate(90deg);
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 16px;
}
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: scale(0.8);
}
.modal.show .modal-dialog {
    transform: none;
}
.modal.show .modal-content {
    border: none;
}
.modal-header {
    display: block;
    position: relative;
    text-align: center;
}
.modal-title {
}

h5#exampleModalLabel {
}
.designation {
    margin-bottom: 15px;
}
.modal-header .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background-image: none;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 1;
}
.modal-header .btn-close i {
    display: flex;
}
.modal-body {
}
.modal-body figure {
    position: relative;
    margin: 0;
    margin-right: 30px;
    z-index: 1;
    aspect-ratio: 1/1;
    max-width: 250px;
}
.modal-body figure::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    width: calc(100% - 4px);
    height: calc(100% + 2px);
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 50%;
}
.modal-body figure::after {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background-color: var(--white-color);
    z-index: -1;
    border-radius: 50%;
}
.modal-body figure img {
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 220px;
}
.modal-body .desc {
}
.modal-body .social {
    display: flex;
    align-items: center;
}
.modal-body .social li {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9204f;
    color: var(--white-color);
    transition: var(--tran-04);
}
.modal-body .social li:nth-child(2n) {
    background-color: #ef3964;
}
.modal-body .social li:nth-child(3n) {
    background-color: #eb5477;
}
.modal-body .social li:nth-child(4n) {
    background-color: #ef6887;
}
.modal-body .social li:hover {
    background-color: #ef6887;
}
.modal-body .social li:nth-child(2n):hover {
    background-color: #eb5477;
}
.modal-body .social li:nth-child(3n):hover {
    background-color: #ef3964;
}
.modal-body .social li:nth-child(4n):hover {
    background-color: #e9204f;
}
.modal-body .social li a {
    display: flex;
}
.modal-body .social li:hover a {
}
.mean-container a.meanmenu-reveal {
    width: 30px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 12px;
    padding-bottom: 16px;
}
.mean-container a.meanmenu-reveal span {
    background-color: var(--white-color);
    width: 100%;
    height: 2px;
    position: relative;
    transition: var(--tran-03);
}
.mean-container a.meanmenu-reveal span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--white-color);
    transition: var(--tran-03);
    top: 10px;
}
.mean-container a.meanmenu-reveal span::before {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--white-color);
    transition: var(--tran-03);
    top: -10px;
}
.mean-container a.meanmenu-reveal.meanclose span {
    background-color: transparent;
}
.mean-container a.meanmenu-reveal.meanclose span::after {
    transform: rotate(-45deg);
    top: 0;
    width: calc(100% - 4px);
}
.mean-container a.meanmenu-reveal.meanclose span::before {
    transform: rotate(45deg);
    top: 0;
    width: calc(100% - 4px);
}
.mean-container .mean-bar {
    position: absolute;
    right: 12px;
    max-width: 300px;
    float: none;
    height: 100%;
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: fit-content;
}
.mean-container {
    position: relative;
}
.mean-container .mean-nav {
    float: none;
    background: var(--primary-color);
    margin-top: 0;
    position: absolute;
    top: calc(100% - 1px);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 20px 15px -20px rgb(0 0 0 / 7%);
    font-size: 14px;
    width: 300px;
    z-index: 999;
}
.mean-container .mean-nav ul li a {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 8%;
}
.mean-container .mean-nav ul li a.mean-expand {
    background: transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid transparent !important;
    padding: 10px !important;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
    background: transparent;
}
.mean-expand::after {
    content: "\F4FE";
    font-size: 18px;
    font-family: "Bootstrap-icons";
}
.mean-expand.mean-clicked::after {
    content: "\F2EA";
}
/*=============== Header Css Start ===============*/
.header-section {
    background-color: var(--primary-color);
}
.home .header-section {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 20px 0;
}

.header-section.sticky {
    box-shadow: 0 5px 15px rgba(0 0 0 / 0.1);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    transition: var(--tran-03);
    z-index: 99;
    padding: 5px 0;
    background-color: var(--primary-color);
}
.header-section .top {
    color: var(--white-color);
    font-weight: 300;
}
.home .header-section .top {
    background-color: var(--primary-color);
}
.header-section .top .top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-section .top .top-wrapper > * {
}
.top-wrapper .left {
}
.top-wrapper .left ul {
    display: flex;
    align-items: center;
}
.top-wrapper .left ul li {
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    transition: var(--tran-03);
}
.top-wrapper .left ul li:hover {
    color: var(--white-color);
    background-color: rgb(255 255 255 / 10%);
}
.home .top-wrapper .left ul li:hover {
    background-color: rgb(0 0 0 / 20%);
    border-color: transparent;
}
.top-wrapper .left ul li:hover a {
    color: var(--white-color);
}
.top-wrapper .left ul li:not(:first-child) {
    border-left: 1px solid rgb(255 255 255 / 15%);
}
.home .top-wrapper .left ul li {
    border-right: 1px solid rgb(255 255 255 / 20%);
    height: 45px;
    padding: 10px 15px;
}
.top-wrapper .left ul li a {
    display: inline-flex;
    column-gap: 8px;
    align-items: center;
}
.top-wrapper .left ul li a i {
    font-size: 18px;
}
.home .top-wrapper .middle {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.top-wrapper .middle ul {
}
.top-wrapper .middle ul li {
    height: 35px;
    display: flex;
    align-items: center;
    border-left: 1px solid rgb(255 255 255 / 15%);
    border-right: 1px solid rgb(255 255 255 / 15%);
    padding: 0 10px;
    transition: var(--tran-03);
}
.home .top-wrapper .middle ul li {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    height: 45px;
    column-gap: 8px;
    padding: 10px 15px;
}
.home .top-wrapper .middle ul li i {
    font-size: 18px;
}
.top-wrapper .middle ul li:hover {
    color: var(--white-color);
    background-color: rgb(255 255 255 / 10%);
}
.home .modal ul.social li:hover,
.home .top-wrapper .right ul li:hover,
.home .top-wrapper .middle ul li:hover {
    background-color: rgb(0 0 0 / 20%);
    border-color: transparent;
}
.top-wrapper .right {
}
.modal ul.social,
.top-wrapper .right ul {
    display: flex;
    align-items: center;
}
.modal ul.social {
    display: inline-flex;
    background-color: var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
}
.modal ul.social li,
.top-wrapper .right ul li {
    padding-left: 10px;
    transition: var(--tran-03);
    padding-right: 10px;
}
.modal ul.social li {
    padding-left: 0;
    padding-right: 0;
}
.modal ul.social li:hover a {
    background-color: rgb(255 255 255 / 10%);
}
.modal ul.social li:hover,
.top-wrapper .right ul li:hover {
    color: var(--white-color);
    background-color: rgb(255 255 255 / 10%);
}
.modal ul.social li:hover a,
.top-wrapper .right ul li:hover a {
    color: var(--white-color);
}
.top-wrapper .right ul li:not(:last-child) {
    border-right: 1px solid rgb(255 255 255 / 15%);
    padding-right: 10px;
}
.home .top-wrapper .right ul li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.modal ul.social li a,
.top-wrapper .right ul li a {
    display: flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
}
.home .top-wrapper .right ul li .icon {
    height: 45px;
    width: 30px;
}
.modal ul.social li .icon,
.top-wrapper .right ul li .icon {
    width: 26px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal ul.social li .icon i,
.top-wrapper .right ul li .icon i {
}
.modal ul.social li .label,
.top-wrapper .right ul li .label {
    white-space: nowrap;
    display: none;
}
.modal ul.social li i {
    padding-left: 5px;
    display: inline-flex;
}
.modal ul.social li a {
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 10px 15px;
}
.home .header-section .bottom {
    background-color: transparent;
}
.header-section .bottom {
    background-color: var(--dark-color);
}
.header-section .bottom .bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bottom-wrapper .logo {
    padding: 10px 15px;
    flex: 0 0 auto;
    max-width: 153px;
    position: relative;
    z-index: 1;
}
.bottom-wrapper .logo::before {
    content: "";
    position: absolute;
    right: -30px;
    top: 0;
    height: 100%;
    width: 2000px;
    background-color: var(--white-color);
    z-index: -1;
    background-color: transparent;
    visibility: hidden;
}
.bottom-wrapper .logo::after {
    content: "";
    position: absolute;
    background-image: url(../images/icons/heading_bg.png);
    width: 160px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    bottom: 5px;
    right: -20px;
    z-index: -1;
    visibility: hidden;
}
.bottom-wrapper .logo img {
    /* filter: brightness(0) invert(1); */
    box-shadow: 5px 5px 15px #0000004a;
}
.bottom-wrapper #main-menu {
    flex: 1;
}
.bottom-wrapper .contact-area {
    flex: 0 0 auto;
    width: fit-content;
}
.bottom-wrapper .contact-area .social {
    display: flex;
}
.bottom-wrapper .contact-area .social li {
}
.bottom-wrapper .contact-area .social a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    background-color: #fff;
    color: var(--dark-color);
    align-items: center;
    justify-content: center;
    transition: var(--tran-03);
}
.bottom-wrapper .contact-area .social li:not(:last-child) a {
    border-right: 1px solid rgb(0 0 0 / 20%);
}
.bottom-wrapper .contact-area .social li a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}
.bottom-wrapper .contact-area .contact {
    display: flex;
    align-items: center;
}
.bottom-wrapper .contact-area .contact li {
    color: var(--white-color);
    padding: 5px 10px;
    display: block;
    text-align: center;
}
.bottom-wrapper .contact-area .contact li a {
    padding: 6px 15px;
    display: inline-flex;
    align-items: center;
    font-weight: 300;
}
.bottom-wrapper .contact-area .contact li a i {
    padding-right: 4px;
}
.bottom-wrapper #main-menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.bottom-wrapper #main-menu ul li {
    position: relative;
    transition: var(--tran-03);
    color: var(--white-color);
}
.bottom-wrapper #main-menu ul li.has-sub::after {
    content: "\F282";
    font-family: "Bootstrap-icons";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 600;
    transition: var(--tran-04);
}
.bottom-wrapper #main-menu ul li.has-sub::after {
    content: "\F4FE";
    font-size: 20px;
    font-weight: 400;
}
.bottom-wrapper #main-menu ul li.has-sub:hover::after {
    color: var(--primary-color);
    transform: translateY(-50%);
    content: "\F2EA";
}
.bottom-wrapper #main-menu ul li a {
    display: inline-block;
    padding: 26px 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    position: relative;
}
.bottom-wrapper #main-menu > ul > li > a {
    padding: 20px 20px;
}
.bottom-wrapper #main-menu > ul > li > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: auto;
    width: 0;
    bottom: 20px;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--tran-05);
}
.header-section.sticky .bottom-wrapper #main-menu > ul > li > a::after {
    background-color: var(--dark-color);
}
.bottom-wrapper #main-menu > ul > li > a::after {
    bottom: -1px;
    height: 2px;
}
.bottom-wrapper #main-menu > ul > li.has-sub > a::after {
    display: none;
}
.bottom-wrapper #main-menu > ul > li:hover > a::after {
    left: auto;
    right: 15px;
    width: calc(100% - 30px);
}
.bottom-wrapper #main-menu > ul > li:hover > a {
    color: var(--primary-color);
}
.header-section.sticky .bottom-wrapper #main-menu > ul > li:hover > a {
    color: var(--dark-color);
}
.bottom-wrapper #main-menu ul li ul {
    display: block;
    position: absolute;
    top: 100%;
    background-color: var(--white-color);
    box-shadow: 6px 6px 25px rgb(0 0 0 / 5%);

    min-width: 180px;
    border-radius: 0 0 5px 5px;
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--tran-04);
    z-index: 9;
    visibility: hidden;
    opacity: 0;
}
.bottom-wrapper #main-menu > ul > li > ul::after {
    content: "";
    position: absolute;
    left: 30px;
    top: -7px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    background-color: var(--white-color);
    transition: var(--tran-02);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}
.bottom-wrapper #main-menu > ul > li:hover > ul::after {
    visibility: visible;
    opacity: 1;
}
.bottom-wrapper #main-menu ul li:hover ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}
.bottom-wrapper #main-menu ul li ul li:hover {
}
.bottom-wrapper #main-menu ul li ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.bottom-wrapper #main-menu ul li ul li a {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    font-weight: 400;
    font-size: 13px;
    white-space: nowrap;
}
.bottom-wrapper #main-menu > ul > li > ul > li:hover > a {
    color: var(--white-color);
    background-color: var(--primary-color);
    padding-left: 20px;
}
/*=============== Header Css End ===============*/

/*=============== Slider Section Css Start ===============*/
.slider-section {
    position: relative;
    overflow: hidden;
}
.slider-section .slider-wrapper {
}
.arshigroup-slider {
}
.slider-social {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 98;
}
.slider-social .social {
}
.slider-social .social li {
    position: relative;
    z-index: 1;
    transition: var(--tran-03);
}
.slider-social .social li:hover {
    transform: scale(1.1);
    z-index: 2;
}
.slider-social .social li a {
    width: 60px;
    height: 60px;

    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 20px;
}
.slider-social .social li.facebook a {
    background-color: #3359a3;
}
.slider-social .social li.twitter a {
    background-color: #40bbf4;
}
.slider-social .social li.linkedin a {
    background-color: #0077b7;
}
.slider-social .social li.youtube a {
    background-color: #cb2026;
}
.slider-social .social li a .icon {
}
.slider-social .social li::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    z-index: -1;
    transition: var(--tran-03);
}
.slider-social .social li:hover::after {
    right: 5px;
    top: 5px;
}
.arshigroup-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 40px;
}
.arshigroup-slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background-color: var(--white-color);
    transition: var(--tran-04);
}
.arshigroup-slider .owl-dots .owl-dot.active {
    background-color: var(--primary-color);
}
.arshigroup-slider .single-slide {
    height: 600px;
    position: relative;
}
.arshigroup-slider .single-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.arshigroup-slider .single-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 15s ease;
}
.arshigroup-slider .owl-item.active img {
    transform: scale(1.5);
}
.home .arshigroup-slider .single-slide img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 250%;
    height: 250%;
    transition: all 40s ease;
}
.home .arshigroup-slider .owl-item.active img {
    width: 100%;
    height: 100%;
}
.arshigroup-slider .owl-nav button {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    border: none !important;
    background-color: rgb(0 0 0 / 30%) !important;
    color: var(--white-color) !important;
    width: 35px;
    height: 35px;
    font-size: 18px !important;
    z-index: 99;
}
.arshigroup-slider .owl-nav button.owl-next {
    left: auto;
    right: 30px;
}
.quote-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.quote-area .qoute-wrapper {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 25px 20px;
}
.quote-area .quote-header {
}
.quote-area .quote-header .item-title {
    font-size: 20px;
    margin-bottom: 20px;
}
.quote-area .quote-header .head-wrapper {
    display: flex;
    column-gap: 5px;
}
.quote-area .quote-header .head-wrapper input {
    border-radius: 0;
    border: none;
}
.quote-area .quote-header .head-wrapper button {
    border: none;
    width: 40px;
    flex: 0 0 auto;
    font-size: 20px;
    color: var(--white-color);
    background-color: #62ccef;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    position: relative;
}
.quote-area .quote-header .head-wrapper button:not(.collapsed)::after {
    transform: rotate(180deg);
    content: "\F282";
    font-family: "bootstrap-icons";
}
.quote-area .quote-header .head-wrapper button.collapsed::after {
    content: "\F282";
    font-family: "bootstrap-icons";
}
.quote-area .quote-body {
}
.quote-area .quote-body .item-subtitle {
    margin: 30px 0 10px;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
}
.quote-area .quote-body input {
    border-radius: 0;
    border: none;
}
.quote-area .quote-body select {
    border-radius: 0;
    border: none;
}
/*=============== Slider Section Css End ===============*/

/*=============== About Section Css Start ===============*/
.about-section {
    padding-top: 80px;
    padding-bottom: 100px;
    overflow: hidden;
}
.about-section .about-img {
    position: relative;
    z-index: 1;
    margin-left: 50px;
    display: inline-block;
}
.about-section .about-img .bg-dot {
    width: 145px;
    height: 145px;
    position: absolute;
    right: -60px;
    bottom: -70px;
    z-index: -1;
}
.about-section .about-img .wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        0deg,
        #18253e 1%,
        rgba(255, 255, 255, 0) 93%
    );
    z-index: 2;
}
.about-section .about-img img {
    border-radius: 15px;
}
.about-section .about-img .wrapper {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    transform: translate(-40px, 40px);
}
.about-section .about-img .video-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.about-section .about-img .video-btn i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 65px;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    height: 80px;
    width: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
    padding-left: 8px;
    transition: var(--tran-04);
}
.about-section .about-img .video-btn:hover i {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
/*=============== About Section Css End ===============*/

/*=============== Sister Concern Section Css Start ===============*/
.sister-concern-section {
}
.sister-concern-section .container {
    position: relative;
}
.sister-concern-section .bg-line {
    position: absolute;
    top: 30px;
    left: -15px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
.concern-carousel {
}
.concern-carousel .single-item {
    margin: 15px;
    margin-bottom: 25px;
    background-color: var(--white-color);
    padding: 6px;
    border-radius: 10px;
    padding-bottom: 5px;
    box-shadow: 0 10px 15px rgb(0 0 0 / 5%);
}
.concern-carousel .single-item .single-concern {
}
.concern-carousel .single-item .single-concern figure {
    margin: 0;
}
.concern-carousel .single-item .single-concern figure img {
    border-radius: 10px;
}
.concern-carousel .single-item .single-concern .item-title {
    text-align: center;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 400;
    margin: 0;
    padding: 12px 15px 8px;
    position: relative;
    transition: var(--tran-02);
}
.concern-carousel .single-item .single-concern:hover .item-title {
    color: var(--primary-color);
}
@keyframes scale {
    0% {
        transform: scaleX(0) translateX(-50%);
    }
    50% {
        transform: scaleX(1) translateX(-50%);
    }
    100% {
        transform: scaleX(0) translateX(-50%);
        transform-origin: right;
    }
}
.concern-carousel .single-item .single-concern .item-title::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    left: 50%;
    transform-origin: left;
    bottom: 2px;
    border-radius: 5px;
    transform: translateX(-50%);
    animation: scale 4s infinite;
}
.concern-carousel
    .owl-item:nth-child(2n)
    .single-item
    .single-concern
    .item-title::after {
    animation-delay: 2s;
}
.concern-carousel
    .owl-item:nth-child(3n)
    .single-item
    .single-concern
    .item-title::after {
    animation-delay: 4s;
}
.concern-carousel .single-item .single-concern .exerp {
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 15px;
    margin-bottom: 12px;
}
.concern-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
.concern-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 5px;
    background-color: var(--white-color);
    border-radius: 10px;
    transition: var(--tran-04);
}
.concern-carousel .owl-dots .owl-dot.active {
    background-color: var(--primary-color);
    width: 45px;
}
.concern-carousel .owl-nav {
}
.concern-carousel .owl-nav button {
}
.concern-carousel .owl-nav button.owl-next {
}
/*=============== Sister Concern Section Css End ===============*/

/*=============== Works Section Css Start ===============*/
.works-section {
}
.works-section .controls {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.works-section .controls .control {
    border: none;
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 8px 16px;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-family: sans-serif;
    transition: var(--tran-03);
    margin: 6px;
    border-radius: 4px;
    white-space: nowrap;
}
.works-section .controls .control:hover,
.works-section .controls .control.mixitup-control-active {
    background-color: var(--primary-color);
}
.works-section .mix-filter {
}
.works-section .mix-filter .mix {
}
.works-section .mix-filter .gal-item {
}
.works-section .mix-filter .gal-item a {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
}
.works-section .mix-filter .gal-item a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #18253e 1%, rgba(255, 255, 255, 0) 93%);
    background-size: auto 150%;
    background-position: top;
    transition: var(--tran-04);
}
.works-section .mix-filter .gal-item:hover a::after {
    background-position: bottom;
}
.works-section .mix-filter .gal-item img {
    width: 100%;
    aspect-ratio: 1/0.66;
    object-fit: cover;
    border-radius: 6px;
}
/*=============== Works Section Css End ===============*/

/*=============== Client Feedback Section Css Start ===============*/
..client-feedback-section {
}
.team-carousel {
}
.team-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.team-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background-color: var(--white-color);
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    transition: var(--tran-04);
}
.team-carousel .owl-dots .owl-dot.active {
    background-color: var(--primary-color);
}
.team-carousel .single-item {
    margin: 10px;
    position: relative;
    padding-top: 60px;
}
.team-carousel .single-team {
    position: relative;
    background-color: var(--white-color);
    padding: 20px;
    padding-top: 60px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    border-radius: 15px;
    text-align: center;
}
.team-carousel .single-team figure {
    margin: 0;
    overflow: hidden;
    width: 120px;
    position: absolute;
    left: 50%;
    top: -60px;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 3px solid var(--white-color);
}
.team-carousel .single-team figure img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: var(--tran-05);
    transform-origin: top;
}
.team-carousel .single-team:hover figure img {
    transform: scale(1.2);
}
.team-carousel .single-team figure .social {
    position: absolute;
    right: -30px;
    top: 0;
    transition: var(--tran-04);
}
.team-carousel .single-team:hover figure .social {
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.team-carousel .single-team figure .social li {
    color: var(--white-color);
    transition: var(--tran-04);
    width: 30px;
    height: 31px;
}
.team-carousel .single-team figure .social li:hover {
    width: fit-content;
}
.team-carousel .single-team figure .social li:hover a {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}
.team-carousel .single-team figure .social li a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 6px;
    justify-content: flex-end;
    height: 30px;
    background-color: rgb(255 255 255 / 30%);
    background-color: var(--primary-color);
    transition: var(--tran-05);
}
.team-carousel .single-team figure .social li .label {
    display: none;
    white-space: nowrap;
    padding-left: 6px;
    text-transform: capitalize;
}
.team-carousel .single-team figure .social li i {
    padding-left: 8px;
}
.team-carousel .single-team .item-title {
    font-size: 18px;
    padding: 10px 15px;
    margin-bottom: 0;
    padding-bottom: 0;
    transition: var(--tran-04);
}
.team-carousel .single-team:hover .item-title a {
    color: var(--primary-color);
}
.team-carousel .single-team .designation {
    margin-bottom: 0;
    padding: 10px 15px;
    padding-top: 0;
    font-size: 14px;
}
.team-carousel .single-team .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}
.team-carousel .single-team .view-btn {
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 14px;
    transition: var(--tran-04);
}
.team-carousel .single-team .view-btn:hover {
    background-color: var(--dark-color);
}
.client-feedback-section .clients-carousel {
    padding-top: 8px;
}
.client-feedback-section .clients-carousel .single-item {
    padding: 0 3px;
    cursor: pointer;
}
.client-feedback-section .clients-carousel .single-client {
    background-color: var(--white-color);
}
.client-feedback-section .clients-carousel .single-item img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    transition: var(--tran-04);
    max-width: 160px;
    margin: auto;
    width: 100%;
    padding: 12px 0;
}
.client-feedback-section .clients-carousel .single-item img:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}
.client-feedback-section .clients-carousel .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: 15px;
}
.client-feedback-section .clients-carousel .slick-dots li button {
    border: none;
    background-color: var(--white-color);
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    font-size: 12px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    transition: var(--tran-04);
}
.client-feedback-section .clients-carousel .slick-dots li.slick-active button {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.client-feedback-carousel {
}
.client-feedback-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.client-feedback-carousel .owl-dots .owl-dot {
    border: none;
    background-color: var(--white-color);
    color: var(--primary-color);
    width: 22px;
    height: 5px;
    font-size: 12px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    transition: var(--tran-04);
}
.client-feedback-carousel .owl-dots .owl-dot:hover,
.client-feedback-carousel .owl-dots .owl-dot.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 40px;
}
.client-feedback-carousel .single-item {
    padding: 10px;
}
.client-feedback-carousel .testimonial-card {
    padding: 20px 25px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background-color: var(--white-color);
    box-shadow: 0 20px 15px -20px rgb(0 0 0 / 7%);
    transition: var(--tran-04);
    position: relative;
}
.client-feedback-carousel .testimonial-card::before {
    content: "";
    position: absolute;
    right: 4px;
    top: 4px;
    width: 30px;
    height: 30px;
    border: 4px solid var(--dark-color);
    border-bottom: none;
    border-left: none;
    border-radius: 0 13px 0 0;
    opacity: 0.05;
}
.client-feedback-carousel .testimonial-card::after {
    content: "";
    position: absolute;
    left: 4px;
    bottom: 4px;
    width: 30px;
    height: 30px;
    border: 4px solid var(--dark-color);
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 13px;
    opacity: 0.05;
}
.client-feedback-carousel .testimonial-card:hover {
    transform: translateY(-5px);
}
.client-feedback-carousel .testimonial-card .paragraph-text {
}
.client-feedback-carousel .testimonial-card .paragraph-text .desc {
    font-size: 15px;
    margin-bottom: 15px;
}
.client-feedback-carousel .testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-feedback-carousel
    .testimonial-card
    .testimonial-author
    .testimonial-image {
    margin: 0;
}
.client-feedback-carousel
    .testimonial-card
    .testimonial-author
    .testimonial-image
    img {
    width: 60px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 1px solid var(--border-color);
    border-radius: 50%;
}
.client-feedback-carousel
    .testimonial-card
    .testimonial-author
    .testimonial-text {
}
.client-feedback-carousel
    .testimonial-card
    .testimonial-author
    .testimonial-text
    .testimonial-name {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 0;
}
.client-feedback-carousel
    .testimonial-card
    .testimonial-author
    .testimonial-text
    .testimonial-bio {
    font-size: 14px;
}
/*=============== Client Feedback Section Css End ===============*/

/*=============== Subscribe Section Css Start ===============*/
.subscribe-section {
    background-image: url(../images/gallery/subscribe-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}
.subscribe-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(233 32 79 / 80%);
    z-index: -1;
}
.subscribe-section .subscribe-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.subscribe-section .subscribe-wrapper .left-area {
}
.subscribe-wrapper .title {
    font-size: 28px;
    color: var(--white-color);
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 1px;
}
.subscribe-wrapper .description {
    font-size: 16px;
    font-weight: 300;
    color: var(--white-color);
    margin-bottom: 0;
}
.subscribe-section .subscribe-wrapper .right-area {
}
form.subscribe {
}
form.subscribe input {
    border-radius: 0;
    padding: 8px 12px;
    border: none;
    min-width: 300px !important;
}
form.subscribe button {
    border: none;
    width: 50px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color);
    color: var(--border-color);
    transition: var(--tran-04);
}
form.subscribe button:hover {
    background-color: var(--primary-color);
}
/*=============== Subscribe Section Css End ===============*/

/*=============== Footer Section Css Start ===============*/
.footer-section {
}
.footer-section .footer-top {
    padding: 60px 0 10px;
    background-color: #21262c;
    color: var(--white-color);
}
.footer-section .footer-top .footer-widget {
    margin-bottom: 30px;
}
.footer-section .footer-top .footer-widget .primary-btn {
    padding: 8px 16px;
    background-color: #21262c;
    border-color: var(--white-color);
    color: var(--white-color);
    font-size: 14px;
}
.footer-section .footer-top .footer-widget .primary-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.home .footer-section .footer-top .footer-widget .primary-btn {
    background-color: var(--primary-color);
    padding: 6px 20px 8px;
    font-size: 16px;
}
.home .footer-section .footer-top .footer-widget .primary-btn:hover {
    color: var(--primary-color);
}
.footer-section .footer-top .footer-widget .footer-logo {
    margin-bottom: 20px;
}
.footer-section .footer-top .footer-widget .footer-logo img {
    max-width: 130px;
    /* filter: brightness(0) invert(1); */
}
.footer-section .footer-top .footer-widget .footer-desc {
    font-size: 16px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}
.footer-section .footer-top .footer-widget .footer-address {
}
.footer-address ul {
}
.footer-address ul li {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    font-weight: 300;
}
.footer-address ul li i {
    transition: var(--tran-03);
}
.footer-address ul li:hover {
    color: var(--primary-color);
}
.footer-address ul li .footer-address-icon {
    font-size: 18px;
}
.footer-address ul li .footer-address-icon i {
}
.footer-address ul li .footer-address-info {
    padding-top: 2px;
}
.footer-address ul li .footer-address-info p {
    margin-bottom: 0;
    font-size: 16px;
}
.footer-address ul li .footer-address-info p a {
}
.footer-top .footer-widget .footer-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}
.footer-top .footer-widget .footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}
.footer-top .footer-widget .links {
}
.footer-top .footer-widget .links li {
    padding: 5px 0;
}
.footer-top .footer-widget .links li a {
    display: inline-flex;
    font-weight: 300;
    font-size: 16px;
}
.footer-top .footer-widget .links li:hover a {
    color: var(--primary-color);
}
.footer-top .footer-widget .links li a::before {
    content: "//";
    display: inline-flex;
    width: 0;
    overflow: hidden;
    padding-right: 0;
    transform-origin: left;
    opacity: 0;
    visibility: hidden;
    transition: var(--tran-04);
}
.footer-top .footer-widget .links li:hover a::before {
    width: 15px;
    padding-right: 5px;
    visibility: visible;
    opacity: 1;
    color: var(--primary-color);
}
.footer-top .footer-widget .gallery {
    display: flex;
    flex-wrap: wrap;
    padding-top: 4px;
}
.footer-top .footer-widget .gallery li {
    flex: 0 0 auto;
    max-width: 100px;
    width: 100%;
    padding: 2px;
}
.footer-top .footer-widget .gallery li img {
    width: 100%;
    aspect-ratio: 1/0.66;
    object-fit: cover;
}
.footer-bottom {
    padding: 10px 0;
    color: var(--white-color);
    background-color: #282b38;
}
.footer-bottom p {
    font-weight: 300;
    font-size: 16px;
}
.footer-bottom a:hover {
    color: var(--primary-color);
}
/*=============== Footer Section Css End ===============*/

/*=============== Interior About Section Css Start ===============*/
.interior .about-section {
    padding: 100px 0;
}
.interior .about-section .desc {
    margin-bottom: 20px;
}
.interior .about-section .service {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.interior .about-section .service li {
    flex: 0 0 auto;
    width: calc(50% - 5px);
    display: flex;
    gap: 20px;
    background-color: var(--lite-white-color);
    padding: 20px;
    position: relative;
    z-index: 1;
}
.interior .about-section .service li::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    z-index: -1;
    transition: var(--tran-04);
}
.interior .about-section .service li:hover::before {
    width: 100%;
}
.interior .about-section .service li:hover * {
    color: var(--white-color);
}
.interior .about-section .service li:hover .icon img {
    filter: brightness(0) invert(1);
}
.interior .about-section .service li .icon {
    flex: 0 0 auto;
    width: 50px;
}
.interior .about-section .service li .icon img {
    transition: var(--tran-03);
}
.interior .about-section .service li .content {
}
.interior .about-section .service li .content .title {
    font-family: "DM Serif Text", serif;
    font-size: 18px;
    margin-bottom: 3px;
    transition: var(--tran-03);
}
.interior .about-section .service li .content .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
    transition: var(--tran-03);
}
.interior .about-section .gallery-slider-wrapper {
    position: relative;
    z-index: 1;
}
.interior .about-section .gallery-slider-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: -70px;
    bottom: -70px;
    width: 300px;
    background-color: var(--primary-color);
    z-index: -1;
}
.interior .about-section .gallery-slider-wrapper .gallery-slider {
    padding-right: 100px;
    position: relative;
    margin-left: 30px;
}
.interior .about-section .gallery-slider-wrapper .gallery-slider::before {
    content: "";
    position: absolute;
    top: -30px;
    bottom: -30px;
    right: 180px;
    width: 150px;
    border: 4px solid var(--white-color);
    z-index: 0;
}
.interior .about-section .gallery-slider-wrapper .gallery-slider::after {
    content: "";
    width: 100%;
    position: absolute;
    left: -28px;
    top: -70px;
    bottom: -70px;
    z-index: -1;
    background-image: radial-gradient(
        var(--primary-color) 2px,
        transparent 3px
    );
    background-size: 20px 20px;
    opacity: 0.4;
}
.interior .about-section .gallery-slider-wrapper .gallery-slider .single-slide {
}
.interior
    .about-section
    .gallery-slider-wrapper
    .gallery-slider
    .single-slide
    img {
    width: 100%;
    aspect-ratio: 1/1.1;
}
.interior .about-section .gallery-slider-wrapper .gallery-slider .slick-dots {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}
.interior
    .about-section
    .gallery-slider-wrapper
    .gallery-slider
    .slick-dots
    li {
}
.interior
    .about-section
    .gallery-slider-wrapper
    .gallery-slider
    .slick-dots
    li
    button {
    width: 30px;
    position: relative;
    border: none;
    background-color: transparent;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    font-family: "DM Serif Text", serif;
}
.interior
    .about-section
    .gallery-slider-wrapper
    .gallery-slider
    .slick-dots
    li.slick-active
    button {
    color: var(--dark-color);
}
.interior
    .about-section
    .gallery-slider-wrapper
    .gallery-slider
    .slick-dots
    li
    button::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 0;
    background-color: var(--dark-color);
    transition: var(--tran-04);
}
.interior
    .about-section
    .gallery-slider-wrapper
    .gallery-slider
    .slick-dots
    li.slick-active
    button:after {
    width: 30px;
}
/*=============== Interior About Section Css End ===============*/

/*=============== Interior Service Section Css Start ===============*/
.interior .service-section {
}
.single-service-two {
    background-color: var(--white-color);
    padding: 35px 25px 30px;
    display: flex;
    gap: 20px;
    position: relative;
    box-shadow: 5px 10px 15px rgb(0 0 0 / 5%);
    z-index: 1;
}
.single-service-two::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--tran-05);
    z-index: -1;
}
.single-service-two:hover::after {
    width: 100%;
}
.single-service-two .icon {
    flex: 0 0 auto;
    width: 60px;
}
.single-service-two .icon img {
    transition: var(--tran-03);
}
.single-service-two:hover .icon img {
    filter: brightness(0) invert(1);
}
.single-service-two .content {
}
.single-service-two .title {
}
.single-service-two .title h3 {
    font-family: "DM Serif Text", serif;
    font-size: 22px;
}
.single-service-two:hover .title h3 a {
    color: var(--white-color);
}
.single-service-two .description {
}
.single-service-two .description p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 10px;
    transition: var(--tran-03);
    font-size: 14px;
}
.single-service-two:hover .description p {
    color: var(--white-color);
}
.single-service-two .button {
}
.single-service-two .button a {
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 2px 0;
}
.single-service-two:hover .button a {
    color: var(--white-color);
}
.single-service-two .button a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: var(--white-color);
    transition: var(--tran-05);
}
.single-service-two .button a:hover::after {
    width: 100%;
}
/*=============== Interior Service Section Css End ===============*/

/*=============== Interior Works Section Css Start ===============*/
.interior .works-section {
}
.works-section .controls-style-two {
}
.works-section .controls-style-two .control {
    border-radius: 0;
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    padding: 8px 20px 11px;
    position: relative;
    z-index: 1;
}
.works-section .controls-style-two .control.mixitup-control-active,
.works-section .controls-style-two .control:hover {
    background-color: var(--dark-color);
}
.works-section .controls-style-two .control::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background-color: var(--primary-color);
    transition: var(--tran-03);
    z-index: -1;
}
.works-section .controls-style-two .control:hover::after,
.works-section .controls-style-two .control.mixitup-control-active::after {
    width: 100%;
}
.mix-filter-style-two {
}
.mix-filter-style-two .mix {
}
.mix-filter-style-two .mix .gal-item {
    position: relative;
    z-index: 1;
}
.mix-filter-style-two .mix .gal-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: rgba(0, 0, 0, 0.65);
    transition: var(--tran-05);
}
.mix-filter-style-two .mix .gal-item:hover::after {
    width: 100%;
}
.mix-filter-style-two .mix .gal-item .overlay-content {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: var(--tran-03);
    transition-delay: 0.2s;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    grid-row-gap: 10px;
    column-gap: 10px;
    width: 100%;
}
.mix-filter-style-two .mix .gal-item:hover .overlay-content {
    visibility: visible;
    opacity: 1;
    top: 50%;
}
.mix-filter-style-two .mix .gal-item .overlay-content .title {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3em;
    font-family: "DM Serif Text", serif;
    margin-bottom: 0;
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
}
.mix-filter-style-two .mix .gal-item .overlay-content a {
    display: inline-flex;
    color: var(--white-color);
    width: 35px;
    height: 35px;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.mix-filter-style-two .mix .gal-item .overlay-content a i.bi-link-45deg {
    font-size: 20px;
}
.mix-filter-style-two .mix .gal-item .overlay-content a::after {
    display: none;
}
.mix-filter-style-two .mix .gal-item .overlay-content a:hover {
}
.mix-filter-style-two .mix .gal-item img {
    border-radius: 0;
}
/*=============== Interior Works Section Css End ===============*/

/*=============== Interior Clients Feedback Section Css Start ===============*/
.interior .clients-feedback-section {
}
.interior .clients-feedback-section .clients-carousel {
}
.interior .clients-feedback-section .clients-carousel .single-item {
    padding: 0 3px;
}
.interior
    .clients-feedback-section
    .clients-carousel
    .single-item
    .single-client {
    padding: 5px 10px;
    background-color: var(--white-color);
    position: relative;
}
.interior .clients-feedback-section .clients-carousel .single-item img {
}
.interior .clients-feedback-section .clients-carousel .single-item:hover img {
}
.interior
    .clients-feedback-section
    .clients-carousel
    .single-item
    .hover-title {
    font-family: "DM Serif Text", serif;
    font-size: 16px;
    margin-bottom: 2px;
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    visibility: hidden;
    color: var(--white-color);
    opacity: 0;
    width: 0;
    transition: var(--tran-04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    white-space: nowrap;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 10%);
    cursor: pointer;
}
.interior
    .clients-feedback-section
    .clients-carousel
    .single-item:hover
    .hover-title {
    visibility: visible;
    opacity: 1;
    width: 100%;
    left: 0;
    right: auto;
}
.interior .clients-feedback-section .clients-carousel .slick-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.interior .clients-feedback-section .clients-carousel .slick-dots li {
}
.interior .clients-feedback-section .clients-carousel .slick-dots li button {
    width: 25px;
    height: 5px;
    font-size: 0;
    border: none;
    background-color: var(--dark-color);
    border-radius: 5px;
    transition: var(--tran-03);
}
.interior
    .clients-feedback-section
    .clients-carousel
    .slick-dots
    li.slick-active
    button {
    width: 50px;
    background-color: var(--primary-color);
}

.interior-feedback-carousel .single-item {
    padding: 10px;
}
.interior-feedback-carousel .testimonial-card {
    background-color: var(--white-color);
    box-shadow: 0px 0px 5px rgb(0 0 0 / 10%);
    padding: 25px 20px 25px;
    position: relative;
    z-index: 1;
}
.interior-feedback-carousel .testimonial-card::before {
    content: "";
    position: absolute;
    left: auto;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0;
    background-color: var(--primary-color);
    transition: var(--tran-05);
    z-index: -1;
}
.interior-feedback-carousel .testimonial-card::after {
    content: "";
}
.interior-feedback-carousel .testimonial-card:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}
.interior-feedback-carousel .testimonial-card:hover::after {
}
.interior-feedback-carousel .testimonial-card .paragraph-text {
}
.interior-feedback-carousel .testimonial-card .paragraph-text .desc {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 12px;
    transition: var(--tran-03);
}
.interior-feedback-carousel .testimonial-card .testimonial-author {
    display: flex;
    gap: 18px;
    align-items: center;
}
.interior-feedback-carousel
    .testimonial-card
    .testimonial-author
    .testimonial-image {
    margin: 0;
}
.interior-feedback-carousel
    .testimonial-card
    .testimonial-author
    .testimonial-image
    img {
    width: 60px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--dark-color);
    border-left-color: var(--primary-color);
    border-top-color: var(--primary-color);
    transition: var(--tran-03);
}
.interior-feedback-carousel
    .testimonial-card:hover
    .testimonial-author
    .testimonial-image
    img {
    border-left-color: var(--white-color);
    border-top-color: var(--white-color);
}
.interior-feedback-carousel
    .testimonial-card
    .testimonial-author
    .testimonial-text {
}
.interior-feedback-carousel
    .testimonial-card
    .testimonial-author
    .testimonial-text
    .testimonial-name {
    font-family: "DM Serif Text", serif;
    font-size: 18px;
    margin-bottom: 2px;
    transition: var(--tran-03);
    color: var(--dark-color);
}
.interior-feedback-carousel
    .testimonial-card
    .testimonial-author
    .testimonial-text
    .testimonial-bio {
    font-size: 14px;
    color: var(--text-color);
    transition: var(--tran-03);
}
.interior-feedback-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.interior-feedback-carousel .owl-dots .owl-dot {
    width: 25px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--primary-color);
    transition: var(--tran-04);
}
.interior-feedback-carousel .owl-dots .owl-dot.active {
    background-color: var(--secondary-color);
    width: 50px;
}
.interior-feedback-carousel
    .testimonial-card:hover
    .testimonial-author
    .testimonial-text
    .testimonial-bio,
.interior-feedback-carousel
    .testimonial-card:hover
    .testimonial-author
    .testimonial-text
    .testimonial-name,
.interior-feedback-carousel .testimonial-card:hover .paragraph-text .desc {
    color: var(--white-color);
}
/*=============== Interior Clients Feedback Section Css End ===============*/

/*=============== Iterior Video Gallery Section Css Start ===============*/
.interior .video-gallery-section {
}
.interior .video-gallery-section .video-gallery-carousel {
}
.interior .video-gallery-section .video-gallery-carousel .slick-dots {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin-top: 10px;
}
.interior .video-gallery-section .video-gallery-carousel .slick-dots li {
}
.interior .video-gallery-section .video-gallery-carousel .slick-dots li button {
    font-size: 0;
    width: 25px;
    height: 5px;
    border: none;
    background-color: var(--dark-color);
    border-radius: 5px;
    transition: var(--tran-05);
}
.interior
    .video-gallery-section
    .video-gallery-carousel
    .slick-dots
    li.slick-active
    button {
    width: 50px;
    background-color: var(--primary-color);
}
.interior .video-gallery-carousel .single-item {
    padding: 0 3px;
}
.interior .video-gallery-carousel .single-item .video-wrapper {
    position: relative;
    z-index: 1;
}
.interior .video-gallery-carousel .single-item .video-wrapper .img {
}
.interior .video-gallery-carousel .single-item .video-wrapper img {
    width: 100%;
    aspect-ratio: 1/0.65;
    object-fit: cover;
}
.interior .video-gallery-carousel .single-item .video-wrapper .contents {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px 15px;
    z-index: 2;
    transform: translateY(20px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: var(--tran-05);
}
.interior .video-gallery-carousel .single-item .video-wrapper .contents .title {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: "DM Serif Text", serif;
    color: var(--white-color);
}
.interior .video-gallery-carousel .single-item .video-wrapper .contents .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.interior
    .video-gallery-carousel
    .single-item
    .video-wrapper
    .contents
    .icon
    i {
    font-size: 55px;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    padding-left: 3px;
}
.interior .video-gallery-carousel .single-item:hover .video-wrapper .contents {
    transform: none;
    visibility: visible;
    opacity: 1;
}
.interior .video-gallery-carousel .single-item .video-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: rgb(0 0 0 / 50%);
    z-index: 1;
    transition: var(--tran-05);
    pointer-events: none;
}
.interior .video-gallery-carousel .single-item .video-wrapper:hover::after {
    width: 100%;
}
/*=============== Iterior Video Gallery Section Css End ===============*/

/*=============== Architect Slider Section Css Start ===============*/
body.home {
    font-family: "Barlow Condensed", sans-serif;
}
.home .bottom-wrapper .logo::after {
    background-image: url(../images/icons/heading_bg_1.png);
}
.home .primary-btn {
    font-family: "Barlow Condensed", sans-serif;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
    border: none;
    padding: 8px 24px 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.home .primary-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    height: 100%;
    width: 100%;
    transform: scaleX(0.3);
    transition: var(--tran-04);
    visibility: hidden;
    opacity: 0;
    background-color: var(--secondary-color);
    z-index: -1;
}
.home .primary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.home .primary-btn:hover::before {
    transform: scaleX(1);
    visibility: visible;
    opacity: 1;
}
.home-slider .single-slide {
    position: relative;
    min-height: 650px;
    height: 100vh;
    z-index: 1;
}
.home-slider .single-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 20%,
        rgba(102, 182, 210, 0) 101%
    );
    z-index: -1;
}
.home-slider .single-slide img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 250%;
    height: 250%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    transition: all 25s ease-in-out;
    z-index: -1;
}
.home-slider .single-slide.slick-active img {
    width: 100%;
    height: 100%;
}
.home-slider .slide-contents {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    padding-bottom: 50px;
}
.home-slider .slide-contents .slide-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--white-color);
    max-width: 800px;
    width: 100%;
    margin-bottom: 30px;
    font-family: "Barlow Condensed", sans-serif;
}
.home-slider .slide-contents .slide-desc {
    font-size: 18px;
    font-weight: 300;
    color: var(--white-color);
    max-width: 800px;
    width: 100%;
    margin-bottom: 40px;
    font-family: "Barlow Condensed", sans-serif;
}
.home-slider .slide-contents .primary-btn {
}
.home-slider .slide-arrow {
    position: absolute;
    bottom: 50px;

    border: none;
    background-color: transparent;
    color: var(--white-color);
    width: auto;
    height: 45px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    z-index: 1;
    left: 100px;
    transition: var(--tran-03);
    visibility: visible;
    opacity: 1;
}
.home-slider .slide-arrow span {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}
.home-slider .slide-arrow.next-arrow {
    left: auto;
    right: 100px;
    justify-content: flex-end;
}
.home-slider:hover .slide-arrow.prev-arrow {
    visibility: visible;
    opacity: 1;
}
.home-slider:hover .slide-arrow.next-arrow {
    visibility: visible;
    opacity: 1;
}
.home-slider .slick-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}
.home-slider .slick-dots li {
    margin: 10px 0;
}
.home-slider .slick-dots li button {
    width: 20px;
    height: 42px;
    border: none;
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
}
.home-slider .slick-dots li.slick-active button {
    background-color: var(--primary-color);
}
/*=============== Architect Slider Section Css End ===============*/

/*=============== Architect About Section Css Start ===============*/
.home .section-title {
    font-weight: 600;
    text-transform: uppercase;
}
.home .section-title::before {
    content: attr(data-title);
    position: absolute;
    font-weight: 400;
    color: #868686;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    bottom: calc(100% + 10px);
}
.home .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(100% + 40px);
    width: 42px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.8;
}
.home .section-title.text-center::before {
    left: 50%;
    transform: translateX(-50%);
}
.home .section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
}
.home .desc {
    font-size: 16px;
}
.home .service-list {
    margin-bottom: 20px;
}
.home .service-list li {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 5px;
}
.home .service-list li i {
    padding-right: 8px;
    font-size: 13px;
    color: var(--primary-color);
}
.home .about-section {
    padding: 130px 0 80px;
}
.home .about-section .about-image-wrapper {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
}
.home .about-section .about-image-wrapper .img {
    position: relative;
}
.home .about-section .about-image-wrapper .img img {
    width: 100%;
    aspect-ratio: 1/1.1;
    object-fit: cover;
}
.home .about-section .about-image-wrapper .img img:first-child {
    position: absolute;
    left: -50px;
    top: -50px;
}
.home .about-section .about-image-wrapper .graphic {
}
.home .about-section .about-image-wrapper .graphic::before {
    content: "";
    position: absolute;
    left: -136px;
    top: 0;
    width: 130px;
    height: 300px;
    background-image: radial-gradient(
        var(--primary-color) 2px,
        transparent 2.5px
    );
    background-size: 14px 12px;
    z-index: -1;
    opacity: 0.8;
}
.home .about-section .about-image-wrapper .graphic::after {
    content: "";
    position: absolute;
    left: -75px;
    width: 15px;
    bottom: 0;
    height: 110px;
    background-color: var(--primary-color);
    opacity: 0.8;
}
.home .about-section .sub-heading {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 16px;
}

/*=============== Architect About Section Css End ===============*/

/*=============== Architect Service Section Css Start ===============*/
.home .service-section {
    padding-top: 80px;
}
.home .service-carousel {
}
.service-section .single-item {
    padding: 10px;
}
.home .single-service {
    background-color: var(--white-color);
    text-align: center;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 8%);

    padding: 60px 30px 40px 30px;
    background-image: url(../images/icons/services-bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
}

.single-service {
}
.home .single-service .icon {
    margin: -60px -30px 20px -30px;
}
.home .single-service .icon img {
    width: 100%;
    aspect-ratio: 1/0.7;
    object-fit: cover;
}
.home .single-service .title {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.home .single-service .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
}
.home .single-service .service-link {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--dark-color);
    padding: 6px 0;
    border-bottom: 2px solid var(--primary-color);
    transition: var(--tran-03);
}
.home .single-service .service-link:hover {
    color: var(--primary-color);
}
.home .service-carousel .slick-dots {
    display: flex;
    justify-content: center;
    column-gap: 15px;
    margin: 10px 0 0;
}
.home .service-carousel .slick-dots li {
}
.home .service-carousel .slick-dots li button {
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    font-size: 0;
    opacity: 0.5;
    transition: var(--tran-03);
}
.home .service-carousel .slick-dots li button:hover,
.home .service-carousel .slick-dots li.slick-active button {
    opacity: 1;
}
/*=============== Architect Service Section Css End ===============*/

/*=============== Architect Recent Works Section Css Start ===============*/
.home .recent-works-section {
}
.home .recent-works-section .recent-works {
}
.home .recent-works-section .recent-works .slick-dots {
    display: flex;
    justify-content: center;
    column-gap: 15px;
    margin: 10px 0 30px;
}
.home .recent-works-section .recent-works .slick-dots li {
}
.home .recent-works-section .recent-works .slick-dots li button {
    width: 10px;
    height: 10px;
    border: none;
    background-color: var(--primary-color);
    font-size: 0;
    opacity: 0.5;
    transition: var(--tran-03);
}
.home .recent-works-section .recent-works .slick-dots li.slick-active button {
    opacity: 1;
}
.recent-works .single-work {
    margin: 5px;
}
.recent-works .single-work img {
    width: 100%;
    aspect-ratio: 1/0.7;
    object-fit: cover;
}
.home .single-work {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.home .single-work::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    height: 100%;
    background-color: rgb(0 0 0 / 30%);
    z-index: 0;
    transition: var(--tran-05);
    pointer-events: none;
}
.home .single-work:hover::after {
    visibility: visible;
    opacity: 1;
}
.home .single-work img {
    width: 100%;
    aspect-ratio: 1/0.68;
    object-fit: cover;
}
.home .single-work .contents {
    position: absolute;
    bottom: -50px;
    left: 10px;
    right: 10px;
    z-index: 1;
    background-color: #232323;
    transition: var(--tran-03);
}
.home .single-work .contents {
    bottom: 10px;
}
.home .single-work .contents .title {
    margin: 0;
    padding: 8px 12px;
    font-size: 15px;
    color: var(--white-color);
}
/*=============== Architect Recent Works Section Css End ===============*/

/*=============== Counter Section Css Start ===============*/
.counter-section {
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}
.counter-section .single-counter {
    max-width: 280px;
    background-color: var(--white-color);
    text-align: center;
    padding: 15px;
    transition: var(--tran-04);
}
.counter-section .single-counter:hover {
    background-color: var(--primary-color);
}
.counter-section .single-counter:hover .icon img {
    filter: brightness(0) invert(1);
}
.counter-section .single-counter:hover .counter,
.counter-section .single-counter:hover .item-title {
    color: var(--white-color);
}
.counter-section .single-counter .icon {
    margin-bottom: 10px;
}
.counter-section .single-counter .icon img {
    max-width: 50px;
    transition: var(--tran-04);
}
.counter-section .single-counter .counter {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0;
    font-family: "DM Serif Text", serif;
}
.counter-section .single-counter .item-title {
}
.counter-section .single-counter .item-title::before {
    content: "";
}
/*=============== Counter Section Css End ===============*/

/*=============== MixitUp Section Css Start ===============*/
.controls {
    display: flex;
    justify-content: center;
    column-gap: 25px;
    grid-row-gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.controls button {
    padding: 6px 18px 7px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
    transition: var(--tran-03);
}
.controls button:hover,
.controls button.mixitup-control-active {
    background-color: var(--secondary-color);
}
/*=============== MixitUp Section Css End ===============*/

/*=============== Blog Section Css Start ===============*/
.blog-section {
}
.single-blog {
    position: relative;
    margin-bottom: 60px;
}
.single-blog figure {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}
.single-blog figure::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 40%);
}
.single-blog:hover figure::after {
}
.single-blog figure img {
    width: 100%;
    aspect-ratio: 1/0.68;
    object-fit: cover;
    transition: var(--tran-05);
}
.single-blog .contents {
    position: absolute;
    z-index: 2;
    padding: 15px 25px;
    background-color: #232323;
    color: var(--white-color);
    left: 20px;
    right: 20px;
    top: calc(100% - 60px);
}
.single-blog .contents .blog-meta {
}
.single-blog .contents .blog-meta .category {
    font-size: 14px;
    text-transform: uppercase;
}
.single-blog .contents .blog-meta .category a {
}
.single-blog .contents .item-title {
    font-size: 20px;
    margin: 10px 0;
}
.single-blog .contents .item-exerp {
    font-size: 14px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    display: none;
}
.single-blog .contents .blog-link {
    font-size: 15px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--white-color);
    transition: var(--tran-03);
    display: inline-block;
    padding-bottom: 3px;
    display: none;
}
.single-blog .contents .blog-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
/*=============== Blog Section Css End ===============*/

/*=============== Contact Section Css Start ===============*/
.contact-section {
}
.contact-section .map-area {
}
.contact-section .map-area .single-map {
}
.contact-section .map-area .item-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.contact-section .map-area iframe {
    width: 100%;

    height: auto;
    aspect-ratio: 1/0.8;
    max-height: 450px;
}
.contact-section .form-area {
}
.contact-section .form-area form {
}
.form-control:focus {
    box-shadow: none;
}
.input-label {
    position: relative;
    margin-bottom: 20px;
}
.input-label input {
    height: 50px;
    border-radius: 0;
    border: 1px solid var(--border-color);
    padding-top: 16px;
}
.input-label textarea {
    height: 160px;
    border-radius: 0;
    border: 1px solid var(--border-color);
    resize: none;
    padding-top: 16px;
}
.input-label label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    padding-bottom: 3px;
    left: 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--text-color);
    transition: all 0.2s ease-in-out;
}
.input-label textarea ~ label {
    top: 25px;
}
.input-label textarea:focus ~ label,
.input-label input:focus ~ label {
    top: 6px;
    transform: none;
}
.contacts-wrapper {
    background-color: var(--white-color);
    padding: 35px 25px;
    box-shadow: 0 0 35px rgb(0 0 0 / 6%);
}
.contacts-wrapper .item-title {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 15px;
    padding-bottom: 10px;
    color: var(--primary-color);
    position: relative;
}
.contacts-wrapper .item-title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}
.contacts-wrapper ul.contact-info {
    margin-bottom: 25px;
}
.contacts-wrapper ul.contact-info li {
    display: flex;
    column-gap: 10px;
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 10px;
}
.contacts-wrapper ul.contact-info li .icon {
}
.contacts-wrapper ul.contact-info li .info {
}
.contacts-wrapper ul.contact-info li .info p {
    margin-bottom: 0;
}
.contacts-wrapper ul.contact-info li .info p a {
}
.contacts-wrapper .social {
    display: flex;
    column-gap: 10px;
}
.contacts-wrapper .social li a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 2px solid var(--border-color);
    color: var(--text-color);
    transition: var(--tran-03);
    font-size: 19px;
    line-height: 1;
}
.contacts-wrapper .social li:hover a {
    background-color: var(--primary-color);
    outline-color: var(--primary-color);
    color: var(--white-color);
}
.contacts-wrapper .social li.facebook a {
}
.contacts-wrapper .social li.twitter a {
}
.contacts-wrapper .social li.linkedin a {
}
.contacts-wrapper .social li.youtube a {
}
/*=============== Contact Section Css End ===============*/

/*=============== Page Title Section Css Start ===============*/
.page-title-section {
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
    position: relative;
    z-index: 1;
}
.page-title-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
    z-index: -1;
}
.page-title-section .container {
    height: 100%;
    display: table;
}
.page-title-section .contents-wrapper {
    display: table-cell;
    vertical-align: bottom;
    color: var(--white-color);
}
.page-title-section .page-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.page-title-section .desc {
    color: var(--white-color);
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.page-title-section .breadcrumb {
    align-items: center;
    margin-bottom: 30px;
}
.page-title-section .breadcrumb li {
    padding-right: 8px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    font-weight: 300;
}
.page-title-section .breadcrumb li:not(:last-child)::after {
    content: "\F280";
    font-family: "bootstrap-icons";
    font-size: 11px;
    padding-top: 5px;
}
.page-title-section .breadcrumb li a {
}
.page-title-section .breadcrumb li a:hover {
}
/*=============== Page Title Section Css End ===============*/

/*=============== Single Product Section Css Start ===============*/
.single-product-section {
    padding-top: 55px !important;
}
.list-angle-left {
}
.list-angle-left li {
    display: flex;
    align-items: center;
    column-gap: 8px;
    color: var(--text-color);
    margin-bottom: 8px;
}
.list-angle-left li::before {
    content: "\F285";
    font-family: "bootstrap-icons";
    font-size: 12px;
}
.custom-pagination {
    margin-top: 30px;
}
.custom-pagination .page-list {
}
.custom-pagination .page-list li {
    display: inline-block;
    margin: 0 10px;
}
.custom-pagination .page-list li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    outline: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}
.custom-pagination .page-list li.active a,
.custom-pagination .page-list li:hover a {
    outline-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white-color);
}
/*=============== Single Product Section Css End ===============*/

/*=============== sidebar Css Start ===============*/
.sidebar {
}
.sidebar .single-widget {
    background-color: var(--white-color);
    padding: 25px 20px;
}
.sidebar .single-widget:not(:last-child) {
    margin-bottom: 35px;
}
.sidebar .single-widget .widget-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--dark-color);
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.sidebar .single-widget .widget-title::before {
    content: "";
}
.sidebar .single-widget .categories {
    background-color: var(--lite-white-color);
    border: 1px solid #ddd;
}
.sidebar .single-widget .categories li {
    border-bottom: 1px solid #ddd;
    display: block;
    position: relative;
    z-index: 1;
    transition: var(--tran-05);
}
.sidebar .single-widget .categories li:hover {
    border-color: var(--primary-color);
}
.sidebar .single-widget .categories li:last-child {
    border-bottom: none;
}
.sidebar .single-widget .categories li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: var(--primary-color);
    transition: var(--tran-04);
    z-index: -1;
}
.sidebar .single-widget .categories li::after {
    content: "";
}
.sidebar .single-widget .categories li.active::before,
.sidebar .single-widget .categories li:hover::before {
    width: 100%;
}
.sidebar .single-widget .categories li a {
    padding: 10px 15px;
    display: block;
    font-size: 15px;
    color: var(--text-color);
    transition: var(--tran-03);
}
.sidebar .single-widget .categories li:hover a {
    color: var(--white-color);
}
.sidebar .single-widget.cta-widget {
    background-image: url(../images/gallery/slide1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--white-color);
    position: relative;
}
.sidebar .single-widget.cta-widget .cta-wrapper {
    position: relative;
    z-index: 1;
}
.sidebar .single-widget.cta-widget .cta-wrapper::after {
    content: "";
    position: absolute;
    left: -20px;
    top: -25px;
    bottom: -25px;
    right: -20px;
    background-color: rgb(0 0 0 / 50%);
    z-index: -1;
}
.sidebar .single-widget.cta-widget .cta-wrapper .cta-title {
    font-size: 20px;
    margin-bottom: 15px;
}
.sidebar .single-widget.cta-widget .cta-wrapper .desc {
    color: var(--white-color);
    font-size: 14px;
}
.sidebar .single-widget.cta-widget .cta-wrapper .cta-link {
    display: inline-block;
    padding: 3px 0;
    border-bottom: 1px solid var(--white-color);
    transition: var(--tran-03);
}
.sidebar .single-widget.cta-widget .cta-wrapper .cta-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.sidebar .single-widget .blogs {
}
.sidebar .single-widget .blogs li {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    margin-bottom: 20px;
}
.sidebar .single-widget .blogs li:last-child {
    margin-bottom: 0;
}
.sidebar .single-widget .blogs li figure {
    flex: 0 0 auto;
    width: 80px;
    margin-bottom: 0;
}
.sidebar .single-widget .blogs li figure img {
    width: 100%;
    aspect-ratio: 1/0.7;
    object-fit: cover;
}
.sidebar .single-widget .blogs li .blog-contents {
    flex: 1;
}
.sidebar .single-widget .blogs li .item-title {
    font-size: 16px;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}
.sidebar .single-widget .blogs li .blog-meta {
    font-size: 13px;
    color: var(--text-color);
}
.sidebar .single-widget .blogs li .blog-meta span {
}
.sidebar .single-widget .search {
    position: relative;
}
.sidebar .single-widget .search .search-btn {
    position: absolute;
    right: 1px;
    top: 1px;
    bottom: 1px;
    width: 50px;
    font-size: 18px;
    border: none;
    outline: 1px solid transparent;
    background-color: var(--lite-white-color);
    transition: var(--tran-04);
}
.sidebar .single-widget .search .search-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    outline-color: var(--primary-color);
}
/*=============== sidebar Css End ===============*/

/*=============== Blog Details Css Start ===============*/
.blog-details {
}
.blog-details .blog-head {
}
.blog-details .blog-head figure {
}
.blog-details .blog-head figure img {
}
.blog-details .blog-head .blog-meta {
    margin-bottom: 15px;
}
.blog-details .blog-head .blog-meta ul {
    display: flex;
    flex-wrap: wrap;
    grid-row-gap: 5px;
}
.blog-details .blog-head .blog-meta ul li {
    position: relative;
    padding-right: 14px;
    display: flex;
    column-gap: 12px;
}
.blog-details .blog-head .blog-meta ul li:not(:last-child)::after {
    content: "-";
}
.blog-details .blog-head .blog-meta ul li a {
}
.blog-details .blog-head .blog-meta ul li a:hover {
}
/*=============== Blog Details Css End ===============*/

/*=============== Header Section Css Start ===============*/
/*=============== Header Section Css End ===============*/

/*=============== Header Section Css Start ===============*/
/*=============== Header Section Css End ===============*/
