
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

body {
  --primary-color:#FFA62E;
  --secondary-color:#075892;
  --primary-gradient: linear-gradient(90deg, #FF8762 0%, #FFC200 100%);
  --bg-white:#fff;
  --text-white:#fff;
  --text-black:#000;
  --body-text:#111928;
  --font-w-medium:'Euclid Circular B Medium';
}


@font-face {
    font-family: 'Euclid Circular B';
    src: url('/_assets/fonts/Euclid-Circular-B-Regular.eot');
    src: url('/_assets/fonts/Euclid-Circular-B-Regular.eot?#iefix') format('embedded-opentype'),
         url('/_assets/fonts/Euclid-Circular-B-Regular.woff2') format('woff2'),
         url('/_assets/fonts/Euclid-Circular-B-Regular.woff') format('woff'),
         url('/_assets/fonts/Euclid-Circular-B-Regular.ttf')  format('truetype'),
         url('/_assets/fonts/Euclid-Circular-B-Regular.svg#Euclid Circular B') format('svg');
}

@font-face {
    font-family: 'Euclid Circular B Medium';
    src: url('/_assets/fonts/Euclid-Circular-B-Medium.eot');
    src: url('/_assets/fonts/Euclid-Circular-B-Medium.eot?#iefix') format('embedded-opentype'),
         url('/_assets/fonts/Euclid-Circular-B-Medium.woff2') format('woff2'),
         url('/_assets/fonts/Euclid-Circular-B-Medium.woff') format('woff'),
         url('/_assets/fonts/Euclid-Circular-B-Medium.ttf')  format('truetype'),
         url('/_assets/fonts/Euclid-Circular-B-Medium.svg#Euclid Circular B Medium') format('svg');
}


::-webkit-scrollbar {
  width: 3px;
  height:3px;
}

::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

.btn {
  box-shadow: none !important;
}

a {
  text-decoration: none;
}
ul,
li {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.form-control,
.form-select {
  box-shadow: none !important;
}

h2 {
  font-family:var(--font-w-medium);
  font-size:32px;
  color:#000;
  margin-bottom:25px;
}

.btn.btn-gradient {
    height: 48px;
     background: linear-gradient(90deg, #FF8762 0%, #FFC200 100%);
    color:#fff;
    padding: 0px 25px;
    border-radius: 8px;    
    border: none;
}
.btn.btn-gradient:hover{
  background: linear-gradient(90deg, #FFC200 0%, #FF8762 100%);
}




body {
  font-family: 'Euclid Circular B';
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  overflow-x: hidden;
  background-color: var(--bg-100);
  color: var(--text-white);
}

.main_haeder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent !important;
    z-index: 9999;
}
.main_haeder.fixed {
    background: #fff!important;
    z-index: 9999;
    box-shadow: 0 0 5px #cfcfcf;
}
.main_haeder a.nav-link {
    font-size: 16px;
    color: #000 !important;
    padding: 0px 16px !important;
}
.main_haeder a.nav-link.active {
  color: #FFA62E !important;
}
.main_haeder a.nav-link:hover {
  color: #FFA62E !important;
}
.main_haeder .button_grp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.main_haeder .button_grp a.text-btn {
    font-size: 16px;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.main_haeder .button_grp a.text-btn:hover {
    color:var(--primary-color) !important;
}
.main_haeder .button_grp .btn {
    height: 40px;
    border: none;
    border-radius: 8px;
    padding: 0px 15px;
    font-weight: 300;
}

.main_haeder .button_grp .btn-primary {    
    background: #FFA62E;
}
.main_haeder .button_grp .btn-primary:hover {    
    background: #ee931c;
}
.main_haeder .button_grp .btn-secondary {    
    background: #075892;
}
.main_haeder .button_grp .btn-secondary:hover {    
    background: #033862;
}

.main_haeder ul.dropdown-menu {
    width: 450px;
    border: none;
    border-radius: 13px;
    padding: 16px;
    flex-wrap: wrap;
    gap: 16px;
    position: absolute;
    top: 28px;
    box-shadow: 0px 24px 32px 4px #A7AEBA1F;

}
.main_haeder ul.dropdown-menu:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 16px solid #fff;
    position: absolute;
    top: -11px;
}

.main_haeder ul.dropdown-menu li a{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 11px;
    line-height: 15px;
    padding: 8px 3px;
    color:#1a1a1a;
}
.main_haeder ul.dropdown-menu li a img {
    width: 28px;
}
.main_haeder ul.dropdown-menu li a:hover {
  color:var(--primary-color);
}
.main_haeder .dropdown-menu {
  display: none;
  transition: 0.2s ease-in-out;
}
.main_haeder .dropdown:hover .dropdown-menu {
  display: block;
}

.sign_in_modal{
    display: none;   
    z-index:99999;
}
.sign_in_modal .login-box {
    z-index: 99999;
    width: 100%;
    max-width: 450px;
    margin: auto;
    position: absolute;
    top: 44px;
    background-color: #fff;
    box-shadow: 0px 24px 32px 4px #A7AEBA1F;
    padding: 15px;
    border-radius: 11px;
    right: 0;
}
.sign_in_modal .login-box::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 16px solid #fff;
    position: absolute;
    top: -11px;
    right: 20px;    
}

.sign_in_modal .form-group {position:relative; margin-bottom:18px;}
.sign_in_modal .form-group input {width:100%; padding:16px 67px; padding-right:55px; border-radius:12px; background:#fff; font-size:15px; outline:none; transition:0.2s ease-in-out; color:#555; box-shadow:0px 1px 7px 0px #CDCDCD40; border:1px solid #DFDFDF; font-weight:400;}
.sign_in_modal .form-group input::placeholder {color:#c5c5c5; font-weight:400 !important; font-family:'Euclid Circular B';}
.sign_in_modal .input-icon {position:absolute; top:50%; left:7px; transform:translateY(-50%); width:50px; height:50px; background:#F5F5F5; border-radius:10px; display:flex; justify-content:center; align-items:center;}
.sign_in_modal .toggle-eye {position:absolute; top:50%; right:16px; transform:translateY(-50%); cursor:pointer;}
.sign_in_modal .form-options {display:flex; justify-content:space-between; align-items:center; margin-bottom:20px;}
.sign_in_modal .remember input {width:18px; height:18px; margin-right:6px;}
.sign_in_modal .remember span {color:#9F9F9F; font-size:18px;}
.sign_in_modal .forgot {
    color: #f29c30;
    text-decoration: underline;
    font-size: 18px;
}
.sign_in_modal .forgot:hover {text-decoration:none;}
.sign_in_modal .btn-signin {
    width: 100%;
    padding: 13px;
    background: #064a86;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s ease;
}
.sign_in_modal .btn-signin:hover {background:#033862;}

.sign_in_modal label {
    display: inline-flex;
    align-items: center;
    color: #9F9F9F;
    font-size: 18px;
}
.sign_in_modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 20px;
}
/* show state */
.sign_in_modal.open {
  display: block;
}
/* prevent accidental pointer issues */
.sign_in_modal, .sign_in_modal * { -webkit-tap-highlight-color: transparent; }




.hero_section {
    background-image: url('/_assets/_images/hero-bg.png');
    background-size: cover;
    min-height:750px;
    background-repeat: no-repeat;
    background-position: bottom;
    padding-top: 150px;
}

.hero_section .large_main_image .top-right-corner {
    position: absolute;
    top: -13%;
    right: 7%;
}
.hero_section .large_main_image .bottom-left-corner {
    position: absolute;
    bottom: -17%;
    left: -10%;
    width: 50%;
}

.hero_section .Hero_content {

}
.Hero_content h1 {
    width: 86%;
    font-size: 50px;
    color:#3F3F3F;
}
.Hero_content h1 span {
  color:#075892;
}
.Hero_content p {
    font-size: 20px;
    color: #1a1a1a;
    font-family: var(--font-w-medium);
    margin: 20px 0px;
}
.Hero_content .btn-grp .btn {
    height: 48px;
    background-color: #fff;
    padding: 0px 19px;
    border-radius: 8px;
    color: #000;
    border: none;
}
.Hero_content .btn-grp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.Hero_content .btn-grp .btn.btn-trail {
  background: linear-gradient(90deg, #FF8762 0%, #FFC200 100%);
  color:#fff;
}
.Hero_content .btn-grp .btn.btn-trail:hover{
  background: linear-gradient(90deg, #FFC200 0%, #FF8762 100%);
}
.Hero_content .btn-grp .btn.btn-Border{
  background:transparent;
  color:#000;
  border:1px solid #fff;
}
.Hero_content .btn-grp .btn.btn-Border:hover {
  background-color:#fff !important;
}


.Trusted_channel {
  margin-bottom:40px;
  margin-top:20px;
}
.Trusted_channel h3 {
    margin-bottom:30px;
    text-align: center;
    font-size: 24px;
    font-family:var(--font-w-medium);
    color:#000;
}
.Seamlessly_integrated {
  background-color:#F1F5FD;
  padding:40px 0px;
  text-align:center;
}
.Seamlessly_integrated h5 {color:#2E2E2E; font-size:22px; font-family:var(--font-w-medium); margin-bottom:20px;}
.Seamlessly_integrated .Seamlessly_list {
  display:flex; flex-wrap:wrap; align-items:center; gap:20px;
  width:100%;
}
.Seamlessly_integrated .Seamlessly_list li {
  display:inline-flex; gap:10px; align-items:center;
  color:#2E2F33; font-size:20px;
  font-family:var(--font-w-medium);
}

.hotel_management {
  padding:60px 0px;
}

.hotel_management .feature_list {
  display:flex;
  flex-direction:column;
  gap:15px;
}
.hotel_management .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0px 4px 4px 0px #23286914;
    max-width: 650px;
    border: 1px solid #f1f1f1;
    cursor: pointer;
}
.hotel_management .feature-card.selected{
  background: #F7FAFD;
  border: 1px solid #BDD8F3;
}

.hotel_management .feature-card .icon-box {
  width:50px;
  height: 50px;
  border-radius: 50%;

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

.hotel_management .feature_list .feature-card:nth-child(1) .icon-box { background: #f6d3d5;}
.hotel_management .feature_list .feature-card:nth-child(2) .icon-box { background: #cce8ff;}
.hotel_management .feature_list .feature-card:nth-child(3) .icon-box { background: #d5f2d4;}
.hotel_management .feature_list .feature-card:nth-child(4) .icon-box { background: #f2d7fc;}
.hotel_management .feature_list .feature-card:nth-child(5) .icon-box { background: #fff3df;}
.hotel_management .feature_list .feature-card:nth-child(6) .icon-box { background: #e8edfe;}


.hotel_management .feature-card .icon-box img {

}

.hotel_management .feature-card .content {
    display: inline-flex;
    flex-direction: column;
    width: calc(100% - 100px);
    justify-content: end;
}

.hotel_management .feature-card .content h3 {
  margin: 0;
  font-size: 20px;
  font-family:var(--font-w-medium);
  color: #1a1a1a;
}
.hotel_management .feature-card .content p {
    margin: 8px 0 6px;
    font-size: 16px;
    color: #62636a;
    line-height: 21px;
}

.hotel_management .feature-card .content a {
  color:#2684FC;
  text-decoration: none;
  font-family:var(--font-w-medium);
  font-size:16px;
  line-height:20px;
}
.hotel_management .feature-card .content a:hover {
    color:var(--primary-color);
}
.hotel_management .feature-card .content a:hover {
  text-decoration: underline;
}



.Testimonials_section {
  background-color:#F6F9FD;
  padding:100px 0px;
}
.testomonials_slider  .testomonials_item {
    text-align: center;
}
.testomonials_slider  .testomonials_item .testomonials_item_icon {
    display: inline-block;
    margin: 0 auto;
}
.testomonials_slider  .testomonials_item .testomonials_content {
    font-family: var(--font-w-medium);
    text-align: center;
    font-size: 24px;
    color: #111928;
    width: 61%;
    margin: 30px auto;
    line-height: 37px;
}
.testomonials_slider  .testomonials_item .testomonials_user{
  font-family: var(--font-w-medium);
  color:#2E2E2E;
  font-size:16px;
  display: inline-flex;
  gap: 6px;
}
.testomonials_slider  .testomonials_item .testomonials_user .form {
  color:#999;
}

.manage_hotel {
  background-color:#DBE1F4;
  padding:60px 0px;
}
.manage_hotel .manage_hotel_inner_box {
  border-radius:25px;
  background-color:#fff;
  padding:25px 15px;
}
.manage_hotel_inner_box .manage_hotel_item {
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #2E2E2E;
    padding: 16px 15px;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}
.manage_hotel_inner_box .manage_hotel_item.bg-01 {background-image: url('/_assets/_images/bg-1.png');}
.manage_hotel_inner_box .manage_hotel_item.bg-02 {background-image: url('/_assets/_images/bg-02.png');}
.manage_hotel_inner_box .manage_hotel_item.bg-03 {background-image: url('/_assets/_images/bg-03.png');}
.manage_hotel_inner_box .manage_hotel_item.bg-04 {background-image: url('/_assets/_images/bg-04.png');}
.manage_hotel_inner_box .manage_hotel_item.bg-05 {background-image: url('/_assets/_images/bg-05.png');}
.manage_hotel_inner_box .manage_hotel_item.bg-06 {background-image: url('/_assets/_images/bg-06.png');}

.manage_hotel_inner_box .manage_hotel_item .icon {
  text-align:center;
}
.manage_hotel_inner_box .manage_hotel_item h5 {
    font-family: var(--font-w-medium);
    margin: 10px 0px;
}
.manage_hotel_inner_box .manage_hotel_item p {
    font-family: var(--font-w-medium);
    font-size: 14px;
    color: #666666;
    width: 90%;
    margin: 0 auto;
}

.popular_plans {
  background-color: #FEF9E7;
  padding:50px 0px;
  color:#2E2E2E;
}
.popular_plans .section_head {text-align:center;}
.popular_plans .section_head p {
  font-size:18px;
}
.plan_item {
    border: 1px solid #E4E4E7;
    background: #fff;
    border-radius: 10px;
    padding: 14px 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.plan_item .plan_head {
    min-height:130px;
}

.plan_item h4 {
    text-align: center;
    font-size: 22px;
    color: #000;
    font-family:var(--font-w-medium);
}
.plan_item .plan_title {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}
.plan_item .faature_title {
    color: #2684FC;
    font-size: 24px;
       font-family:var(--font-w-medium);
}
.plan_item .faature_list {
  margin-top:10px;
}
.plan_item .faature_list li {
    color: #52525B;
    line-height: 21px;
    font-size: 16px;
    padding: 6px 0px;
}
.plan_item .bottom_plan {
  text-align:center;
  margin-top:auto;
  padding-top:10px;  
}
.plan_item .bottom_plan .btn-inquery {
    background: #1C274C;
    border: 1px solid #2684FC;
    font-size: 16px;
    width:90%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    box-shadow: none;
    border-radius: 10px;
    padding: 13px;
}
.plan_item .bottom_plan .btn-inquery:hover {
  background:#2684FC;
}

.plan_item .bottom_plan p {
    margin-bottom: 0px;
    margin-top: 10px;
    font-size: 14px;
}
.plan_item.selected {
  background: #1C274C;
  border: 1px solid #2684FC;
  color:#fff;
}
.plan_item.selected  h4{color: #FFC200;}
.plan_item.selected .faature_list li {
    color: #fff;
}
.plan_item.selected .bottom_plan .btn-inquery {
  background:#FFC200;
  border: 1px solid #D09E00;
  color: #1C274C;
}

.faq_section{
  padding:60px 0px;
}
.faq_section .accordion-item {
    border: none;
}
.faq_section .accordion-item .accordion-button {
    border: none;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid #E5E7EB;
    height: 66px;
    font-size: 20px;
    font-family:var(--font-w-medium);
    color:#111928;
    padding:0px;
}
.faq_section .accordion-item .accordion-body {
    padding: 10px 0px;
}
.faq_section .accordion-item .accordion-body p {
    font-size: 18px;
    color: #6B7280;
}
.faq_section .accordion-item .accordion-body p:last-child{
  margin-bottom:0px;
}

.footer_section {
    background-color: #011829;
    padding-top: 70px;
    padding-bottom: 25px;
}

.footer_section h2 {
    color: #fff;
    margin-bottom:10px;
}
.footer_section .footer_top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.footer_section .footer_top p {
    margin-top: 20px;
    font-size: 20px;
    text-align: center;
    line-height: 32px;
}

.footer_section .country_items {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 25px;
    text-align: center;
    font-size: 18px;
    border-radius: 20px;
    min-height: 282px;
}

.footer_section .country_items.uk {
    background-image: url('/_assets/_images/uk-bg.png');
}
.footer_section .country_items.greece {
    background-image: url('/_assets/_images/greece-bg.png');
}
.footer_section .country_items.nigeria {
    background-image: url('/_assets/_images/nigeria-bg.png');
}
.footer_section .country_items.spain {
    background-image: url('/_assets/_images/spian-bg.png');
}

.footer_section .country_items .country_name {
    font-size: 22px;
    color: #fff;
    font-family: var(--font-w-medium);
    margin-top:20px;
    margin-bottom:10px;
}
.footer_section .country_items .address {
    margin-bottom: 4px;
}
.footer_section .country_items a {
    color: #fff;
}
.footer_section .country_items .tell {
    line-height: 28px;
}
.footer_section .copy_right_wrap {
    font-size: 18px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
    border-bottom: 1px solid #2B587A;
}
.footer_section .copy_right_wrap .trmmenu {
  display:inline-flex;
  align-items:center;
  gap:30px;
}
.footer_section .copy_right_wrap .trmmenu a {
  color:#fff;
  text-decoration:underline;
}

.footer_section .footer_menu .menu {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding-top: 25px;
}
.footer_section .footer_menu .menu a{
  color:#fff;
  font-size:16px;
}

/*PMS page*/

.pms_hero {
    background-image: url('/_assets/_images/PMS-BG.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: auto !important;
}

.booking_engine {
    background-image: url('/_assets/_images/booking-engine-banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: auto !important;
}

.channel_manager {
    background-image: url('/_assets/_images/channel_manager_banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: auto !important;
}

.integrated_payment {
    background-image: url('/_assets/_images/integrated-banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: auto !important;
}

.pricing_section {
    background-image: url('/_assets/_images/pricing_banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: auto !important;
}

.digital-marketing-banner {
    background-image: url('/_assets/_images/digital-marketing-banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: auto !important;
}

.pms_hero:before, .booking_engine:before {
    background-color: rgb(0 0 0 / 80%);
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
}
.pms_hero .psm_wrap, .booking_engine .psm_wrap {
    display: flex;
    gap: 40px;
    padding-left: 10%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 999;
}
.channel_manager .psm_wrap, .pricing_section .psm_wrap {
    display: flex;
    gap: 40px;
    padding-left: 10%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 999;
    padding-right: 10%;
    padding-bottom: 4%;
}


.pms_hero .psm_wrap .Hero_content  h1, .booking_engine .psm_wrap .Hero_content  h1 {
    color:#fff;
}
.pms_hero .psm_wrap .Hero_content  h1 b, .booking_engine .psm_wrap .Hero_content  h1 b {
    color:#4BABF0;
}
.pms_hero .psm_wrap p, .booking_engine .psm_wrap p {
    color:#fff !important;
}
.pms_hero .psm_wrap .btn, .booking_engine .psm_wrap .btn {
    color:#fff !important;
}
.pms_hero .psm_wrap .btn-Border:hover, .booking_engine .psm_wrap .btn-Border:hover {
    color:#011829 !important;
}
.pms_hero .psm_wrap .Pms_right_hero, .booking_engine .psm_wrap .Pms_right_hero {
    width: 44%;
}

.pms_hero .psm_wrap .Pms_right_hero1 {
    width: 25%;
}

.pms-sections {
    padding: 60px 0px;
}
.bg-light {
    background-color:#fffaf4;
}
.digital-marketing-banner .psm_wrap {
    padding-right: 10%;
}
.pms-sections .pms-box-content .badge-pill {
    background: #ECEFF4;
    color: #000;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.pms-sections .pms-box-content h2 {
    font-weight: 600 !important;
}

.pms-sections .pms-box-content p {
    font-size: 18px;
    line-height: 28px;
    color: #696969;
}

.pms-sections .pms-box-content h6 {
    font-weight: 600 !important;
    font-size: 20px !important;
    color: #000;
    margin-bottom: 10px !important;
}
.pms-sections .pms-box-content .feature-icon {
    width: 20px;
    height: 20px;
    background: #228AD5;
    border-radius: 50%;
    margin-top: 2px;
    flex-shrink: 0;
    border: 4px solid #C3E6FF;
}
.pms-sections .pms-box-content .image-placeholder {
    width: 100%;
    height: 420px;
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.pms-sections .pms-box-content .buttletbox_items{
    background-color: #F5F5F5;
    padding: 15px;
    align-items: center;
    border-radius: 10px;
}

.channel_manager_extra, .bg-light-orange { 
    background-color: #FDF9F4;
}

.blue-light {
    background-color: #cce8ff !important;
}
.green-light {
    background-color: #d5f2d4 !important;
}

.pms-box-content span {
    color: #333;
    font-size: 20px;
    padding-bottom: 15px;
    display: inline-block;
}
.nmrl-text {
    color:#333;
    text-align: left;
}
.text-black {
    color: #333 !important;
}
.bg-blue {
    background-color: #E4ECFF;
}
.newsletter-box input {
    width: 100%;
    border: 0;
    padding: 15px 20px;
    border-radius: 10px;
}

section.pms-sections.bg-blue .pms-box-content p {
    font-weight: 600;
    color: #333 !important;
}
.news-letter-area{
    color: #333;
}
.news-letter-area h4 {
    font-weight: 600;
}
.newsletter-box {
    position: relative;
}
.newsletter-box input {
    width: 100%;
    border: 0;
    padding: 15px 20px;
    border-radius: 10px;
    height: 76px;
}






@media only screen and (max-width:1440px) {
.Hero_content h1 {
    font-size: 44px;
}
.Hero_content p {
    font-size: 18px;
}
.faq_section .accordion-item .accordion-button {
    height:58px;
    font-size: 18px;
}
.faq_section .accordion-item .accordion-body p {
    font-size: 16px;
}
.hero_section {
    min-height:600px;
}
.pms_hero .psm_wrap, .booking_engine .psm_wrap {
    padding-left: 6%;
}



}


@media only screen and (max-width:1280px) {
  .Hero_content h1 {
      font-size: 38px;
  }
  .main_haeder .button_grp .btn {
      padding: 0px 9px;
  }
  .main_haeder a.nav-link {
    padding: 0px 11px !important;
}
.Seamlessly_integrated .Seamlessly_list {
    justify-content: center;
}
.Seamlessly_integrated .Seamlessly_list li {
    font-size: 18px;
}


}

@media only screen and (max-width:1024px) {
.Testimonials_section {
    padding: 45px 0px;
}
.testomonials_slider  .testomonials_item .testomonials_content {
    font-size: 20px;
    width: 61%;
    margin: 13px auto;
}


}

@media only screen and (max-width:1024px) {
.footer_section .country_items {
    padding: 20px;
    font-size: 16px;
    min-height: 263px;
}
.footer_section .country_items .country_name {
    font-size: 20px;
    margin-top: 14px;
    margin-bottom: 6px;
}
.footer_section .footer_top p {
    font-size: 18px;
    line-height: 26px;
}
h2 {
    font-size: 28px;
}
.hero_section .large_main_image .bottom-left-corner {
    left: -5%;
    width: 185px;
}
.hero_section .large_main_image .top-right-corner {
    position: absolute;
    top: -13%;
    right: 7%;
    width: 80px;
}
.Hero_content h1 {
    font-size: 28px;
}
.Hero_content p {
    font-size: 16px;
}
.Hero_content .btn-grp .btn {
    padding: 0px 16px;
}
.Seamlessly_integrated .Seamlessly_list {
    gap: 10px;
}


}



.slick-slide {
  margin: 0 10px; /* 30px total gap */
}

.slick-list {
  margin: 0 -10px;
}



@media only screen and (max-width:768px) {  
.footer_menu {
    display: none;
}
.footer_section {
    padding-top: 45px;
}
.footer_section .copy_right_wrap {
    padding-bottom: 0px;
    border: none;
}



}


@media only screen and (max-width:991px) {

.navbar-collapse {
    position: fixed;
    top: 60px;
    transform: inherit !important;
    width: 100vw;
    min-width: 100%;
    right: -100vw;
    background-color: #fff;
    z-index: 99999;
    height: 100vh !important;
    transition: 0.3s all;
    display: block !important;
    padding: 17px;
    border-top: 1px solid #ededed;
}


    .navbar-collapse.show {
        right: 0;
        transition: 0.3s all;
        display: block !important;
        height: 100vh !important;
        transform: inherit !important;


    }

    .navbar-collapse.collapsing {
        right: 0;
        transition: 0.3s all;
        display: block !important;
        height: 100vh !important;
        transform: inherit !important;
    }
    .main_haeder  button.navbar-toggler {
      border: none;
      background: transparent;
      padding: 0px;
      height: auto;
      box-shadow: none !important;
  }
  .main_haeder li.nav-item {
    padding: 7px 0px;
}
.main_haeder .button_grp {
    display: inline-flex;
    align-items: start;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: column;
    padding-left: 10px;
}
.main_haeder ul.dropdown-menu {
    width: 100%;
    position: relative;
    top: 0;    
}

.navbar .dropdown-menu {
    display: none !important;
}
.navbar .dropdown-menu.show {
    display: block !important;
}
/* .navbar .dropdown:hover .dropdown-menu {
    display: block !important;
  } */
   .main_haeder ul.dropdown-menu:before {
    display:none;
}
.main_haeder {
    padding: 0px;
}
.sign_in_modal .login-box {
    width:100%;
    box-shadow: none;
    border-radius:0px;
    height:50vh;
}
.sign_in_modal{
    padding:0px;
}
.sign_in_modal .login-box::before {
    display:none;
}
.sign_in_modal .login-box {
    top: 65px;
}
.mobilemnuoffcanvas {
    z-index: 999999;
}
.mobilemnuoffcanvas.offcanvas-end {
    width: 360px !important;
}
.mobilemnuoffcanvas .nav-row {
    padding: 0;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}
.mobilemnuoffcanvas .nav-row .home-link {
    color: #25313a;
    font-weight: 500;
    text-decoration: none;
    font-size: 18px;
    display: block;
    width: 100%;
}


.mobilemnuoffcanvas .features-toggle {
    display: flex;
    align-items: center;
    color: #25313a;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
    position:relative;
}
.mobilemnuoffcanvas .features-toggle .right_drp_arrow {
    position: absolute;
    right: 0;
    top: 5px;
    font-weight: bolder;
    font-size: 20px !important;
    color: #000 !important;
}
.mobilemnuoffcanvas .features-card {
    width: 100%;
    margin-bottom: 9px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(37,49,58,0.06);
    border: 1px solid rgb(44 49 53 / 6%);
    padding: 0px 14px;
    overflow: hidden;
}
.mobilemnuoffcanvas .features-list {list-style:none; margin:0; padding:0;}
.mobilemnuoffcanvas .features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0px;
    border-radius: 10px;
    cursor: pointer;
}

.mobilemnuoffcanvas .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255,177,59,0.12), rgba(255, 177, 59, 0.04));
    color: #ffb13b;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.mobilemnuoffcanvas .feature-icon img {
    width: 28px;
}
.mobilemnuoffcanvas .nav-row .home-link i {
    font-size: 20px;
    margin-right: 8px;
    color:var(--primary-color);
}

.mobilemnuoffcanvas .feature-label a{font-size:16px; color:#152228;}
.mobilemnuoffcanvas .action-buttons {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top:40px;
}
.mobilemnuoffcanvas .btn-demo {padding:10px 12px; border-radius:8px; border:0; background:#ffb13b; color:#fff; font-weight:700; cursor:pointer; text-align:center;}
.mobilemnuoffcanvas .btn-trial {padding:10px 12px; border-radius:8px; background:#0b63a3; color:#fff; text-decoration:none; display:inline-block; text-align:center;}

@media (max-width:540px) {
.static-list, .action-buttons {margin-left:3%; margin-right:3%;}
}

.hero_section {
    min-height: 400px !important;
}
.pms_hero .psm_wrap, .booking_engine .psm_wrap {
    padding-left: 3%;
    align-items: end;
}




}

@media only screen and (max-width:767px) {
.Seamlessly_integrated h5 {
    font-size: 20px;
    text-align: left;
    line-height: 28px;
}
.Seamlessly_integrated .Seamlessly_list li {
    font-size: 16px;
    width: 100%;
}
.testomonials_slider  .testomonials_item .testomonials_content {
    font-size: 18px;
    width: 90%;
    margin: 20px auto;
}
.testomonials_slider  .testomonials_item .testomonials_user {
    font-size: 14px;
}
.Testimonials_section {
    padding: 25px 0px;
}
.popular_plans {
    padding: 25px 0px;
}
h2 {
    font-size: 26px;
}
.faq_section .accordion-item .accordion-button {
    height: 58px;
    font-size: 16px;
}
.footer_section .footer_top p {
    line-height: 30px;
}
.footer_section .country_items {
    min-height: auto;
}
.footer_section .copy_right_wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size:16px;
}
.manage_hotel_inner_box .manage_hotel_item .icon {
    display: flex;
    justify-content: center;
}
.manage_hotel_inner_box .manage_hotel_item {
    height: 100%;
    border: 1px solid #F1EFF8;
}
.manage_hotel_inner_box h2 {
    font-size: 22px;
}
.smart_manage_slider  .slick-dots li button {
    width: 27px;
    height:9px;
    background: #E5E5E5;
    border-radius: 30px;
}
.smart_manage_slider .slick-dots li button::before{
  display:none;
}
.smart_manage_slider .slick-dots li.slick-active button {
  background: #2684FC;
}

.faq_section {
    padding: 25px 8px;
}
.footer_section .country_items .country_name {
    font-size: 18px;
}
.hotel_management {
    padding: 25px 0px;
}
.manage_hotel {
    padding: 25px 0px;
}
.hero_section {
    padding-top: 80px;
}

.Hero_content h1 {
    font-size: 25px;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.Hero_content .btn-grp {
    display: inline-flex;
    margin-top: 0;
    width: 100%;
    justify-content: center;
}
.hero_section {
    min-height: 530px;
}
.Trusted_channel {
    margin-bottom:30px;
    margin-top: 0;
}
.Trusted_channel h3 {
    font-size: 18px;
    margin-bottom:20px;
}
.footer_logo img {
    max-width: 210px;
}
.pms_hero .psm_wrap, .booking_engine .psm_wrap  {
    padding:0px 10px;
    align-items: end;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.pms_hero .psm_wrap .Pms_right_hero, .booking_engine .psm_wrap .Pms_right_hero {
    width: 100%;
}
.pms-sections .pms-box-content .badge-pill {
    padding: 10px 15px;
    font-size: 16px;
}
.pms-sections {
    padding: 35px 0px;
}
.pms-sections .pms-box-content h2 {
    font-size: 18px;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
}
.pms-sections .pms-box-content p {
    font-size: 16px;
    line-height: 26px;
}
.pms-sections .pms-box-content h6 {
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #000;
    margin-bottom: 10px !important;
}.pms-sections .pms-box-content h6 {
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #000;
    margin-bottom: 10px !important;
}
.pms-sections .pms-box-content .feature-icon {
    width: 18px;
    height: 18px;
    margin-top: 0px;
    border: 3px solid #C3E6FF;
}
.pms_hero .psm_wrap .Pms_right_hero1 {
    width: 80%;
    padding-bottom: 15%;
}

.navbar.main_haeder.bg-white-header{
     background-color: #ffffff !important;
}



}
