/*************** Fonts ***************/
@font-face {
	font-family: 'Open Sans';
	src: url('../fonts/OpenSans-Light.woff2') format('woff2'),
		url('../fonts/OpenSans-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Open Sans';
	src: url('../fonts/OpenSans.woff2') format('woff2'),
		url('../fonts/OpenSans.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Open Sans';
	src: url('../fonts/OpenSans-Semibold.woff2') format('woff2'),
		url('../fonts/OpenSans-Semibold.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}
/*************** Fonts ***************/
/*************** Global ***************/
body {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 20px;
}


.d-inline{
	display:inline-block;
}


.d-table{
	display:table;
}

.width-100{
	width:100%;
}


.d-table-cell{
	display:table-cell;
}


.modal-open {
    padding-right: 0 !important;
    overflow: auto;
}

body img{
    max-width: 100%;
}

body div strong,
body div button {
    font-weight: 500;
}

a {
    text-decoration: none;
}

*:focus{
    outline: none !important;
}

body section .inline{
    display: inline-block;
}

body div .no-padding{
    padding-left: 0px;
    padding-right: 0px;
}

body ul {
    padding-left: 0;
    list-style: none;
    margin: auto;
}

.secTitle {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -1.85px;
    color: #3D3D3D;
    font-weight: 300;
    padding:30px 0 5px;
}

.secContent {
    font-size: 14px;
    line-height: 24px;
    color: #5D5D5D;
}

a.secLink {
    font-size: 14px;
    color: #79B9F2;
    text-decoration: none;
    position: relative;
    padding: 5px 15px;
}

a.secLink::after {
    content: '\003e';
    position: absolute;
    right: 20%;
    top: 0px;
    bottom: 0;
    margin: auto;
    font-size: 16px;
    opacity: 0;
    line-height: 31px;
    transition: all 0.2s linear;
}

a.secLink:hover::after {
    right: 0;
    opacity: 1;
}

button.touchBtn {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 0;
    padding: 15px 50px;
    font-size: 15px;
    color: rgba(0,0,0, 0);
    overflow: hidden;
    transition: all .3s ease;
}

.secContent ul {
    padding-left: 25px;
}

.secContent ul li{
    list-style-type: disc;
    padding-bottom: 10px;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-menu {
    background-color: #ffffff;
}

nav.main-nav {
    float: right;
    padding: 14px 0;
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  padding: 12px 18px;
}

.main-nav a {
  display: block;
  position: relative;
  color: #125DAF;
  transition: 0.3s;
  font-size: 17px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration:none;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #1bb1dc;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 60px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0 0 10px 0;
  background: #fff;
  transition: ease all 0.3s;
box-shadow: 0px 0px 15px rgba(127, 137, 161, 0.25);
  
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 58px;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #125DAF;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #1bb1dc;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  right:-260px;
  width: 260px;
  padding-top: 18px;
    background: #ffffff;
  transition: 0.4s;
  
}

.main-menu  {
    top: 0;
	border-width: 0;
    border-bottom: 1px solid #ddd;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}



.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #125DAF;
  text-decoration: none;
}

.mobile-nav .drop-down > a {
    display: block;
    position: relative;
    color: #125DAF;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 18px;
}


.mobile-nav ul li.drop-down.active li a {
    padding-right: 35px;
    font-size: 16px;
	margin:0;
}




.mobile-nav ul li > a {
    padding-right: 35px;
    font-size: 18px;
    text-transform: uppercase;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;	
  margin: 5px 0;
}


.mobile-nav li.scroll-nav > a {
    display: block;
    position: relative;
    color: #125DAF;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 18px;
}


.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

	.mobile-nav-toggle {
	position: fixed;
	right: 12px;
	top: 18px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
	}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #065e77;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 38, 70, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  right: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav-toggle .bar {
  display: block;
  height: 2px;
  width: 22px;
  background-color: #125DAF;
  margin: 5px auto;
  -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.mobile-nav-toggle  .middle {
    margin: 0 auto;
}

.mobile-nav-active .mobile-nav-toggle .bar.top {
    -webkit-transform: translateY(8px) rotateZ(45deg);
    -moz-transform: translateY(8px) rotateZ(45deg);
    -ms-transform: translateY(8px) rotateZ(45deg);
    -o-transform: translateY(8px) rotateZ(45deg);
    transform: translateY(8px) rotateZ(45deg);
}
.mobile-nav-active .mobile-nav-toggle .bar.middle {
    width: 0;
}
.mobile-nav-active .mobile-nav-toggle .bar.bottom {
    -webkit-transform: translateY(-6px) rotateZ(-45deg);
    -moz-transform: translateY(-6px) rotateZ(-45deg);
    -ms-transform: translateY(-6px) rotateZ(-45deg);
    -o-transform: translateY(-6px) rotateZ(-45deg);
    transform: translateY(-6px) rotateZ(-45deg);
}
 .mobile-nav ul li {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
}
.mobile-nav-active .mobile-nav ul li {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}



.mobile-nav-active .mobile-nav ul li:first-child {
  -webkit-transition: all .5s .2s ease-in-out;
  -moz-transition: all .5s .2s ease-in-out;
  -ms-transition: all .5s .2s ease-in-out;
  -o-transition: all .5s .2s ease-in-out;
  transition: all .5s .2s ease-in-out;
}

.mobile-nav-active .mobile-nav ul li:nth-child(2) {
  -webkit-transition: all .5s .4s ease-in-out;
  -moz-transition: all .5s .4s ease-in-out;
  -ms-transition: all .5s .4s ease-in-out;
  -o-transition: all .5s .4s ease-in-out;
  transition: all .5s .4s ease-in-out;
}

.mobile-nav-active .mobile-nav ul li:nth-child(3) {
  -webkit-transition: all .5s .6s ease-in-out;
  -moz-transition: all .5s .6s ease-in-out;
  -ms-transition: all .5s .6s ease-in-out;
  -o-transition: all .5s .6s ease-in-out;
  transition: all .5s .6s ease-in-out;
}

.mobile-nav .drop-down > a:after {
    content: "";
    padding-left: 15px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 612 612' ><path d='M604.501,134.782c-9.999-10.05-26.222-10.05-36.221,0L306.014,422.558L43.721,134.782 c-9.999-10.05-26.223-10.05-36.222,0s-9.999,26.35,0,36.399l279.103,306.241c5.331,5.357,12.422,7.652,19.386,7.296 c6.988,0.356,14.055-1.939,19.386-7.296l279.128-306.268C614.5,161.106,614.5,144.832,604.501,134.782z'/></svg>") no-repeat;
	top: 10px;
	left: auto;
	right: 15px;
	bottom: 0;
	position: absolute;
	background-size: cover;
	width: 20px;
	height: 20px;
}


.mobile-nav .active.drop-down > a:after {
 background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 612 612' ><path d='M604.501,134.782c-9.999-10.05-26.222-10.05-36.221,0L306.014,422.558L43.721,134.782 c-9.999-10.05-26.223-10.05-36.222,0s-9.999,26.35,0,36.399l279.103,306.241c5.331,5.357,12.422,7.652,19.386,7.296 c6.988,0.356,14.055-1.939,19.386-7.296l279.128-306.268C614.5,161.106,614.5,144.832,604.501,134.782z'/></svg>") no-repeat;
 transform:rotate(-180deg);
}



/*************** Global ***************/
/*************** loader ***************/
#page_loader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    background: #f2f2f2;
}

#page_loader::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #f2f2f2;
    opacity: 0.5;
}

.spinner_svg {
    -webkit-animation: rotate 2s linear infinite;
       -moz-animation: rotate 2s linear infinite;
        -ms-animation: rotate 2s linear infinite;
         -o-animation: rotate 2s linear infinite;
            animation: rotate 2s linear infinite;
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    margin: auto;
}

.spinner_svg .path {
    stroke-dasharray: 1,850; 
    stroke-dashoffset: 0;
    stroke: rgba(92, 178, 51, 0.7);
    stroke-linecap: round;    
    -webkit-animation: dash 1.5s ease-in-out infinite;
       -moz-animation: dash 1.5s ease-in-out infinite;
        -ms-animation: dash 1.5s ease-in-out infinite;
         -o-animation: dash 1.5s ease-in-out infinite;
            animation: dash 1.5s ease-in-out infinite;
}

#page_loader .spinner_svg .path {
    stroke: #F48020;
}

@keyframes rotate {
    100% { transform: rotate(360deg);}
}

@-webkit-keyframes rotate {
    100% { -webkit-transform: rotate(360deg);}
}

@-moz-keyframes rotate{
    100% { -moz-transform: rotate(360deg);}
}

@-ms-keyframes rotate{
    100% { -ms-transform: rotate(360deg);}
}

@-o-keyframes rotate{
    100% { -o-transform: rotate(360deg);}
}

@keyframes dash {
    0% {stroke-dasharray: 1,850; stroke-dashoffset: 0;}
    50% {stroke-dasharray: 90,850; stroke-dashoffset: -35;}
    100% {stroke-dasharray: 90,850; stroke-dashoffset: -150;}
}

@-webkit-keyframes dash {
    0% {stroke-dasharray: 1,850; stroke-dashoffset: 0;}
    50% {stroke-dasharray: 90,850; stroke-dashoffset: -35;}
    100% {stroke-dasharray: 90,850; stroke-dashoffset: -150;}
}

@-moz-keyframes dash {
    0% {stroke-dasharray: 1,850; stroke-dashoffset: 0;}
    50% {stroke-dasharray: 90,850; stroke-dashoffset: -35;}
    100% {stroke-dasharray: 90,850; stroke-dashoffset: -150;}
}

@-ms-keyframes dash {
    0% {stroke-dasharray: 1,850; stroke-dashoffset: 0;}
    50% {stroke-dasharray: 90,850; stroke-dashoffset: -35;}
    100% {stroke-dasharray: 90,850; stroke-dashoffset: -150;}
}

@-o-keyframes dash {
    0% {stroke-dasharray: 1,850; stroke-dashoffset: 0;}
    50% {stroke-dasharray: 90,850; stroke-dashoffset: -35;}
    100% {stroke-dasharray: 90,850; stroke-dashoffset: -150;}
}
/*************** loader ***************/
/*************** Header ***************/
header nav.navbar {
    margin-bottom: 0;
    border: none;
    -webkit-transition: all 0.3s linear;
       -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
         -o-transition: all 0.3s linear;
            transition: all 0.3s linear;
    box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.3);
    background: #fff;
}

.hover-line {
    position: relative;
	transition: all 0.3s linear;
}

.hover-box {
    position: relative;
	transition: all 0.3s linear;
}


.col-box:hover .hover-line::after {
    content: "";
    height: 100%;
    position: absolute;
    background: rgba(255,255,255,0.6);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99999999;
}



.navbar li.menu-scroll a:hover {
	background-color: transparent;    
}

.navbar .navbar-brand {
    padding: 10px;
    height: auto;
}

.navbar .navbar-brand>img {
    display: block;
    height: 50px;
}
/*************** Header ***************/
/*************** Popup styles ***************/
#contactPopup .modal-dialog {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 50px;
}

