*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 16px;
    color: #615941;
}
a, a:hover{
    text-decoration: none;
    color: #a3862f;
}
img{
    border: 0;
    width:100%
}
ul, li{
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Flex Common Class */
.d-flex{
    display: flex;
    flex-wrap: wrap;
}
.no-wrap{
    flex-wrap: nowrap;
}
.flex-col{
    flex-direction: column;
}
.flex-col-rev{
    flex-direction: column-reverse;
}
.flex-row{
    flex-direction: row;
}
.flex-row-rev{
    flex-direction:row-reverse;
}
.justify-content-end{
    justify-content:flex-end;
}
.justify-content-start{
    justify-content: flex-start;
}
.justify-content-center{
    justify-content: center;
    
}

.flex-grow-1{
    flex-grow: 1;
}
.flex-grow-2{
    flex-grow: 2;
}
.flex-grow-3{
    flex-grow: 3;
}

.align-items-start{
    align-items: flex-start;
}
.align-items-end{
    align-items: flex-end;
}
.align-items-center{
    align-items: center;
}

.w-20{
    width:20%
}
.w-25{
    width:25%
}
.w-30{
    width:30%
}
.w-40{
    width:40%
}
.w-45{
    width:45%
}
.w-50{
    width:50%
}
.w-55{
    width:55%
}
.w-60{
    width:60%
}
.w-70{
    width:70%
}
.w-75{
    width:75%
}
.w-80{
    width:80%
}

header, section, footer, .full-width, .w-100{
    width:100%;
}
header{
    position: fixed;
    padding: 15px 0;
    background: url(../images/jatayu-banner.jpg) no-repeat left top;
    background-size: cover;
    z-index: 10;
}
    header .logo{
        width:40%
    }
        header .logo img{
            max-width:150px
        }
    header ul{
        max-width: 250px;
        width: 60%;
        margin-left: auto;
        margin-top:5px;
        display: flex;
    }
        header ul li .booking-btn{
            border:solid 2px #fff;
            border-radius: 20px;
            padding:5px 20px;
            font-family: Arial, Helvetica, sans-serif;
            font-weight: 700;
            color: #fff;
            background: transparent;
            font-size: 17px;
        }
        header ul li:last-child{
            margin-left: auto;
            margin-top:7px;
            width:35px;
        }
        header ul li button.menu-btn{
            width: 20px;
            background: transparent;
            border:0;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        header ul li button.menu-btn span{
            width:25px;
            height: 3px;
            background: #fff;
            margin-bottom: 5px;
            animation: menu-move 1.5s ease-in-out;
            animation-iteration-count: infinite;
        }
        header ul li button.menu-btn span:nth-child(2){
            animation-delay: .2s;
        }
        header ul li button.menu-btn span:nth-child(3){
            animation-delay: .4s;
        }
        @-webkit-keyframes menu-move {
            0% {transform:scale(1,1)}
            20% {transform:scale(1.2,1.2)}
            40% {transform:scale(1,1)}
        }
        @keyframes menu-move {
            0% {transform:scale(1,1)}
            20% {transform:scale(1.5,1)}
            40% {transform:scale(1,1)}
          }
.inner-banner{
    background: url(../images/jatayu-banner.jpg) no-repeat left top;
    background-size: cover;
    padding: 110px 0 30px 0;
}
.inner-banner h1{
    color: #fff;
    font-size: 45px;
    font-weight: 900;
    margin: 0;
} 
.inner-banner h2{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin: 5px 0 0 0;
} 
.container{
    width:100%;
    max-width:980px;
    margin:0 auto;
    display: flex;
    flex-direction: row;
    padding-left:15px;
    padding-right: 15px;
}
.wrap-item{
    flex-wrap: wrap;
}
.booking-frame, .content-frame{
    margin-top: 50px;
}
.booking-form-tab{
    width:20%;
}
.booking-form-tab ul{
    background: #f4f1e8;
    border-radius: 8px;
    padding:1px 0
}
    .booking-form-tab ul li{
        width:100%;
        margin:30px 0;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        cursor: pointer;
    }
    .booking-form-tab ul li h3{
        width:100%;
        color: #c8c5b9;
        font-size: 15px;
        font-weight: 900;
        text-align: center;
        margin: 0;
    }
    .booking-form-tab ul li:before{
        width:30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        color: #b0aea6;
        background: #d2cec2;
        border-radius: 50%;
        justify-self: center;
    }
    .booking-form-tab ul li:nth-child(1):before{
        content: '1';
    }
    .booking-form-tab ul li:nth-child(2):before{
        content: '2';
    }
    .booking-form-tab ul li:nth-child(3):before{
        content: '3';
    }
    .booking-form-tab ul li:nth-child(4):before{
        content: '4';
    }
    .booking-form-tab ul li:nth-child(5):before{
        content: '5';
    }
    .booking-form-tab ul li.completed:before{
        background: #859636;
        color: #fff;
    }
    .booking-form-tab ul li.completed h3{
        color: #859636;
    }
    .booking-form-tab ul li.active{
        position: relative;
    }
    .booking-form-tab ul li.active:before{
        background: #a3862f;
        color: #fff;
    }
    .booking-form-tab ul li.active h3{
        color: #a3862f;
    }
    .booking-form-tab ul li.active:after{
        display: inline-block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 0 20px 40px;
        border-color: transparent transparent transparent #f4f1e8;
        position: absolute;
        top:20px;
        right:-30px;
        content: '';
    }
.booking-form{
    width:80%;
}
.booking-form ul{
    display: flex;
    flex-wrap: wrap;
    display: none;
    opacity: 0;
    transition: all .3s ease-in-out;
}
.booking-form ul.active{
    display: flex;
    opacity: 1;
}
    .booking-form ul li{
        width:50%;
        position: relative;
        padding-left:50px;
        margin-bottom: 20px;
    }
    .booking-form ul li:after{
        position: absolute;
        content: '';
        top:9px;
        right:0px;
        width:35px;
        height:35px
    }
    .booking-form ul li:last-child, #step3 li:nth-child(14){
        width:100%;
        justify-content: end;
    }
    .booking-form ul li small{
        font-size: 12px;
        color: #8e8a7f;
        padding-left:15px
    }
    .booking-form ul#step1 li:nth-child(1):after{
        background: url(../images/icons.png) no-repeat left 0 top 0;
    }
    .booking-form ul#step1 li:nth-child(2):after{
        background: url(../images/icons.png) no-repeat left -47px top 0;
    }
    .booking-form ul#step1 li:nth-child(3):after{
        background: url(../images/icons.png) no-repeat left -84px top 0;
    }
    .booking-form ul#step1 li:nth-child(4):after{
        background: url(../images/icons.png) no-repeat left -125px top 0;
    }

