/*************** 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;
}

.disp-table > [class*=col-] {
    float: none;
}
.v-middle {
    vertical-align: middle;
}
.d-table-cell {
    display: table-cell;
}
.disp-table.pre-table {
    display: table;
    width: 100%;
}

/*--------------------------------------------------------------
# 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 li:hover > a {
    color: #1bb1dc;
}
.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 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 .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: 20px;
	text-transform:uppercase;
}


.mobile-nav ul li.drop-down.active li a {
    padding-right: 35px;
    font-size: 16px;
	margin:0;
}
.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #1bb1dc;
}

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

.mobile-nav ul li > a {
  -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);
}



.whyus_block h5.sub_text {
    color: #3D3D3D;
    margin-top: 20px;
    margin-bottom: 15px;
	font-size: 16px;
}

p.l-p {
    margin-top: 15px;
    font-size: 14px;
}


.vcenter{
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
	webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

.vcenter > [class^="col-"],
.vcenter > [class*=" col-"] {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;   
	align-items: center;     /* Align the flex-items vertically */
	justify-content: center; /* Optional, to align inner flex-items */					  
}

.whyus_text {
    margin-bottom: 15px;
}

.show_btn{
	  -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;
}
.overlap .show_btn{
	display:none!important;
}


/*************** Fonts ***************/
/*************** Global ***************/
body {
    font-family: 'Open Sans';
    font-size: 15px;
    line-height: 20px;
}

.iframe_load, .slide_load{
    background: transparent url('../images/lazy-loader.svg') no-repeat 50% 50%; 
	background-size:100px 100px;
	
}

.readmore-block button.touchBtn.rdmore:hover {
    background-color: #125DAF;
    border: 2px solid #125DAF;
    text-shadow: 0 -45px 0 #fffff, 0 0 0 #125DAF;
}

.cols.secImage {
    text-align: center;
}

#readmore_text {
    display: none;
}
.secTitle.abt-text {
    padding-bottom: 20px;
}

.readmore-block button.touchBtn.rdmore {
    text-shadow: 0 0 0 #ffffff, 0 45px 0 #125DAF;
}

.readmore-block {
    padding-top: 25px;
}

a.abtReach {
    font-weight: 700;
    color: #125DAF;
    text-decoration: none;
    line-height: 1.3;
    display: inline-block;
    font-size: 14px;
}

.readmore-block button.touchBtn {
background: #125DAF;
    border: 2px solid transparent;
    border-radius: 0;
    padding: 10px;
    font-size: 15px;
    color: rgba(0,0,0, 0);
    overflow: hidden;
    text-transform: uppercase;
    min-width: 160px
}

.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: 42px;
    line-height: 64px;
    letter-spacing: -1.85px;
    color: #3D3D3D;
    font-weight: 300;
}

.secText {
    font-size: 15px;
    line-height: 1.4;
    color: #5D5D5D;
}
.secText.abt_justify{
	text-align:justify;  
	text-align: justify;
	text-justify: distribute;
	text-align-last: left;
	word-spacing: -1px;
	
}

.navbar {
    margin-bottom: 0;
}

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;
}

.secImage {
    padding: 35px 0;
}

.innerContent {
    padding: 20px 25px 20px 30px;
    vertical-align: middle;
}

p.linkUs {
    text-align: left;
    letter-spacing: -0.2px;
}


/* fixed contact form */


.wrap-embed-contact-form .show_btn {
    display: inline-block;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: -44px;
    margin-top: 100px;
    background-color: #125DAF;
    border-radius: 8px 8px 0 0;
	
}

a.btn-show-contact {
    text-transform: uppercase;
    display: block;
    color: #ffffff;
    padding: 12px 18px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
	letter-spacing: 2px;
}

.show-widget a.btn-show-contact {
    color: #125DAF;
}

.show-widget.wrap-embed-contact-form .show_btn  {
	background-color:#ffffff;
	border-color:#125DAF;
	 border-style: solid;
	  border-width: 2px 2px 0 2px;;
}

.show-widget.wrap-embed-contact-form .show_btn {
    left: -46px;
}


.fixed_outer {
    padding: 20px;
}

.wrap-embed-contact-form {
    color: #444;
    font-weight: 400;
    position: fixed;
    right: -460px;
    bottom: auto;
    background: white;
    width: 460px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
	top:50%;
	border-top: 3px solid #125DAF ;
    -webkit-transform: translateY(-50.1%);
    -ms-transform: translateY(-50.1%);
    transform: translateY(-50.1%);
	-webkit-font-smoothing: subpixel-antialiased;
	backface-visibility: hidden;
	    z-index: 999;
	    will-change:transform;
}

