:root {
    --white: #FFF;
    --black: #000;
    --dark: #1E1E1E;
    --gray: rgba(1, 1, 1, 0.6);
    --lite: rgba(255, 255, 255, 0.6);
    --primary: #002347;
    --secondary: #fdc632;
}

html {
    font-size: 62.5%;
}

body {
    height: 100%;
    font-weight: 400;
    line-height: 1.2;
    font-family: 'Inter', 'Open Sans', sans-serif;
    background: #121212;
    color: #f0f0f0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    will-change: width, height;
}

p {
    font-size: 1.6rem;
    line-height: 1.45;
}

a {
    text-decoration: none;
}

.my-50 {
    margin: 100px auto;
}

.mt-50 {
    margin: 50px 0px;
}

.border-dashed {
    border-top: 2px dashed #737373;
    border-bottom: 2px dashed #737373;
}

.page_heading {
    font-size: 90px;
    font-weight: 600;
    text-align: center;
}

.other_information .text {
    font-size: 16px;
    line-height: 1.8;
}

.paralax_text {
    /* height: 600px; */
    padding: 0px;
    background: #fff;
}

.paralax_image {
    padding: 0px;
    height: 600px;
}

.js-title {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 100px;
    font-weight: bold;
}

.js-title:nth-child(1) {
    color: #1dffff;
}

.js-title:nth-child(2) {
    color: #ffc514;
    mix-blend-mode: color;
}

/* ==== Navbar Style Start ==== */
.logo {
    top: 22px;
    left: 25px;
    z-index: 11;
    position: absolute;
}

