* {
    box-sizing: border-box
}

:root {
    --header-height: 100px;
    --color-primary: #9b1053;
    --color-secondary: #0179bd;
    --color-tertiary: #9b1053;
    --color-light-pink: #ffeef4;
    --color-light-gray: #cdcdcd;
    --color-dark-gray: #393738;
    --color-green: #42b15b;
    --color-stone: #f6f6f6;
    .button.green-btn--color-gray:#706e6f;--color-pink: #ffc5e4;
    --color-black: #d2096a;
    --color-white: #fff;
    --font-primary: "Poppins",sans-serif;
    --font-secondary: "Rasa",sans-serif;
    --primary-gradient: linear-gradient(90deg,rgba(210,5,104,1) 0%,rgba(210,5,104,.93) 40%,rgba(210,5,104,0) 100%)
}

body {
    margin: 0;
    font-family: -webkit-body!important;
    font-size: 17px;
    font-weight: 400
}

.font-primary {
    font-family: var(--font-primary)!important
}

.font-secondary {
    font-family: var(--font-secondary)!important
}

.display-1 {
    font-size: 120px;
    line-height: 1
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
    font-family: sans-serif!important;
   
}

h1,.h1 {
    font-size: 32px!important;
    color: #9b1053!important
}

h2,.h2 {
    font-size: 28px!important;
    color: #9b1053
}

h3,.h3 {
    font-size: 22px!important;
    color: #9b1053
}

h4,.h4 {
    font-size: 18px!important;
    color: #9b1053
}

h5,.h5 {
    font-size: 18px!important;
    color: #9b1053
}

p {
    margin: 10px!important;
    font-family: -webkit-body!important;
    font-size: 20px!important;
    line-height: 26px!important;
    text-align: justify!important
}

.fw-100 {
    font-weight: 100
}

.fw-200 {
    font-weight: 200
}

.fw-300 {
    font-weight: 300
}

.fw-400 {
    font-weight: 400
}

.fw-500 {
    font-weight: 500
}

.fw-600 {
    font-weight: 600
}

.fw-700 {
    font-weight: 700
}

.fw-800 {
    font-weight: 800
}

.fw-900 {
    font-weight: 900
}

.list {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.active {
    color: var(--color-primary)!important
}

button {
    font-family: inherit
}

.button {
    justify-content: center;
    border-radius: 10px;
    padding: 15px 60px;
    text-decoration: none;
    cursor: pointer;
    transition: .3s all;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 15px
}

.button-small {
    font-size: 13px;
    padding: 10px 30px;
    gap: 8px
}

.button.filled-btn {
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    color: #000
}

.button.filled-btn:hover {
    background-color: var(--color-tertiary)
}

.button.bordered-btn {
    border: 1px solid var(--color-primary);
    background-color: transparent;
    color: var(--color-primary)
}

.button.bordered-btn:hover {
    background-color: var(--color-light-pink)
}

.button.green-btn {
    border: 1px solid #4caf50;
    background-color: #4caf50;
    color: #000!important
}

.button.green-btn:hover {
    background-color: #439f46
}

.button.shadow {
    box-shadow: 0 6px 4px 0 #ffd9eb
}

.cover {
    object-fit: fill
}

.contain {
    object-fit: contain
}

.fluid {
    max-width: 100%;
    height: auto
}

.relative {
    position: relative
}

.space-t {
    padding-top: 65px
}

.space-b {
    padding-bottom: 65px
}



.section-title {
    position: relative;
    text-align: left;
    padding-bottom: 10px;
    margin-bottom: 40px;
    color: #d3126f
}

.section-title::before,.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%)
}

.section-title::before {
    height: 1px;
    width: 155px;
    bottom: 1px;
    background-color: #c7bdc1
}

.section-title::after {
    height: 3px;
    width: 50px;
    background-color: var(--color-primary)
}

.section-title.lined-dark::after {
    background-color: var(--color-white)
}

.center {
    text-align: center
}

.primary-gradient {
    background: var(--color-primary);
    background: var(--primary-gradient)
}

.bg-primary {
    background-color: var(--color-primary)
}

.bg-stone {
    background-color: #000000;
}

.bg-white {
    background-color: #cdcdcd;
}

.menu {
    margin-top: 0;
    margin-bottom: 0
}

.primary {
    color: var(--color-primary)
}

.white {
    color: var(--color-white)
}

.black {
    color: #d2096a
}

.gray {
    color: var(--color-gray)
}

.dark {
    color: var(--color-dark-gray)
}

.xs {
    font-size: 13px
}

.s {
    font-size: 15px
}

a {
    transition: .3s all;
    color: #d40f6e
}

.link {
    font-weight: 500
}

.link:not(.underlined) {
    text-decoration: none
}

.link.black {
    color: var(--color-black)
}

.link.black:hover {
    color: var(--color-primary)
}

.link.white {
    color: var(--color-white)
}

.link.white:hover {
    color: #fff
}

.breadcrumbs {
    display: flex;
    align-items: center
}

.breadcrumb-item:not(:last-child) {
    position: relative;
    margin-right: 5px
}