.wrap-embed-contact-form.show-widget {
    right: 0px;
	    -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);
}

#fixed_from .bkform-cell .error {
    font-size: 13px;
    font-weight: 400;
}

.wrap-header {
    position: relative;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.96);
    z-index: 2;
    -webkit-transition: -webkit-transform 0.3s 0s;
    transition: -webkit-transform 0.3s 0s;
    transition: transform 0.3s 0s;
    transition: transform 0.3s 0s, -webkit-transform 0.3s 0s;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);

	
}

.show-widget .wrap-header {
    -webkit-transition: -webkit-transform 0.3s 0.3s;
    transition: -webkit-transform 0.3s 0.3s;
    transition: transform 0.3s 0.3s;
    transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
	transition-delay: 0.5s;
	-webkit-transition-delay: 0.5s; 
}



.wrap-header h3 {
    margin: 20px 0 10px 0;
}

.wrap_form {
    padding-top: 25px;
}

.msgBox {
    clear: both;
    display: block;
    font-size: 14px;
    text-align: center;
    color: #008000;
    padding-bottom: 10px;
}

.show_btn{
		transform: rotate(-90deg);
	transform-origin: left top 0;
}
#fixed_from .bkform-cell {
    margin-bottom: 15px;
    position: relative;
    z-index: 9;
}

#fixed_from .bkform-cell,
#fixed_from .bk_reqBtn {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
}

.show-widget #fixed_from .bkform-cell,
  .show-widget #fixed_from .bk_reqBtn {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
		transition-delay: 0.5s;
	-webkit-transition-delay: 0.5s;
}

.show-widget #fixed_from .bkform-cell: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;
  	transition-delay: 0.6s;
	-webkit-transition-delay: 0.6s;
}

.show-widget #fixed_from .bkform-cell: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;
  	transition-delay: 0.7s;
	-webkit-transition-delay: 0.7s;
}

.show-widget #fixed_from .bkform-cell: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;
  	transition-delay: 0.8s;
	-webkit-transition-delay: 0.8s;
}

.show-widget #fixed_from .bk_reqBtn  {
  -webkit-transition: all .6s .7s ease-in-out;
  -moz-transition: all .6s .7s ease-in-out;
  -ms-transition: all .6s .7s ease-in-out;
  -o-transition: all .6s .7s ease-in-out;
  transition: all .6s .7s ease-in-out;
  	transition-delay: 0.9s;
	-webkit-transition-delay: 0.9s;
}


.cd-panel__close {
position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    width: 60px;
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    bottom: auto;
}

.cd-panel__close::before, .cd-panel__close::after {
  /* close icon created in CSS */
  content: '';
  position: absolute;
  top: 22px;
  left: 20px;
  height: 3px;
  width: 20px;
  background-color: #424f5c;
  /* this fixes a bug where pseudo elements are slighty off position */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.cd-panel__close::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cd-panel__close::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}


.cd-panel__close:hover::before, .cd-panel__close:hover::after {
  background-color: #424f5c;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.cd-panel__close:hover::before {
  -webkit-transform: rotate(220deg);
      -ms-transform: rotate(220deg);
          transform: rotate(220deg);
}

.cd-panel__close:hover::after {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.cd-panel--is-visible .cd-panel__close::before {
  -webkit-animation: cd-close-1 0.6s 0.3s;
          animation: cd-close-1 0.6s 0.3s;
}

.cd-panel--is-visible .cd-panel__close::after {
  -webkit-animation: cd-close-2 0.6s 0.3s;
          animation: cd-close-2 0.6s 0.3s;
}

@-webkit-keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

@keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}


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

.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;
}

.bk_reqBtn .btn {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
}
.btn-send:hover {
    border: 1px solid #125DAF;
    background: #fff;
    color: #125DAF;
    transition: background 0.5s;
}
.intl-tel-input {
    width: 100%;
}
.btn-send {
    border-radius: 0px;
    border: 1px solid #125DAF;
    background: #125DAF;
    color: #fff;
}
.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;
}

/*************** 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;
    height: 70px;
    min-height: auto;
}

header nav.navbar.custom{
    height: 0;
    overflow: hidden;
}



.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 ***************/
/*************** HeaderSlider ***************/
.cb-slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}

.cb-slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 42s linear infinite 0s;
    -moz-animation: imageAnimation 42s linear infinite 0s;
    -o-animation: imageAnimation 42s linear infinite 0s;
    -ms-animation: imageAnimation 42s linear infinite 0s;
    animation: imageAnimation 42s linear infinite 0s;
}

