/***********************
* Common
***********************/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: none;
    font-style: normal;
    position: relative;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none !important;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
   z-index: 1;
   font-family: "Montserrat", sans-serif;
}
h1 {
    font-size: 40px;
    font-weight: 600 ;
    margin-bottom: 35px;
}
h2 {
    font-size: 38px ;
    font-weight: 600 ;
    margin-bottom: 24px;
}
h3 {
    font-size: 35px;
    font-weight: 600 ;
    margin-bottom: 24px;
}
h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}
h5 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 16px;
}
h6 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 16px;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-24 {
    --bs-gutter-y: 24px;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}
.gutter-x-15{
    --bs-gutter-x: 30px;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible{
    box-shadow: none;
}
ul,ol{
    padding: 0;
    margin: 0;
    list-style: none;
}
#primary{
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.primary-btn {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #1c3f71;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff !important;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none !important;
    overflow: hidden;
    font-size: 15px;
}
.primary-btn .icon , .secoundary-btn i{
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}
.primary-btn:hover , .secoundary-btn:hover{
    transform: scale(1.05);
    border-color: #fff9;
    color: #ffff;
}
.primary-btn:hover .icon , .secoundary-btn:hover i{
    transform: translate(4px);
}
.primary-btn:hover::before , .secoundary-btn:hover::before{
    animation: shine 1.5s ease-out infinite;
}
.primary-btn::before, .secoundary-btn::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
    top: 0;
    left: -100px;
    opacity: 0.6;
}
@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}
.secoundary-btn {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #ffffff0a;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff !important;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #1c3f71;
    outline: none !important;
    overflow: hidden;
    font-size: 15px;
    backdrop-filter: blur(5px);
}
/*************************
* Header start
*************************/
.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
}
.main-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 5px;
    flex-wrap: wrap;
    border-bottom: 1px solid #ffffff75;
    padding: 5px 0;
}
.topbar-inner p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #fff;
}
ul.topbar-right {
    display: flex;
    align-items: center;
    column-gap: 24px;
}
ul.topbar-right li a {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #fff;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
        padding-top: 5px;
}
.header-inner .logo {
    max-width: 180px;
}
.header-left {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    flex: 1;
}
.header-right {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
        flex: 1;
    align-items: end;
}
.mein-menu ul {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.mein-menu ul li {
    position: relative;
    padding: 10px 15px;
}
.mein-menu ul li a{
    color: #fff;
}
.mein-menu ul li::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    height: 2px;
    width: 0;
    transition: all 0.5s;
    background-color: #fff;
}
.mein-menu ul li:hover::after, .mein-menu ul li.current-menu-item::after {
    width: 100%;
}
.header-inner .logo img {
    filter: drop-shadow(0px 0px 10px #ffffff85);
}

section.hero-section {
    position: relative;
        padding: 30vh 0 10vh;
    overflow: hidden;
        height: 100vh;
}
section.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background-color: #00000073;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-content {
    width: 50%;
    position: relative;
    color: #fff;
    z-index: 1;
}
span.hero-eyebrow {
    margin-bottom: 10px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 12px;
    background-color: #ffffff30;
    backdrop-filter: blur(7px);
}
.hero-buttons {
    display: flex;
    column-gap: 20px;
    align-items: center;
    margin-top: 20px;
}
.about-section {
    padding: 100px 0;
    position: relative;
}
.about-shape {
    position: absolute;
    right: 30px;
    bottom: -70px;
    opacity: 0.15;
}
.heading-box {
    margin-bottom: 30px;
}
.heading-box h2 {
    margin-bottom: 0;
}
.about-left {
    padding-right: 60px;
    position: relative;
        height: 100%;
}
.about-slider div{
    height: 100%;
}
.about-slider-item {
    border-radius: 20px;
    overflow: hidden;
}
.about-slider-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.about-slider-item:hover img {
    transform: scale(1.1);
}
.about-left .about-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.about-left .about-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.about-left .about-image:hover img {transform: scale(1.1);}
.about-left .about-image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.about-left .about-image:hover::after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}
.about-image-two {
    position: absolute;
    bottom: 0;
    width: 80%;
    right: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #fff;
    z-index: 1;
}
.about-image-two img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.about-image-two:hover img {
    transform: scale(1.1);
}
.about-image-two::after {
        content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.about-image-two:hover::after{
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}
.sub-heading {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    background-color: #00557b21;
}
.sub-heading img {
    max-width: 14px;
}
.about-right {
    padding-left: 40px;
    position: sticky;
    top: 140px;
}
.about-right ul li {margin-bottom: 8px;padding-left: 30px;position: relative;font-size: 18px;}
.about-right ul li::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point.svg);
    background-size: 20px;
}
.about-right ul {
    margin-bottom: 24px;
}
.project-details-section {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
        height: 100vh;
}
.project-section {
    padding-bottom: 100px;
}
.project-image {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.project-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.project-details {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1;
    width: calc(100% - 60px);
}
.project-details h3 {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ffffff99;
    font-size: 28px;
    color: #fff;
}
.project-details-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    row-gap: 35px;
    color: #fff;
}
.project-details-item {
    width: 30%;
}
.project-details-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.project-details-item p {
    margin-bottom: 0;
}
.project-details-section::after {
    content: "'";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: linear-gradient(0deg, rgb(0 0 0 / 52%) 0%, rgba(0, 0, 0, 0) 100%);
}
.project-logo {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 300px;
    z-index: 1;
}
.usp-section {
    padding: 60px 0;
    background-color: #00557b2e;
    border-radius: 30px;
    position: relative;
}
.usp-shape {
    position: absolute;
    bottom: -10px;
    opacity: 0.15;
    max-width: 80px;
    left: 10px;
}
.usp-section .hading-box {
    padding-right: 60px;
    position: sticky;
    top: 150px;
}
.usp-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.usp-right ul li {
    margin-bottom: 10px;
    position: relative;
    font-size: 20px;
    padding: 6px 15px;
    padding-left: 38px;
    border-radius: 8px;
    background-color: #00557b21;
    display: inline-block;
}
.usp-right ul li::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 10px;
    height: 20px;
    width: 20px;
    background-image: url(../img/point.svg);
    background-size: 20px;
}
.usp-right ul li strong {
    color: #00557b;
}
.usp-right ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.blog-section {
    padding-bottom: 100px;
}
.blog-box h4 a {
    color: #000;
}
.blog-image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.blog-box .blog-image {
    margin-bottom: 15px;
}
.blog-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.blog-image:hover img {
    transform: scale(1.1);
}
.blog-image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.blog-image:hover::after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}
.blog-meta {
    margin-bottom: 15px;
}
.blog-meta ul {
    display: flex;
    align-items: center;
    column-gap: 35px;
    flex-wrap: wrap;
    row-gap: 8px;
}
.blog-meta ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.blog-meta ul li i, .blog-meta ul li strong {
    color: #00557b;
}
.blog-box h4 {
    margin-bottom: 12px;
}
.blog-box h4:hover a{
    color: #00557b;
}
.blog-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #00557b;
    display: flex;
    column-gap: 20px;
}
.blog-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.blog-item .blog-image {
    width: 310px;
    flex-shrink: 0;
    height: 100%;
}
.blog-details h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.blog-details h4 a {
    color: #000;
}
.blog-details h4 a:hover {
    color: #00557b;
}
.blog-details p {
    display: -webkit-box;
    -webkit-line-clamp: 3;     /* kitni lines dikhani hain */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-left {
    position: sticky;
    top: 140px;
}
.testimonial-box {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #00557b;
    background-color: #00557b26;
    position: relative;
        margin: 0 15px;
}
.retting-box ul {
    display: flex;
    margin-bottom: 19px;
    column-gap: 4px;
    color: #1c3f71;
}
.testimonial-box .icon {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.3;
}
.testimonial-box .icon img {
    width: 100px;
}
.testimonial-lower {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-top: 24px;
}
.testimonial-lower img {
    border-radius: 100%;
    border: 2px solid #fff;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}
.testimonial-lower h4 {
    margin-bottom: 0;
    font-size: 20px;
}
.testimonial-box p {
    font-size: 16px;
    font-weight: 500;
}
.testimonial-section {
    padding-bottom: 100px ;
}
.testimonial-section .heading-box {
    margin-bottom: 0;
}
.testimonial-custom-btn {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.testimonial-custom-btn button.slick-arrow {
    background-color: #1c3f71;
    padding: 10px;
    height: 50px;
    width: 50px;
}
.testimonial-custom-btn button.slick-arrow svg {
    fill: #fff;
}
.testimonial-custom-btn button.ts-prev-btn.slick-arrow {
    transform: scaleX(-1);
}
.heading-outer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.cta-section {
    padding-bottom: 80px;
}
.cta-inner {
    padding: 50px 50px;
    border-radius: 20px;
    background-image: url(../img/cta-image.jpg);
    color: #fff;
    background-color: #00557b87;
    background-blend-mode: color-burn;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cta-inner .hero-buttons {
    justify-content: center;
    margin-top: 30px;
}
.cta-outer {
    display: flex;
    column-gap: 20px;
}
.cta-outer {
    display: flex;
    column-gap: 20px;
}
.cta-right-box img {
    max-width: 200px;
    margin-bottom: 12px;
    height: auto !important;
    object-fit: contain;
}
.cta-right-box h4 {
    margin-bottom: 12px;
    font-weight: 500;
    color: #ffbe4e;
}
.cta-right-box {
    background-image: url(../img/background-1.jpg);
    background-position: center;
    background-size: cover;
    padding: 20px;
    width: 530px;
    flex-shrink: 0;
    border-radius: 20px;
    color: #fff;
    display: flex;
    column-gap: 20px;
    align-items: center;
}
footer {
    padding-top: 50px;
    color: #d89f4c;
    background-image: url(../img/background-1.jpg);
    background-position: center;
    background-size: cover;
}
.footer-about {
    padding-right: 30px;
}
.footer-logo {
    margin-bottom: 20px;
    max-width: 200px;
}
.footer-link {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
}
.footer-contact {
    max-width: 300px;
}
.footer-widget ul li {
    margin-bottom: 10px;
}
.footer-widget ul li a {
    color: #d89f4c;
    font-weight: 500;
    position: relative;
}
.footer-widget h4 {
    color: #d89f4c;
}
.footer-widget ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    transition: all 0.5s;
    background-color: #d89f4c;
}
.footer-widget ul li a:hover::after {
    width: 100%;
}
.footer-contact h4 {
    color: #d89f4c;
}
.footer-contact ul li a {
    display: flex;
    column-gap: 12px;
    font-weight: 500;
    color: #d89f4c;
        align-items: center;
}
.footer-contact ul li {
    margin-bottom: 10px;
}
.footer-contact ul li a span {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #d89f4c;
    background-color: #fff;
    flex-shrink: 0;
}
.footer-lower {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px dashed #d89f4c;
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-lower p {
    margin-bottom: 0;
    color: #d89f4c;
}
.footer-lower p a {
    color: #d89f4c;
}
.footer-lower ul.social-links li a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #fff;
    position: relative;
    color: #d89f4c;
}
.footer-lower ul.social-links li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #d89f4c;
    height: 95%;
    width: 95%;
    border-radius: 100%;
    transition: all 0.5s;
}
.footer-lower ul.social-links li a:hover::after {
    transform: translate(-50%, -50%) scale(1);
}
.footer-lower ul.social-links li a i {
    position: relative;
    z-index: 1;
}
.footer-lower ul.social-links li a:hover {
    color: #fff;
}
ul.social-links {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.subscribe-outer {
    position: relative;
}
.subscribe-outer .form-control {
    box-shadow: none;
    border: 1px solid #fff;
}
.subscribe-outer .submit-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    padding: 0;
    font-size: 0;
    width: 40px;
    background-color: #1c3f71;
    background-image: url(../img/paper-plane.svg);
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #d89f4c;
}
.subscribe-outer .submit-btn:hover{
    background-color: #025478;
    border-color: #fff;
}
.footer-widget.subscribe {
    max-width: 270px;
}
.landscape-section {
    padding: 100px 0;
}
.landscape-section.indoor{
    padding-top: 0;
}
.activity-left {
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    position: sticky;
    top: 50px;
}
.activity-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.activity-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.activity-image:hover img {
    transform: scale(1.1);
}
.activity-image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.activity-image:hover::after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}
.activity-image-outer {
    display: flex;
    column-gap: 24px;
}
.activity-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.activity-item {
    padding: 20px;
    border-radius: 10px;
    transition: all 0.5s;
    background-color: #00557b3b;
    text-align: center;
}
.activity-item .icon {
    height: 50px;
    width: 50px;
    display: flex;
    margin: auto;
    align-items: center;
    margin-bottom: 12px;
    justify-content: center;
    border-radius: 100%;
    background-color: #00557b;
    transition: all 0.5s;
}
.activity-item .icon img {
    max-width: 30px;
    filter: brightness(50) invert(1);
    transition: all 0.5s;
}
.activity-item h3 {
    margin-bottom: 0;
    font-size: 18px;
}
.activity-item:hover {
    background-color: #00557b;
    color: #fff;
    transform: translateY(-10px);
}
.activity-item:hover .icon {
    background-color: #fff;
}
.activity-item:hover .icon img {
    filter: none;
}
.landscape-section .activity-left {
    padding-left: 50px;
    padding-right: 0;
}
.secoundary-btn i {
    width: auto;
    height: auto;
}
.gallery-outer {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 24px;
}
.gallery-item:nth-child(1) {
    grid-column: span 4;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px 3px #030c1047;
    transition: all 0.5s;
}
.gallery-item .icon {
    height: 40px;
    width: 40px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s;
    transform: translateY(-50px);
}
.gallery-item:hover .icon{
    opacity: 1;
    transform: translateY(0px);
}
.gallery-item .icon img {
    max-width: 24px;
}
.gallery-item> img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.gallery-item:hover > img {
    transform: scale(1.1);
}
.gallery-item:nth-child(2) {
    grid-column: span 3;
}
.gallery-item:nth-child(4) {
    grid-column: span 3;
    grid-row: span 2;
}
.gallery-item:nth-child(3) {
    grid-column: span 2;
}
.gallery-item:nth-child(5) {
    grid-column: span 2;
}
.gallery-item:nth-child(6) {
    grid-column: span 4;
}
.gallery-item:nth-child(7) {
    grid-column: span 3;
}
.gallery-section {
    padding-bottom: 100px;
}
.specifi-left {
    padding-right: 100px;
    position: sticky;
    top: 50px;
}
.specifi-section {
    padding-bottom: 100px;
    overflow: hidden;
}
.specifi-right {
}
.specifi-item {
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 16px;
    background-color: #00557b3b;
}
.specifi-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.specifi-item p {
    margin-bottom: 0;
}
.specifi-item:nth-child(odd) {
    margin-right: 100px;
}
.specifi-item:nth-child(even) {
    margin-left: 100px;
}
#wa-btn{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:white;
  font-size:22px;
  padding:14px;
  border-radius:50%;
  cursor:pointer;
  z-index:999;
      height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
}
#wa-popup{
  position:fixed;
  bottom:80px;
  right:20px;
  width:260px;
  background:white;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.2);
  display:none;
  z-index:999;
}
.wa-header{
  background:#25D366;
  color:white;
  padding:10px;
  border-radius:10px 10px 0 0;
  display:flex;
  justify-content:space-between;
}
#wa-popup p{
  padding:15px;
  font-size:14px;
}
#wa-popup a{
  display:block;
  background:#25D366;
  color:white;
  text-align:center;
  margin:10px;
  padding:10px;
  border-radius:6px;
  text-decoration:none;
}
#wa-close{cursor:pointer;}
.brosher-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
    transform: translateY(-100vh);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}