#contactPopup .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: none;
}

#contactPopup .modal-header {
    background-color: #000;
    font-size : 18px;
    line-height: 26px;
    font-weight: 500;
    color : #FFFFFF;
    text-align: center;
    border-bottom: none;
}

#contactPopup .modal-body {
    display: inline-block;
    text-align: center;
    width: auto;
    margin: auto;
    padding: 0;
    background: #737373;
}

#contactPopup form {
    margin: auto;
}

#contactPopup .formTitle {
    font-size: 18px;
    color: #000000;
    text-align: center;
    line-height: 24px;
    padding-bottom: 20px;
}

#contactPopup .input-group {
    display: inline-block;
    width: 100%;
    position: relative;
}

#contactPopup .form-control {
    display: inline-block;
    width: 100%;
    padding: 15px 40px 15px 20px;
    border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    height: auto;
    margin: auto;
    color: #ffffff;
    background: #434343;
    border: none;
    border-bottom: 1px solid #777777;
    position: relative;
    z-index: 1;
    text-indent: 11px;
    transition: all 0.3s linear;
}

#contactPopup .form-control:focus {
    outline: 0;
    box-shadow: none;
    text-indent: 0px;
}

.formPenSvg{
    position: absolute;
    right: -50px;
    top: 18px;
    bottom: 0;
    width: 14px;
    height: 14px;
    -webkit-transition: all 0.3s ease;
       -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
         -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
    z-index: 2;
}