.cb-slideshow li:nth-child(1) span { background-image: url(../images/screen/header1.jpg) }
.cb-slideshow li:nth-child(2) span {
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}

.cb-slideshow li:nth-child(3) span {
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}

.cb-slideshow li:nth-child(4) span {
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}

.cb-slideshow li:nth-child(5) span {
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}

.cb-slideshow li:nth-child(6) span {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}

.cb-slideshow li:nth-child(7) span {
    -webkit-animation-delay: 36s;
    -moz-animation-delay: 36s;
    -o-animation-delay: 36s;
    -ms-animation-delay: 36s;
    animation-delay: 36s;
}

@-webkit-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -webkit-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}

@-moz-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -moz-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -moz-transform: scale(1.05);
	    -moz-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -moz-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -moz-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}

@-o-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -o-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -o-transform: scale(1.05);
	    -o-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -o-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -o-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}

@-ms-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -ms-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -ms-transform: scale(1.05);
	    -ms-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -ms-transform: scale(1.1);
	}
	22% {
		opacity: 0;
		-webkit-transform: scale(1.1) translateY(-20%);
	}
	25% {
	    opacity: 0;
	    -ms-transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}

@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    transform: scale(1.1);
	}
    
	25% {
	    opacity: 0;
	    transform: scale(1.1) translateY(-100%);
	}
	100% { opacity: 0 }
}
/*************** HeaderSlider ***************/
/*************** Sec1 ***************/
#sec1 {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.headerTitle {
    font-size: 54px;
    color: #FFFFFF;
    font-weight: 300;
    line-height: 68px;
    padding-bottom: 30px;
}

button.touchBtn.headerBtn {
    text-shadow: 0 0 0 #ffffff, 0 45px 0 #F48020;
}

button.touchBtn.headerBtn:hover {
    background-color: #F48020;
    border: 2px solid #F48020;
    text-shadow: 0 -45px 0 #F48020, 0 0 0 #ffffff;
}
/*************** Sec1 ***************/
/*************** Sec2 ***************/
#sec2{
    background : #EDECED;
    padding: 60px 0 100px;
}

#sec2 .container {
    padding: 0 10%;
}

#sec2 .secTitle {
    padding-bottom: 50px;
}

.sec2row2 {
    padding: 0 3px;
    background: #fff;
}

.sec2row2 .tileSec {
    padding: 6px 3px;
    position: relative;
}

.sec2row2 .innerTile{
    position: relative;
}

.sec2row2 .tileImg {
    position: relative;
    overflow: hidden;
}

.sec2row2 .tileImg img{
    -webkit-transition: all 5s linear;
       -moz-transition: all 5s linear;
        -ms-transition: all 5s linear;
         -o-transition: all 5s linear;
            transition: all 5s linear;
}

.sec2row2 .tileSec:hover img{
    -webkit-transform: scale(1.4);
       -moz-transform: scale(1.4);
        -ms-transform: scale(1.4);
         -o-transform: scale(1.4);
            transform: scale(1.4);
}

.sec2row2 .tileSec:hover .tileImg::after {
    opacity: 0.8;
}

.sec2row2 .tileImg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background : -moz-linear-gradient(50% 97.68% 90deg,rgba(0, 0, 0, 1) 4.49%,rgba(0, 0, 0, 0) 36.02%);
    background : -webkit-linear-gradient(90deg, rgba(0, 0, 0, 1) 4.49%, rgba(0, 0, 0, 0) 36.02%);
    background : -webkit-gradient(linear,50% 97.68% ,50% -70.04% ,color-stop(0.0449,rgba(0, 0, 0, 1) ),color-stop(0.3602,rgba(0, 0, 0, 0) ));
    background : -o-linear-gradient(90deg, rgba(0, 0, 0, 1) 4.49%, rgba(0, 0, 0, 0) 36.02%);
    background : -ms-linear-gradient(90deg, rgba(0, 0, 0, 1) 4.49%, rgba(0, 0, 0, 0) 36.02%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000' ,GradientType=0)";
    background : linear-gradient(0deg, rgba(0, 0, 0, 1) 4.49%, rgba(0, 0, 0, 0) 36.02%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000',endColorstr='#000000' , GradientType=0);
    -webkit-transition: all 1s linear;
       -moz-transition: all 1s linear;
        -ms-transition: all 1s linear;
         -o-transition: all 1s linear;
            transition: all 1s linear;
}

.sec2row2 .tileDetails {
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    color: #fff;
}

.sec2row2 .tileBtn {
    padding: 5px 0;
}

.sec2row2 .tileText {
    margin-top: 6px;
    background: #edeced;
    padding: 10px 15px;
    font-size: 15px;
    line-height: 1.5;
	text-align: justify;
    text-align: justify;
    text-justify: distribute;
    text-align-last: left;
    word-spacing: -1px;
}
/*************** Sec2 ***************/
/*************** Sec3 ***************/
#sec3 {
    position: relative;
    z-index: 5;
    padding: 55px 0;
}