.brosher-popup.expanded {
    transform: translateY(0);
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}
.brosher-content {
    width: 100%;
    max-width: 991px;
    background-color: #fff;
    text-align: center;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all 0.5s;
    margin: auto;
    display: flex;
    border-radius: 20px;
    margin-top: 30px;
    overflow: hidden;
}
.brosher-popup.expanded .brosher-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s;
}
.brosher-image {
    width: 50%;
    flex-shrink: 0;
}
.brosher-wraper {
    width: 50%;
    padding: 30px;
}
.brosher-wraper .logo {
    max-width: 150px;
    margin: auto;
    margin-bottom: 15px;
}
.brosher-popup-overlay{
        position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000090;
    opacity: 0.9;
    height: 100%;
    width: 100%;
}
button.close-popup {
    position: absolute;
    right: 20px;
    height: 30px;
    width: 30px;
    top: 40px;
    box-shadow: none;
    padding: 20px;
    background-color: #015577;
    border-radius: 100%;
}
button.close-popup span {
    height: 3px;
    display: inline-block;
    width: 24px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.5s;
}
button.close-popup span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.brosher-content-form .wpcf7-form-control-wrap {
    margin-bottom: 20px;
}
.brosher-content-form .wpcf7-form-control-wrap input {
    padding: 10px 15px;
    line-height: normal;
    height: auto;
    color: #000;
}
.brosher-content-form .wpcf7-form-control-wrap textarea {
    height: 100px;
}
.brosher-content-form  .wpcf7-submit {
    background-color: #035479;
}
.brosher-content-form .wpcf7-submit:hover {
    background-color: #035479;
}
.brosher-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.page-header-section {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}
.page-header-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(270deg, rgba(64, 13, 62, 0) 4.92%, #000000c2 95.27%);
}
.page-header-content {
    position: relative;
    z-index: 1;
}
.page-header-content {
    position: relative;
    z-index: 1;
}
.page-header-content h1 {
    margin-bottom: 10px;
}
.page-header-content .heading-box{
    margin-bottom: 10px;
}
.custom-breadcrumb {
    display: flex;
    align-items: baseline;
    column-gap: 10px;
}
.custom-breadcrumb a {
    color: #fff;
}
.contact-info-section {
    padding: 100px 0;
}
.contact-info-box {
    margin: 0 20px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1c3f71;
    height: 100%;
    text-align: center;
    transition: all 0.5s;
        background-color: #1c3f7138;
}
.contact-info-box .icon {
    height: 60px;
    width: 60px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1c3f71;
    transition: all 0.5s;
}
.contact-info-box .icon img {
    max-width: 35px;
}
.contact-info-box:hover {
    transform: translateY(-10px);
    background-color: #1c3f71;
    color: #fff;
}
.contact-info-box:hover .icon {
    background-color: #fff;
}
.contact-info-box:hover .icon img {
    filter: brightness(0);
}
.contact-info-box .icon img {
    transition: all 0.5s;
}
.contact-info-box h4 {
    margin-bottom: 12px;
}
.contact-info-box a {
    color: #000;
}
.contact-info-box:hover a {
    color: #fff;
}
.contact-form-section {
    padding-bottom: 100px;
}
.contact-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.contact-image {
    border-radius: 20px;
    overflow: hidden;
    height: calc(100% - 100px);
}
.contact-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.contact-image:hover img {
    transform: scale(1.1);
}
.contact-right ul.social-media {
    padding: 20px;
    border-radius: 12px;
    background-color: #1c3f7138;
    justify-content: center;
        display: flex;
    column-gap: 15px;
}
.contact-right ul.social-media li a{
        height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #1c3f71 ;
    color: #fff;
    position: relative;
}
.contact-form-inner {
    padding: 35px;
    border-radius: 20px;
    background-color: #1c3f7138;
    height: 100%;
}
.form-group p {
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin-bottom: 24px;
}
.form-group p .form-control {
    height: auto;
    border-radius: 10px;
}
.form-group p .form-control:focus{
    border-color: #d1d5db !important;
}
.form-group p textarea.form-control {
    height: 150px;
}
.contact-submit {
    background-color: #1c3f71  !important;
    border-radius: 12px !important;
}
.floor-tab-content-inner,
.floor-right-tab{
  display:none;
}
.floor-tab-content-inner.active,
.floor-right-tab.active{
  display:block;
}
.floor-tab-btn {
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: center;
    background-color: #fff;
    border-radius: 20px;
    width: fit-content;
    margin: auto;
    margin-bottom: 20px;
    padding: 10px 20px;
    box-shadow: 0px 0px 36px 16px #384d7517;
}
.floor-tab-btn p {
    margin-bottom: 0;
    font-size: 20px;
    padding: 8px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s;
}
.floor-tab-btn p.active, .floor-tab-btn p:hover {
    background-color: #00557b;
    color: #fff;
}
.floor-plan-section {
    padding-bottom: 100px ;
    position: relative;
}
.floor-plan-shape {
    position: absolute;
    bottom: -8px;
    left: 320px;
    opacity: 0.2;
}
.floor-slider-box {
    padding: 0 15px;
}
.floor-left-tab p {
    padding: 10px 20px;
    background-color: #00557b21;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s;
    box-shadow: 0px 0px 36px 16px #384d7517;
}
.floor-left-tab p:last-child {
    margin-bottom: 0;
}
.floor-left-tab p.active, .floor-left-tab p:hover {
    color: #fff;
    background-color: #00557b;
}
.floor-plan-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 36px 16px #384d7517;
}
.ameni-section {
    padding: 100px 0;
}
.ameni-image {
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}
.ameni-box {
    text-align: center;
    margin: 0 25px;
}
.ameni-box h4 {
    margin-bottom: 0;
    font-size: 20px;
}
.ameni-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.ameni-box:hover .ameni-image img {
    transform: scale(1.2);
}

ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
ul.slick-dots li button {
    padding: 0;
    font-size: 0;
    height: 12px;
    width: 12px;
    border-radius: 12px;
    background-color: #1c3f71;
    transition: all 0.5s;
}
ul.slick-dots li.slick-active button {
    width: 25px;
}
.ameni-grid-outer {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    margin-top: 50px;
}
.ameni-grid-item {
    padding: 15px;
    height: 100%;
    text-align: center;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}