.input-group.focus .formPenSvg {
    right: 10px;
    -webkit-animation: move-pen 1s ease-in infinite alternate;
       -moz-animation: move-pen 1s ease-in infinite alternate;
        -ms-animation: move-pen 1s ease-in infinite alternate;
         -o-animation: move-pen 1s ease-in infinite alternate;
            animation: move-pen 1s ease-in infinite alternate;
}

@-webkit-keyframes move-pen{
    from{-webkit-transform:translateX(-4px) rotate(6deg);}
    to{-webkit-transform:translateX(4px) rotate(-3deg);}
}

@-moz-keyframes move-pen{
    from{-moz-transform:translateX(-4px) rotate(6deg);}
    to{-moz-transform:translateX(4px) rotate(-3deg);}
}

@-ms-keyframes move-pen{
    from{-ms-transform:translateX(-4px) rotate(6deg);}
    to{-ms-transform:translateX(4px) rotate(-3deg);}
}

@-o-keyframes move-pen{
    from{-o-transform:translateX(-4px) rotate(6deg);}
    to{-o-transform:translateX(4px) rotate(-3deg);}
}

@keyframes move-pen{
    from{transform:translateX(-4px) rotate(6deg);}
    to{transform:translateX(4px) rotate(-3deg);}
}

.contactNumbers {
    background: #434343;
    padding: 15px 20px;
    text-align: left;
}

.contactNumbers span {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    display: block;
    padding: 0 5px 5px;
}

.contactNumbers a {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    padding: 5px;
    text-decoration: none;
}

#contactPopup .submitSec {
    margin-top: -1px;
    z-index: 2;
    position: relative;
}

#contactPopup .formSubmit {
    color: #fff;
    padding: 15px 30px;
    margin: auto;
    font-size: 15px;
    line-height: 20px;
    background-size: initial;
    outline: none;
    width: 100%;
    background: #F48020;
    border: none;
    box-shadow: none;
}
.footer-link-list-item{
    display: inline-block;
        padding: 0 10px;
}


/******Booking Confirmation*****/

.bk-search {
    background-color: #f2f2f2f2;
    padding: 30px;
    background-color: #dddddd;
}

.ins-space {
    padding-top: 30px;
}

.bk-apply {
    text-align: center;
    padding: 15px;
    margin: 0;
    width: 100%;
    background-color: #ffbb39;
	margin-bottom: 30px;
}



.bk-apply a.btn-buy {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    line-height: 1.3;
}


.bg-gray{
	 background-color: #f2f2f2f2;
}

.ins-map.map_search.lazy {
    margin-top: 40px;
}

/* Booking Request */