#sec3 .sliderSec,
#sec3 .secImage{
    position: static;
    margin-left: -1px;
}

#sec3 .slide {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 100%;
    height: auto;
}
#sec3 .slide::before,
#sec3 .slide::after {
    content: '';
    width: 100%;
    height: 50%;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}

#sec3 .slide.textSLide::before,
#sec3 .slide.textSLide::after{
    height: 100%;    
}

#sec3 .slide::before {
    top: 0;
    background : -moz-linear-gradient(50% 4.21% -90deg,rgba(2, 2, 2, 1) 8.71%,rgba(2, 2, 2, 0) 88.95%);
    background : -webkit-linear-gradient(-90deg, rgba(2, 2, 2, 1) 8.71%, rgba(2, 2, 2, 0) 88.95%);
    background : -webkit-gradient(linear,50% 4.21% ,50% 92.6% ,color-stop(0.0871,rgba(2, 2, 2, 1) ),color-stop(0.8895,rgba(2, 2, 2, 0) ));
    background : -o-linear-gradient(-90deg, rgba(2, 2, 2, 1) 8.71%, rgba(2, 2, 2, 0) 88.95%);
    background : -ms-linear-gradient(-90deg, rgba(2, 2, 2, 1) 8.71%, rgba(2, 2, 2, 0) 88.95%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#020202', endColorstr='#020202' ,GradientType=0)";
    background : linear-gradient(180deg, rgba(2, 2, 2, 1) 8.71%, rgba(2, 2, 2, 0) 88.95%);
    opacity : 0.57;
    filter: alpha(opacity=57) progid:DXImageTransform.Microsoft.Alpha(opacity=57) progid:DXImageTransform.Microsoft.gradient(startColorstr='#020202',endColorstr='#020202' , GradientType=0);
}

#sec3 .slide::after {
    bottom: 0;
    background : -moz-linear-gradient(50% 24.23% 90deg,rgba(2, 2, 2, 1) 8.71%,rgba(2, 2, 2, 0) 88.95%);
    background : -webkit-linear-gradient(90deg, rgba(2, 2, 2, 1) 8.71%, rgba(2, 2, 2, 0) 88.95%);
    background : -webkit-gradient(linear,50% 24.23% ,50% 112.63% ,color-stop(0.0871,rgba(2, 2, 2, 0) ),color-stop(0.8895,rgba(2, 2, 2, 1) ));
    background : -o-linear-gradient(90deg, rgba(2, 2, 2, 1) 8.71%, rgba(2, 2, 2, 0) 88.95%);
    background : -ms-linear-gradient(90deg, rgba(2, 2, 2, 1) 8.71%, rgba(2, 2, 2, 0) 88.95%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#020202', endColorstr='#020202' ,GradientType=0)";
    background : linear-gradient(0deg, rgba(2, 2, 2, 1) 8.71%, rgba(2, 2, 2, 0) 88.95%);
    opacity : 0.57;
    filter: alpha(opacity=57) progid:DXImageTransform.Microsoft.Alpha(opacity=57) progid:DXImageTransform.Microsoft.gradient(startColorstr='#020202',endColorstr='#020202' , GradientType=0);
}

.slideText {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: transparent;
    margin: auto;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    display: inline-block;
    padding: 150px 125px 75px;
}

#sec3 ul.bannerList{
    list-style: disc;
    padding-left: 17px;
}

#sec3 ul.bannerList li{
    margin-bottom: 5px;
}

#sec3 .slideFooter {
    position: absolute;
    left: 50px;
    right: 50px;
    margin: auto;
    text-align: center;
    bottom: 0;
    z-index: 2;
}

#sec3 .innerFooter {
    background: #1F66B1;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    display: inline-block;
    padding: 20px 30px;
    letter-spacing: -0.2px;
}

.svgArrow {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.5);
    padding: 10px;
}

.svgArrow:hover {
    background: rgba(0,0,0,0.9);
}

#sec3 .owl-nav {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 45%;
    z-index: 2;
}

