/* Fonts */

:root {
    --font-default: Open Sans, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    --font-primary: Roboto, sans-serif;
    --font-secondary: Work Sans, sans-serif;
}


/* Colors */

:root {
    --color-default: #364d59;
    --color-primary: #0073bb;
    --color-secondary: #52565e;
}


/* Smooth scroll behavior */

:root {
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

::-webkit-scrollbar-track {
    background-color: #d7d7d7;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #0073bb;
}

::-webkit-scrollbar-thumb {
    border-radius: 100px;
    box-shadow: #fff;
    background-color: #0073bb;
}

body {
    font-family: var(--font-default);
    color: var(--color-default);
    overflow-x: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: #bababa;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

button:focus {
    outline: 0 none;
    box-shadow: none;
}

.btn-custom:focus {
    outline: none;
    box-shadow: none;
}

.btn-custom {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 9px 30px;
    text-align: center;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 600;
    border: 1px solid #0073bb;
    background: transparent;
    border-radius: 0px;
    cursor: pointer;
    color: #0073bb;
    margin-top: 25px;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    will-change: transform;
}

.btn-custom:hover {
    color: #fff;
}

.btn-custom:before,
.btn-custom:after {
    content: "";
    width: 0;
    height: 100%;
    background: #0073bb;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
    z-index: -1;
    opacity: 0.4;
}

.btn-custom:after {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    background: #0073bb;
    opacity: 1;
}

.btn-custom:hover:before,
.btn-custom:hover:after {
    width: 100%;
}

.btn-custom:hover:after {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.modal-header .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    padding-right: 25px;
}


/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/

section {
    padding: 80px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f6f7;
}

.section-header {
    text-align: center;
    padding-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    color: #2e3135;
}

.section-header p {
    margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
    .section-header p {
        max-width: 60%;
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 140px 0 60px 0;
    min-height: 30vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumbs:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
}

.breadcrumbs h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-secondary);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

.breadcrumbs ol a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: underline;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
    content: "/";
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--color-secondary);
    line-height: 0;
}

.scroll-top:hover {
    background: #ffc732;
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    width: 100%;
}

#preloader img {
    margin: auto;
    width: 100%;
    transform: scale(0.4);
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
    z-index: 997;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header .logo img {
    max-height: 4rem;
    margin-left: 20px;
}

.header .logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    font-family: var(--font-primary);
}

.header .logo h1 span {
    color: var(--color-primary);
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

@media (min-width: 1280px) {
    .navbar {
        padding: 0;
        background-color: #ffffffe6;
        box-shadow: 0px 0px 3px #0000007d;
        height: 40px;
    }
    .nav-logo {
        width: 100%;
        height: auto;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 5px;
        padding: 5px;
    }
    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navbar li {
        position: relative;
    }
    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 15px;
        border-left: 1px solid #ac8763;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: var(--font-primary);
        font-size: 12px;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.6);
        text-transform: uppercase;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .navbar a i,
    .navbar a:focus i {
        font-size: 20px;
        line-height: 0;
        margin-left: 5px;
    }
    .navbar .active-li {
        background-color: #0073bb;
        padding: 10px;
    }
    .navbar .active-li a:hover {
        color: #fff !important;
    }
    .navbar .active-li a {
        color: #fff !important;
    }
    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #0073bb;
        border-radius: 70px;
        background-color: transparent;
    }
    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }
    .navbar .dropdown ul li {
        min-width: 200px;
    }
    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--color-default);
        font-weight: 400;
    }
    .navbar .dropdown ul a i {
        font-size: 12px;
    }
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--color-primary);
    }
    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }
    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {
    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}


/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }
    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.8);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-primary);
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        text-transform: uppercase;
        transition: 0.3s;
    }
    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }
    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid #222428;
    }
    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }
    .mobile-nav-show {
        position: relative;
        color: #0073bb;
        font-size: 35px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        padding-right: 10px;
        top: 15px;
    }
    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .navbar {
        right: 0;
    }
    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9996;
    }
}

@media screen and (max-width: 768px) {
    .mobile-navbar {
        background-color: #fff;
    }
    .enq-nav {
        display: block !important;
    }
    .enq-nav i,
    .active-li i {
        font-size: 20px !important;
    }
    .navbar a {
        color: #0073bb;
    }
}


/*--------------------------------------------------------------
# Ovwerview Section
--------------------------------------------------------------*/

.about-image {
    text-align: center;
    position: relative;
}

#about img {
    margin: auto;
    padding-bottom: 15px;
}