.bk_outer {
    background-color: #f7f7f7;
    margin: 40px 0;
    padding: 40px 15px;
	    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.d-table.pre-table {
    width: 100%;
}
.bkform-cell {
    margin-bottom: 15px;
    position: relative;
}

.inp-focus {
    position: absolute;
    display: block;
    width: calc(100% - 30px);
    height: calc(100%);
    top: 0;
    left: 15px;
	right:0;
    pointer-events: none;
    border: 1px solid #1F66B1;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scaleX(1.1) scaleY(1.2);
    -moz-transform: scaleX(1.1) scaleY(1.2);
    -ms-transform: scaleX(1.1) scaleY(1.2);
    -o-transform: scaleX(1.1) scaleY(1.2);
    transform: scaleX(1.1) scaleY(1.2);
}

.focus-inp:focus + .inp-focus {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}


.bk-control {
    font-size: 14px;
    height: 42px;
    padding: 5px 8px;
    line-height: 1;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.bk-control {
    font-size: 15px;
    height: 42px;
    padding: 5px 8px;
    line-height: 1;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
	font-family: 'Open Sans';
	font-weight:500;
	background-color: #ffffff;
	text-align: left;
	color: #3d3d3d;
}
.multiselect .caret{
	display: inline-block;
	position: relative;
	width: 12px;
	height: 12px;
	background: transparent;
	text-indent: -9999px;
	border-top: 2px solid #3d3d3d;
	border-left: 2px solid #3d3d3d;
	border-right: none;
	transition: all 250ms ease-in-out;
	text-decoration: none;
	color: transparent;
	vertical-align: middle;
	float: right;
}



.multiselect .caret {
    transform: rotate(-135deg);
    right: 15px;
	
}

.ck-star-cont.open .multiselect .caret {
    transform: rotate(-315deg);
    right: 15px;
}

label.checkbox span.no-rating {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    margin-top: -10px;
}

.multiselect-container li:last-child {
    margin-top: 4px;
}
.multiselect-container {
    padding: 10px 0;
}

span.fa-star {
    background: url(../images/star.svg);
    width: 18px;
    height: 18px;
    display: inline-block;
    color: red;
    background-size: contain;
    margin: 0px 3px;
    background-position: center center;
    background-repeat: no-repeat;
}

.ck-star-cont .multiselect-container>li>a>label {
    padding: 3px 20px 3px 20px;
}

  .ck-star-cont input[type="checkbox"] {
	cursor: pointer;
	display: inline-block;
	height: 16px;
	margin: 0;
	position: relative;
	top: auto;
	vertical-align: middle;
	width: 16px;
	z-index: 3;
	
}

.ck-star-cont input[type="checkbox"] {
    visibility: hidden;
}

.multiselect-container.dropdown-menu>.active>a, 
.multiselect-container.dropdown-menu>.active>a:focus, 
.multiselect-container.dropdown-menu>.active>a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #f7f7f7;
    outline: 0;
}

 .ck-star-cont input[type="checkbox"]:before {
	border: 2px solid #125DAF;
	content: "";
	display: inline-block;
	height: 18px;
	left: -5px;
	opacity: 1;
	position: absolute;
	top: -4px;
	width: 18px;
	-webkit-transition: all .12s, border-color .08s;
	transition: all .12s, border-color .08s;
	visibility:visible;
}


 .ck-star-cont input[type="checkbox"]:checked:before {
	width: 12px;
	top: -8px;
	left: 0;
	border-radius: 0;
	opacity: 1;
	border-top-color: transparent;
	border-left-color: transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* Datepicker */

.calendar-table table td,
.calendar-table table th {
	font-family: 'Open Sans';
}

.daterangepicker th.month {
    font-weight: 500;
    font-size: 16px!important;
	color:#125DAF;
}

.daterangepicker .calendar-table th, 
.daterangepicker .calendar-table td {
    font-size: 14px;
}
.daterangepicker .calendar-table .next span,
 .daterangepicker .calendar-table .prev span {
    color: #fff;
    border: solid #125DAF;
    border-width: 0 2px 2px 0;
    border-radius: 0;
    display: inline-block;
    padding: 4px;
}

.daterangepicker td.active, 
.daterangepicker td.active:hover {
    background-color: #125DAF;
    border-color: transparent;
    color: #fff;
}
.daterangepicker td.start-date {
   border-radius: 4px;
}
.daterangepicker td.end-date {
    border-radius: 4px;
}


/* Multi Select */

.ck-star-cont {
    display: block;
    position: relative;
}

.bkform-cell .error {
    background: #125DAF none repeat scroll 0 0;
    border: 1px solid #125DAF;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    padding: 3px 15px;
    position: relative;
    width: auto;
    line-height: 1.3;
    margin-bottom: 0;
}

.bkform-cell .error:after, .bkform-cell .error:before {
    bottom: 100%;
    left: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.bkform-cell .error:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #125DAF;
    border-width: 10px;
    margin-left: -10px;
}

.bkform textarea#yourmessage {
    min-height: 110px;
}

.intl-tel-input {
    width: 100%;
}

.bk_col{
    display: inline-block;
    width: 90px;
	height:90px;
    position: relative;
    margin: 15px auto;
}

.bk_col img {
width: 60%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.bk_col.mid_col {
    width: 130px;
}



.bk_text {
    padding-bottom: 15px;
    font-weight: 500;
    line-height: 1.2;
}

.d-table{
	display:table;
}

.disp-table > [class*=col-] {
    float: none;
	
}

.v-middle{
	vertical-align:middle;
}

.bk_col.mid_col img {
width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 45px;
    bottom: 0;
    margin: auto;
}

.bk_process {
    overflow: hidden;
    margin-top: 35px;
}
h3.header-title {
    text-transform: uppercase;
}

.bk_inner{
    border-radius: 50%;
    border: 2px solid #125DAF;
}

.bk_reqBtn .btn {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
}



/*************** Popup styles ***************/
/*************** Footer ***************/
footer {
    padding-top: 60px;
}

.footrow1 {
    background: #333333;
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.symbol-container{
    content: '';
    position: absolute;
    width: 50%;
    height: 126%;
    right: -5%;
    top: 0;
    z-index: 0;
}

.symbol-container svg{
    fill: #000;
    fill-opacity: 0.3;
    max-height: 100%;
    max-width: 100%;
}

.footerColumnMain{
    display: table;
    height: 100px;
}

.footerLogo{
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.footerLogo svg{
    width: 200px;
}

.footerHead {
    font-size: 13px;
    letter-spacing: 1.78px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    line-height: 20px;
    padding-bottom: 10px;
}

.footerList ul {
    margin: auto;
    padding: 0;
    list-style: none;
}

.footerList ul li,
.footerList ul a{
    font-size : 13px;
    line-height : 24px;
    color : #D1D3D4;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.footerList .vr {
    position: relative;
    height: 100%;
}

.vr::before{
    content: '';
    width: 1px;
    height: 80%;
    position: absolute;
    right: -10%;
    top: 30px;
    background-color: #A7A9AC;
    border-radius: 50%;
    border-left: 1px solid #A7A9AC;
}

.footerContact{
    cursor: pointer;
}

.footerMenu .footer-menu-container {
    float: none;
    padding: 0;
}

.footerMenu .footer-menu-container li a {
    font-size: 13px;
    line-height: 24px;
    padding: 0;
    color: #D1D3D4;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.footerMenu .footer-menu-container li a:hover {
    color: #ffffff;
}

.footerMenu .footer-menu-container li a::before {
    display: none;
}

.footrow2 {
    background: #ffffff;
    font-size: 14px;
    line-height: 30px;
    padding: 15px 50px;
}

.copyrightLinks div {
    display: inline-block;
    padding: 0 15px;
}

.copyrightLinks .privacyLink {
    position: relative;
}

.copyrightLinks .privacyLink::after {
    content: '';
    width: 1px;
    height: 80%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: #cbcbcb;
    border-radius: 50%;
}

.copyrightLinks a,
.copyrightText {
    font-size: 13px;
    color: #58595b;
    text-decoration: none;
}

.copyrightLinks a:hover {
    color: #000;
}



/* Contact form */
.form-row .error {
    background: #125DAF none repeat scroll 0 0;
    border: 1px solid #125DAF;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    padding: 3px 15px;
    position: relative;
    width: auto;
    line-height: 1.3;
	margin-bottom: 0;
}
.form-row .placeholder sup {
    color: red;
    font-size: 16px;
    vertical-align: bottom;
    display: inline-block;
    position: relative;
    top: -9px;
    left: 3px;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-control {
    border: 1px solid #bcbec0;
    border-radius: 0;
    height: 42px;
    font-size: 12px;
    line-height: 22.76px;
    letter-spacing: -0.22px;
    text-transform: uppercase;
    color: #777777;
    color: rgb(119, 119, 119);
    font-weight: 500;
}

.form-row {
    position: relative;
}
.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.no-padding{
	padding-left:0;
	padding-right:0;
}

.desk-pad-left{
	padding-left:15px;
}

.form-row {
    margin-bottom: 15px;
}

.form-row .placeholder {
    position: absolute;
    left: 10px;
    top: 11px;
    pointer-events: none;
    font-size: 12px;
    line-height: 22.76px;
    letter-spacing: -0.22px;
    text-transform: uppercase;
    color: #777777;
    color: rgb(119, 119, 119);
    font-weight: 500;
}

#t_cform textarea.form-control {
    height: auto;
    padding-left: 10px;
}

#t_cform  textarea {
    overflow: auto;
    height: auto;
    min-height: 140px;
    width: 100%;
    resize: none;
}
.form-row .error:after, .form-row .error:before {
    bottom: 100%;
    left: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.form-row .error:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #125DAF;
    border-width: 10px;
    margin-left: -10px;
}

.text-muted {
    color: #6c757d!important;
    margin-top: 15px;
}
.text-muted strong {
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    top: 1px;
    color: red;
}

.span-cicon {
    position: absolute;
    background-image: url(../images/cal-icon.svg);
    background-repeat: no-repeat;
    background-position: 97% center;
    background-size: 24px;
    width: 30px;
    height: 30px;
    left: auto;
    right: 22px;
    top: 6px;
    bottom: 0;
}


.bk-control:before {
    content: "";
    position: absolute;
    background-color: red;
}

.col-table {
    display: table;
    width: 100%;
}
.col-table-cell {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
}

.prop_link .col-box {
    margin-right: 15px;
    margin-top: 15px;
}

.col-box a {
    text-decoration: none;
    display: block;
}

.col-box a img{
    position:relative;
    display: block;
}

.col-box-name {
    text-align: left;
    padding-top: 14px;
    font-weight: 500;
    font-family: 'Open Sans';
    line-height: 1.3;
    color: #3d3d3d;
}

.prop_text {
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1;
    position: relative;
}
.prop_text:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: #ddd;
    height: 1px;
    top: auto;
    bottom: -12px;
    width: 50%;
}


section#bookingsec3 {
    margin-top: 50px;
}







/* message box */

.bottom-right {
    position: relative;
    z-index: 1000;
    align-items: center;
    padding: 15px 0 15px 45px;
    color: #fff;
    line-height: 1.3;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.35);
    max-width: 100%;
    margin: 0;
    bottom: auto;
    font-weight: 500;
    font-size: 16px;
    left: 0;
    display: none;
	margin-bottom:30px;
}
.bottom-right.do-show {
    animation: none;
    display: block!important;
}
.bottom-right[data-notification-status="notice"] {
  background-color: #29B6F6;
}
.bottom-right[data-notification-status="notice"]:before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  min-width: 30px;
  margin-right: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23077CB2'/%3E%3Cpath d='M11.016,6.984V9h1.968V6.984H11.016z M11.016,17.016h1.968v-6h-1.968V17.016z' fill='%23077CB2'/%3E%3C/svg%3E") center/cover no-repeat;
}
.bottom-right[data-notification-status="warning"] {
  background-color: #FFCA28;
}
.bottom-right[data-notification-status="warning"]:before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  min-width: 30px;
  margin-right: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23C19100'/%3E%3Cpath d='M11.016,17.016h1.968V15h-1.968V17.016z M11.016,6.983v6.001h1.968V6.983H11.016z' fill='%23C19100'/%3E%3C/svg%3E") center/cover no-repeat;
}
.bottom-right[data-notification-status="error"] {
  background-color: #EF5350;
}
.bottom-right[data-notification-status="error"]:before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  min-width: 30px;
  margin-right: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23C71612'/%3E%3Cpath d='M13.406,12l2.578,2.578l-1.406,1.406L12,13.406l-2.578,2.578l-1.406-1.406L10.594,12L8.016,9.421l1.406-1.405L12,10.593 l2.578-2.577l1.406,1.405L13.406,12z' fill='%23C71612'/%3E%3C/svg%3E") center/cover no-repeat;
}
.bottom-right[data-notification-status="success"] {
  background-color: #66BB6A;
}
.bottom-right[data-notification-status="success"]:before {
content: '';
    display: block;
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 20px;
    position: absolute;
    left: 10px;
    top: 13px;
    bottom: 0;
    right: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%233A813D'/%3E%3Cpath d='M10.477,13.136l5.085-5.085l1.406,1.406l-6.492,6.492l-3.446-3.445l1.406-1.406L10.477,13.136z' fill='%233A813D'/%3E%3C/svg%3E") center/cover no-repeat;
}
.bottom-right[data-notification-status="question"] {
  background-color: #8D6E63;
}
.bottom-right[data-notification-status="question"]:before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  min-width: 30px;
  margin-right: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.984c4.407 0 8.016 3.609 8.016 8.016 0 4.406-3.608 8.016-8.016 8.016S3.984 16.407 3.984 12 7.593 3.984 12 3.984m0-2C6.478 1.984 1.984 6.477 1.984 12c0 5.521 4.493 10.016 10.016 10.016S22.016 17.522 22.016 12c0-5.523-4.495-10.016-10.016-10.016zm0 2c4.407 0 8.016 3.609 8.016' fill='%23513F39'/%3E%3Cpath d='M12.001,6.314h-0.002c-1.996,0-3.609,1.614-3.609,3.609h1.784c0-0.977,0.85-1.784,1.826-1.784  c0.977,0,1.827,0.807,1.827,1.784c0,1.826-2.718,1.614-2.718,4.544h1.784c0-2.038,2.717-2.294,2.717-4.544  C15.609,7.928,13.997,6.314,12.001,6.314z M11.109,17.186h1.784v-1.826h-1.784V17.186z' fill='%23513F39'/%3E%3C/svg%3E") center/cover no-repeat;
}
.bottom-right[data-notification-status="plain"] {
  background-color: #333;
}