#sec3 .owl-nav .owl-next,
#sec3 .owl-nav .owl-prev{
    display: inline-block;
    position: absolute;
}

#sec3 .owl-nav .owl-next{
    left: 0;
}

#sec3 .owl-nav .owl-prev{
    right: 0;
}
/*************** Sec3 ***************/
/*************** Sec4 ***************/
#sec4{
    background : #eeeeee;
    padding: 60px 0 100px;
}

.sec4row2 {
    padding: 10px 0;
}

.sec4row2 .secText span{
    font-weight: 500;
    text-transform: capitalize;
    color: #000000;
}

.sec4row3 {
    padding: 30px 0 0;
}

.partnerLogos {
    width: 150px;
}

.partnerLogos i{
    width: 150px;
    height: 150px;
    vertical-align: middle;
    display: inline-block;
    background-image: url('../images/partners.png');
    background-repeat: no-repeat;
    -webkit-transition: all 0.2s linear;
       -moz-transition: all 0.2s linear;
        -ms-transition: all 0.2s linear;
         -o-transition: all 0.2s linear;
            transition: all 0.2s linear;
}

i.sprite-1{background-position: -10px -10px;}
i.sprite-2{background-position: -10px -180px;}
i.sprite-3{background-position: -10px -350px;}
i.sprite-4{background-position: -10px -520px;}
i.sprite-5{background-position: -10px -690px;}
i.sprite-6{background-position: -10px -860px;}
i.sprite-7{background-position: -10px -1030px;}
i.sprite-8{background-position: -10px -1200px;}
i.sprite-9{background-position: -10px -1370px;}
i.sprite-10{background-position: -10px -1540px;}
i.sprite-11{background-position: -10px -1710px;}
i.sprite-12{background-position: -10px -1880px;}
i.sprite-13{background-position: -10px -2050px;}
i.sprite-14{background-position: -10px -2220px;}
i.sprite-15{background-position: -10px -2390px;}
i.sprite-16{background-position: -10px -2560px;}
i.sprite-17{background-position: -10px -2730px;}
i.sprite-18{background-position: -10px -2900px;}
i.sprite-19{background-position: -10px -3070px;}

button.touchBtn.partnerBtn {
    border-color: #909090;
    text-shadow: 0 0 0 #909090, 0 45px 0 #1F66B1;
}

button.touchBtn.partnerBtn:hover {
    background-color: #3D3D3D;
    border: 2px solid #3D3D3D;
    text-shadow: 0 -45px 0 #ffffff, 0 0 0 #ffffff;
}
/*************** Sec4 ***************/
/*************** Sec5 ***************/
#sec5 {
    padding: 60px 0;
}

#sec5 .secText a.secLink{
    padding-left: 0;
}
/*************** Sec5 ***************/
/*************** Sec8 ***************/
#sec8{
    padding: 60px 0 0;
}

#sec8 .secTitle {
    font-size: 34px;
    line-height: 48px;
    letter-spacing: -1.53px;
    color: #3D3D3D;
    font-weight: 300;
}

#sec8 .jvectormap-zoomin {
    top: 85px;
    display: none;
}

#sec8 .jvectormap-zoomout {
    top: 105px;
    display: none;
}

#sec8 .jvectormap-container {
    height: 560px;
}

#sec8 .servicesSec {
    display: table;
}

#sec8 .services{
    display: table-cell;
    width: auto;
    text-align: center;
}

#sec8 .serviceText {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    color: #706f71;
    padding-top: 3px;
}

#sec8 .counts {
    font-size: 25px;
    color: #414042;
    font-weight: 300;
    line-height: 34px;
    padding: 5px 8px 0;
    text-align: left;
    letter-spacing: -0.8px;
}

#sec8 .destinationList {
    display: block;
    overflow-y: hidden;
    background: #EDECED;
    padding: 103px 15px 20px;
    position: relative;
    margin: 20px 0;
}

#sec8 .innerList {
    height: 100%;
    overflow: auto;
    background: #fff;
}

#sec8 .innerList::-webkit-scrollbar{
    width:10px
}

#sec8 .innerList::-webkit-scrollbar-track-piece{
    background-color:#ffffff;
}

#sec8 .innerList::-webkit-scrollbar-thumb{
    background-color:#5D5D5D;
}

#sec8 .listTitle {
    padding: 0 10px;
    background: #3D3D3D;
    font-size: 18px;
    line-height: 36px;
    color: #ffffff;
    position: absolute;
    top: 15px;
    margin: 0 auto;
    left: 15px;
    right: 15px;
}