.inputs{
    background-color: #f4f1e8;
    border-radius: 10px;
    padding: 15px 50px 15px 15px;
    color: #7d7252;
    width:100%;
    border: 0;
    font-size: 14px;
    font-family: 'Merriweather', serif;
}
.submit-btn, .price-table button, #step4 button{
    background: #a3862f;
    border-radius: 10px;
    padding: 15px 25px;
    font-weight: 700;
    color: #fff;
    font-family: 'Merriweather', serif;
    font-size: 14px;
    float:right;
    border:0;
    cursor: pointer;
    transition: background .3s ease-in-out;
}
.submit-btn:hover{
    background-color:#c0a34c
}
::-webkit-input-placeholder { /* Edge */
    color: #7d7252;
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #7d7252;
  }
  
  ::placeholder {
    color: #7d7252;
  }

/* Date Picker Styles */
.jquery-datepicker {
    position: relative;
    outline: none;
    display: none;
    box-sizing: border-box;
    width: 240px;
    height: 240px;
    padding: 5px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .jquery-datepicker .datepicker-box {
    display: none;
    flex-direction: column;
    height: 100%;
  }
  .jquery-datepicker .datepicker-box .box-row {
    display: flex;
    min-height: 0;
    flex: 1;
  }
  .jquery-datepicker .datepicker-box .box-row.row-header {
    flex: none;
    position: relative;
    padding-bottom: 5px;
    padding-right: 60px;
    margin-bottom: 5px;
  }
  .jquery-datepicker .datepicker-box .box-row.row-header .header-title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding: 5px 7px;
    cursor: pointer;
    width: 100%;
  }
  .jquery-datepicker .datepicker-box .box-row.row-header .header-actions {
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
  }
  .jquery-datepicker .datepicker-box .box-row.row-header .header-actions .header-action {
    display: flex;
    position: relative;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    float: left;
    height: 100%;
    width: 25px;
    cursor: pointer;
  }
  .jquery-datepicker .datepicker-box .box-row.row-header .header-actions .header-action:not(:last-child) {
    margin-right: 3px;
  }
  .jquery-datepicker .datepicker-box .box-row.row-header .header-actions .header-action::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    top: 50%;
    left: 50%;
    margin-left: -3px;
    margin-top: -6px;
  }
  .jquery-datepicker .datepicker-box .box-row.row-header .header-actions .header-action.action-down::after {
    border-width: 5px 6px 5px 0;
    border-color: transparent #ccc transparent transparent;
  }
  .jquery-datepicker .datepicker-box .box-row.row-header .header-actions .header-action.action-up::after {
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent #ccc
  }
  .jquery-datepicker .datepicker-box .box-row.row-days {
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
  }
  .jquery-datepicker .datepicker-box .box-row.row-week {
    font-size: 14px;
    text-align: right;
  }
  .jquery-datepicker .datepicker-box .box-row .box-cell {
    display: flex;
    flex: 1 1 0;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 5px;
    cursor: default;
  }
  .jquery-datepicker .datepicker-box.is-active {
    display: flex;
  }
  .jquery-datepicker.is-2x {
    width: 480px;
    height: 480px;
    font-size: 21px;
  }
  .jquery-datepicker.is-2x .datepicker-box .box-row.row-days {
    font-size: 16px;
  }
  .jquery-datepicker.is-2x .datepicker-box .box-row.row-week {
    font-size: 18px;
  }
  .jquery-datepicker.is-open {
    display: block;
  }
  .jquery-datepicker.is-popup {
    position: absolute;
    top: 50px;
    left: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  }
  .jquery-datepicker.is-popup::before,
  .jquery-datepicker.is-popup::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
  }
  .jquery-datepicker.is-popup.tip-below::before,
  .jquery-datepicker.is-popup.tip-below::after {
    bottom: -10px;
    border-width: 10px 10px 0 10px;
    border-color: #CCC transparent transparent transparent;
  }
  .jquery-datepicker.is-popup.tip-below::before {
    bottom: -11px;
  }
  .jquery-datepicker.is-popup.tip-above::before,
  .jquery-datepicker.is-popup.tip-above::after {
    top: -10px;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #333 transparent;
  }
  .jquery-datepicker.is-popup.tip-above::before {
    top: -11px;
  }
  .jquery-datepicker.is-popup.tip-right::before,
  .jquery-datepicker.is-popup.tip-right::after {
    right: 20px;
  }
  .jquery-datepicker.is-popup.tip-left::before,
  .jquery-datepicker.is-popup.tip-left::after {
    left: 20px;
  }
  .jquery-datepicker.theme-light {
    border: 1px solid #CCCCCC;
    background: #FFFFFF;
    color: #222222;
  }
  .jquery-datepicker.theme-light .datepicker-box .box-row.row-week .box-cell.cell-grayed {
    background: transparent;
    color: #CCCCCC;
  }
  .jquery-datepicker.theme-light .datepicker-box .box-row.row-week .box-cell.cell-today {
    color: #FFFFFF;
    background: #859636;
    border-radius: 40%;
  }

  
  .jquery-datepicker.theme-light.tip-below::after {
    border-color: #FFFFFF transparent transparent transparent;
  }
 