.ameni-grid-item .icon {
    width: 60px;
    margin: auto;
    margin-bottom: 12px;
}
.ameni-grid-item p {
    margin-bottom: 0;
    font-size: 14px;
}
.ameni-grid-item:nth-child(8), .ameni-grid-item:nth-child(16),.ameni-grid-item:nth-child(24),.ameni-grid-item:nth-child(32),.ameni-grid-item:nth-child(40) {
    border-right: 0;
}
.ameni-grid-item:nth-last-child(-n+8) {
    border-bottom: none;
}
.heading-box-outer {
    display: flex;
    align-items: center;
    column-gap: 30px;
    row-gap: 15px;
    justify-content: space-between;
}
.usp-right-item {
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    text-align: center;
    transition: all 0.5s;
}
.usp-right-item img {
    max-width: 60px;
    margin-bottom: 15px;
}
.usp-right-item p {
    margin-bottom: 0;
}
.usp-right-item:hover {
    background-color: #1c3f71;
    transform: translateY(-10px);
    color: #fff;
}
.usp-right-item:hover img {
    filter: brightness(100) invert(1);
}
.usp-right-item img {
    transition: all 0.5s;
}
.gallery-section.two {
    padding: 100px 0;
}
.gallery-item:nth-child(8), .gallery-item:nth-child(11), .gallery-item:nth-child(14), .gallery-item:nth-child(22), .gallery-item:nth-child(26), .gallery-item:nth-child(28), .gallery-item:nth-child(29), .gallery-item:nth-child(30),.gallery-item:nth-child(32), .gallery-item:nth-child(35),.gallery-item:nth-child(36),.gallery-item:nth-child(37), .gallery-item:nth-child(38), .gallery-item:nth-child(39) {
    grid-column: span 3;
}
.gallery-item:nth-child(9), .gallery-item:nth-child(12), .gallery-item:nth-child(20),  .gallery-item:nth-child(16), .gallery-item:nth-child(23), .gallery-item:nth-child(25), .gallery-item:nth-child(33) {
    grid-column: span 4;
}
.gallery-item:nth-child(10), .gallery-item:nth-child(15), .gallery-item:nth-child(17), .gallery-item:nth-child(21), .gallery-item:nth-child(24), .gallery-item:nth-child(27), .gallery-item:nth-child(34) {
    grid-column: span 2;
}
.gallery-item:nth-child(4), .gallery-item:nth-child(13), .gallery-item:nth-child(19), .gallery-item:nth-child(18), .gallery-item:nth-child(31) {
    grid-column: span 3;
    grid-row: span 2;
}