#sec8 .countryDropdown {
    position: absolute;
    top: 60px;
    margin: 0 auto;
    left: 15px;
    right: 15px;
}

#sec8 .countryDropdown button.dropdown-toggle{
    padding: 0 10px;
    background: #F48020;
    font-size: 15px;
    line-height: 34px;
    color: #ffffff;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

#sec8 .countryDropdown ul.dropdown-menu {
    padding: 5px 0 0;
    width: 100%;
    border-radius: 0;
    margin: 0;
    border: 2px solid #F48020;
    box-shadow: inset 0 5px 7px -5px rgba(0,0,0,0.7);
    overflow-y: scroll;
}

#sec8 .dropdown-menu::-webkit-scrollbar{
    width:10px
}

#sec8 .dropdown-menu::-webkit-scrollbar-track-piece{
    background-color:#EDECED;
}

#sec8 .dropdown-menu::-webkit-scrollbar-thumb{
    background-color:#5D5D5D;
}

#sec8 ul.dropdown-menu li a {
    display: inline-block;
    white-space: normal;
    width: 100%;
    padding: 5px 15px;
    font-size: 14px;
    line-height: 20px;
    color: #5D5D5D;
}

#sec8 ul.dropdown-menu li a:hover {
    background: #F48020;
    color: #fff;
}

#sec8 .countriesList table {
    margin: auto;
}

#sec8 .countriesList table td {
    font-size: 13px;
    line-height: 20px;
    color: #5D5D5D;
    background: #fff;
    vertical-align: middle;
}

#sec8 .countriesList table td:first-child {
    white-space: nowrap;
}
/*************** Sec8 ***************/
/*************** Sec9 ***************/
#sec9{
    padding: 60px 0 80px;
}

.sec9row1{
    padding-bottom: 25px;
}
/*************** Sec9 ***************/
/*************** Sprite ***************/
.sprite {
    background-image: url('../images/services.png');
    background-repeat: no-repeat;
    display: block;
    width: 50px;
    height: 50px;
    margin: auto;
}

.sprite-service-icon1{background-position:-10px -10px}
.sprite-service-icon2{background-position:-10px -80px}
.sprite-service-icon3{background-position:-10px -150px}
.sprite-service-icon4{background-position:-10px -220px}
.sprite-service-icon5{background-position:-10px -290px}
.sprite-service-icon6{background-position:-10px -360px}
.sprite-service-icon7{background-position:-10px -430px}
.sprite-service-icon8{background-position:-10px -500px}
.sprite-service-icon9{background-position:-10px -570px}
/*************** Sprite ***************/
/*************** 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-color: #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;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #434343 inset !important;
    -webkit-text-fill-color: #ffffff !important;
}

.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;
}

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

.footrow1 .footerColumn {
    display: none;
}

.vcenter > [class^="col-"], .vcenter > [class*=" col-"] {
    display: block;
    display:block;
    display:block;
    display:block;
    display: block;
    align-items: center;
    justify-content: center;
}

.vcenter {
    display: block;
    display:block;
    display: block;
    display: block;
    display: block;
    webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}
	
		.mobile-nav .drop-down li {
    padding-left: 0;
}

a.btn-show-contact {
    padding: 15px;
    font-size: 18px;
}
.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: 200px;
		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;
	-webkit-transform: none;
	-ms-transform:  none;
	transform:  none;
}

/* old*/
.disp-table > [class*=col-] {
    float: left;
	    height: auto!important;
		padding: 0!important;
}
.mobile-nav ul li.menu-scroll > a {
    display: block;
    position: relative;
    color: #125DAF;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 18px;
	text-transform:uppercase;
}
section#sec5 {
    margin-top: 25px;
}
.d-table-cell {
    display: block;
    padding: 0;
}	

nav.main-nav {
    float: right;
    padding: 14px 0;
    display: none;
}
    
    #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;
    }
}
/*************** Popup styles ***************/
/*************** Footer ***************/
.footrow1 {
    background: #333333;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footrow1 .container{
    position: relative;
    padding: 50px 15px;
}

.footrow1 .container::before {
    content: '';
    right: 71%;
    top: 0;
    bottom: 0;
    width: 100%;
    background: #EDECED;
    position: absolute;
    display: block;
}

.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: -55%;
    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;
}