/* Select Box Style */

.nice-select {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-weight: normal;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}
    .nice-select.open .list {
      opacity: 1;
      pointer-events: auto;
      -webkit-transform: scale(1) translateY(0);
          -ms-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0); }

      .nice-select.small .option {
        line-height: 34px;
        min-height: 34px; }
    .nice-select .list {
        width:100%;
      background-color: #f4f1e8;
      border-radius: 10px;
      color: #7d7252;
      box-sizing: border-box;
      margin-top: 4px;
      opacity: 0;
      overflow: hidden;
      padding: 0;
      pointer-events: none;
      position: absolute;
      top: 100%;
      left: 0;
      display: block;
      -webkit-transform-origin: 50% 0;
          -ms-transform-origin: 50% 0;
              transform-origin: 50% 0;
      -webkit-transform: scale(0.75) translateY(-21px);
          -ms-transform: scale(0.75) translateY(-21px);
              transform: scale(0.75) translateY(-21px);
      -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
      transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
      z-index: 9; 
    border:0}
      .nice-select .list:hover .option:not(:hover) {
        background-color: transparent !important; }
    .nice-select .option {
      cursor: pointer;
      font-weight: 400;
      line-height: 40px;
      list-style: none;
      min-height: 40px;
      outline: none;
      padding-left: 18px;
      padding-right: 29px;
      text-align: left;
      -webkit-transition: all 0.2s;
      transition: all 0.2s; }
      .nice-select .option.selected {
        font-weight: bold; }
        .nice-select .list .option:after{
            display: none!important;
        }
        .nice-select .list .option{
            margin-bottom:0;
        }

