*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
}

body{
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.container{
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 15px;
    box-sizing: border-box;
}

.container-fluid{
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.body-active{
   position: fixed;
   right: 0;
   top: 0;
   width: 100%;
}

.sonic-header{
    position: relative;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
}

.header-row{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0px;
}

.header-row .nav-toggle-holder{
    display: none;
}

.header-logo{
    padding-left: 40px;
}

.header-logo img{
    max-width: 200px;
    object-fit: cover;
    display: block;
}

.header-nav{
    margin-left: auto;
}

.header-nav ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
}

.header-nav ul li a{
    color: #000;
    transition: all 0.3s;
}

.header-nav ul li:hover a{
    color: #EC1B30;
}

.header-nav ul li:nth-last-child(1){
    padding-right: 45px;
    border-right: 1px solid #EFEFEF;
    margin-right: 45px;
}

.call-btn{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    background-color: #EC1B30;
    padding: 9px 30px 9px 9px;
    border-radius: 30px;
}

.call-btn .btn-img{
    position: relative;
}

.btn-img img{
    width: 100%;
    display: block;
}

.call-btn .btn-img::before{
    content: '';
    position: absolute;
    height: 8px;
    width: 8px;
    bottom: 0;
    right: 0;
    background-color: #63EB91;
    border: 2px solid #EC1B30;
    border-radius: 50%;
}

.call-btn .btn-text{
    color: #fff;
}

.hotel-sec{
    width: 98%;
    margin: 0 auto;
    box-sizing: border-box;
    background-image: url(../images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.hotel-sec-row{
    width: 100%;
    display: grid;
    grid-template-columns: 50% repeat(1,1fr);
    box-sizing: border-box;
}

.hotel-cntnt{
    position: relative;
    padding: 86px 125px 150px 70px;
    background-color: #ff001ad1;
    transform: translateY(50px);
}

.hotel-cntnt h1{
    color: #fff;
    max-width: 340px;
    font-size: 58px;
    line-height: 58px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hotel-cntnt p{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 26.14px;
}

.hotel-cntnt a{
    display: block;
    width: fit-content;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    padding: 18px 30px;
    border-radius: 30px;
    margin-top: 50px;
}

.deals-sec{
    width: 100%;
    box-sizing: border-box;
    margin-top: 50px;
}

.deals-cntnt-holder{
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
}

.deals-image img{
    width: 100%;
    object-fit: cover;
    display: block;
}

.deals-cntnt{
    box-sizing: border-box;
    padding: 0px 80px 0px 30px;
}

.deals-cntnt h2{
    font-weight: 600;
    font-size: 58px;
    line-height: 58px;
    color: #000;
    margin-bottom: 40px;
}

.deals-cntnt p{
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin-bottom: 20px;
}

.deals-cntnt a{
    display: block;
    width: fit-content;
    background-color: #EC1B30;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 18px 30px;
    border-radius: 30px;
    margin-top: 40px;
}

.faq-sec{
    width: 100%;
    box-sizing: border-box;
    margin-top: 80px;
}

.faq-holder{
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
}


.faq-sec-img img{
    width: 100%;
    object-fit: cover;
    display: block;
}

.faq-cntnt{
    padding: 0px 00px 0px 30px;
    box-sizing: border-box;
}

.faq-cntnt h2{
    font-weight: 600;
    font-size: 58px;
    line-height: 58px;
    color: #000;
}

.faq-cntnt .accordion-container .acc-faq{
    border-bottom: 1px solid #D9D9D9;
}

.faq-cntnt .accordion-container .accordion-title {
  position: relative;
  margin: 0;
  padding: 30px 0px 20px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
}


.faq-cntnt .accordion-container .accordion-title:hover,
.faq-cntnt .accordion-container .accordion-title:active,
.faq-cntnt .accordion-title.open {
  background-color: #fff;
}

.faq-cntnt .accordion-container .accordion-title::before {
  content: "+";
  position: absolute;
  top: 40%;
  right: 0px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  text-align: center;
  line-height: 17px;
  color: #fff;
  background: #EC1B30;
  transition: all .3s ease-in-out;
}


.faq-cntnt .accordion-container .accordion-title.open::before {
  content: "-";
}

.faq-cntnt .accordion-content{
  padding-bottom: 10px;
}

.faq-cntnt .accordion-content p{
    font-size: 14px;
    color: #000;
}

.questions-sec{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.questions-sec .q-text{
    max-width: 60%;
}

.q-text h5{
    color: #EC1B30;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.q-text p{
    color: #bababa;
    font-weight: 400;
    font-size: 16px;
}

.clients-sec{
    width: 100%;
    box-sizing: border-box;
    margin-top: 80px;
}

.clients-sec-row{
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
}

.clients-sec-image img{
    width: 100%;
    object-fit: cover;
    display: block;
}

.clients-sec-cntnt{
    padding: 0px 80px 0px 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.client-review-holder h2{
    font-weight: 600;
    font-size: 58px;
    line-height: 58px;
    max-width: 340px;
    color: #000;
    margin-bottom: 35px;
}

.client-review-holder p{
    font-weight: 400;
    font-size: 14px;
    line-height: 22.53px;
    color: #40403A;
}

.client-personal-info{
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
}

.left-quote img{
    max-width: 64px;
    object-fit: cover;
    display: block;
}

.client-personal-info .p-info{
    width: 100%;
    border-top: 3px solid #F3F3F3;
    padding-top: 10px;
}

.p-info h6{
    font-weight: 700;
    font-size: 14px;
    color: #40403A;
}

.p-info span{
    font-weight: 400;
    font-size: 14px;
    color: #BCBCBC;
}

.client-slider.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
}
.client-slider .swiper-slide {
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.client-pagination {
    bottom: 0px !important;
    text-align: left !important;
}

.client-pagination .swiper-pagination-bullet{
    background-color: #000;
    opacity: 1;
    transition: background-color 0.2s;
}

.client-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active){
    margin-bottom: 1px !important;
}

.client-pagination .swiper-pagination-bullet-active{
    transform: scale(1.4);
    background-color: #fff;
    border: 2px solid #EC1B30;
    transition: all 0.2s;
}

.obligations-sec{
    width: 100%;
    box-sizing: border-box;
    padding-top: 80px;
    margin-top: -290px;
}

.obligations-main{
    width: 100%;
    box-sizing: border-box;
    background-image: url(../images/og-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 580px;
    transform: translateY(290px);
}

.obligations-holder{
    text-align: center;
    height: fit-content;
    max-width: 830px;
    margin: 0 auto;
}

.obligations-holder h2{
    color: #fff;
    font-weight: 600;
    font-size: 58px;
    line-height: 58px;
    margin-bottom: 40px;
}

.obligations-holder p{
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}

.obligations-holder a{
    display: block;
    width: fit-content;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    padding: 18px 30px;
    border-radius: 30px;
    margin: 50px auto 0;
}

.sonic-footer{
    width: 100%;
    box-sizing: border-box;
    background-color: #f0f0f0;
    padding-top: 400px;
}

.footer-row{
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 30% 20% repeat(1,1fr);
    gap: 30px;
    margin-bottom: 75px;
}

.foot-col .foot-logo img{
    max-width: 162px;
    object-fit: cover;
    display: block;
}

.foot-info{
    margin-top: 75px;
} 

.foot-info a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
    color: #000;
    font-weight: 400;
    font-size: 16px;
}

.foot-info a img{
    margin-right: 10px;
}

.foot-info a span{
    font-weight: 700;
    margin-right: 2px;
}

.foot-info p{
    font-weight: 400;
    font-size: 16px;
    color: #000;
    line-height: 24px;
    margin-top: 56px;
}

.foot-col h4,
.foot-col-3 h4{
    font-weight: 700;
    font-size: 18px;
    color: #EC1B30;
    line-height: 27px;
}

.foot-col .foot-nav,
.foot-col-3 .office-hrs{
    margin-top: 75px;
    
}

.foot-col .foot-nav li{
    display: block;
    margin-bottom: 10px;
}

.foot-col .foot-nav li a{
    font-weight: 400;
    font-size: 16px;
    color: #000;
}


.foot-col .office-hrs{
    margin-top: 75px;
    max-width: 360px;
}

.foot-col-3 .office-hrs li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.foot-col-3 .office-hrs li span,
.foot-col-3 .office-hrs li p{
    font-weight: 400;
    font-size: 16px;
    color: #000;
    line-height: 27.28px;
}

.foot-copyright{
    width: 100%;
    box-sizing: border-box;
    background-color: #EC1B30;
    text-align: center;
    padding: 22px 0px;
}

.foot-copyright p{
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.foot-copyright .foot-icons{
    display: none;
}

/* ABOUT US PAGE */

.hotel-sec.about-sec{
    width: 98%;
    margin: 0 auto;
    box-sizing: border-box;
    background-image: url(../images/about-banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* CONTACT US PAGE */

.hotel-sec.contact-banner{
    width: 98%;
    margin: 0 auto;
    box-sizing: border-box;
    background-image: url(../images/about-banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.our-info-sec{
    width: 100%;
    box-sizing: border-box;
    margin-top: 150px;
}

.our-info-holder{
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    max-width: 95%;
    margin: 0 auto;
}

.our-info{
    background-color: #fff;
    box-sizing: border-box;
    border: 1.5px solid #e8e8e8;
    padding: 40px 30px 40px 40px;
    transition: all 0.3s;
}

.our-info .info-img{
    margin-bottom: 20px;
}

.our-info .info-img img{
    transition: all 0.2s;
}

.our-info .info-cntnt h5{
    font-weight: 600;
    font-size: 24px;
    color: #000;
    margin-bottom: 5px;
    transition: all 0.2s;
}

.our-info .info-cntnt p{
    font-weight: 300;
    font-size: 16px;
    color: #000;
    line-height: 24px;
    transition: all 0.2s;
}

.our-info:hover{
    background-color: #EC1B30;
}

.our-info:hover .info-img img{
    filter: brightness(15);
}

.our-info:hover h5,
.our-info:hover p{
    color: #fff;
}

.contact-sec{
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    padding: 100px 0px 0px;
}

.contact-sec h2{
    text-align: center;
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
}

.c-form-holder{
    max-width: 770px;
    margin: 50px auto 0;
}

.c-form-holder .form-row{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.form-row input{
    width: 100%;
    outline: none;
    background-color: #F8F8F8;
    border: 1px solid #cecece;
    box-sizing: border-box;
    padding: 28px 40px;
    font-weight: 500;
    font-size: 14px;
    color: #898989;
    border-radius: 40px;
}
.form-row input::placeholder, .c-form-holder textarea::placeholder{
    font-size: 14px;
    color: #898989;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 18px;
}

.c-form-holder textarea{
    width: 100%;
    outline: none;
    background-color: #F8F8F8;
    border: 1px solid #cecece;
    box-sizing: border-box;
    padding: 28px 40px;
    font-weight: 500;
    font-size: 14px;
    color: #898989;
    border-radius: 40px;
    resize: vertical;
    max-height: 250px;
}

.c-form-holder button{
    outline: none;
    border: none;
    display: block;
    width: fit-content;
    background-color: #EC1B30;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    padding: 14px 40px;
    border-radius: 30px;
    margin: 30px auto 0;
}

/* TERMS & CONDITIONS PAGE */

.terms-sec{
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    padding: 130px 0 80px;
}

.terms-n-conditions{
    width: 100%;
    box-sizing: border-box;
}

.terms-n-conditions{
    width: 100%;
    text-decoration: initial;
    overflow-x: hidden;
}

.terms-n-conditions h1{
    font-size: 26px;
    color: #000;
    margin-bottom: 10px;
}

.terms-n-conditions .latest-date{
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #595959;
    margin-bottom: 30px;
}

.terms-n-conditions .heading-2{
    display: inline-block;
    margin: 30px 0 20px;
    font-size: 19px;
    font-weight: 600;
    color: #000;
}

[data-custom-class='body_text']{
    color: #595959 !important;
    font-size: 14px !important;
    margin: 5px 0;
    display: inline-block;

}

.terms-n-conditions h2{
    margin: 30px 0 20px;
    font-size: 19px;
    font-weight: 600;
    color: #000;
}

.terms-n-conditions h3{
    margin: 10px 0;
    font-size: 17px;
    font-weight: 600;
    color: #000;
}

.terms-n-conditions p{
    font-size: 14px;
    color: #595959;
    font-weight: 400;
    margin-bottom: 15px;
}

.terms-n-conditions ul,
.terms-n-conditions ol{
    margin: 20px 0;
    font-size: 14px;
    color: #595959;
    font-weight: 400;
}

.terms-n-conditions ul li,
.terms-n-conditions ol li{
    margin-bottom: 2px;
}

.terms-n-conditions ul li:nth-last-child(1),
.terms-n-conditions ol li:nth-last-child(1){
    margin-bottom: 0;
}

.terms-n-conditions ul{
    padding-left: 35px;
}

.terms-n-conditions ul li{
    list-style-type: square;
}