/*************** Footer ***************/
/*************** media queries(Small laptop) ***************/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    #sec8 .jvectormap-container {
        height: 460px;
    }

    #sec8 .jvectormap-container>svg {
        margin-top: 10px;
    }
}
/*************** media queries(Small laptop) ***************/
/*************** media queries(Tab) ***************/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar li.menu-scroll a {
        padding: 15px 12px;
    }
    
     .secImage {
        padding:0;
    }
    
    .sec1row1 {
        padding: 150px 0;
    }
    
    #sec2 .container {
        padding: 0 5%;
    }
    
    #sec3 {
        padding: 60px 0;
    }
    
    #sec3 .slideImg {
        overflow: hidden;
    }
    
    #sec3 .sliderSec{
        position: relative;
    }
    
    #sec3 .owl-nav {
        top: 40%;
    }
    
    .slideText {
        padding: 100px 75px;
    }
    
    .sec4row2 {
        padding: 30px 5%;
    }
    
    .partnerLogos {
        margin: 10px 5px;
    }
    
    .partnerLogos i {
        -webkit-filter: none;
        filter: none;
    }
    
    #sec8{
        padding: 60px 0 0;
    }
    
    #sec8 .counts {
        padding: 20px 10px 0;
    }
    
    #sec8 .jvectormap-container {
        height: 360px;
    }

    #sec8 .jvectormap-container>svg {
        margin-top: 10px;
    }
        
    #sec8 .countriesList table td {
        font-size: 12px;
    }    
    
    .sec9row2 iframe{
        width: 610px;
        height: 367px;
    }
    
    .vr::before {
        right: -25%;
    }
    
    .footrow1 .container::before {
        right: 63%;
    }
}
/*************** media queries(Tab) ***************/
/*************** media queries(Mobile) ***************/
@media only screen and (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 18px;
        overflow-x: hidden;
    }
	
    .cb-slideshow li:nth-child(1) span {
        background-image: url(../images/screen/banner1.jpg);
    }
	
	.navbar-fixed-bottom .navbar-collapse,
	.navbar-fixed-top .navbar-collapse {
    max-height: none;
}
    
    header nav.navbar {
        height: 60px;
    }
    
    .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;
		        padding: 12px 0;
    }

	.headerTitle {
font-size: 28px;
    line-height: 44px;
    padding-bottom: 0;
    letter-spacing: -0.3px;
    position: relative;
	}
	
	.sec1row1.row {
    margin-top: 180px!important;
}
    
    button.touchBtn {
        padding: 10px 40px;
        font-size: 14px;
    }
    
    .secText {
        font-size: 15px;
        line-height: 20px;
    }
	
	.readmore-block {
    padding-top: 25px;
    display: none;
}