.value-section {
    padding-top: 100px;
    background-position: top center;
    background-size: cover;
    position: relative;
}
.value-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(90deg, #0000007d 0%, #00283829 100%);
}
.value-section .hading-box {
    color: #fff;
    position: relative;
    width: 50%;
}
.value-box {
    border-radius: 20px;
    padding: 30px 50px;
    background-color: #fff;
    transition: all 0.5s;
        box-shadow: 0px 10px 50px 20px #384d751c;
    height: 100%;
}
.value-box:hover {
    transform: translateY(-10px);
}
.value-box h4 {
    margin-bottom: 20px;
    color: #1c3f71;
}
.value-box .icon {
    height: 60px;
    width: 60px;
    margin-bottom: 24px;
    border-radius: 100%;
    background-color: #1c3f71;
        display: flex;
    align-items: center;
    justify-content: center;
}
.value-box .icon img {
    filter: brightness(50) invert(1);
    transition: all 0.5s;
}
.value-box:hover .icon img {
    transform: scaleX(-1);
}
.value-lower {
    transform: translateY(100px);
        margin-top: -100px;
}
.value-box p {
    margin-bottom: 0;
}
.team-section {
    padding: 170px 0 100px;
}
.team-box {
    cursor: pointer;
}
.team-image {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}
.team-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.team-box:hover .team-image img {transform: scale(1.1);}
.team-title h4 {
    margin-bottom: 5px;
    font-size: 22px;
}
.team-details-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
    transform: scale(0);
    background-color: rgba(0, 0, 0, 0.70);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
}
.team-details-popup.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.team-details-togelar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.team-details-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
        z-index: 2;
}
.team-details-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(45deg);
}
.team-details-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.team-detail-content {
    max-width: 1024px;
    margin: auto;
    display: flex;
    padding: 35px;
    border-radius: 30px;
    backdrop-filter: blur(3px);
    background-color: #ffffff;
    column-gap: 40px;
}
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-color: #1c3f71;
}
.loading-container img {
    margin-top: 25vh;
}
.loading-container {
    height: 100%;
    width: 545px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    row-gap: 20px;
    column-gap: 120px;
    flex-direction: column;
}
.loading-image {
    width: 127px;
    height: 95px;
    display: flex;
    align-items: center;
}
.loading-container-inner {
    display: flex;
    align-items: center;
    column-gap: 50px;
    padding-bottom: 15px;
    margin-top: calc( 47vh  - 55px);
}
.floor-slider-image {
    border: 1px solid #00557b;
    border-radius: 20px;
    overflow: hidden;
}
.loading-image img {
    filter: brightness(5000);
}
.floor-slider-details {
    padding-right: 100px;
        margin-top: 100px;
}
.loading-image {
    position: relative;
}
.loading-image:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
    height: 100%;
    width: 1px;
    background-color: #fff;
}
.loading-container p {
    color: #d89f4c;
    font-size: 20px;
    margin-top: auto;
    margin-bottom: 40px;
}
.about-right ul li strong {
    color: #1c3f71;
}
.sticky-header--cloned.sticky-fixed {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s;
    visibility: visible;
    backdrop-filter: blur(10px);
    background-color: rgb(0 0 0 / 47%);
}
.sticky-fixed {
    box-shadow: 0 7px 50px 0 rgba(0, 0, 0, .1);
    position: fixed  !important;
    transform: translateY(0);
    z-index: 999;
    transition: all 1.5s;
}
.sticky-header--cloned {
    position: fixed !important;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
}
.gallery-tab {
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: center;
    background-color: #fff;
    border-radius: 30px;
    width: fit-content;
    margin: auto;
    margin-bottom: 20px;
    padding: 10px 20px;
    box-shadow: 0px 0px 36px 16px #384d7517;
}
.gallery-tab p {
    margin-bottom: 0;
    font-size: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s;
}
.gallery-tab p.active, .gallery-tab p:hover {
    background-color: #1c3f71;
    color: #fff;
}
.tab-content-inner {
    display: none;
}
.tab-content-inner.active {
    display: block;
}
.location-section {
    padding: 160px 0 100px;
}
.location-item {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 15px;
    border: 1px solid #1c3f7178;
    padding-left: 45px;
    border-radius: 8px;
}
.location-item p {
    margin-bottom: 0;
    font-size: 20px;
}
.location-item::after {
    content: "";
    position: absolute;
    top: 21px;
    left: 13px;
    height: 20px;
    width: 20px;
    background-image: url(../img/point.svg);
    background-size: 20px;
}
.location-item:last-child {
    margin-bottom: 0;
}
.mobile-nav-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
 }
 .mobile-nav-wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
 }
