:root {
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Abril Fatface', sans-serif;

    /*Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #b1001d;
    --secondary: #161a1d;
    --gray: #8a8a8a;

}


/* Default styles start */

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: var(--font-primary);
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

body p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: var(--gray);
}


/* heading */
.h1,
h1 {
    font-size: 60px;
}

.h2,
h2 {
    font-size: 48px;
}

.h2-small {
    font-size: 42px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.p {
    font-size: 16px;
}

.p-small {
    font-size: 14px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
}

/* Pseudo default styles start */

::placeholder {
    color: #a7a7a7 !important;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #a7a7a7 !important;
}

:-ms-input-placeholder {
    color: #a7a7a7 !important;
}

::-ms-input-placeholder {
    color: #a7a7a7 !important;
}

/* Pseudo default styles end */


.font-poppins {
    font-family: var(--font-primary);
}

.font-abril {
    font-family: var(--font-secondary);
}

/* COLORS */
.bg-black-color {
    background-color: var(--black);
}

.bg-white-color {
    background-color: var(--white);
}

.bg-primary-color {
    background-color: var(--primary);
}

.bg-secondary-color {
    background-color: var(--secondary);
}

.bg-gray-color {
    background-color: var(--gray);
}

.color-black {
    color: var(--black);
}

.color-white {
    color: var(--white);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-gray {
    color: var(--gray);
}

/* COLORS */

/* font weight */
.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-auto-0 {
    flex: 0 0 auto;
}

img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

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

a:hover {
    color: var(--primary);
}


.prime-btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--white);
    background-color: var(--primary);
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    box-shadow: none;
    outline: none;
    max-width: 150px;
    width: 100%;
    height: 52px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
}