@media only screen and (max-width: 767px)  {    
    #contactPopup .modal-dialog {
        margin: 50px 10% 30px;
    }
	


    .copyrightLinks a {
        line-height: 22px;
        text-align: center;
		padding:0;
    }
	.copyrightText{
	line-height: 22px;
    text-align: center;
    padding: 0;
    font-size: 12px;
	}
	

	
	.mobile-nav .drop-down li {
    padding-left: 0;
}

.footrow1 .footerColumn {
    display: none;
}
	
	.btn_submit.text-center.bk_reqBtn {
    padding: 0 15px;
    margin-top: 20px;
}

a.btn-show-contact {
    padding: 15px;
    font-size: 20px;
}
.show-widget a.btn-show-contact {
    color: #ffffff;
	letter-spacing: 1px;
}

.show_btn {
    transform: none; 
    transform-origin: left top 0; 
	border-radius: 8px 8px 0px 0px;
}

.wrap-embed-contact-form .show_btn {
	position: fixed;
		top: auto;
		left: 0;
		margin-top: -86px;
		background-color: #125DAF;
		bottom: 0;
		margin: 0 auto;
		width: 220px;
		text-align: center;
		right: 0;
		    border-radius: 8px 8px 0 0;
}

.show-widget.wrap-embed-contact-form .show_btn {
    position: absolute;
    top: -52px;
    left: 0;
    margin-top: -86px;
    background-color: #125DAF;
    bottom: auto;
    margin: 0 auto;
    width: 220px;
    text-align: center;
    right: 0;
}