.logo a {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.nav-icon {
    position: absolute;
    top: 28px;
    right: 20px;
}

.hamburger-menu {
    position: absolute;
    top: 1rem;
    right: 2rem;
    z-index: 10;
    cursor: pointer;
}

.fixed {
    position: fixed;
}

.menu-bar1 {
    width: 3.5rem;
    height: 0.2rem;
    background-color: #fff;
    margin: 0.8rem auto;
    transition: 0.4s;
}

.menu-bar2 {
    width: 3rem;
    height: 0.2rem;
    background-color: #fff;
    margin: 0.8rem auto;
    transition: 0.4s;
}

.menu-bar3 {
    width: 2.5rem;
    height: 0.2rem;
    background-color: #fff;
    margin: 0.8rem auto;
    transition: 0.1s ease all;
}

.hamburger-menu:hover .menu-bar1 {
    width: 3.5rem;
}

.hamburger-menu:hover .menu-bar2 {
    width: 2.5rem;
}

.hamburger-menu:hover .menu-bar3 {
    width: 3.5rem;
}


.active .menu-bar1 {
    width: 3.5rem;
    transform: rotate(-45deg) translate(-0.7rem, 0.8rem);
}

.active .menu-bar2 {
    opacity: 0;
}

.active .menu-bar3 {
    width: 3.5rem;
    transform: rotate(45deg) translate(-0.6rem, -0.8rem);
}

.nav-header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 25px;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    background: #121212;
    padding: 0;
    z-index: 3;
    display: none;
    height: 100vh;
    animation: navbarhide;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.navShow {
    width: 100%;
    display: block;
    transform: translateY(0%);
    animation: navbarshow;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    top: 0%;
    left: 0%;
}

@keyframes navbarshow {
    from {
        opacity: 0;
        transform: translateY(-30%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

@keyframes navbarhide {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.nav-menu__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: center;
    padding: 200px 0 50px;
}

.container_animation {
    opacity: 0;
    animation: navbartext;
    animation-duration: 0.8s;
    animation-delay: 0.25s;
    animation-fill-mode: forwards;
}

@keyframes navbartext {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.nav-menu:after {
    content: '';
    position: absolute;
    background: url(../img/nav-footer-logo.svg) no-repeat right bottom;
    width: 278px;
    height: 236px;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.menu-items {
    flex: 1 0 25%;
}

.menu-items:last-of-type {
    flex: 2 0 50%;
}

.menu-items>ul>li {
    display: block;
    margin-bottom: 10px;
}

.menu-items>ul>li>a {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 45px;
    font-size: 4.5rem;
    line-height: 54px;
    line-height: 5.4rem;
    font-family: var(--heading-font);
}

.menu-items>ul>li>a:hover {
    color: #02C686;
}

.menu-items>ul>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
    padding-left: 15px;
}

.menu-items>ul>ul li {
    flex: 0 0 48%;
    margin-bottom: 10px;
    list-style-type: disc;
    line-height: 25px;
}

.menu-items>ul>ul li a:hover {
    color: #02C686;
}

.industry_list ul ul li {
    flex: 0 0 100%;
}

.menu-items>ul>ul li::marker {
    color: #6E6E6E;
}

.menu-items>ul>ul li a {
    color: #6E6E6E;
    font-weight: 500;
    font-size: 18px;
    font-size: 1.8rem;
}

.nav_btm_part {
    display: flex;
    flex-direction: row;
    border-top: 1px solid #2A2A2A;
    padding: 40px 0;
    max-width: 1000px;
    align-items: center;
}

.nav_btm_part span {
    font-weight: 500;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 17px;
    color: #6E6E6E;
    margin-left: 8%;
}

.nav_btm_part span a {
    color: #6E6E6E;
    z-index: 11;
}

.nav_btm_part span a:hover {
    color: #ffffff;
}

.nav_btm_part span img {
    margin-right: 10px;
}

/* ====== RESPONSIVE NAV MENU STYLE START ====== */

.small_device_menu {
    display: none;
}

.large_device_menu {
    display: block;
}

#menu ul li a {
    text-transform: initial;
}

.mm-listitem:after {
    inset-inline-start: 10px;
}

.mm-menu a,
.mm-menu a:active,
.mm-menu a:hover,
.mm-menu a:link,
.mm-menu a:visited {
    font-size: 1.6rem;
    font-weight: 500;
}

/* ====== RESPONSIVE NAV MENU STYLE END ====== */


/* Booking form start*/

.section-center {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search_container {
    max-width: 80%;
    margin: 0 auto;
}

#booking {
    font-family: 'Source Sans Pro', sans-serif;
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
}

.booking-form {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(60, 64, 101, 0.1);
}

.booking-form .form-header {
    padding: 10px 10px;
    height: 110px;
    line-height: 110px;
    text-align: center;
}

.booking-form .form-header h2 {
    margin: 0;
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
    color: #3c404a;
}

.booking-form .form-group {
    position: relative;
    height: 110px;
    padding: 15px 10px;
    margin-bottom: 0px;
}

.booking-form .form-control {
    font-family: 'Alegreya', serif;
    background-color: transparent;
    border-radius: 0px;
    border: none;
    height: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    font-size: 22px;
    color: #3c404a;
    font-weight: 700;
}

.booking-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.booking-form select.form-control+.select-arrow {
    position: absolute;
    right: 0px;
    bottom: 20px;
    width: 32px;
    line-height: 32px;
    height: 32px;
    text-align: center;
    pointer-events: none;
    color: #818390;
    font-size: 12px;
}

.booking-form select.form-control+.select-arrow:after {
    content: '\279C';
    display: block;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.booking-form .form-label {
    color: #818390;
    display: block;
    font-weight: 400;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin-bottom: 0px;
}

.booking-form .form-btn {
    padding: 15px 10px;
    height: 110px;
}

.booking-form .submit-btn {
    background: #121212;
    color: #fff;
    border: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    height: 80px;
    width: 100%;
}

/* Booking form end */

/* image galary section start*/
.horr-hover-slider {
    --skew: 60px;
    --gap: 10px;
    --skew-img: calc(var(--skew) + var(--skew) + var(--gap));
    display: flex;
    min-height: 100vh;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    /* Links. */
    /* Images. */
    /* Label. */
    /* Link heading used in mobile view */
}

.horr-hover-slider-link {
    display: block;
    flex: 1 1 auto;
    width: 25%;
    opacity: 0.4;
    transition: width 0.5s cubic-bezier(0.3, 0.5, 0.2, 1), opacity 0.3s ease-in-out;
    /* First link. */
    /* Last link. */
    /* All links but the first and last. */
}

.horr-hover-slider-link:hover {
    width: 100%;
    opacity: 1;
}

.horr-hover-slider-link:first-of-type {
    -webkit-clip-path: polygon(0 0, 0% 100%, calc(100% - var(--skew)) 100%, calc(100% + var(--skew)) 0);
    clip-path: polygon(0 0, 0% 100%, calc(100% - var(--skew)) 100%, calc(100% + var(--skew)) 0);
}

.horr-hover-slider-link:first-of-type>img {
    -webkit-clip-path: polygon(0 100%, 0 0, calc(100% - (var(--gap) * 0.5)) 0, calc(100% - var(--skew-img)) 100%);
    clip-path: polygon(0 100%, 0 0, calc(100% - (var(--gap) * 0.5)) 0, calc(100% - var(--skew-img)) 100%);
}

.horr-hover-slider-link:last-of-type {
    -webkit-clip-path: polygon(var(--skew) 0, calc(var(--skew) * -1) 100%, 100% 100%, 100% 0);
    clip-path: polygon(var(--skew) 0, calc(var(--skew) * -1) 100%, 100% 100%, 100% 0);
}

.horr-hover-slider-link:last-of-type>img {
    -webkit-clip-path: polygon(var(--gap) 100%, var(--skew-img) 0, 100% 0, 100% 100%);
    clip-path: polygon(var(--gap) 100%, var(--skew-img) 0, 100% 0, 100% 100%);
}

.horr-hover-slider-link:not(:first-of-type):not(:last-of-type) {
    -webkit-clip-path: polygon(var(--skew) 0, calc(var(--skew) * -1) 100%, calc(100% - var(--skew)) 100%, calc(100% + var(--skew)) 0);
    clip-path: polygon(var(--skew) 0, calc(var(--skew) * -1) 100%, calc(100% - var(--skew)) 100%, calc(100% + var(--skew)) 0);
}

.horr-hover-slider-link:not(:first-of-type):not(:last-of-type)>img {
    -webkit-clip-path: polygon(var(--gap) 100%, var(--skew-img) 0, calc(100% - var(--gap)) 0, calc(100% - var(--skew-img)) 100%);
    clip-path: polygon(var(--gap) 100%, var(--skew-img) 0, calc(100% - var(--gap)) 0, calc(100% - var(--skew-img)) 100%);
}

.horr-hover-slider-link img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: calc(100% + var(--skew) + var(--skew));
    max-width: calc(100% + var(--skew) + var(--skew));
    margin-left: calc(var(--skew) * -1);
    /* Fixes artifacts in safari. */
    transform: translate3d(0, 0, 0);
}

.horr-hover-slider-label {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    pointer-events: none;
    font-size: 4vw;
    z-index: 1;
}

.horr-hover-slider-label>span {
    display: inline-block;
    min-width: 20px;
    opacity: 0;
    transform: translateX(25px);
    transition: opacity 0.7s cubic-bezier(0.3, 1, 0.1, 1), transform 0.6s cubic-bezier(0.3, 1, 0.1, 1);
}

.horr-hover-slider-label>.show {
    transform: translateX(0);
    opacity: 1;
}

.horr-hover-slider-link-heading {
    display: none;
    color: #fff;
    text-decoration: none;
}

.horr-hover-slider-link-heading:hover,
.horr-hover-slider-link-heading:focus {
    text-decoration: underline;
}

/* image galary section end*/


/***************************
               FOOTER
****************************/
footer {
    background-color: #000;
    border-top: 5px solid #ffc514;
    font-family: "p22-underground", sans-serif;
    width: 100%;
}

footer p,
footer address {
    color: #f2f2f2;
    line-height: 3rem;
    font-size: 1.6rem;
}

footer .fa-copyright {
    color: #f2f2f2;
}

footer a {
    color: #f2f2f2;
    text-decoration: none;
}

footer a:hover {
    color: #ffc514;
}

footer h1 {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 15px;
}

footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 2rem 0 0 0 !important;
    width: 100%;
}

footer .row img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    padding: 0 15px;
    transition: transform 0.3s ease;
}

footer .row img:hover {
    transform: scale(1.05);
}

.footer_text {
    color: transparent;
}

/* Enhanced responsive design */
@media screen and (max-width: 992px) {
    footer .row {
        justify-content: center;
        text-align: center;
    }
    
    footer .row img {
        margin: 0 auto 2rem auto;
        display: block;
    }
    
    footer .col-12.col-md-4 {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    footer .row {
        flex-direction: column;
        align-items: center;
    }
    
    footer .col-12.col-md-4 {
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    footer h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    footer p,
    footer address {
        font-size: 1.4rem;
        line-height: 2.5rem;
    }
}

footer .row #contact {
    color: #ffffff;
    width: auto;
    margin-top: 2rem;
    padding: 0 15px;
}

@media screen and (max-width: 992px) {
    footer .row #contact {
        width: 100%;
        text-align: center;
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

footer .row #resources {
    width: auto;
    display: inline-block;
    vertical-align: top;
    margin-top: 2rem;
    padding: 0 15px;
}

@media screen and (max-width: 992px) {
    footer .row #resources {
        width: 100%;
        text-align: center;
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

footer .row ul {
    padding-left: 0;
}

footer .row ul li {
    padding-bottom: 0.5rem;
    list-style: none;
}

footer #copyright {
    border-top: 0.5px solid #b1c2d6;
    padding: 10px;
    width: 80%;
    margin: 0 auto;
}

footer #copyright p {
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    footer #copyright {
        width: 95%;
        padding: 15px 10px;
    }
    
    footer #copyright p {
        font-size: 1.4rem;
        line-height: 2rem;
    }
}