.price-table ul, #step4 ul{
    text-align: center;
    display: flex;
    opacity: 1;
}
.price-table ul li{
    margin:0;
    padding:10px 5px!important;
    background: #faf8f3;
    border-bottom: 4px solid #fff;
    border-right: solid 1px #ebe8e0;
    border-top:0;
    border-left:0;
    line-height: 29px;
    color: #635e51;
    font-size: 14px;
    position: relative;
    transition: background .3s ease-in-out;
}
.price-table ul li:nth-child(1){
    width:20%;
    padding: 38px 5px 10px 5px!important;
}
.price-table ul li:nth-child(2){
    width:25%
}
.price-table ul li:nth-child(3){
    width:30%
}
.price-table ul li:nth-child(4){
    width:25%;
    border-right:0;
    font-weight: 900;
    font-size: 15px;
    font-weight: 700;
    line-height: 27px;
}

.price-table ul:nth-child(1) li{
    color: #a3862f;
    padding-bottom: 10px;
    font-weight: 900;
    background: none;
    border:0;
    padding-top:0!important
}
 .price-table ul:hover li{
    background: #f6f9e9;
 }
 .price-table button, #step4 button{
     font-size: 14px;
     padding:5px 15px;
     float: none;
     margin-bottom: 5px;
     font-weight: 500;
 }
 .price-table button:hover, #step4 button:hover{
     background: #859636;
 }
.price-table ul li:first-child:after{
    width: 32px;
    height: 32px;
    content: '';
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translateX(-50%);
}
.price-table ul:nth-child(1) li:first-child:after{
   display: none;
 }
 .price-table ul:nth-child(2) li:first-child:after, .price-table ul:nth-child(4) li:first-child:after{
    background: url(../images/icons.png) no-repeat left 0 top -37px;
  }
  .price-table ul:nth-child(3) li:first-child:after{
    background: url(../images/icons.png) no-repeat left -46px top -37px;
  }
  .price-table ul:nth-child(5) li:first-child:after{
    background: url(../images/icons.png) no-repeat left -87px top -37px;
  }
  .booking-form ul li:last-child b{
    display: none;
}