#readmore_text {
    display: block;
}
    
    .innerContent {
        padding: 10px 0px 0px;
        display: block;
    }
    
    .secImage {
        padding: 35px 0 0;
    }
    
    #sec2 {
        padding: 30px 0 10px;
    }
    
    #sec2 .container {
        padding: 0 10px;
    }
    
    .secTitle {
        font-size: 32px;
        line-height: 46px;
        letter-spacing: -0.85px;
    }
    
    #sec2 .secTitle {
        padding-bottom: 25px;
    }
    
    .sec2row2 {
        padding: 3px 0px;
        margin: 0 15px;
        display: inline-block;
        width: auto;
        text-align: center;
        background: none;
    }
    
    .sec2row2 .tileSec {
        padding: 8px;
        display: inline-block;
        width: auto;
        float: none;
        background: #fff;
        margin: 0 0 20px;
    }
    
    .sec2row2 .tileImg {
        display: inline-block;
        width: auto;
    }
    
    #sec3 {
        padding: 30px 0 0;
    }
    
    #sec3 .slideFooter {
        left: 20px; 
        right: 20px;
    }
    
    #sec3 .innerFooter {
        font-size: 16px;
        line-height: 20px;
        font-weight: normal;
        padding: 10px 20px;
    }
    
    #sec3 .slideImg img {
        height: 250px;
        width: auto;
        max-width: none;
        text-align: center;
    }
    
    #sec3 .sliderSec{
        position: relative;
    }
    
    #sec3 .owl-nav {
        top: 40%;
    }
    
    .slideText {
        position: relative;
        font-size: 13px;
        color: #414042;
        padding: 15px 5px;
    }
    
    .svgArrow {
        width: 40px;
        height: 40px;
        padding: 5px;
    }
    
    #sec4{
        padding: 30px 0;
    }
    
    #sec4 .secTitle {
        padding-bottom: 10px;
    }
    
    #sec4 .secText {
        padding: 0 15px;
    }
    
    .sec4row2 {
        padding: 0;
    }
    
    .partnerLogos {
        margin: 10px 5px;
    }
    
    .partnerLogos i {
        -webkit-filter: none;
        filter: none;
    }
    
    button.touchBtn.partnerBtn {
        background-color: #3D3D3D;
        border-color: #3D3D3D;
        text-shadow: 0 -45px 0 #ffffff, 0 0 0 #ffffff;
        margin-top: 15px;
        padding: 10px 50px;
        margin-bottom: 5px;
    }
    
    #sec5 {
        padding: 0;
    }
    
    #sec5 .secImage {
        padding: 35px 15px 0;
		height: auto!important;
    }
    
    a.secLink {
        font-size: 13px;
    }
    
    #sec8 {
        padding: 30px 0 0;
    }
    
    #sec8 .secTitle {
        font-size: 24px;
        line-height: 34px;
        letter-spacing: -0.5px;
        color: #3D3D3D;
        font-weight: 300;
        padding: 0 15px;
    }
    
    #sec8 .jvectormap-container {
        height: 450px;
    }
    
    #sec8 .jvectormap-container>svg {
        margin-top: 0px;
    }

    #sec8 .jvectormap-zoomin {
        top: 15px;
    }

    #sec8 .jvectormap-zoomout {
        top: 35px;
    }
    
    #sec8 .destinationList {
        padding: 95px 10px 10px;
        margin: 0 15px;
        height: 350px;
    }
    
    #sec8 .listTitle {
        font-size: 14px;
        line-height: 30px;
        padding: 0 5px;
        left: 10px;
        right: 10px;
        top: 12px;
    }
    
    #sec8 .countryDropdown {
        padding: 0;
        left: 10px;
        right: 10px;
        top: 52px;
    }
    
    #sec8 .countryDropdown ul.dropdown-menu{
        height: 256px;        
    }
    
    #sec8 .servicesSec {
        display: block;
        padding: 10px;
        text-align: center;
    }
    
    #sec8 .services {
        display: inline-block;
        padding: 3px;
    }
    
    #sec8 .serviceText {
        font-size: 11px;
        font-weight: 400;
        line-height: 12px;
        padding: 0 5px;
    }
    
    .sprite {
        width: 30px;
        height: 30px;
        background-size: 42px 378px;
    }

    .sprite-service-icon1{background-position:-6px -6px}
    .sprite-service-icon2{background-position:-6px -48px}
    .sprite-service-icon3{background-position:-6px -90px}
    .sprite-service-icon4{background-position:-6px -132px}
    .sprite-service-icon5{background-position:-6px -174px}
    .sprite-service-icon6{background-position:-6px -216px}
    .sprite-service-icon7{background-position:-6px -258px}
    .sprite-service-icon8{background-position:-6px -300px}
    .sprite-service-icon9{background-position:-6px -342px}
    
    #sec8 .counts {
        font-size: 22px;
        color: #414042;
        font-weight: 400;
        line-height: 26px;
        padding: 0px 10px 0;
        text-align: left;
        letter-spacing: -0.5px;
    }
    
    #sec9{
        padding: 25px 0;
    }
    
    .sec9row1{
        padding-bottom: 15px;
    }
    
    .sec9row2 iframe{
        width: auto;
        height: 300px;
    }
    
		.footrow1 .container {
		padding: 0 0 15px 0;
		text-align: center;
		}
    .footrow1 .container::before {
        right: 0;
        bottom: auto;
        height: 100px;
    }
    
    .footerColumnMain {
        display: block;
        height: auto;
        padding-bottom: 0;
    }
    
    .footerLogo {
        display: block;
        text-align: center;
    }
    
	.footrow1 .footerColumn {
		display: none;
	}
    
    .vr::before {
        right: 10%;
    }
    
    .copyrightLinks a {
        line-height: 22px;
        text-align: center;
		padding:0;
    }
	.copyrightText{
	line-height: 22px;
    text-align: center;
    padding: 0;
    font-size: 12px;
	}
    
    .footrow2 {
        padding: 15px 0;
        margin: auto;
    }
    
    copyrightText {
        padding-bottom: 10px;
        text-align: center;
    }
    
    footer .footrow2 .copyrightLinks {
        text-align: center;
    }
}

@media only screen and (max-width: 640px) {
    #sec8 .jvectormap-container {
        height: 370px;
    }
    
    #sec8 .jvectormap-container>svg {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 480px) {
    #sec8 .jvectormap-container {
        height: 300px;
    }
    
    #sec8 .jvectormap-container>svg {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 360px) {
    #sec8 .jvectormap-container {
        height: 270px;
    }
    
    #sec8 .jvectormap-container>svg {
        margin-top: -10px;
    }
}
/*************** media queries(Mobile) ***************/