/* Hotel Listing Page style Start */
.wrapper {
    float: left;
    width: 30%;
    min-width: 300px;
    background-color: #181818;
    margin: 1.5%;
    padding: 3em 1em 2em;
    box-sizing: border-box;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.24);
    text-align: center;
}

.wrapper>h1 {
    font-family: "Inter", sans-serif;
    font-weight: 200;
    font-size: 1.5em;
    letter-spacing: .15em;
    color: #fff;
    margin-bottom: 20px;
}

.details {
    width: 95%;
    margin: 2rem auto 2em;
    padding-top: 10.5em;
    padding-bottom: 1em;
    background-color: d8d8d8;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 5px rgba(0, 0, 0, 0.24);
    transition: all ease-in 0.15s;
}

.wrapper:hover .details {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22);
    transform: translate(0px, -2px) scale(1.01);
}

.details>h1 {
    font-family: "Inter";
    font-size: 1em;
    margin-bottom: 10px;
}

.details>h2 {
    font-family: sans-serif;
    font-size: 2em;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.details>p {
    font-family: sans-serif;
    font-size: 1em;
    font-weight: 200;
    margin: 5px;
}

.wrapper .image {
    position: relative;
    z-index: 2;
    width: 85%;
    height: 250px;
    margin: 0 auto -10em;
    background-size: cover;
    background-position: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 10px rgba(0, 0, 0, 0.24);
    transition: all ease-in .15s;
}

.wrapper:hover .image {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    transform: translate(0px, -3px) scale(1.02);
}

.i1 {
    background-image: url("/123\ images/img8.jpg");
}

.i2 {
    background-image: url("/123\ images/dinner party.jpg");
}
.i3 {
    background-image: url("/123\ images/img5.jpg");
}

.i4 {
    background-image: url("/123\ images/img6.jpg");
}

.i5 {
    background-image: url("/images/banner-image1.jpg");
}
.i6 {
    background-image: url("/123\ images/img7.jpg");
}

.listing_banner {
    height: 60vh;
}

.listing_heading {
    font-size: 60px;
}

@media screen and (max-width: 1000px) {
    .wrapper {
        width: 47%;
    }

    .relative {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and(max-width:700px) {
    .wrapper {
        float: none;
        width: 70%;
        margin: 1em auto;
    }
}

@media screen and(max-width:700px) {
    .wrapper {
        float: none;
        width: 70%;
        margin: 1em auto;
    }
}

/* About Section Style Start */
.about-section {
    position: relative;
    padding: 100px 0px;
}

.about-section .content-column {
    position: relative;
    margin-bottom: 40px;
}

.about-section .content-column .inner-column {
    position: relative;
    padding-top: 50px;
    padding-right: 100px;
}

.about-section .content-column .text {
    position: relative;
    color: #777777;
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 40px;
}

.about-section .content-column .email {
    position: relative;
    color: #252525;
    font-weight: 700;
    margin-bottom: 50px;
}

.about-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .image-column .inner-column {
    position: relative;
    padding: 40px 40px 0px 0px;
    margin-left: 50px;
}

.about-section .image-column .inner-column:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    left: 40px;
    bottom: 100px;
    z-index: -1;
    border: 2px solid #d7a449;
}

.about-section .image-column .inner-column .image {
    position: relative;
}

.about-section .image-column .inner-column .image:before {
    position: absolute;
    content: '';
    left: -50px;
    bottom: -50px;
    width: 299px;
    height: 299px;
    background: url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img {
    position: relative;
    width: 100%;
    display: block;
}

.about-section .image-column .inner-column .image .overlay-box {
    position: absolute;
    left: 40px;
    bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
    position: relative;
    color: #252525;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    padding-left: 125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 110px;
    height: 110px;
    color: #d7a449;
    font-size: 68px;
    font-weight: 700;
    line-height: 105px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #000000;
}

.about-section .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}

.about-section .btn-style-three:hover {
    color: #ffffff;
    background: #d7a449;
}

.about-section .btn-style-three {
    position: relative;
    line-height: 24px;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    background: none;
    display: inline-block;
    padding: 11px 40px;
    background-color: #ffffff;
    text-transform: capitalize;
    border: 2px solid #d7a449;
    font-family: 'Arimo', sans-serif;
}

.sec-title2 {
    color: #fff;
}

.sec-title {
    position: relative;
    padding-bottom: 40px;
}

.sec-title h2 {
    font-size: 16px;
}

.sec-title .title {
    position: relative;
    color: #d7a449;
    font-size: 38px;
    font-weight: 700;
    padding-right: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}

.second_about_section {
    padding: 100px 50px;
    margin: 100px 0px;
    background-color: #fff;
}

.image_gallery {
    padding-bottom: 50px;
}

.second_about_section .text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.second_about_section h2 {
    color: #333;
    font-weight: 600;
}

/* about page style start */
.about_us_banner {
    background-image: url('../images/banner-image1.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_heading {
    text-align: center;
    font-size: 40px;
}

.sec-title {
    position: relative;
    z-index: 1;
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #ffc514;
    font-weight: 500;
    margin-bottom: 15px;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.28em;
    color: #fff;
    font-weight: 600;
    padding-bottom: 18px;
}

.sec-title h2:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 50px;
    height: 3px;
    background-color: #d1d2d6;
}

.sec-title .text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    margin-top: 35px;
}

.sec-title.light h2 {
    color: #ffffff;
}

.sec-title.text-center h2:before {
    left: 50%;
    margin-left: -25px;
}

.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    padding-left: 35px;
    margin-bottom: 12px;
}