.prime-btn::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .363);
    width: 170px;
    height: 60px;
    transform: translate3d(-90%, 15px, 0) rotate3d(0, 0, 1, 45deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.prime-btn:hover::after {
    background-color: rgba(255, 255, 255, .363);
    left: 100%;
    transform: translate3d(-10%, -30px, 0) rotate3d(0, 0, 1, 70deg);
    z-index: 0;
}

.prime-btn:hover,
.prime-btn:focus,
.prime-btn:active,
.prime-btn:focus-visible {
    box-shadow: none;
    outline: none;
    color: var(--white);
}

.sec-spacing {
    padding: 120px 0;
}

.text-upper {
    text-transform: uppercase;
}


/* Default styles end */

/* -- // Index Page Styles Start // -- */

/* Header styles start */
header {
    width: 100%;
    left: 0;
    right: 0;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    height: 40px;
}

.header-top a {
    color: var(--white);
}


.navbar {
    padding: 15px 0;
    background-color: #fff;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}

.fixed-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.navbar-brand {
    width: 150px;
    height: 80px;
    padding: 0;
    margin: 0;
}

.nav-item {
    width: max-content;
}

.nav-link {
    position: relative;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    width: max-content;
    color: var(--secondary);
    margin-right: 40px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link:after {
    position: absolute;
    content: " ";
    left: 0;
    right: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    width: 60%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;


}


.navbar-nav {
    margin-left: auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}


/* Header styles end */


/* Hero section styles start */
.hero-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 720px;
    position: relative;
}

.hero-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .5;
}

.hero-banner.hero-one {
    background-image: url(../images/hero-bg-images/hero-image-one.jpg);
    background-position: center bottom;
}

.hero-banner.hero-two {
    background-image: url(../images/hero-bg-images/hero-image-two.jpg);
}

.hero-banner.hero-three {
    background-image: url(../images/hero-bg-images/hero-image-three.jpg);
}

.hero-banner.hero-four {
    background-image: url(../images/hero-bg-images/hero-image-four.jpg);
}

.hero-banner.hero-five {
    background-image: url(../images/hero-bg-images/hero-image-five.jpg);
}

.hero-banner.hero-attraction {
    background: url(../images/hero-bg-images/hero-image-attraction.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-banner.hero-contact {
    background-image: url(../images/hero-bg-images/hero-image-contact.jpg);
    background-position: center bottom;
}

.hero-banner.hero-ada {
    background-image: url(../images/hero-bg-images/hero-image-three.jpg);
}



.hero-content {
    max-width: 1000px;
    width: 100%;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, rgba(177, 0, 29, 0.5), rgba(165, 165, 165, 0.4));

}

.section-hero-content {
    z-index: 11;
}

.hero-content h4 {
    letter-spacing: 3px;
    line-height: 2;
}

.hero-content h2,
.hero-content h1 {
    line-height: 1.3;
    letter-spacing: 3px;
}

/* slick arrows */
.slick-prev,
.slick-next {
    width: 60px;
    height: 60px;
    background-color: rgb(0, 0, 0, 0.3);
    z-index: 11;
    color: var(--white);
}

.slick-next {
    right: 10%;
    top: 82%;
}

.slick-prev {
    left: 87%;
    top: 70%;

}

.slick-prev svg,
.slick-next svg {
    width: 28px;
    height: 28px;
}

.slick-prev::before,
.slick-next::before {
    content: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-color: var(--black);
    color: var(--white);
}

/* slick arrows end*/
/* Hero section styles end */

/* About-us section styles start*/
.about {
    position: relative;
}

.about::before {
    content: '';
    background-image: url('../images/background-images/about-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
    opacity: 0.7;

}

.title-wrap h5 {
    line-height: 2;
    letter-spacing: 2px;
}

.title-wrap h2 {
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.about-content-wrap h5 {
    line-height: 1.2;
}

.about-content-wrap h2 {
    margin-bottom: 20px;
}

.title-wrap p {
    line-height: 1.6;
}

.about-content-wrap {
    padding: 30px 0 0 30px;
}

.about-content-wrap p {
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.about-content-wrap .prime-btn {
    margin-top: 40px;
}

.about-image-wrap {
    position: relative;
    width: 100%;
    height: 560px;
}

.about-image-one,
.about-image-two {
    width: 375px;
    height: 256px;
}

.about-image-one img,
.about-image-two img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.about-bg-box {
    position: absolute;
    width: 180px;
    height: 180px;
    z-index: -1;
}

.about-bg-box.top {
    top: 0;
    left: 0;
}

.about-bg-box.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-bg-box.bottom {
    bottom: 0;
    right: 0;
}

.about-image-one {
    z-index: 1;
    position: absolute;
    top: 16px;
    left: 16px;

}

.about-image-two {
    float: right;
    z-index: 1;
    position: absolute;
    bottom: 16px;
    right: 16px;
}

.about-image-two::before {
    content: '';
    background-image: url('../images/background-images/dots.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 200px;
    height: 160px;
    position: absolute;
    right: 97%;
    top: 27%;
    z-index: -1;
    opacity: 0.5;

}

/* About-us section styles end*/


/* Booking Form styles start*/
.booking-form {
    background-image: url('../images/background-images/form-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 720px;
    position: relative;

}

.booking-form-box {
    padding: 50px;
    max-width: 840px;
    margin: 0 auto;
    height: 486px;
    background-color: var(--primary);

}

.booking-form-box h3 {
    margin-bottom: 50px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.form-label {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;

}

.form-control {
    height: 48px;
    border: 2px solid transparent;
    border-radius: 3px;
    padding: 10px 10px 10px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid transparent;

}

.form-control:focus {
    color: var(--secondary);
    border: 1px solid var(--primary);
    outline: 0;
    box-shadow: none;
}

.booking-form-box .prime-btn {
    border: 2px solid var(--white);
}

.booking-form-box .prime-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 0 auto;
}

/* Booking Form styles end*/

/* services styles start*/
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 24px;
}

.services-grid-items {
    width: 100%;
    height: 220px;
    border: 1px solid #cac8c8;
    border-radius: 16px;
}

.services-grid-items h4 {
    font-size: 20px;
}

.services-grid-icon {
    width: 72px;
    /* height: 100px; */
    color: var(--gray);
    margin-bottom: 22px;
}

/* services styles end*/

/* Our offer styles start*/
.our-offer {
    background-image: url('../images/background-images/offer-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 720px;
    position: relative;

}

.local-attraction,
.room-feature,
.local-restaurants {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.local-attraction {
    height: 100%;
}

.room-feature,
.local-restaurants {
    height: 340px;
}

.local-attraction img,
.room-feature img,
.local-restaurants img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.local-attraction img:hover,
.room-feature img:hover,
.local-restaurants img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.our-offer-content {
    background-color: rgb(22 26 29 / 70%);
    color: var(--white);
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.our-offer-content.space-20 {
    padding: 20px;
}

.our-offer-content h3,
.our-offer-content h4 {
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.our-offer-content h3 {
    font-size: 36px;
    line-height: 1.5;
}

.our-offer-content a {
    font-size: 14px;
    text-decoration: underline;
    color: var(--white);
    letter-spacing: 2px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.our-offer-content.space-20 a {
    font-size: 13px;
}

.our-offer-content a:hover {
    color: var(--primary);
}

/* Our offer styles end*/


/* Photo gallery styles start*/
.photo-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 24px;
    margin-bottom: 40px;
}

.photo-gallery-grid-item {
    position: relative;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.photo-gallery-grid-item:hover .photo-gallery-overlay {
    opacity: 1;
}

.photo-gallery-overlay {
    position: absolute;
    background-color: rgb(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.search-icon {
    width: 30px;
    width: 30px;
    color: var(--white);
}

.search-icon svg {
    width: inherit;
    height: inherit;
    object-fit: contain;
}


/* Photo gallery styles end*/

/* Our Rooms section start*/
.our-rooms-slider-items {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.our-rooms-slider-items::before {
    content: ' ';
    background: url('../images/background-images/our-rooms.jpg');
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 720px;
    z-index: 1;
    opacity: 0.4;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}

.our-room-image-wrap {
    border: 20px solid var(--primary);
    height: 720px;
    width: 100%;
    position: relative;
    z-index: 11;
}

.our-room-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.our-room-content-wrap {
    padding: 120px 70px 70px 70px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 11;
}

.our-room-content-wrap h2 {
    margin-bottom: 26px;
}

.our-room-content-wrap h3 {
    margin-bottom: 24px;
}

.option-list {
    list-style: none;
}

.option-list li {
    margin-bottom: 16px;
}

.option-list-icons {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.option-list-icons img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.option-list p {
    font-size: 20px;
    line-height: 1.5;
}

.slider-round-arrows .slick-prev,
.slider-round-arrows .slick-next {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--secondary);
    border: 1px solid transparent;
    border-radius: 50px;
    box-shadow: 1px 3px rgb(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    /* filter: drop-shadow(0 0 0.9px #0000); */
}

.slider-round-arrows .slick-prev:hover,
.slider-round-arrows .slick-prev:focus,
.slider-round-arrows .slick-next:hover,
.slider-round-arrows .slick-next:focus {
    background-color: var(--white);
    color: var(--primary);
}

.slider-round-arrows .slick-prev {
    left: 55%;
    top: 85%;
}

.slider-round-arrows .slick-next {
    right: 39%;
    top: 85%;
}

/* Our Rooms section end*/

/* Feedback section end*/
.feedback-slider-for .slick-track .slick-slide.slick-slide {
    border: 1px solid #cccccc;
    border-radius: 50px 50px 0 0;
    height: 400px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-content {
    max-width: 660px;
    margin: 0 auto;
    font-size: 20px;
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    line-height: 36px;
    letter-spacing: 1px;
    text-align: center;

}

.feedback-slider-for::before,
.feedback-slider-for::after {
    content: '';
    background-image: url('../images/icons/double-quotes.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 200px;
    height: 160px;
    position: absolute;
    z-index: -1;
}

.feedback-slider-for::before {
    transform: rotate(180deg);
    bottom: 30px;
    left: 40px;
}

.feedback-slider-for::after {
    background-image: url('../images/icons/double-quotes.png');
    top: 30px;
    right: 40px;
}

.feedback-slider-nav .slick-slide .feedback-box {
    background-color: rgb(177, 0, 29, 0.5);
    height: 200px;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;

}

.feedback-slider-nav .slick-slide.slick-current.slick-active.slick-center .feedback-box {
    background-color: var(--primary);
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.feedback-slider-nav>.slick-list.draggable {
    border-radius: 0 0 50px 50px;
}

.avtar-img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 10px;
}

.avtar-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.avtar-name {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 6px;

}

.time-period {
    font-size: 12px;
}

.feedback-slider-nav.slider-round-arrows .slick-prev,
.feedback-slider-nav.slider-round-arrows .slick-next {
    border: 1px solid var(--black);
    box-shadow: none;

}

.feedback-slider-nav.slider-round-arrows .slick-prev:hover,
.feedback-slider-nav.slider-round-arrows .slick-next:hover {
    border: 1px solid var(--primary);

}

.feedback-slider-nav .slick-prev,
.feedback-slider-nav .slick-next {
    top: -70%;
}

.feedback-slider-nav .slick-prev {
    left: -10%;
}

.feedback-slider-nav .slick-next {
    right: -10%;
}


/* Feedback section end*/

/* Contact-us section start*/
.contact-us {
    background-image: url('../images/background-images/contact-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    /* min-height: 525px; */
    position: relative;
    padding: 70px 0;

}

.footer-logo {
    width: 180px;
    height: 100px;
    margin-bottom: 40px;
}

.contact-us-content-wrap {
    width: 100%;
    height: 100%;
    text-align: center;

}

.contact-us-content-wrap a {
    color: var(--white);
    margin-bottom: 20px;
}

/* Contact-us section end*/
.footer-wrap {
    padding: 15px 0;
}

.footer-wrap p {
    font-size: 14px;
}

/* -- // Index Page Styles End // -- */

/* -- // Service Page Styles Start // -- */
.hero-banner.section-hero-banner {
    min-height: 560px;
}

.section-hero-content h1 {
    margin-bottom: 30px;
}

.breadcrumb-item {
    font-size: 20px;
}

.breadcrumb-item a {
    color: var(--white);
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
    color: #cdcccc;
}

.service-aminities .title-wrap h2 {
    margin-bottom: 60px;
}

.service-aminities-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
}


.service-aminities-items {
    display: flex;
    align-items: flex-start;
}

.service-aminities-items:nth-child(16) {
    grid-column: 1 / span 2;
}

.service-aminities-content {
    display: flex;
    flex-direction: column;
}

.service-aminities-content h4 {
    margin-bottom: 8px;
}

.service-aminities-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.service-aminities-content p:last-child {
    margin-bottom: 0;
}

.service-aminities-icon {
    width: 40px;
    height: 40px;
    color: var(--secondary);
    margin-right: 24px;
}

.service-aminities-icon svg {
    width: inherit;
    height: inherit;
    object-fit: cover;
}


/* -- // Service Page Styles End // -- */

/* -- // Local Attraction Page Styles End // -- */
.hotel-surrounding-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
}

.hotel-surrounding-wrap {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #cac8c8; */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}

.hotel-surrounding-image {
    position: relative;
    width: 100%;
    height: 360px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hotel-surrounding-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.hotel-surrounding-image img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.hotel-surrounding-title {
    color: var(--black);
    margin-bottom: 20px;
    padding: 0 30px;

}


.hotel-surrounding-content {
    padding: 0 30px 30px;
}

.item-list {
    margin-bottom: 10px;
}

.item-list p {
    font-size: 16px;
    line-height: 1.5;
}

/* -- // Local Attraction Page Styles End // -- */

/* -- // Contact Page Styles Start // -- */
.contact-us-top-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;

}

.contact-us-top-items {
    display: flex;
    flex-direction: column;

}

.contact-us-top-items p,
.contact-us-top-items a {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.2;
    transition: 0.5s;
}

.contact-us-top-items a:hover {
    color: var(--primary);
}

.contact-title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 500;
    color: var(--secondary);
}

.contact-title-wrap svg {
    font-size: 20px;
    margin-right: 10px;
    color: var(--primary);
}

.contact-us-top-items:not(:last-child) {
    margin-right: 40px;
}

.contact-us-iframe {
    width: 100%;
    height: 500px;
}

/* -- // Contact Page Styles End // -- */

/* -- // Ada feature Page Styles Start // -- */
.ada-feature-wrap:not(:last-child) {
    margin-bottom: 40px;
}

.ada-feature-wrap h3 {
    margin-bottom: 10px;
}

.ada-feature-item {
    font-size: 18px;
    line-height: 1.5;
    padding: 16px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #edebeb;
}

.ada-feature-item::before {
    content: '';
    background: url("../images/icons/feature.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    flex: 0 0 auto;
}

.ada-feature-note {
    margin-top: 40px;
}

/* -- // Ada feature Page Styles End // -- */