#step3 li:first-child{
    width:100%
}
#step4 li{
    width:100%
}
#step4 tr th, #step4 tr td{
    background: #faf8f3;;
    border-bottom: solid 2px #ebe8e0;
    padding:10px 20px;
    font-size: 14px;
}
#step4 tr th{
    display: flex;
}
#step4 tr td ul li{
    margin:10px 0
}
#step4 tr th div, #step4 tr:nth-child(2) td ul li{
    width:15%;
    text-align: center;
    padding:0;
}
#step4 tr th div:nth-child(1), #step4 tr:nth-child(2) td ul li:nth-child(1){
    width:35%;
    text-align: left;
}
#step4 tr th div:nth-child(3), #step4 tr:nth-child(2) td ul li:nth-child(3){
    width:21%;
    text-align: right;
}
#step4 tr th div:nth-child(4), #step4 tr:nth-child(2) td ul li:nth-child(4), #step4 tr td ul li:last-child{
    width:29%;
    text-align: right;
}
#step4 tr td ul li:first-child{
    width: 71%;
    text-align: right;
}
#step4 tr:last-child{
    font-size: 16px;
    font-weight:900;
}
#step4 button{
    float: right;
}
.show-me{
    opacity: 1!important;
    display: flex!important;
}

#step3 .show-me li{
    width:33.333%;
    padding-left:0;
    margin-bottom: 0;
    margin-top:20px
}
#step3 .show-me li:first-child{
    padding-right:20px
}
#step3 .show-me li:last-child{
    padding-left:20px
}
#step3 .show-me li:nth-child(2){
    padding-right:10px;
    padding-left:10px
}

footer{
    background: #292723;
    padding:20px 0
}
.footer-top h4{
    font-size: 24px;
    color: #fff;
    line-height: 24px;
    width:100%
}
.footer-top  a{
    color: #fff;
    font-size: 13px;
    width:100%;
    line-height: 18px;
}
    .footer-top a:hover{
        color: #a3862f;
    }

    .address-deatils{
        padding-left:20px
    }
    .address-deatils, .address-deatils a{
        color: #fff;
        font-size: 13px;
    }
    .address-deatils div{
        padding-left:40px;
        margin-bottom:20px;
        position: relative;
    } 
    .address-deatils div:after{
        width:30px;
        height: 30px;
        position: absolute;
        left:0;
        top: 0;
        content: '';
    }
    .address-deatils div:nth-child(1):after{
        background: url(../images/icons.png) no-repeat left 0 top -70px;
    }
    .address-deatils div:nth-child(2):after{
        background: url(../images/icons.png) no-repeat left -37px top -71px;
        top:-7px
    }
    .address-deatils div:nth-child(3):after{
        background: url(../images/icons.png) no-repeat left -81px top -70px;
    }
    .address-deatils div:nth-child(4):after{
        background: url(../images/icons.png) no-repeat left -116px top -70px;
        top:-7px
    }

    .footer-bottom{
        border-top:solid 1px #3b3934;
        padding:20px 0 0 0;
        margin-top:20px;
        color: #6c6861;
        font-size: 12px;
    }
        .footer-bottom ul li, .footer-bottom ul li a{
            width:34px;
            height: 22px;
            justify-content: space-between;
        }
        .footer-bottom ul li:nth-child(1){
            background: url(../images/icons.png) no-repeat top -107px left 0;
        }
        .footer-bottom ul li:nth-child(1):hover{
            background: url(../images/icons.png) no-repeat top -137px left 0;
        }
        .footer-bottom ul li:nth-child(2){
            background: url(../images/icons.png) no-repeat top -107px left -40px;
        }
        .footer-bottom ul li:nth-child(2):hover{
            background: url(../images/icons.png) no-repeat top -137px left -40px;
        }
        .footer-bottom ul li:nth-child(3){
            background: url(../images/icons.png) no-repeat top -107px left -77px;
        }
        .footer-bottom ul li:nth-child(3):hover{
            background: url(../images/icons.png) no-repeat top -137px left -77px;
        }
        .footer-bottom ul li:nth-child(4){
            background: url(../images/icons.png) no-repeat top -107px left -115px;
        }
        .footer-bottom ul li:nth-child(4):hover{
            background: url(../images/icons.png) no-repeat top -137px left -115px;
        }
    
    @media (min-width:992px){
        .footer-top li:nth-child(2) h4{
            margin-bottom:3px
        }
    }