.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #ff2222;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
    color: #ffc514;
}

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: #ffc514;
}

.btn-style-one:hover {
    background-color: #ffc514;
    color: #ffffff;
}

.about-page {
    position: relative;
    padding: 120px 0 0px;
}

.about-page .sec-title {
    margin-bottom: 45px;
}

.about-page .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-page .content-column .inner-column {
    position: relative;
    padding-left: 30px;
}

.about-page .text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 400;
}

.about-page .list-style-one {
    margin-bottom: 45px;
}

.about-page .btn-box {
    position: relative;
}

.about-page .btn-box a {
    padding: 15px 50px;
}

.about-page .image-column {
    position: relative;
}

.about-page .image-column .text-layer {
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-page .image-column .inner-column {
    position: relative;
    padding-left: 80px;
    padding-bottom: 0px;
}

.about-page .image-column .inner-column .author-desc {
    position: absolute;
    bottom: 16px;
    z-index: 1;
    background: rgb(255, 255, 255);
    padding: 10px 15px;
    left: 96px;
    width: calc(100% - 152px);
    border-radius: 50px;
}

.about-page .image-column .inner-column .author-desc h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    color: #121212;
    margin: 0;
}

.about-page .image-column .inner-column .author-desc span {
    font-size: 16px;
    letter-spacing: 6px;
    text-align: center;
    color: #fff;
    display: block;
    font-weight: 400;
}