.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1c3f7196;
    opacity: 0.9;
}
 .mobile-nav-content {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    background-color: #1c3f71;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
}
 .mobile-nav-wrapper.expanded .mobile-nav-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
 }
 .mobile-nav-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 42px;
    right: 15px;
 }
 .mobile-nav-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
 }
 .mobile-nav-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
 }
ul.mobile-menu {
    margin: 0;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 10px;
 }
ul.mobile-menu li {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
        position: relative;
 }
ul.mobile-menu li:last-child {
    border: none;
 }
 .locked {
    position: fixed;
    width: 100%;
    top: 0;
 }
ul.mobile-menu li a {
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.5s;
    padding: 0 25px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }
ul.mobile-menu .menu-item-has-children ul {
    margin: 0;
    padding: 0;
    display: none;
    border-top: 1px solid #d5cdcd;
 }
ul.mobile-menu .menu-item-has-children ul li a {
    padding-left: 35px;
 }
ul.mobile-menu .menu-item-has-children button.expanded {
    transform: translateY(-50%)rotate(90deg);
 }
ul.mobile-menu .menu-item-has-children button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)rotate(-0deg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: none;
    transition: all 0.3s;
    line-height: 0px;
        background-color: #fff !important;
    padding: 0 !important;
    color: #000;
 }
 button.ast-menu-toggle {
    display: none !important;
}
 ul.mobile-menu li svg {
    margin: 0 !important;
    width: 20px !important;
}
.location-right {
    border-radius: 20px;
    overflow: hidden;
}
.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.video-wrapper video#heroVideo {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.footer-contact ul li.call {
    display: flex;
    column-gap: 12px;
    font-weight: 500;
    color: #d89f4c;
    align-items: center;
}
.footer-contact ul li.call span {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #d89f4c;
    background-color: #fff;
    flex-shrink: 0;
}
.footer-contact ul li.call p {
    margin-bottom: 0;
}
.ameni-tab {
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: center;
    background-color: #fff;
    border-radius: 30px;
    width: fit-content;
    margin: auto;
    margin-top: 50px;
    padding: 10px 20px;
    box-shadow: 0px 0px 36px 16px #384d7517;
}
.ameni-tab p {
    margin-bottom: 0;
    font-size: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s;
}
.ameni-tab p.active, .ameni-tab p:hover {
    background-color: #1c3f71;
    color: #fff;
}
.gallery-section-two {
    padding: 100px 0;
}
.gallery-outer-two {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
}
.gallery-item-two {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px 3px #030c1047;
    transition: all 0.5s;
    aspect-ratio: 1 / 1;
}
.gallery-item-two .icon {
    height: 40px;
    width: 40px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s;
    transform: translateY(-50px);
}
.gallery-item-two .icon img {
    max-width: 24px;
}
.gallery-item-two:hover .icon{
    opacity: 1;
    transform: translateY(0px);
}
.gallery-item-two> img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.gallery-item-two:hover > img {
    transform: scale(1.1);
}