* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background:#0E0E0E;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
}
/* Desktop Banner - Show on desktop and tablet */
.service-banner-section-one .desktop-banner {
    display: block;
}
/* Mobile Banner - Hide by default */
.service-banner-section-one .mobile-banner {
    display: none;
}
.service-list-section-one {
    background-color: #0E0E0E;
    padding-bottom: 0;
}
.service-apartment-section-image img{
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: 300ms;
}
.service-list-section-one .container > h3{
    color: #F6B643;
    font-family: "Tw Cen MT Std";
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.service-list-section-one .container > h2{
    color: #FFF;
    font-family: "Tw Cen MT Std";
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.service-apartment-section {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #0E0E0E;
    padding: 150px 0 90px 0;
}
.service-apartment-section h2 {
    color: #fff;
    font-family: "Tw Cen MT Std";
    font-size: 108px;
    font-style: normal;
    font-weight: 700;
    line-height: 96px;
    text-transform: capitalize;
}
.service-apartment-section h2 span {
    color: #F6B643;
    display: block;
}
.service-apartment-section .service-apartment-section-image {
    margin: 62px 0 76px 0;
    overflow: hidden;
    border-radius: 20px;
}
.service-apartment-section .service-apartment-section-content p {
    color: #949494;
    font-family: "Tw Cen MT Std";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}
.service-apartment-section .service-apartment-section-content {
    width: 100%;
}
.service-banner-section-one {
    position: relative;
    height: auto;
    background-color: #0E0E0E;
}
.service-banner-section-one .service-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.service-banner-section-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section-one .container p a{
    color: #F6B643;
}
/* Slider container */
.slider-container {
    position: relative;
    margin-top: 9.4rem;
}
.slide {
    position: sticky;
    top: 100px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 13rem 0;
    z-index: 1;
    height: auto;
}
.slide-content {
    width: 100%;
    background: rgba(70, 70, 70, 0.95);
    border-radius: 20px;
    padding: 5.5rem 7.4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    transition: transform 0.3s ease;
}
.slide-content:hover {
    transform: translateY(-5px);
}
.slide-text {
    padding: 1rem 0;
}
.slide-number {
    color: #F6B643;
    font-family: "Tw Cen MT Std";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.9px;
    text-transform: uppercase;
}
.slide-number::after {
    content: '';
    width: 60px;
    height: 2px;
    margin-left: 15px;
    display: inline-block;
}
.total-service-list-page{
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}
.current-service-list-page{
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1.5px;
}
.slide-title {
    font-family: "Tw Cen MT Std";
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 47px;
    margin-bottom: 37px;
}
.slide-description {
    font-family: "Tw Cen MT Std";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}
.slide-image {
    position: relative;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
}
.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.6s ease;
}
.slide-image:hover img {
    transform: scale(1.05);
}
.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #f39c12;
    border-bottom: 2px solid #f39c12;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}
.service-apartment-section-image:hover img{
    transform: scale(1.02);
}
html {
    scroll-behavior: smooth;
}
.arrow-indicator{
    position: fixed;
    top: 50%;
    right: 18%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #f6b643;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    animation: bounceY 1.5s infinite ease-in-out;
} 
  /* When the section is visible */
.arrow-indicator.visible {
    opacity: 1;
}
  /* Bounce animation */
  @keyframes bounceY {
    0%, 100% {
      transform: translateY(-50%) translateY(0);
    }
    50% {
      transform: translateY(-50%) translateY(10px);
    }
  }
/* Our Team Css */
.page-template-template-ourteampage #page{
    background: #0E0E0E;
}
.team-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4.7%;
    padding-bottom: 5.5%;
    box-sizing: border-box;
    gap: 40px;
}
.team-left {
    flex: 1;
    max-width: 540px;
}
.team-right {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    position: relative;
    min-width: 500px;
}
/* Typography */
.team-title {
    color: #FFF;
    font-family: "Tw Cen MT Std SemiBold";
    font-size: 108px;
    font-weight: 700;
    line-height: 83%;
}
.team-desc {
    color: #949494;
    font-family: "Tw Cen MT Std";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 171.429%;
    margin-top: 51px;
}
.profile-name {
    color: #FFF;
    font-family: "Tw Cen MT Std SemiBold";
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: 111.111%;
}
.profile-title {
    color: #F6B643;
    font-family: "Tw Cen MT Std";
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 142.857%;
}
/* Profile Stack */
.profile-stack {
    width: 718px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper.main-profile-swiper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.main-profile-image {
    width: 570px;
    height: 570px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
.main-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.profile-info {
    margin-top: 30px;
    text-align: right;
    width: fit-content;
    text-align: start;
    margin-left: auto;
    padding-right: 16%;
}
/* Curved Avatars */
.curved-avatars {
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 270px;
    height: 477px;
    pointer-events: none;
    z-index: 10;
}
.curved-avatar:not(:first-child) {
    margin-top: 20px;
}
.avatar-0 { top: 0; left: 0; }
.avatar-1 { top: 18.5%; left: 1%; }
.avatar-2 { top: 41%; left:12%; }
.avatar-3 { top: 60.5%; left:36%; }
.avatar-4 { bottom: 10px; right: 0px; }
.curved-avatar {
    width: 87px;
    height: 87px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    position: absolute;
    pointer-events: auto;
}
.curved-avatar.active {
    z-index: 10;
    border: 2px solid #F6B643;
    padding: 2px;
}
.curved-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.footer-copy-home a,.contact-section-one-phone-wrapper a,.footer-copy a {
    transition: all 0.3s ease-in-out;
}
.footer-copy-home a:hover,.contact-section-one-phone-wrapper a:hover,.footer-copy a:hover {
    color: #F6B643;
}

/* ============================================ */
/* RESPONSIVE MEDIA QUERIES */
/* ============================================ */
@media (max-width:2420px) {
    .arrow-indicator {
       right: 12%;
    }
}
@media (max-width:2210px) {
    .arrow-indicator {
        right: 12%;
    }
}
@media (max-width:2050px) {
    .arrow-indicator {
        right: 9%;
    }
}
@media (max-width:1920px) {
    .arrow-indicator {
        right: 6%;
    }
}
@media (max-width:1790px) {
    .arrow-indicator {
        right: 4%;
    }
}
@media (max-width: 1681px) {
    .arrow-indicator {
        right: 3%;
    }
  .container {
        max-width: 80%;
    }
    .profile-stack {
        width: 696px;
    }
    .team-main {
        gap: 8%;
    }
    .service-list-section-one .container > h3 {
        font-size: 20px;
    }
    .service-list-section-one .container > h2 {
        font-size: 58px;
    }
    .slide-title {
        font-size: 46px;
    }
    .slide-description {
        font-size: 20px;
    }
    .slide-image {
        height: 400px;
    }
    .slide-content {
        padding: 5.2rem 7.2rem;
    }
    .service-apartment-section .service-apartment-section-content p {
        font-size: 19px;
    }
    .service-apartment-section h2 {
        font-size: 96px;
    }
    .team-desc {
		font-size: 21px;
	}
}
@media (max-width: 1530px) {
    .profile-stack {
        width: 665px;
    }
    .main-profile-image {
        width: 540px;
        height: 540px;
    }
    .slide {
        top: 80px;
    }
    .team-desc {
        font-size: 19px;
        margin-top: 41px;
    }
    .team-left {
        max-width: 490px;
    }
    .service-apartment-section {
        padding: 130px 0 80px 0;
    }
    .service-apartment-section h2 {
        font-size: 92px;
        line-height: 86px;
    }
    .service-apartment-section .service-apartment-section-content p {
        font-size: 18px;
    }
    .service-apartment-section .service-apartment-section-image {
        margin: 55px 0 70px 0;
    }
    .slide {
        padding: 0 0 10rem 0;
    }
    .slide-content {
        padding: 4rem 5rem;
        gap: 3.5rem;
    }
    .slider-container {
        margin-top: 8.4rem;
    }
    .slide-text {
        padding: 0.8rem 0;
    }
    .slide-title {
        font-size: 40px;
        margin-top: 42px;
        margin-bottom: 32px;
    }
    .slide-image {
        height: 360px;
    }
    .slide-description {
        font-size: 18px;
        line-height: 30px;
    }
    .team-main {
        gap: 8%;
        padding-top: 7% !important;
        padding-bottom: 8% !important;
    }
    .team-title {
        font-size: 96px;
    }
    .profile-stack {
        width: 610px;
    }
    .profile-name {
        font-size: 24px;
    }
    .profile-title {
        font-size: 19px;
    }
    .profile-info {
        padding-right: 14%;
    }
    .curved-avatar {
        width: 80px;
        height: 80px;
    }
    .curved-avatars {
        width: 240px;
        height: 440px;
    }
    .avatar-3
    {
        top: 59.5%;
    }
    .main-profile-image {
        width: 490px;
        height: 490px;
    }
    .inner-page-logo img{
        height:76px;
    }
    .inner-page-logo {
        padding: 30px 42px;
    }
    .innerpage-menu-wrapper {
        padding: 30px 42px;
    }
    .service-list-section-one .container > h2 {
        font-size: 54px;
    }
    .service-list-section-one .container > h3 {
        font-size: 19px;
    }
}
@media (max-width: 1366px) {
    .service-list-section-one {
        padding-bottom: 20px;
    }
    .service-list-section-one .container > h2 {
        font-size: 52px;
    }
    .service-apartment-section {
        padding: 120px 0 80px 0;
    }
    .service-apartment-section h2 {
        font-size: 84px;
        line-height: 76px;
    }
    .service-apartment-section .service-apartment-section-image {
        margin: 50px 0 60px 0;
    }
    .slider-container {
        margin-top: 8rem;
    }
    .slide {
        padding: 0 0 9rem 0;
    }
    .slide-content {
        padding: 3.5rem 4.5rem;
        gap: 3rem;
    }
    .slide-text {
        padding: 0.8rem 0;
    }
    .slide-title {
        font-size: 36px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .slide-image {
        height: 340px;
    }
    .team-main {
        gap: 25px;
        padding-top: 6.5% !important;
        padding-bottom: 7% !important;
    }
    .team-title {
        font-size: 84px;
    }
    .team-desc {
        font-size: 17px;
        margin-top: 31px;
    }
    .team-left {
        max-width: 438px;
    }
    .profile-stack {
        width: 540px;
    }
    .main-profile-image {
        width: 440px;
        height: 440px;
    }
    .curved-avatars {
        width: 215px;
        height: 410px;
    }
    .curved-avatar {
        width: 70px;
        height: 70px;
    }
    .profile-name {
        font-size: 22px;
    }
    .profile-title {
        font-size: 18px;
    }
    .profile-info {
        padding-right: 12%;
    }
    .avatar-3 {
        top: 60.5%;
    }
    .inner-page-logo img{
        height:70px;
    }
    .inner-page-logo {
        padding: 28px 40px;
    }
    .innerpage-menu-wrapper {
        padding: 28px 40px;
    }
    #menu-main-menu li:not(:last-child) {
        margin-bottom: 10px;
    }
    .contact-section {
        gap: 32px;
    }
    .menu-content {
        padding-top: 6%;
        padding-bottom: 7%;
    }
    .bottom-link {
        font-size: 16px;
    }
    .menu-bottom {
        gap: 20px;
    }
    .bottom-links {
        gap: 20px;
    }
    .menu-right {
        gap: 25px;
    }
}
@media (max-width: 1250px) {
    .team-main {
        gap: 8%;
    }
    .slide-title {
        font-size: 38px;
    }
    .slide-description {
        font-size: 18px;
        line-height: 30px;
    }
}
@media (max-width: 1156px) {
    .service-list-section-one {
        padding-bottom: 15px;
    }
    .service-list-section-one .container > h2 {
        font-size: 48px;
    }
    .service-apartment-section {
        padding: 100px 0 70px 0;
    }
    .service-apartment-section h2 {
        font-size: 72px;
        line-height: 66px;
    }
    .service-apartment-section .service-apartment-section-image {
        margin: 45px 0 55px 0;
    }
    .service-apartment-section .service-apartment-section-content p {
        font-size: 20px;
        line-height: 34px;
    }
    .slider-container {
        margin-top: 7rem;
    }
    .slide {
        padding: 0 0 10rem 0;
    }
    .slide-content {
        padding: 4rem 4.5rem;
        gap: 3rem;
    }
    .slide-text {
        padding: 0.7rem 0;
    }
    .slide-title {
        font-size: 38px;
        margin-top: 35px;
        margin-bottom: 25px;
    }
    .slide-description {
        font-size: 19px;
        line-height: 32px;
    }
    .slide-image {
        height: 340px;
    }
    .current-service-list-page {
        font-size: 28px;
    }
    .team-main {
        gap: 26px;
    }
    .team-title {
        font-size: 72px;
    }
    .team-desc {
        font-size: 18px;
    }
    .profile-stack {
        width: 490px;
    }
    .main-profile-image {
        width: 390px;
        height: 390px;
    }
    .profile-name {
        font-size: 22px;
    }
    .profile-title {
        font-size: 18px;
    }
    .profile-info {
        padding-right: 6%;
    }
    .curved-avatars {
        width: 220px;
        height: 380px;
    }
    .curved-avatar {
        width: 66px;
        height: 66px;
    }
}
@media (max-width: 1024px) {
    .contact-section {
        gap: 40px;
    }
    .service-list-section-one {
        padding-bottom: 10px;
    }
    .service-list-section-one .container > h3 {
        font-size: 19px;
    }
    .service-list-section-one .container > h2 {
        font-size: 42px;
    }
    .service-apartment-section {
        padding: 80px 0 60px 0;
    }
    .service-apartment-section h2 {
        font-size: 58px;
        line-height: 56px;
    }
    .service-apartment-section .service-apartment-section-image {
        margin: 40px 0 50px 0;
    }
    .service-apartment-section .service-apartment-section-content p {
        font-size: 18px;
        line-height: 30px;
    }
    .slider-container {
        margin-top: 6rem;
    }
    .slide {
        top: 80px;
        padding: 0 0 9rem 0;
    }
    .slide-content {
        padding: 3rem 2.5rem;
        gap: 2rem;
        border-radius: 15px;
    }
    .slide-text {
        padding: 0.6rem 0;
    }
    .slide-title {
        font-size: 30px;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    .slide-description {
        font-size: 18px;
        line-height: 30px;
    }
    .slide-image {
        height: 310px;
    }
    .current-service-list-page {
        font-size: 26px;
    }
    .total-service-list-page {
        font-size: 17px;
    }
    .team-main {
        flex-direction: column;
        padding-top: 12%;
        padding-bottom: 8%;
        gap: 40px;
    }
    .team-left {
        text-align: center;
        max-width: none;
    }
    .team-right {
        justify-content: center;
        min-width: auto;
    }
    .team-title {
        font-size: 64px;
    }
    .team-desc {
        font-size: 18px;
        max-width: 600px;
        margin-top: 26px;
    }
    .profile-stack {
        width: 500px;
    }
    .profile-info {
        padding-right: 8%;
    }
    .main-profile-image {
        width: 400px;
        height: 400px;
    }
    .curved-avatars {
        width: 210px;
        height: 360px;
        left: 0px;
    }
    .curved-avatar {
        width: 65px;
        height: 65px;
    }
    .inner-page-logo {
        padding: 28px 36px;
    }
    .innerpage-menu-wrapper {
        padding: 28px 36px;
    }
    .team-main {
        padding-top: 12.5% !important;
        padding-bottom: 9% !important;
    }
}
@media (max-width: 820px) {
    .container {
        max-width: 86%;
    }
    .arrow-indicator {
        right: 0%;
        z-index: 0;
    }
    .service-list-section-one {
        padding-bottom: 8px;
    }
    .service-list-section-one .container > h3 {
        font-size: 16px;
    }
    .service-list-section-one .container > h2 {
        font-size: 36px;
    }
    .service-apartment-section {
        padding: 70px 0 50px 0;
    }
    .service-apartment-section h2 {
        font-size: 50px;
        line-height: 48px;
    }
    .service-apartment-section .service-apartment-section-image {
        margin: 35px 0 45px 0;
    }
    .service-apartment-section .service-apartment-section-content {
        max-width: 100%;
    }
    .service-apartment-section .service-apartment-section-content p {
        font-size: 16px;
        line-height: 30px;
    }
    .slider-container {
        margin-top: 5rem;
    }
    .slide {
        top: 60px;
        padding: 0 0 5.5rem 0;
    }
    .slide-content {
        padding: 2rem 2.3rem;
        gap: 2rem;
        border-radius: 12px;
    }
    .slide-text {
        padding: 0.5rem 0;
    }
    .slide-title {
        font-size: 24px;
        margin-top: 18px;
        margin-bottom: 14px;
    }
    .slide-description {
        font-size: 16px;
        line-height: 24px;
    }
    .slide-image {
        height: 240px;
    }
    .slide-number {
        font-size: 15px;
    }
    .current-service-list-page {
        font-size: 20px;
    }
    .total-service-list-page {
        font-size: 16px;
    }
    .team-main {
        padding-bottom: 80px;
        padding-top: 100px;
        gap: 40px;
    }
    .team-title {
        font-size: 56px;
    }
    .team-desc {
        font-size: 16px;
    }
    .profile-name {
        font-size: 20px;
    }
    .profile-title {
        font-size: 16px;
        line-height: 26px;
    }
    .profile-stack {
        width: 450px;
    }
    .main-profile-image {
        width: 350px;
        height: 350px;
    }
    .curved-avatars {
        width: 210px;
        height: 330px;
        left: 0px;
    }
    .avatar-3 {
        top: 59.8%;
    }
    .profile-info {
        padding-right: 2%;
    }
    .curved-avatar {
        width: 65px;
        height: 65px;
    }
    .page-template-template-aboutpage .container, .single-post .container, .page .container, .archive .container, .search .container, .error404 .container {
        max-width: 85%;
    }
    .team-main {
        padding-top: 15% !important;
        padding-bottom: 11% !important;
    }
    .inner-page-logo img {
        height: 64px;
    }
    .inner-page-logo {
        padding: 28px 30px;
    }
    .innerpage-menu-wrapper {
        padding: 28px 30px;
    }
    .innerpage-menu-wrapper {
        top: 25px !important;
    }
}
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 25px;
    }
    .service-banner-section-one .desktop-banner {
        display: none;
    }
    .service-banner-section-one .mobile-banner {
        display: block;
    }
    .service-list-section-one {
        padding-bottom: 5px;
    }
    .service-list-section-one .container > h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .service-list-section-one .container > h2 {
        font-size: 32px;
    }
    .service-apartment-section {
        padding: 50px 0 35px 0;
    }
    .service-apartment-section h2 {
        font-size: 42px;
        line-height: 40px;
    }
    .service-apartment-section .service-apartment-section-image {
        margin: 25px 0 35px 0;
        height: 240px;
    }
    .service-apartment-section .service-apartment-section-content p {
        font-size: 16px;
        line-height: 26px;
    }
    .slider-container {
        margin-top: 2rem;
    }
    .slide {
        top: 25px;
        height: auto;
        padding: 1.5rem 0;
    }
    .slide-content{
        min-height:600px;
    }
    .slide-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1.5rem;
        border-radius: 10px;
    }
    .slide-text {
        padding: 0.3rem 0;
        text-align: start;
    }
    .slide-title {
        font-size: 28px;
        margin-top: 15px;
        margin-bottom: 12px;
    }
    .slide-description {
        font-size: 16px;
        line-height: 26px;
    }
    .slide-image {
        height: 260px;
        order: -1;
    }
    .slide-number {
        font-size: 14px;
    }
    .slide-number::after {
        width: 40px;
        margin-left: 10px;
    }
    .current-service-list-page {
        font-size: 22px;
        letter-spacing: -1px;
    }
    .total-service-list-page {
        font-size: 14px;
    }
    .menu-wrapper {
        padding: 35px 25px;
    }
    .team-main {
        padding-top: 106px !important;
        padding-bottom: 60px !important;
    }
    .profile-info {
        padding-right: 0;
        margin-top: 15px;
    }
    .team-title {
        font-size: 48px;
    }
    .team-desc {
        font-size: 15px;
    }
    .profile-name {
        font-size: 20px;
    }
    .profile-title {
        font-size: 16px;
        line-height: 24px;
    }
    .profile-stack {
        width: 400px;
        flex-direction: column;
        gap: 50px;
    }
    .avatar-1 {
        top: 17%;
    }
    .main-profile-image {
        width: 310px;
        height: 310px;
        margin: 0 auto;
    }
    .curved-avatars{
        max-width: 350px;
        height: auto;
        top: 0;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto;
        position: unset;
        flex-wrap: wrap;
    }
    .curved-avatar {
        width: 58px;
        height: 58px;
        position: unset;
        margin-top: 0 !important;
    }
    .swiper.main-profile-swiper{
        width: 100%;
    }
    .profile-info{
        margin-right: auto;
        text-align: center;
    }
    .page-template-template-aboutpage .container, .single-post .container, .page .container, .archive .container, .search .container, .error404 .container {
        max-width: 100%;
    }
    .innerpage-menu-wrapper {
        top: 0px !important;
    }
    .inner-page-logo img {
        height: 58px;
    }
    .inner-page-logo {
        padding: 24px 26px;
    }
    .innerpage-menu-wrapper {
        padding: 24px 26px;
    }
    .innerpage-menu-wrapper .hamburger {
        top: 14px;
    }
    .contact-section {
        gap: 20px;
    }
    .arrow-indicator{
        display: none;
        visibility: hidden;
    }
}
@media (max-width: 480px) {
    .slide-content {
        min-height: 470px;
    }
    .service-list-section-one {
        padding-bottom: 5px;
    }
    .service-list-section-one .container > h2 {
        font-size: 28px;
    }
    .service-apartment-section {
        padding: 40px 0 30px 0;
    }
    .service-apartment-section h2 {
        font-size: 36px;
        line-height: 34px;
    }
    .service-apartment-section .service-apartment-section-image {
        margin: 20px 0 30px 0;
        height: 160px;
    }
    .service-apartment-section-image img {
        border-radius: 15px;
    }    
    .service-apartment-section .service-apartment-section-image{
        border-radius: 15px;
    }
    .slider-container {
        margin-top: 1rem;
    }
    .slide {
        padding-bottom: 2rem;
        padding-top: 0;
    }
    .slide-content {
        padding: 1.5rem 1rem;
        gap: 1.2rem;
        border-radius: 8px;
    }
    .slide-text {
        padding: 0.2rem 0;
    }
    .slide-title {
        font-size: 24px;
        margin-top: 8px;
        margin-bottom: 5px;
    }
    .slide-description {
        font-size: 15px;
        line-height: 24px;
    }
    .slide-image {
        height: 230px;
    }
    .current-service-list-page {
        font-size: 20px;
    }
    .team-main {
        gap: 40px;
    }
    .team-right{
        min-width: 100%;
        max-width: 100%;
    }
    .team-title {
        font-size: 36px;
    }
    .team-desc {
        font-size: 14px;
        margin-top: 14px;
    }
    .profile-stack {
        width: 300px;
    }
    .main-profile-image {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    .profile-stack {
        max-width: 330px;
        width: 100%;
    }
    .profile-stack {
        gap: 40px;
    }
    .slide {
        top: 15px;
    }
    .menu-content {
		padding-top: 10%;
		padding-bottom: 7%;
	}
    .menu-wrapper {
		padding: 35px 35px;
	}
}
@media (max-width: 380px) {
    .main-profile-image {
        max-width: 270px;
        height: 270px;
        width: 100%;
    }
    .curved-avatars{
        justify-content: center;
        gap: 4%;
        row-gap: 10px;
    }
    .profile-stack {
        gap: 30px;
    }
    .curved-avatar {
        width: 50px;
        height: 50px;
    }
    .slide-content {
        min-height: 505px;
    }
}