.about-page .image-column .inner-column:before {
    content: '';
    position: absolute;
    width: calc(50% + 80px);
    height: calc(100% + 160px);
    top: -80px;
    left: 10px;
    background: transparent;
    z-index: 0;
    border: 44px solid #ffc514;
}

.about-page .image-column .image-1 {
    position: relative;
}

.about-page .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-page .image-column .image-2 img,
.about-page .image-column .image-1 img {
    box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
    border-radius: 46px;
}

.about-page .image-column .video-link {
    position: absolute;
    left: 70px;
    top: 170px;
}

.about-page .image-column .video-link .link {
    position: relative;
    display: block;
    font-size: 22px;
    color: #191e34;
    font-weight: 400;
    text-align: center;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.about-page .image-column .video-link .link:hover {
    background-color: #191e34;
    color: #fff
}


/* property-details-Section */
/* property-details-Section */
/* property-details-Section */
/* property-details-Section */
/* property-details-Section */
/* property-details-Section */
/* property-details-Section */
/* property-details-Section */
.font-family-Cormorant {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-bottom: 10px;
}

.font-details {
    font-size: 14px;
}

.font-details h6 {
    margin-bottom: 5px;
}

.listing-item h4 {
    font-size: 24px;
    font-weight: 600;
}

.listing-item h5 {
    font-weight: 600;
}

.magnific-img img {
    width: 100%;
    height: auto;
}

.mfp-bottom-bar,
* {
    font-family: 'Abel', sans-serif;
}

.magnific-img {
    display: inline-block;
    width: 100%;
}

a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-arrow-left:before {
    border-right: none !important;
}

.mfp-arrow-right:before {
    border-left: none !important;
}

button.mfp-arrow,
.mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
    opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
     * Remove all paddings around the image on small screen
     */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}