.wrap_form {
    padding-top: 5px;
}

.wrap-embed-contact-form.show-widget {
    bottom: 0;
}
.wrap-embed-contact-form {
    color: #444;
    font-weight: 400;
    position: fixed;
    top: auto;
    bottom: -100%;
    left: 0;
    right: 0;
    background: white;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    width: 92%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-top: 3px solid #125DAF;
    margin: auto;
}

.mobile-nav ul li.menu-scroll > a {
    display: block;
    position: relative;
    color: #125DAF;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 18px;
}

.bottom-right {
    position: relative;
    z-index: 1000;
    align-items: center;
    padding: 15px 0 15px 45px;
    color: #fff;
    line-height: 1.3;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.35);
    max-width: 100%;
    margin: 20px 15px;
    bottom: auto;
    font-weight: 500;
    font-size: 16px;
    left: 0;
    display: none;
}

.bottom-right[data-notification-status="success"]:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 20px;
    position: absolute;
    left: 10px;
    top: 13px;
    bottom: 0;
    right: 0;
}

.bottom-right.do-show {
  animation: none;
  display:block!important;
  
}

.disp-table{
	display:table
}
	.disp-table > [class*=col-] {
    float: left;
	padding:0;
}
.bk_outer {
    margin: 20px 0;
	padding: 15px 0;
}
.bk_col {
    width: 70px;
    height: 70px;
}