.waves-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    float: none;
    margin: 0 auto;
    padding: 20px 0px;
    text-align: center;
    background: #000000ab;
    width: 100%;
}

.about-image .iq-video {
    background: #fff;
    display: inline-block;
    width: 60px;
    cursor: pointer;
    height: 60px;
    text-align: center;
    font-size: 25px;
    color: #0073bb;
    border-radius: 100%;
    line-height: 62px;
    z-index: 9;
    position: relative;
    margin-bottom: 15px;
    float: none;
}

.waves-box h4,
.waves-box h5 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.about-image .iq-waves {
    position: absolute;
    left: 209px;
    top: -12px;
    z-index: 2;
}

.about-image .iq-waves .waves {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(197, 164, 126, 0.5);
    opacity: 0;
    border-radius: 50%;
    background-clip: padding-box;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.overview .content h3 {
    font-size: 36px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 25px;
    position: relative;
}

.overview .content h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    left: 0;
    bottom: 0;
}

.overview .content p {
    font-size: 14px;
}

.overview .highlight {
    font-size: 18px;
    font-weight: 500;
}


/* 
@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
} */

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Highlights Section
--------------------------------------------------------------*/

.highlights {
    border: 1px solid rgba(82, 86, 94, 0.2);
    background: linear-gradient(to right, #00000082 0%, #00000082 100%), url(../img/gallery/irenemalad-banner11.jpg);
    position: relative;
    border-radius: 0;
}

#highlights .highlights li {
    border: 1px solid #0073bb;
    margin: 10px 0px;
    padding: 15px 10px;
    cursor: pointer;
    color: #000;
    font-weight: 500;
    text-align: center;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 20px;
}


/*--------------------------------------------------------------
# Amenities Section
--------------------------------------------------------------*/

.amenities img {
    width: 50%;
    height: auto;
    margin-bottom: 0px;
    transition: all 0.6s;
    cursor: pointer;
}

.amenities img:hover {
    padding: 10px;
    box-shadow: 0 0 15px 0 #cc8f89;
}

.amenities h5 {
    font-size: 14px;
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery .gallery-item {
    padding: 0 !important;
    margin: 0 !important;
}

.gallery .gallery-content {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 11px #ccc;
    border: 1px solid #ccc;
}

.gallery .gallery-content img {
    transition: 0.3s;
}

.gallery .gallery-content .gallery-info {
    opacity: 0;
    position: absolute;
    inset: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
}

.gallery .gallery-content .gallery-info .preview-link {
    position: absolute;
    left: calc(50% - 20px);
    font-size: 26px;
    top: calc(50% - 14px);
    color: #fff;
    transition: 0.3s;
    line-height: 1.2;
}

.gallery .gallery-content .gallery-info .preview-link:hover {
    color: var(--color-primary);
}

.gallery .gallery-content:hover .gallery-info {
    opacity: 1;
}

.gallery .gallery-content:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .gallery .gallery-item {
        padding: 5px !important;
    }
}


/*--------------------------------------------------------------
# Floor Plan Section
--------------------------------------------------------------*/

.floor-plan .first {
    position: relative;
}

.floor-plan .first .image {
    filter: blur(1.5px);
}

.floor-plan .first .overlay2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    height: 0;
    transition: 0.5s ease;
}

.floor-plan .first:hover .overlay2 {
    height: 100%;
}

.floor-plan .first:hover .overlay1 {
    bottom: 0;
    height: 100%;
}

.floor-plan .first .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.floor-plan .first .overlay1 {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 0;
    transition: 0.5s ease;
}

.floor-plan .third {
    position: relative;
}

.floor-plan .third .image {
    filter: blur(1.5px);
}

.floor-plan .third .overlay2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    height: 0;
    transition: 0.5s ease;
}

.floor-plan .third:hover .overlay2 {
    height: 100%;
}

.floor-plan .third:hover .overlay1 {
    bottom: 0;
    height: 100%;
}

.floor-plan .third .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.floor-plan .third .overlay1 {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 0;
    transition: 0.5s ease;
}

.floor-plan .second {
    position: relative;
}

.floor-plan .second .image {
    filter: blur(1.5px);
}

.floor-plan .second .overlay2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    height: 0;
    transition: 0.5s ease;
}

.floor-plan .second:hover .overlay2 {
    height: 100%;
}

.floor-plan .second:hover .overlay1 {
    bottom: 0;
    height: 100%;
}