/* skin 2 */
.skin-2 .num-in {
    background: #ffffff;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    height: 40px;
    width: 110px;
}

.skin-2 .num-in span {
    width: 40%;
    display: block;
    height: 40px;
    float: left;
    position: relative;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.skin-2 .num-in input {
    float: left;
    width: 20%;
    height: 40px;
    border: none;
    text-align: center;
}



/* property-details-Section */
/* property-details-Section */
/* property-details-Section */
/* property-details-Section */
/* property-details-Section */
/* property-details-Section */
/* property-details-Section */
/* property-details-Section */



/* booking-Section */
/* booking-Section */
/* booking-Section */
/* booking-Section */
/* booking-Section */
/* booking-Section */
/* booking-Section */
/* booking-Section */
.controls {
    display: flex;
    flex-direction: column;
}

.form-control1 {
    height: 35px;
    margin-bottom: 15px;
    outline: none;
    border: none;
    font-size: 14px;
    padding: 0px 10px;
}

.form-control2 {
    height: 35px;
    margin-bottom: 15px;
    outline: none;
    border: none;
    font-size: 14px;
    padding: 0px 10px;
}

.form-control3 {
    height: 150px;
    margin-bottom: 15px;
    outline: none;
    border: none;
    font-size: 14px;
    padding: 10px;
}

.form_label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group button {
    cursor: pointer;
    background-color: #192028;
    border: none;
    font-size: 14px;
    color: #fff;
    padding: 12px 0;
    float: right;
}

.form-group button:hover {
    background-color: #224c60;
}

.clear:after {
    content: "";
    display: table;
    clear: both;
}

.grid {
    background: white;
}

.grid:after {
    /* Or @extend clearfix */
    content: "";
    display: table;
    clear: both;
}

.grid [class*='col-']:last-of-type {
    padding-right: 0;
}

.col-2-3 {
    width: 66.66%;
}

.col-1-3 {
    width: 33.33%;
}

.col-1-2 {
    width: 50%;
}

.col-1-4 {
    width: 25%;
}

@media (max-width: 760px) {

    .col-1-4-sm,
    .col-1-3,
    .col-2-3 {
        width: 100%;
    }

    [class*='col-'] {
        padding: 0px;
    }
}

.col-1-8 {
    width: 12.5%;
}

@media (max-width: 576px) {

    .col-1-4-sm,
    .col-1-3,
    .col-2-3 {
        width: 100%;
    }

    [class*='col-'] {
        padding: 10px;
    }
}

.col-1-8 {
    width: 12.5%;
}

@media (max-width: 320px) {

    .col-1-4-sm,
    .col-1-3,
    .col-2-3 {
        width: 100%;
    }

    [class*='col-'] {
        padding: 10px;
    }

    .controls label {
        width: 32%;
    }

}

.col-1-8 {
    width: 12.5%;
}

.border-box {
    padding: 10px;
}

.box-image {
    height: 100px;
}

.border-box h6 {
    margin: 0;
}

.d-flex1 {
    display: flex;
}

.details-text {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dfdfdf;
    padding: 10px;
}

.details-text h6 {
    font-weight: 600;
    color: #192028;
}

/* booking-Section */
/* booking-Section */


/* Contact Form */
.box-white {
    background-color: #fff;
    padding: 50px;
}

.sec-title-style1 {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 50px;
}

.sec-title-style1.max-width {
    position: relative;
    display: block;
    max-width: 770px;
    margin: -9px auto 0;
    padding-bottom: 52px;
}

.sec-title-style1.pabottom50 {
    padding-bottom: 42px;
}

.sec-title-style1 .title {
    position: relative;
    display: block;
    color: #131313;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    text-transform: uppercase;
}

.sec-title-style1 .title.clr-white {
    color: #ffffff;
}

.sec-title-style1 .decor {
    position: relative;
    display: block;
    width: 70px;
    height: 5px;
    margin: 19px 0 0;
}

.sec-title-style1 .decor:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #ffa500;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .decor:after {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #ffa500;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .decor span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #ffa500;
    margin: 2px 0;
}