.bk_col.mid_col {
    width: 90px;
}
.bk_col.mid_col img {
    top: 45px;
}

.col-md-5.col-sm-5.d-table-cell.v-middle {
    padding: 0!important;
}
    
    #contactPopup .modal-header {
        font-size: 18px;
        line-height: 24px;
    }
    
    #contactPopup .formTitle {
        font-size: 15px;
        line-height: 22px;
        padding-bottom: 5px;
    }
    
    #contactPopup .formSubmit {
        font-size: 15px;
    }
}

/*************** Footer ***************/
/*************** media queries(Tab) ***************/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .vr::before {
        right: -25%;
    }
    
    .navbar li.menu-scroll a {
        padding: 15px 12px;
    }
    
    
}
/*************** media queries(Tab) ***************/
/*************** media queries(Mobile) ***************/
@media only screen and (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 18px;
        overflow-x: hidden;
    }
	
	nav.main-nav {
    float: right;
    padding: 14px 0;
    display: none;
}
.col-table-cell.col-mob-cell {
    display: block;
    width: 50%;
    float: left;
}

.prop_link .col-box {
    margin: 0;
    padding: 10px 8px 18px 8px;
}

nav.main-nav {
    float: right;
    padding: 14px 0;
    display: none;
}
	
	.bk-search {
    background-color: #f2f2f2f2;
    padding: 15px 0;
}
    
    .navbar-header a.navbar-brand {
        padding: 10px;
    }
    
    .navbar .navbar-brand img {
        height: 40px;
    }
    
    .navbar-header .navbar-toggle {
        height: 50px;
        margin: 5px 25px 5px 10px;
    }    
    
    .navbar-header .navbar-toggle .icon-bar {
        width: 30px;
        height: 3px;
        background-color: #3d3d3d;
        margin: auto;
        transition: .4s;
        border-radius: 10px;
    }
    
    .navbar-header .navbar-toggle .icon-bar:nth-child(2) {
        margin: 4px 0;
    }
    
    .change .icon-bar:nth-child(1) {
        -webkit-transform: rotate(-45deg) translate(-4px,4px);
        transform: rotate(-45deg) translate(-4px,4px);
    }
    
    .change .icon-bar:nth-child(2) {
        opacity: 0;
    }
    
    .change .icon-bar:nth-child(3) {
        -webkit-transform: rotate(45deg) translate(-5px,-6px);
        transform: rotate(45deg) translate(-5px,-6px);
    }
    
    .navbar .navbar-collapse {
        background: #fff !important;
        border-bottom: 2px solid #3d3d3d;
        border-top: none;
        position: absolute;
        width: 100%;
        top: 60px;
    }
    
    ul.nav.navbar-nav {
        height: auto;
        margin: 0 auto;
    }
    
    .navbar li.menu-scroll {
        padding: 0;
        border-top: 1px solid #3d3d3d;
    }
    
    .navbar li.menu-scroll:first-child {
        border-top: none;
    }
    
    .navbar li.menu-scroll a {
        font-size: 14px;
        font-weight: normal;
    }

    .headerTitle {
        font-size: 36px;
        line-height: 44px;
        padding-bottom: 25px;
    }
    
    #contactSec1 .innerContent {
        padding: 30px 10px;
        display: block;
    }
    
    #contactSec1 .secTitle {
        padding-bottom: 20px;
    }
    
    #contactSec1 .secText {
        font-size: 13px;
        line-height: 20px;
    }
    
    a.secLink {
        font-size: 13px;
    }
    
    footer {
        padding-top: 20px;
    }
    
    .footrow1 {
        padding: 20px;
    }
    
    .footrow1 .container {
        padding: 0;
        text-align: center;
    }
    
    .footerColumnMain {
        display: block;
        height: auto;
        padding-bottom:0;
    }
    
    .footerLogo {
        display: block;
        text-align: center;
    }
    
	.footrow1 .footerColumn {
		display: none;
	}
    
    .vr::before {
        right: 10%;
    }
    
    .copyrightLinks a,
    .copyrightText {
        line-height: 22px;
        text-align: center;
    }
    
    .footrow2 {
        padding: 15px 0;
        margin: auto;
    }
    
    copyrightText {
        padding-bottom: 10px;
        text-align: center;
    }
    
    footer .footrow2 .copyrightLinks {
        text-align: center;
    }
}
/*************** media queries(Mobile) ***************/