.breadcrumb-item:not(:last-child):after {
    content: ">";
    color: #afa5a9
}

.breadcrumb-link {
    color: #afa5a9;
    text-decoration: none;
    font-weight: 500;
    transition: .3s all
}

.breadcrumb-link:hover {
    color: var(--color-primary)
}

.pagi-btn {
    border: 1px solid #ebebeb;
    width: 42px;
    height: 42px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s all;
    background-color: #f4f4f4
}

.pagi-btn:hover {
    background-color: var(--color-light-gray)
}

.pagi-active {
    background-color: var(--color-primary);
    color: var(--color-white)
}

.pagi-active:hover {
    background-color: var(--color-primary)
}

.pagi-disabled {
    cursor: not-allowed;
    color: #b9b9b9
}

.pagi-disabled:hover {
    background-color: #f4f4f4
}

.video-js:hover .vjs-big-play-button,.video-js .vjs-big-play-button:focus {
    background-color: rgba(0,0,0,.71)
}

.video-js .vjs-big-play-button {
    border-radius: 50%;
    width: 154px;
    height: 154px;
    border: none;
    transform: translate(-50%,-50%);
    margin: 0;
    background-color: rgba(0,0,0,.71)
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px
}

.has-poster {
    position: relative;
    height: 100%;
    width: 100%
}

.vjs-paused.has-poster::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: linear-gradient(180deg,rgba(210,5,104,0) 22.83%,rgba(97,10,51,.71) 100%)
}

.vjs-has-started .vjs-control-bar,.vjs-audio-only-mode .vjs-control-bar {
    z-index: 2
}

.header-main {
    height: var(--header-height);
    display: flex;
    align-items: center
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px
}

.header-btn-wrap {
    display: flex;
    align-items: center;
    gap: 15px
}

.header-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    border: none
}

.header-search.is-active {
    background-color: var(--color-light-gray)
}

.hamburger {
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer
}

.hamburger .line {
    width: 20px;
    height: 2px;
    background-color: var(--color-black);
    display: block;
    margin: 5px auto;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0
}

.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    -o-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg)
}

.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg)
}

.header-logo,.header-btn-wrap {
    position: relative;
    z-index: 101
}

.header-spacing {
    padding-top: var(--header-height)
}

.banner {
    padding-block:120px 500px}

.banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: var(--primary-gradient);
    z-index: -1
}

.banner-content {
    max-width: 60%
}

.banner-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2
}

.banner-content h1 {
    margin-bottom: 50px
}

.main-searchbox {
    position: relative;
    padding: 42px;
    border-radius: 10px;
    transform: translateY(50%);
    background-color: var(--color-white);
    z-index: 1;
    color: var(--color-black);
    box-shadow: 0 7px 20px 0 rgb(0 0 0/9%);
    display: none;
    align-items: center
}

.search-type {
    display: flex;
    flex-direction: column;
    flex: auto
}

.search-label {
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: 10px;
    margin-left: 4px
}

.search-type .search-input {
    color: #aca1a6;
    font-size: 20px;
    border: none;
    background-color: transparent;
    font-weight: 500
}

.search-type:not(:first-child) {
    border-left: 1px solid #dcdcdc;
    padding-left: 34px;
    margin-left: 55px
}

.search-type input.search-input,.search-type textarea.search-input {
    margin-left: 3px;
    color: var(--color-dark-gray)
}

.search-type input::placeholder,.search-type textarea::placeholder {
    color: #aca1a6
}

.search-btn-wrap {
    flex-shrink: 0;
    margin-left: auto
}

.intro {
    text-align: center;
    background-image: url(../images/backgrounds/heart-pattern.svg);
    background-position: center center;
    background-size: cover
}

.intro::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #eee9eb;
    background: linear-gradient(0deg,rgba(238,233,235,1) 0%,rgba(238,233,235,.5) 80%)
}

.states-tab-list {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px
}

.states-tab-list .tab-btn {
    display: block;
    font-size: 18px;
    text-decoration: none;
    border: 1px solid #cdcdcd;
    color: var(--color-black);
    font-weight: 500;
    padding: 30px 70px;
    border-radius: 10px
}

.states-tab-list .tab-btn:hover {
    background-color: #cdcdcd
}

.states-tab-list .tab-btn[aria-selected=true] {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 9px 24px 0 rgba(4,112,172,.25)
}

.states-tab-content {
    border: 1px solid #000;
    margin-top: 35px;
    padding: 50px;
    border-radius: 10px
}

.states-city-list {
    gap: 13px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px
}
.all-local-area-scroll {
    height: 70vh;
    overflow: scroll;
}

.all-local-area-scroll::-webkit-scrollbar {
    display: none;
}

.red-btn {
    color: var(--color-tertiary);
    text-decoration: none;
    border: 1px solid var(--color-pink);
    background-color: var(--color-light-pink);
    font-size: 17px;
    font-weight: 500;
    border-radius: 10px;
    padding: 16px 60px;
    display: inline-block;
    transition: .3s all
}

.red-btn:hover {
    background-color: var(--color-pink)
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 50px
}