.floor-plan .second .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.floor-plan .second .overlay1 {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    /*background-color: #008CBA;*/
    overflow: hidden;
    /*width: 50%;*/
    height: 0;
    transition: 0.5s ease;
}

.floor-plan .enq-btn {
    color: #000;
    background: #fff;
    border: 2px solid #fff;
    box-shadow: none;
    padding: 5px 20px;
    font-size: 15px;
}


/*--------------------------------------------------------------
# Configuration Section
--------------------------------------------------------------*/

.configuration {
    background-image: linear-gradient(to right, #0000009a 0%, #0000009a 100%), url(../img/gallery/irenemalad-banner12.jpg);
    background-size: cover;
    background-attachment: fixed;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
}

.configuration-container {
    width: 100%;
}

.config-wrap {
    text-align: center;
    border-top: 10px solid #fff;
    border-bottom: 40px solid #fff;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    padding: 25px 0px;
    margin-bottom: 20px;
    transition: ease all 0.5s;
}

.config-wrap:hover {
    border-color: #d0d0d0;
    box-shadow: 0 10px 8px -6px rgb(0 0 0 / 50%);
    transform: translateY(-10px);
    transition: ease all 0.5s;
    cursor: pointer;
}

.config-wrap h3 {
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.config-line {
    height: 3px;
    background: #d4d4d4;
    width: 50px;
    margin: 0px auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.config-wrap .pricing_btn {
    background: #0073bb;
    border: none;
    font-size: 20px;
    color: #fff;
    width: 75%;
    padding: 7px 0;
    border-radius: 20px;
    margin: 5px 0px;
    font-weight: 600;
    outline: none;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
    background-image: linear-gradient(to right, #00000082 0%, #00000082 100%), url(../img/gallery/irenemalad-banner3.jpg);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 50px 0;
}

.contactus-form {
    background: linear-gradient( 150deg, #73737382 33%, #737373 34%, #23232345 66%, #313131b5 67%);
    font-family: "Raleway", sans-serif;
    text-align: center;
    padding: 10px;
    background-size: auto;
    background-attachment: fixed;
    background-position: bottom;
    border-radius: 5px;
}

.contact-form {
    background-color: #ffffff7a;
    padding: 15px;
    border-radius: 0px;
    text-align: center;
}

.contact-form-left {
    background-color: #ffffff7a;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    padding: 23px 16px;
    border-radius: 0px;
    text-align: center;
}

.contact-form-leftnew {
    background-color: #ffffff;
    padding: 84px 26px;
    border-radius: 5px 0 0 0;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.contact-form-leftnew h3 {
    font-size: 18px;
}

.contact-form .form-icon {
    color: #6d7882;
    background-color: #ffffff;
    font-size: 60px;
    line-height: 80px;
    height: 80px;
    width: 80px;
    margin: -60px auto 10px;
    border-radius: 50%;
}

.contact-form-left .contact-left-head {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #000000;
}

.contact-form-left .img-title {
    display: block;
    color: #000000;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.contact-right-img {
    text-align: center;
    margin: 20px 0;
}

.contact-right-img img {
    width: 60%;
}

.form-input:focus {
    box-shadow: none !important;
    border: 1px solid #0073bb;
}

.input-group-addon {
    color: #fff;
    background-color: #0073bb;
    border-radius: 0px;
    border-color: #0073bb;
    padding: 5px 10px;
}

@media (max-width: 768px) {
    .contact-right-img img {
        width: 70%;
    }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    overflow-x: hidden;
    padding: 0;
}

.hero .carousel {
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
    margin: 0;
    position: relative;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
    transition-duration: 0.4s;
}

.hero .carousel-item::before {
    content: "";
    background-color: #00000082;
    position: absolute;
    inset: 0;
}

.hero .info {
    position: absolute;
    inset: 0;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero .info {
        padding: 0 50px;
    }
}

.hero .info h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    padding-bottom: 10px;
    position: relative;
}

@media (max-width: 768px) {
    .hero .info h2 {
        font-size: 36px;
    }
}

.hero .info p {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
}

.hero .info .btn-get-started {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    transition: 0.5s;
    cursor: pointer;
    margin: 10px;
    color: #fff;
    border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
    background: var(--color-primary);
    border: 3px solid #856838;
}

.hero .info .btn-get-started::after {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 6px solid var(--color-primary);
    position: absolute;
    z-index: -1;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

.hero .info .btn-get-started::before {
    content: "";
    border-radius: 1000px;
    min-width: calc(300px + 12px);
    min-height: calc(32px + 12px);
    border: 6px solid #00ffcb;
    box-shadow: 0 0 60px rgb(0 255 203 / 64%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
}

.hero .carousel-control-prev {
    justify-content: start;
}

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 50px;
    line-height: 0;
    color: rgb(255 255 255);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    font-weight: bold;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

.box-wrapper {
    width: 175px;
    background: #fff;
    border-radius: 4px;
    border-radius: 0;
    display: table;
    position: absolute;
    top: 25%;
    left: -8px;
    z-index: 4;
}

.box-wrapper a {
    padding: 13px 15px;
    line-height: initial;
    margin: 0;
    color: #000;
    display: block;
    border-bottom: 1px solid #666;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.box-wrapper a:hover {
    background: #0073bb;
    color: rgb(255, 255, 255) !important;
    text-decoration: none;
}

.box-wrapper .book-online:hover {
    background: #ffffff;
    color: #0073bb !important;
    text-decoration: none;
}

.box-wrapper .book-online:hover .fa {
    color: #0073bb;
}

.box-wrapper a:hover .fa {
    color: #fff;
}

.box-wrapper .fa,
#about .fa {
    animation: 0.6s ease 0s alternate none infinite running crcle-anim;
    color: #0073bb;
    transition: all 1s ease 0s;
}

.book-online .wifi-gif {
    width: 15%;
    transform: rotate(45deg) !important;
}

.uil.pull-right {
    margin-left: 0.3em;
}

.pull-right {
    float: right !important;
}

@keyframes crcle-anim {
    0% {
        transform: scale3d(0.5, 0.5, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}

@media (max-width: 768px) {
    .box-wrapper {
        position: relative;
        width: 100%;
    }
    .book-online .wifi-gif {
        width: 10%;
        transform: rotate(45deg) !important;
    }
    .header .logo img {
        margin: 0;
        padding: 8px;
    }
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}


/* .faq .faq-list li+li {
    margin-top: 15px;
} */

.uil-map-marker-alt {
    font-size: 20px;
}

.faq .faq-list li {
    padding: 15px;
    background: #000d30;
    border-radius: 4px;
    position: relative;
    color: #fff;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    /* padding: 0px; */
    outline: none;
    cursor: pointer;
    color: #fff;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    color: #fff;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #af740d;
    transition: 0.3s;
}

.faq .faq-list a .faq .faq-list a.collapsed:hover {
    color: #af740d;
}

.faq .faq-list a.collapsed content {
    height: 95px;
    transition: 0.5s;
    padding: 10px px;
    color: #1f3162;
    font-family: "poppins", sans-serif;
    font-weight: 500;
    position: relative;
    background: #ffeecc;
    overflow: hidden;
    line-height: 1.5;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    color: #fff;
    background-size: cover;
    font-size: 14px;
    padding: 80px 0 60px 0;
    position: relative;
}

.footer:before {
    content: "";
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    inset: 0;
}

.footer .footer-content .footer-info {
    margin-bottom: 30px;
}

.footer .disclaimer {
    padding-top: 4px;
    font-size: 13px;
    color: #fff;
}

.footer .disclaimer a {
    color: var(--color-primary);
}

.footer-call {
    display: inline-block;
    position: fixed;
    left: 0px;
    bottom: 0px;
    text-align: center;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
    border-radius: 1px;
    background: #0073bb;
    color: #fff;
    width: 125px;
    opacity: 0.95;
    z-index: 99999;
    font-weight: 600;
    font-size: 15px;
}

.footer-whatsapp {
    display: inline-block;
    position: fixed;
    right: 0px;
    bottom: 0px;
    text-align: center;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 50%);
    border-radius: 1px;
    background: #0073bb;
    color: #fff;
    width: 125px;
    opacity: 0.95;
    z-index: 99999;
    font-weight: 600;
    font-size: 15px;
}

.footer-whatsapp:hover {
    color: #fff;
}

.touch-pont {
    width: 100%;
    display: block;
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    z-index: 99;
    bottom: 0;
    opacity: 0.9;
    box-shadow: 0 0 1px 0 #000000;
    overflow: hidden;
    text-align: center;
}

.touch-pont .col {
    padding: 0;
    border-right: solid 1px #000000;
}

.touch-pont .col .uil {
    font-size: 1.5rem;
}

.touch-pont .col:last-child {
    border: none;
}

.touch-pont .whatsapp {
    color: #25cd5e;
}


/*  */

@media (max-width: 768px) {
    .icons-form {
        display: none;
    }
    .form-add {
        margin: 0 !important;
        justify-content: center !important;
    }
}