/*update*/
 
    /* Conatct start */

       

        #tip 
        {
            display:none;  
        }

        .fadeIn
        {
          animation-duration: 3s;
        }



        .form-control:focus
        {
            border:1px solid #00bfff;
        }

        .textarea-contact
        {
            resize:none; 
        }

        .btn-send
        {
            border-radius: 0px;
            border:1px solid #125DAF;
            background:#125DAF;
            color:#fff; 
        }

        .btn-send:hover
        {
            border:1px solid #125DAF;
            background:#fff;
            color:#125DAF;
            transition:background 0.5s;   
        }

        .second-portion
        {
            margin-top:50px; 
        }
        .info a {
    display: block;
    color: #333333;
}
    

                @import "//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css";
        .box > .icon { text-align: center; position: relative; }
        .box > .icon > .image { 
            position: relative; z-index: 2;
             margin: auto; width: 88px; height: 88px; 
             border: 8px solid white; line-height: 88px; 
             border-radius: 50%; background: #125DAF; vertical-align: middle; }
        .box > .icon:hover > .image { background: #333; }
        .box > .icon > .image > i {
         font-size: 36px !important; color: #fff !important;
             top: 20%;
    bottom: 0;
    position: absolute;
    margin: auto;
    right: 0;
    left: 0;
     }
        .box > .icon:hover > .image > i { color: white !important; }
        .box > .icon > .info { margin-top: -24px; background: rgba(0, 0, 0, 0.04); border: 1px solid #e0e0e0; padding: 15px 0 10px 0; min-height:174px;}
        .box > .icon:hover > .info { background: rgba(0, 0, 0, 0.04); border-color: #e0e0e0; color: white; }
        .box > .icon > .info > h3.title { font-family: "Robot",sans-serif !important; font-size: 16px; color: #222; font-weight: 700; }
        .box > .icon > .info > p { font-family: "Robot",sans-serif !important; font-size: 13px; color: #666; line-height: 1.5em; margin: 20px;}
        .box > .icon:hover > .info > h3.title, .box > .icon:hover > .info > p, .box > .icon:hover > .info > .more > a { color: #222; }
        .box > .icon > .info > .more a { font-family: "Robot",sans-serif !important; font-size: 12px; color: #222; line-height: 12px; text-transform: uppercase; text-decoration: none; }
        .box > .icon:hover > .info > .more > a { color: #fff; padding: 6px 8px; background-color: #63B76C; }
        .box .space { height: 30px; }
        .contactno-innerblock{
            display: inline-block;
        }
        .contactno-innerblock i.fa.fa-mobile {
        width: 15px;
        float: left;
		padding-top: 2px;
        }
		.contactno-innerblock a {
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
}
        .info a span {
        float: left;
        }
        section.bookingprocess_cover_img {
        width: 100%;
        height: auto;
        background: url(../images/Travel-Icons.jpg) top center no-repeat;
        background-size: cover;
        }
        #booking-process h1{
            font-family: 'Open Sans';
            color: #ffffff;
            text-align: center;
            margin: 0;
            font-size: 52px;
			line-height: 1.3;
        }
        #bookingsec2 h3{
        font-family: 'Open Sans';
        font-weight : 500;
        font-size : 26px;
        color : #231F20;
     margin: 40px 0;
        }
        #bookingsec2 ul li{
                padding: 20px 0;
        }
    .travelsync-icon{
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image:url('../images/Travel-Icons-01.svg');
    background-size: 20px 200px;
    background-repeat: no-repeat;
    background-position: 0 0;
    }
    .travelsync-icon.icon1{
        background-position-y:0px;
    }
     .travelsync-icon.icon2{
        background-position-y:-20px;
    }
    .travelsync-icon.icon3{
        background-position-y:-40px;
    }
    .travelsync-icon.icon4{
        background-position-y:-60px;
    }
    .travelsync-icon.icon5{
        background-position-y:-80px;
    }
    .travelsync-icon.icon6{
        background-position-y:-100px;
    }
    .travelsync-icon.icon7{
        background-position-y:-120px;
    }
    .travelsync-icon.icon8{
        background-position-y:-140px;
    }
    .travelsync-icon.icon9{
        background-position-y:-160px;
    }
    .travelsync-icon.icon10{
        background-position-y:-180px;
    }
    .bg-blue{
    background: #1F66B1;
    background: #1F66B1;
    padding: 15px;
    border: 1px solid #1f66b1;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    float: left;
    margin-right: 20px;
    }
    #bookingsec2 ul li {
    padding: 10px 0;
    display: table;
}
    #bookingsec2 li span {
    display: table-cell;
    vertical-align: middle;
}
        @media only screen and (max-width: 768px)
        {
            .contact-form
            {
                margin-top:25px; 
            }
			
			.navbar li.menu-scroll a {
			padding: 12px 0;
			}
			
			.desk-pad-left {
			padding-left: 0;
			}
			
			iframe.t_map {
			margin-bottom: 20px;
			height: 300px;
			}
			
            .btn-send
            {
                width: 100%;
                padding:10px; 
            }

            .second-portion
            {
                margin-top:25px; 
            }
			 #booking-process h1 {
				padding: 40px 0;
				font-size: 32px;
				line-height: 1.3;
			}
			section.bookingprocess_cover_img {
			height: auto;
			}
        }
    /* Conatct end */