@media (max-width:991px){
    .w-m-100{
        width:100%
    }
    .w-m-55{
        width:55%
    }
    .w-m-45{
        width:45%
    }
    .footer-top  a{
        width:33.333%;
        margin:0 0 20px 0
    }
}
  @media(max-width:767px){
    .booking-frame, .content-frame{
        margin-top: 20px;
    }
    .booking-frame .container{
        flex-wrap: wrap;
    }
    .booking-form-tab ul{
        flex-wrap: nowrap;
        display: flex;
    }
    .booking-form-tab ul li{
        width: auto;
        flex-grow:1;
    }
    .booking-form-tab ul li.active:after{
        border-width: 40px 20px 0 20px;
        border-color: #f4f1e8 transparent transparent transparent;
        left: 50%;
        bottom: -51px;
        top: inherit;
        right: inherit;
        transform: translateX(-50%);
    }
    .booking-form-tab, .booking-form{
        width:100%;
    }
    .booking-form{
        margin-top:30px
    }
    .booking-form ul li:nth-child(odd), .booking-form #step3 li:nth-child(even){
        padding-left:0;
        padding-right:20px
    }
    .booking-form ul li:nth-child(even), .booking-form #step3 li:nth-child(odd){
        padding-left:20px
    }
    .booking-form #step3 li:nth-child(1){
        padding-left:0;
        padding-right:0
    }
    .booking-form ul li:nth-child(odd):after{
        right:20px;
    }
    .booking-form ul#step4 li:nth-child(odd){
        padding-right:0!important
    }
    #step3 .show-me li{
        width: 50%;
        padding-right:20px
    }
    #step3 .show-me li:nth-child(2){
        padding-left: 20px;
        padding-right:0
    }
    #step3 .show-me li:nth-child(3){
        padding-left:0;
        padding-right:0;
        width: 100%;
    }
    .footer-top .w-25  a{
        width:50%;
        margin:0 0 20px 0
    }
  }

@media(max-width:600px){
    #step4 small{
        float: right;
        display: block;
        width:100%;
        text-align: right;
        margin-bottom:10px
    }
    .footer-top ul li:first-child li{
        width:100%;
        padding-left:0
    }
    .footer-top ul li:first-child li:last-child{
        margin-top :20px;
        max-width:300px
    }
}

  @media(max-width:576px){
    .booking-form-tab ul li h3{
        font-size: 13px;
        font-weight: 700;
    }
    .booking-form #step1 li, .booking-form #step3 li{
        width:100%;
        padding-left:0!important;
        padding-right: 0!important;
    }
    .booking-form ul li:nth-child(odd):after{
        right:0;
    }
    .booking-form #step2 ul:first-child li:last-child{
        display: none;
    }
    .booking-form ul:first-child li{
        border:0!important
    }
    .booking-form #step2 ul li:nth-child(2), .booking-form #step2 ul li:first-child, .booking-form #step2 ul li{
        width:30%;
        border-bottom:solid 1px #ebe8e0
    }
    .booking-form #step2 ul li:nth-child(3){
        width:40%;
        border-right:0
    }
    .booking-form #step2 ul li:last-child{
        width:100%;
        border-bottom: solid 4px #fff;
        text-align: left;
    }
    .booking-form #step2 ul li:last-child button{
        float: right;
        margin-right:20px
    }
    .booking-form #step2 ul li:last-child strong{
        margin-left:10px
    }
    .booking-form #step2 ul li:last-child b{
        display: inline;
        margin-left:20px
    }
    .footer-top .w-25  a{
        width: 100%;
        margin-bottom:10px
    }
    
  }

  @media(max-width:500px){
      .footer-bottom div, .footer-bottom ul{
          width: 100%;
          justify-content: center;
          text-align: center;
      }
      .footer-bottom ul{
          margin-top: 15px;
      }
  }