.latest-ads .model-grid {
    margin-bottom: 45px
}

.model-card {
    width: 100%;
    padding: 15px 14px;
    background-color: var(--color-white)
}

.model-img-wrap {
    position: relative
}

.model-img-wrap::before {
    content: "";
    display: block;
    padding-bottom: 110%
}

.model-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover
}

.model-img-wrap .model-tier {
    position: absolute;
    left: 0;
    bottom: 0
}

.model-tier {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 5px 14px 5px 10px;
    gap: 6px;
    border-top-right-radius: 6px;
    color: var(--color-white)
}

.model-tier.premium {
    background-color: #0179bd
}

.model-tier.exclusive {
    background-color: #ea913f
}

.model-tier.classic {
    background-color: #a317d4
}

.model-content {
    margin-top: 15px;
    display: flex;
    flex-direction: column
}

.model-desc {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 16px
}

.model-desc,.model-extra-info {
    font-weight: 500
}

.model-extra-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px
}

.model-extra-info>div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px
}

.model-contact {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 30px
}

.model-contact>* {
    width: 100%;
    padding: 10px 15px
}


.site-feat h2 {
    margin-bottom: 20px
}

.booking-steps {
    position: relative
}

.booking-steps::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/backgrounds/heart-patern.webp);
    background-position: center;
    background-size: cover;
    opacity: .1
}

.booking-step-list {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.booking-step {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    font-weight: 500;
    max-width: 300px
}

.booking-step:not(:last-child)::after {
    content: "";
    position: absolute;
    background-image: url(../images/backgrounds/dashed-wave.svg);
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    left: 100px;
    bottom: -20px;
    width: 100%;
    height: 90px
}

.booking-step-icon {
    width: 110px;
    height: 110px;
    margin-right: 10px;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,.2);
    flex-shrink: 0
}

.booking-step-icon-inner {
    overflow: hidden;
    width: 90px;
    height: 90px;
    background-color: var(--color-white);
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center
}

.booking-step-icon img {
    object-fit: cover
}

.booking-step h4 {
    font-weight: 600
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 42px
}

.blog .blog-grid {
    margin-bottom: 50px
}

.article-card {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-white);
    transition: .3s all
}

.article-card:hover {
    box-shadow: 0 2px 10px 2px rgb(0 0 0/10%)
}

.article-img {
    display: block;
    height: 360px;
    width: 100%
}

.article-card-content {
    padding: 30px
}

.article-title,.article-desc {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical
}

.article-title {
    font-weight: 500;
    -webkit-line-clamp: 2;
    margin-bottom: 10px
}

.article-desc {
    -webkit-line-clamp: 3;
    margin-bottom: 30px
}

.footer-main {
    padding-block:30px}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

.footer-inner .brand-info>a {
    display: block;
    margin-bottom: 20px
}

.footer-inner .brand-info,.footer-inner .footer-social {
    flex: 1
}

.footer-nav {
    flex: 2;
    columns: 3;
    padding-left: 60px
}

.footer-nav .link {
    display: inline-block;
    padding: 8px 10px
}

.footer-social .list {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px
}

.footer-social .social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer-main .divider {
    border-bottom: 1px solid rgba(255,255,255,.4);
    margin-block:28px}

.copyright {
    padding-block:24.5px}

.city-banner-spacer {
    padding-bottom: 30px
}

.faq-acc {
    max-width: 1120px;
    margin-inline:auto}

.place-group-wrap:not(:last-child) {
    margin-bottom: 70px
}

.place-group-wrap .states-city-list {
    margin-bottom: 0
}

.acc-wrap {
    background-color: #db4189;
    border-radius: 10px;
    border: none;
    padding: 5px 15px
}

.acc-wrap .acc-btn {
    font-family: var(--font-primary);
    color: var(--color-white);
    font-weight: 500
}

.acc-wrap .acc-btn:focus {
    color: var(--color-white)
}

.acc-wrap .acc-btn::after {
    font-size: 30px
}

.acc-body {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 400
}

.acc-body>* {
    padding: 0 11px 10px
}.red-btn1 {
    color: var(--color-tertiary);
    text-decoration: none;
    border: 1px solid var(--color-pink);
    background-color: var(--color-light-pink);
    font-size: 17px;
    font-weight: 500;
    border-radius: 10px;
    padding: 16px 60px;
    display: block;
    transition: .3s all;
    margin-top: 5px;
}
table { 
	width: 96%!important; 
	border-collapse: collapse; 
	margin:50px auto;
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #9b1053; 
	}

th { 
	background: #9b1053; 
	color: white; 
	font-weight: bold; 
	}

  tbody{
    background: #9b1053; 
    color: #fff;
  }

td, th { 
	padding: 10px; 
	border: 1px solid #fff; 
	text-align: left; 
  padding-left: 20px;
	font-size: 21px;
	}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	table { 
	  	width: 100%; 
	}
  td, th{
    padding-left: auto !important;
  }
	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 1px solid #ccc; }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}

	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		/* Label the data */
		content: attr(data-column);

		color: #fff;
		font-weight: bold;
	}

}