.sec-title-style1 .text {
    position: relative;
    display: block;
    margin: 7px 0 0;
}

.sec-title-style1 .text p {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    color: #131313;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.sec-title-style1 .text.clr-yellow p {
    color: #ffa500;
}

.sec-title-style1 .text .decor-left {
    position: relative;
    top: -2px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}

.sec-title-style1 .text .decor-left span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #ffa500;
    content: "";
    margin: 2px 0;
}

.sec-title-style1 .text .decor-left:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #ffa500;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .text .decor-left:after {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #ffa500;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .text .decor-right {
    position: relative;
    top: -2px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}

.sec-title-style1 .text .decor-right span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #ffa500;
    content: "";
    margin: 2px 0;
}

.sec-title-style1 .text .decor-right:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #ffa500;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .text .decor-right:after {
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #ffa500;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .bottom-text {
    position: relative;
    display: block;
    padding-top: 16px;
}

.sec-title-style1 .bottom-text p {
    color: #848484;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}

.sec-title-style1 .bottom-text.clr-gray p {
    color: #cdcdcd;
}

.contact-address-area {
    position: relative;
    display: block;
    padding: 100px 0 120px;
}

.contact-address-area .sec-title-style1.max-width {
    padding-bottom: 72px;
}

.contact-address-box {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.contact-address-box .single-contact-address-box .title {
    position: relative;
    display: block;
}

.single-contact-address-box .icon-holder {
    position: relative;
    display: block;
    padding-bottom: 24px;
}

.single-contact-address-box .icon-holder span:before {
    font-size: 75px;
}

.single-contact-address-box h3 {
    color: #848484;
    margin: 0px 0 9px;
}

.single-contact-address-box h2 {
    color: #ffa500;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 19px;
}

.single-contact-address-box a {
    color: #ffffff;
}

.single-contact-address-box.main-branch {
    background: #050505;
    padding: 53px 30px 51px;
    margin-top: -20px;
    margin-bottom: -20px;
}

.single-contact-address-box.main-branch h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 38px;
    text-transform: uppercase;
    text-align: center;
}

.single-contact-address-box.main-branch .inner {
    position: relative;
    display: block;
}

.single-contact-address-box.main-branch .inner ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-contact-address-box.main-branch .inner ul li {
    position: relative;
    display: block;
    padding-left: 110px;
    border-bottom: 1px solid #737373;
    padding-bottom: 23px;
    margin-bottom: 24px;
}

.single-contact-address-box.main-branch .inner ul li:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.single-contact-address-box.main-branch .inner ul li .title {
    position: absolute;
    top: 2px;
    left: 0;
    display: inline-block;
}

.single-contact-address-box.main-branch .inner ul li .title h4 {
    color: #ffa500;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    border-bottom: 2px solid #737373;
}

.single-contact-address-box.main-branch .inner ul li .text {
    position: relative;
    display: block;
}

.single-contact-address-box.main-branch .inner ul li .text p {
    color: #848484;
    font-size: 13px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
}

.contact-info-area {
    position: relative;
    display: block;
    margin-bottom: 100px;
}

.contact-form {
    position: relative;
    display: block;
    padding: 100px 60px 80px;
    z-index: 3;
    background-color: #000;
}

.contact-form .sec-title-style1 {
    position: relative;
    display: block;
    padding-bottom: 51px;
    width: 50%;
    color: white;
}

.contact-form .text-box {
    position: relative;
    display: block;
    margin-top: 19px;
    width: 50%;
}

.contact-form .text p {
    color: #848484;
    line-height: 26px;
    margin: 0;
}

.contact-form .inner-box {
    position: relative;
    display: block;
}

.contact-form form {
    position: relative;
    display: block;
}

.contact-form form .input-box {
    position: relative;
    display: block;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding-left: 19px;
    padding-right: 15px;
    border-radius: 0px;
    margin-bottom: 20px;
    transition: all 500ms ease;
}

.contact-form form textarea {
    height: 130px;
    padding-left: 19px;
    padding-right: 15px;
    padding-top: 14px;
    padding-bottom: 15px;
}

.contact-form form input[type="text"]:focus {
    color: #222222;
    border-color: #d4d4d4;
}

.contact-form form input[type="email"]:focus {
    color: #222222;
    border-color: #d4d4d4;
}

.contact-form form textarea:focus {
    color: #222222;
    border-color: #d4d4d4;
}

.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #848484;
}

.contact-form form input[type="text"]:-moz-placeholder {
    color: #848484;
}

.contact-form form input[type="text"]::-moz-placeholder {
    color: #848484;
}

.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #848484;
}

.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #848484;
}

.contact-form form input[type="email"]:-moz-placeholder {
    color: #848484;
}

.contact-form form input[type="email"]::-moz-placeholder {
    color: #848484;
}

.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #848484;
}

.contact-form form button {
    position: relative;
    display: block;
    width: 100%;
    background: #ffa500;
    border: 1px solid #ffa500;
    color: #131313;
    font-size: 16px;
    line-height: 55px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    cursor: pointer;
}

.contact-form form button:hover {
    color: #ffffff;
    background: #131313;
}

/* Contact Form */


/* media Query globally */
@media only screen and (max-width: 1023px) {
    .about_us_banner {
        height: 70vh;
    }

    .about_us_banner h2 {
        font-size: 38px;
        font-weight: 700;
    }

    .about-page .content-column {
        margin-top: 100px;
        margin-bottom: 0px;
    }

    .about-page .sec-title {
        margin-bottom: 0px;
    }

    .about-page {
        padding: 50px 0px 0px;
    }

    .about-page .content-column .inner-column {
        padding: 10px;
    }

    .about-section {
        padding: 50px 0px;
    }

    .about-section .content-column .inner-column {
        padding: 0px;
    }

    .about-section .image-column .inner-column {
        margin: 0px;
    }

    .second_about_section {
        padding: 50px 15px;
    }

    .listing_heading {
        font-size: 40px;
    }

    .pading-res {
        padding: 15px;
        margin: 50px 0px 50px;
    }

    .banner_image {
        height: 100vh !important;
    }

    .page_heading {
        font-size: 40px;
    }

    .sec-title h2 {
        font-size: 40px !important;
    }

    .horr-hover-slider {
        position: static;
        padding: 0px 0 100px;
        flex-wrap: wrap;
        gap: 50px 30px;
        margin: 0 auto;
    }

    .horr-hover-slider-label {
        display: none;
    }

    .horr-hover-slider-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        opacity: 1;
        width: 100%;
        transition: color 0.15 ease-in-out;
    }

    .horr-hover-slider-link>img {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .horr-hover-slider-link,
    .horr-hover-slider-link>img {
        -webkit-clip-path: none !important;
        clip-path: none !important;
    }

    .horr-hover-slider-link-heading {
        display: block;
        text-align: center;
        font-size: 24px;
        font-weight: 600;
    }

}

@media (min-width: 768px) and (max-width: 1023px) {}

@media (min-width: 980px) and (max-width: 1023px) {}