/*------------------------------------*\
    #GLOBAL STYLES
\*------------------------------------*/

body, html {
	overflow-x: hidden;
}

body {
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	line-height: normal;
	font-weight: 400;	
	color: #fff;	
	text-align: right;
	margin: 0;
}

b, strong {
	font-weight: 700;
}

.wrapper {
	background-color: #000;
	min-height: 100vh;
}

* {
	outline: none;
}
::-moz-selection {
 text-shadow: none;
}

::selection {
	background-color: #0095DA;
	color: #ffffff;
	text-shadow: none;
}

::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}
::-webkit-scrollbar-thumb {
	background: #0095DA;
	-webkit-box-shadow: inset 1px 1px 2px rgba(155, 155, 155, 0.4);
}
::-webkit-scrollbar-track {
	background: #FFFFFF;
	-webkit-box-shadow: inset 1px 1px 2px #E0E0E0;
	border: 1px solid #D8D8D8;
}

a {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #fff;
}

a:hover {
	color: #0095DA;
	text-decoration: none;
}

a:focus {
	color: #0095DA;
	outline: none;
	text-decoration: none;
}

a:active {
	color: #0095DA;
	outline: none;
	text-decoration: none;
}

textarea {
	resize: none;
}

button.btn {
	margin-bottom: 0;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus,
button:focus {
	outline: none;
}

.modal-backdrop {
	z-index: 1020;
	background-color: rgba(34, 34, 34, 0.95);
}

.fullscreen {
	height: 100vh !important;
}
.full-width {
	width: 100% !important;
}
.width-90 {
	width: 90% !important;
}
.width-80 {
	width: 80% !important;
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 480px) {

	body {
		font-size: 1rem;
	}
}
@media only screen and (max-width: 992px) {

	body {
		height: auto !important;
	}
}

/* CONTAINER */

@media(min-width: 576px)  {
   
    .container {
        max-width: 100%;
    }

}
@media(min-width: 768px)  {
   
    .container {
        max-width: 750px;
    }

}
@media(min-width: 992px)  {
   
    .container {
        max-width: 970px;
    }

}
@media(min-width: 1200px)  {
   
    .container {
        max-width: 1170px;
    }
}
@media(min-width: 1470px) {
   
    .container {
        max-width: 1370px;
    }
}

/*------------------------------------*\
    #TYPOGRAPHY
\*------------------------------------*/
/* Heading Text */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	margin-bottom: 5px;
}

h1.big {
	font-size: 2.8rem;
}
h1.max-big {
	font-size: 3.4rem;
}

p.big {
	font-size: 18px;
}
p.small {
	font-size: 16px;
}

span.desc {
	font-size: 18px;
	vertical-align: middle;
}

label {
	margin-bottom: 0
}

ol > li {
  text-indent: -0.4em;
  padding-left: 2px;
  margin-bottom: 2px;
  list-style-type: none;
  counter-increment: item;
}
ol > li:before {
  display: inline-block;
  padding-left: 5px;
  font-weight: bold;
  content: counter(item) ".";
}

@media only screen and (max-width: 1200px) {
	
	h1 {
		font-size: 2.3rem;
	}
	h6 {
		font-size: 0.9rem;
	}
}
@media(max-width: 991px)  {
   
    h1 {
		font-size: 2.3rem;
	}
	
	h1.big {
		font-size: 2.5rem;
	}
	h1.max-big {
		font-size: 2.8rem;
	}
}
@media(max-width: 480px)  {
   
    h1 {
		font-size: 2rem;
	}
	
	h1.big {
		font-size: 2.2rem;
	}
	h1.max-big {
		font-size: 2.4rem;
	}
}

/* Aligning Text */
.text--left {
	text-align: left !important;
}

.text--right {
	text-align: right !important;
}

.text--center {
	text-align: center !important;
}

.text--just {
	text-align: justify !important;
}

.align--top {
	vertical-align: top;
}

.align--bottom {
	vertical-align: bottom;
}

.align--middle {
	vertical-align: middle;
}

.align--baseline {
	vertical-align: baseline;
}

/* Weight Text */
.f-light {
	font-weight: 300 !important;
}
.f-regular {
	font-weight: 400 !important;
}
.f-d-bold {
	font-weight: 500 !important;
}
.f-bold {
	font-weight: 700 !important;
}
.f-u-bold {
	font-weight: 900 !important;
}

.break-word {
	word-wrap: break-word;
}

.no-wrap {
	white-space: nowrap;
}

/* Text Color */
.text-white {
	color: #ffffff !important;
}

.text-gray {
	color: #f9f9f9 !important;
}

.text-black {
	color: #000000 !important;
}

.text-theme {
	color: #0095DA !important;
}

.text--capitalize {
	text-transform: capitalize !important;
}

.text--uppercase {
	text-transform: uppercase !important;
}

/* Text Size */
.text-small {
	font-size: 1rem;
}
.text-medium {
	font-size: 1.4rem;
}
.text-big {
	font-size: 1.8rem;
}

@media(max-width: 991px)  {
   
    .text-small {
		font-size: 0.9rem;
	}
	.text-medium {
		font-size: 1.3rem;
	}	
	.text-big {
		font-size: 1.7rem;
	}
}
@media(max-width: 480px)  {
   
    .text-small {
		font-size: 0.8rem;
	}
	.text-medium {
		font-size: 1.2rem;
	}	
	.text-big {
		font-size: 1.6rem;
	}
}

.diagonal {
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 148px 100vw 0 0;
  border-color: rgba(0, 0, 0) rgba(0,0,0,.0) transparent transparent;
  transform: scale(1.0001);
}
.diagonal.magenta {
  border-color: rgba(246,203,38,0.12) rgba(255,0,153,0.1) transparent transparent;
}

@media(max-width: 480px)  {
   
    .diagonal {
		border-width:80px 100vw 0 0;
	}
}

/*------------------------------------*\
    #Align
\*------------------------------------*/
address,
blockquote,
dd,
dl,
fieldset,
ol,
pre,
table,
ul {
	margin-bottom: 20px;
}

img {
	max-width: 100%;
}

/* All margin */
.m-0 {
	margin: 0 !important;
}

.m-xs {
	margin: 10px;
}

.m-sm {
	margin: 20px;
}

.m-md {
	margin: 40px;
}

.m-lg {
	margin: 80px;
}

/* top margin */
.mt-0 {
	margin-top: 0;
}

.mt-xs {
	margin-top: 10px;
}

.mt-30-md {
	margin-top: 30px !important;
}
	
.mt-10 {
	margin-top: 10px !important;
}

.mt-20 {
	margin-top: 20px !important;
}

.mt-30 {
	margin-top: 30px !important;
}

.mt-40 {
	margin-top: 40px !important;
}

.mt-50 {
	margin-top: 50px !important;
}

.mt-60 {
	margin-top: 60px !important;
}

.mt-70 {
	margin-top: 70px !important;
}

.mt-80 {
	margin-top: 80px !important;
}

.mt-90 {
	margin-top: 90px !important;
}

.mt-100 {
	margin-top: 100px !important;
}

.mt-150 {
	margin-top: 150px;
}

/* bottom margin */
.mb-0 {
	margin-bottom: 0 !important;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-10 {
	margin-bottom: 10px !important;
}

.mb-20 {
	margin-bottom: 20px !important;
}

.mb-25 {
	margin-bottom: 25px !important;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.mb-45 {
	margin-bottom: 45px !important;
}

.mb-50 {
	margin-bottom: 50px !important;
}

.mb-55 {
	margin-bottom: 50px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.mb-60 {
	margin-bottom: 60px !important;
}

.mb-70 {
	margin-bottom: 70px !important;
}

.mb-80 {
	margin-bottom: 80px !important;
}

.mb-90 {
	margin-bottom: 90px !important;
}

.mb-100 {
	margin-bottom: 100px !important;
}

.mb-120 {
	margin-bottom: 120px !important;
}

.mb-150 {
	margin-bottom: 150px !important;
}

/* right margin */
.mr-0 {
	margin-right: 0;
}

.mr-30 {
	margin-right: 30px !important;
}

.mr-50 {
	margin-right: 50px;
}

.mr-60 {
	margin-right: 60px;
}

.mr-150 {
	margin-right: 150px;
}

/* left margin */
.ml-0 {
	margin-left: 0;
}

.ml-xs {
	margin-left: 10px;
}

.ml-sm {
	margin-left: 20px;
}

.ml-md {
	margin-left: 40px;
}

.ml-lg {
	margin-left: 80px;
}

.ml-30 {
	margin-left: 30px !important;
}

.ml-50 {
	margin-left: 50px;
}

.ml-60 {
	margin-left: 60px;
}

.ml-150 {
	margin-left: 150px;
}

/* All padding */
.p-0 {
	padding: 0 !important;
}

.p-xs {
	padding: 10px;
}

.p-sm {
	padding: 20px;
}

.p-md {
	padding: 40px;
}

.p-lg {
	padding: 80px;
}

/* top padding */
.pt-0 {
	padding-top: 0 !important;
}

.pt-15 {
	padding-top: 15px !important;
}

.pt-30 {
	padding-top: 30px !important;
}

.pt-40 {
	padding-top: 40px !important;
}

.pt-50 {
	padding-top: 50px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-70 {
	padding-top: 70px !important;
}

.pt-80 {
	padding-top: 80px !important;
}

.pt-90 {
	padding-top: 90px !important;
}

.pt-100 {
	padding-top: 100px !important;
}

.pt-150 {
	padding-top: 150px !important;
}

.pt-220 {
	padding-top: 220px !important;
}

/* bottom padding */
.pb-0 {
	padding-bottom: 0 !important;
}

.pb-10 {
	padding-bottom: 10px !important;
}

.pb-15 {
	padding-bottom: 15px !important;
}

.pb-20 {
	padding-bottom: 20px !important;
}

.pb-30 {
	padding-bottom: 30px !important;
}

.pb-50 {
	padding-bottom: 50px !important;
}

.pb-60 {
	padding-bottom: 60px !important;
}

.pb-70 {
	padding-bottom: 70px !important;
}

.pb-80 {
	padding-bottom: 80px !important;
}

.pb-85 {
	padding-bottom: 85px !important;
}

.pb-90 {
	padding-bottom: 90px !important;
}

.pb-100 {
	padding-bottom: 100px !important;
}

/* right padding */

.pr-xs {
	padding-right: 10px;
}

.pr-sm {
	padding-right: 20px;
}

.pr-md {
	padding-right: 40px;
}

.pr-lg {
	padding-right: 80px;
}

.pr-0 {
	padding-right: 0;
}

.pr-15 {
	padding-right: 15px !important;
}

.pr-30 {
	padding-right: 30px !important;
}

.pr-50 {
	padding-right: 50px;
}

.pr-60 {
	padding-right: 60px;
}

.pr-70 {
	padding-right: 70px;
}

.pr-100 {
	padding-right: 100px !important;
}

.pr-150 {
	padding-right: 150px;
}

/* left padding */

.pl-0 {
	padding-left: 0;
}

.pl-20 {
	padding-left: 20px;
}

.pl-30 {
	padding-left: 30px;
}

.pl-50 {
	padding-left: 50px;
}

.pl-60 {
	padding-left: 60px;
}

.pl-70 {
	padding-left: 70px;
}

.pl-100 {
	padding-left: 100px !important;
}

.pl-150 {
	padding-left: 150px;
}

/* Postions */
.fixed {
	position: fixed;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.static {
	position: static;
}

/* Zindex*/
.zindex-1 {
	z-index: 1;
}

.zindex-2 {
	z-index: 2;
}

.zindex-3 {
	z-index: 3;
}

.zindex-9999 {
	z-index: 9999;
}

/* Borders */
.border-all {
	border: 1px solid #0095DA;
}

.border-top {
	border-top: 1px solid #0095DA;
}

.border-bottom {
	border-bottom: 1px solid #0095DA;
}

.border-right {
	border-right: 1px solid #0095DA;
}

.border-left {
	border-left: 1px solid #0095DA;
}

/* Display */
.inline {
	display: inline;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.hide {
	display: none;
}
.hide-md {
	display: none;
}

.flex {
	display: flex;
}

@media only screen and (min-width: 992px) {
	
	.pr-0-md {
		padding-right: 0;
	}
	.pl-0-md {
		padding-left: 0;
	}
	.pl-1-md {
		padding-left: .25rem!important;
	}
	.pl-30-md {
		padding-left: 30px;
	}
}
@media only screen and (max-width: 991px) {
	
	.hide-md {
		display: block !important;
	}
	.hide-sm {
		display: none;
	}

	.text-center-xs {
		text-align: center !important;
	}

	.pull-none-xs {
		float: none !important;
		text-align: center !important;
	}

	.pt-10-xs {
		padding-top: 10px !important;
	}
	
	.mt-0-xs {
		margin-top: 0 !important;
	}
	
	.mt-15-xs {
		margin-top: 15px !important;
	}
	
	.mt-30-xs {
		margin-top: 30px !important;
	}
	
	.mt-30-md {
		margin-top: 0 !important;
	}
	
	.mb-15-xs {
		margin-bottom: 15px !important;
	}

	.mb-30-xs {
		margin-bottom: 30px !important;
	}

	.mb-40-xs {
		margin-bottom: 40px !important;
	}

	.mb-50-xs {
		margin-bottom: 50px;
	}

	.mb-60-xs {
		margin-bottom: 60px !important;
	}

	.p-none-xs {
		padding-right: 0;
		padding-left: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

	.text-center-sm {
		text-align: center !important;
	}

	.mb-0-sm {
		margin-bottom: 0;
	}

	.mb-15-sm {
		margin-bottom: 15px;
	}

	.mb-30-sm {
		margin-bottom: 30px !important;
	}

	.mb-40-sm {
		margin-bottom: 40px;
	}

	.mb-50-sm {
		margin-bottom: 50px;
	}

	.mb-60-sm {
		margin-bottom: 60px;
	}

	.pb-15-sm {
		padding-bottom: 15px;
	}

	.pb-30-sm {
		padding-bottom: 30px;
	}

	.pb-50-sm {
		padding-bottom: 50px;
	}

	.pb-60-sm {
		padding-bottom: 60px;
	}

	.p-none-sm {
		padding-right: 0;
		padding-left: 0;
	}

	.pull-none-sm {
		float: none !important;
		text-align: center !important;
	}
}


/*------------------------------------*\
    #Grid
\*------------------------------------*/
.row-no-padding [class*="col-"] {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.col-lg-5ths,
.col-md-5ths,
.col-sm-5ths,
.col-xs-5ths {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.col-xs-5ths {
	width: 20%;
	float: left;
}

@media (min-width: 768px) {

.col-sm-5ths {
	width: 20%;
	float: left;
}
}

@media (min-width: 992px) {

.col-md-5ths {
	width: 20%;
	float: left;
}
}

@media (min-width: 1200px) {

.col-lg-5ths {
	width: 20%;
	float: left;
}
}

.col-content {
	padding: 120px 100px 110px 120px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

.col-content {
	padding: 40px !important;
}
}

/* Small Devices, Tablets */
/* Postion Helpers */
.pos-fixed {
	position: fixed;
}

.pos-relative {
	position: relative;
}

.pos-absolute {
	position: absolute;
}

.pos-static {
	position: static;
}

.pos-top {
	top: 0;
}

.pos-bottom {
	bottom: 0;
}

.pos-right {
	right: 0;
}

.pos-left {
	left: 0;
}

.pos-vertical-center {
	position: relative;
	top: 50%;
	-webkit-transform: perspective(1px) translateY(-50%);
	-moz-transform: perspective(1px) translateY(-50%);
	-o-transform: perspective(1px) translateY(-50%);
	transform: perspective(1px) translateY(-50%);
}

.height-700 {
	height: 700px !important;
}

.height-500 {
	height: 500px !important;
}

.height-800 {
	height: 800px !important;
}

@media only screen and (min-width: 992px) {

.hidden-lg,
 .hidden-md {
	display: none;
}
}

/*------------------------------------*\
    #Blockquotes
\*------------------------------------*/
.blockquote,
blockquot {
	font-size: 20px;
	color: #9b9b9b;
	font-style: italic;
	line-height: 28px;
	font-weight: 500;
	padding: 30px 0 30px 30px;
	position: relative;
}

.quote-author {
	display: block;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	color: #282828;
	margin-top: 18px;
}

.blockquote-1 {
	border-left: 6px solid #282828;
}

.blockquote-3,
.blockquote-4 {
	padding-right: 30px;
}

.blockquote-2,
.blockquote-3,
.blockquote-4 {
	border-left: none;
}

.blockquote-2:after,
.blockquote-2:before {
	font-family: fontawesome;
	font-size: 16px;
	position: absolute;
	color: #282828;
	line-height: 1.8;
}

.blockquote-2:before {
	content: "\f10d";
	top: 0;
	left: 0;
}

.blockquote-2:after {
	content: "\f10e";
	right: 0;
	bottom: 0;
}

.blockquote-3 {
	color: #0095DA;
	background-color: #f4f4f4;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.blockquote-4 {
	color: #ffffff;
	background-color: #282828;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.blockquote-4 .quote-author {
	color: #ffffff;
}

/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
.btn {
	position: relative;
	z-index: 2;
	font-size: 1.25rem;
	font-weight: 400;
	text-align: center;
	padding: 6px 20px 10px 20px;
	line-height: 1.25rem;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	border-radius: 0;
	color: #fff;
}

.btn.active,
.btn:active,
.btn.focus,
.btn:focus {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	color: #fff;
}
.btn:hover {
	/*-webkit-animation-name: rubberBand;
    animation-name: rubberBand;*/
	color: #fff;
}

.btn--rounded {
	border-radius: 2px !important;
}
.btn--colored {
	background-color: #0095DA !important;
}
.btn--bordered {
	border: 1.5px solid #fff !important;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@media only screen and (max-width: 991px) {

	.btn {
		font-size: 1.1rem;
		line-height: 1.1rem;
	}
}

/*------------------------------------*\
    #FORMS
\*------------------------------------*/
.form-control {
	color: #000;
	font-size: 18px;
	height: 50px;
	border: 1px solid transparent;
	background: #f4f4f4;
	padding: 0 20px 0 20px;
	margin-top: 15px;
	position: relative;
	border-radius: 2px;
	border: 1px solid #999;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-control:focus {
	border-color: #0095DA;
	color: #000;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: #e3e3e3;
}
/* Placeholder */
.form-control::-webkit-input-placeholder {
 color: #555;
 text-transform: capitalize;
}
.form-control:-moz-placeholder {
 color: #555;
 text-transform: capitalize;
}
.form-control::-moz-placeholder {
 color: #555;
 text-transform: capitalize;
}
.form-control:-ms-input-placeholder {
 color: #555;
 text-transform: capitalize;
}

.form-select {
	position: relative;
}

.form-select i {
	position: absolute;
	font-size: 19px;
	font-weight: 400;
	line-height: 49px;
	right: 20px;
	top: 0;
	z-index: 1;
	pointer-events: none;
	cursor: pointer;
	color: #9b9b9b;
}

.form-select select {
	color: #000;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* Input Checkbox */
.input-checkbox {
	margin-bottom: 30px;
}

.label-checkbox {
	display: block;
	position: relative;
	cursor: pointer;
	font-size: 18px;
	line-height: 18px;
	z-index: 2;
}

.label-checkbox input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.check-indicator {
	position: absolute;
	top: 2px;
	left: 0;
	height: 17px;
	width: 17px;
	background: transparent;
	border: 1px solid #e1e3e3;
	border-radius: 2px;
}

.label-checkbox input:checked ~ .check-indicator {
	background: #ffffff;
}

.check-indicator:after {
	content: '';
	position: absolute;
	display: none;
}

.label-checkbox .check-indicator:after {
	left: 4px;
	top: 1px;
	width: 6px;
	height: 12px;
	border: solid #0095DA;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.label-checkbox input:checked ~ .check-indicator:after {
	display: block;
}

.input-checkbox p {
	display: block;
	position: relative;
	font-size: 13px;
	padding-left: 30px;
	line-height: 20px;
	text-align: left;
	margin-bottom: 0;
}ד

/*------------------------------------*\
    #ALERT MESSAGE
\*------------------------------------*/
.alerts {
	background-color: #f9f9f9;
	border-radius: 2px;
	padding: 20px;
	margin-bottom: 40px;
}

.alerts .alert-icon {
	width: 46px;
	height: 46px;
	line-height: 46px;
	background-color: #0095DA;
	-moz-border-radius: 2px 1px 1px 2px;
	-webkit-border-radius: 2px 1px 1px 2px;
	border-radius: 2px 1px 1px 2px;
	text-align: center;
	position: absolute;
}

.alerts .alert-icon i {
	color: #ffffff;
	font-size: 15px;
	font-weight: 400;
	line-height: 28px;
}

.alerts .alert-content {
	padding-left: 68px;
}

.alerts .alert-content h4 {
	color: #0095DA;
	font-size: 15px;
	font-weight: 500;
	line-height: 32px;
	text-transform: capitalize;
	margin-bottom: 0;
	margin-top: -6px;
}

.alerts .alert-content p {
	color: #9b9b9b;
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	margin-bottom: 0;
}

.alerts.alert-warning h4 {
	color: #8a6d3b;
}

.alerts.alert-warning .alert-icon {
	background-color: #fcf8e3;
}

.alerts.alert-warning .alert-icon i {
	color: #8a6d3b;
}

.alerts.alert-danger h4 {
	color: #a94442;
}

.alerts.alert-danger .alert-icon {
	background-color: #f2dede;
}

.alerts.alert-danger .alert-icon i {
	color: #a94442;
}

/* Subscribe Alert */
.subscribe-alert .alert {
	margin: 10px auto;
	font-size: 12px;
}

/* Contact Alert */
#contact-result .alert,
#reservation-result .alert {
	margin: 10px auto;
	font-size: 12px;
}

/*------------------------------------*\
    #Contact Form
\*------------------------------------*/

.contact-form {
	padding-top: 30px;
	padding-bottom: 50px;
}
.contact-form .submit-form .form-contact input[type=text]:focus, .contact-form .submit-form .form-contact input[type=tel]:focus, .contact-form .submit-form .form-contact textarea:focus {
	border: 1px solid #0095DA !important;
}
.contact-form .submit-form .form-contact input::placeholder, .contact-form .submit-form .form-contact textarea::placeholder {
	color: #000 !important;
}
.contact-form .submit-form .form-contact input, .contact-form .submit-form .form-contact textarea {
    width: 100%;
    color: #000;
    outline: none;
    padding: 10px;
	margin-top: 0;
	margin-bottom: 15px;
}
.contact-form .submit-form textarea {
    min-height: 100px !important;
}
.contact-form .submit-form .btn {
	display: block;
	width: 100%;
	border-radius: 0;
	border: 0;
	background-color: #0095DA;
	color: #fff;
	font-weight: 400;
}

@media only screen and (max-width: 991px) {

	.contact-form {
		padding-top: 0;
		padding-bottom: 30px;
	}
}
@media only screen and (max-width: 480px) {

	.contact-form {
		padding-bottom: 15px;
	}
}

/*------------------------------------*\
    #Quick Contact Form
\*------------------------------------*/

.quick-contact-form {
	position: relative;
	padding-top: 60px;
	padding-bottom: 40px;
	color: #fff;
	z-index: 1000;
}
.quick-contact-form:before {
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(rgba(6,79,130,0.6), rgba(6,79,130,0.6));
}

.quick-contact-form .content--text {
	margin-bottom: 15px;
}
.quick-contact-form .submit-form .form-contact input[type=text]:focus, .quick-contact-form .submit-form .form-contact input[type=tel]:focus, .quick-contact-form .submit-form .form-contact textarea:focus {
	outline: 2px solid #000 !important;
}
.quick-contact-form .submit-form .form-contact input::placeholder, .quick-contact-form .submit-form .form-contact textarea::placeholder {
	color: #fff !important;
}
.quick-contact-form .submit-form .form-contact input, .quick-contact-form .submit-form .form-contact textarea {
    width: 100%;
    color: #fff;
    outline: none;
    padding: 10px;
    border: 1.5px solid #fff;
	background: transparent;
}
.quick-contact-form .submit-form textarea {
    min-height: 100px !important;
}
.quick-contact-form .submit-form .btn {
	display: block;
	margin: 0 auto;
	padding: 10px 50px 8px 50px !important;
	line-height: normal;
	border-radius: 0;
	border: 0;
	background-color: #fff;
	color: #000;
}

.quick-contact-form .alert-success {
	color: #000;
	background-color: #fff;
	border: none;
	font-size: 1.25rem;
	font-weight: 500;
	text-align: center;
	padding: 30px 15px 20px 15px;
	border-radius: 2px;
}

@media only screen and (max-width: 991px) {

	.quick-contact-form {
		padding-top: 30px;
		padding-bottom: 20px;
	}
}

/*------------------------------------*\
    #BACK TO TOP
\*------------------------------------*/
#back-to-top {
	z-index: 9999;
	position: fixed;
	right: 25px;
	bottom: 80px;
	opacity: 0;
}

.backtop {
	width: 40px;
	height: 40px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	transition: opacity 0.2s ease-out;
	background-color: #0095DA;
	font-size: 20px;
}
.backtop i {
	font-size: 25px;
	font-weight: 500;
	padding-top: 5px;
}

#back-to-top.show {
	opacity: 1;
}

/*@media only screen and (max-width: 992px) {

#back-to-top.show {
	opacity: 0;
}
}*/

/*------------------------------------*\
    #MODALS
\*------------------------------------*/
body.modal-open {
	padding-right: 0 !important;
}

body.modal-open .affix {
	display: none;
}

.modal {
	z-index: 1080;
	background: rgba(34, 34, 34, 0.95);
}
.modal::-webkit-scrollbar {
 display: none;
 width: 0px;
  /* remove scrollbar space */
  background: transparent;
/* optional: just make scrollbar invisible */
}

.modal-backdrop {
	z-index: 1020;
	background-color: #282828;
	display: none;
}

.modal-content {
	border: none;
	border-radius: 0;
	background-color: transparent;
	box-shadow: none;
}

.modal-dialog {
	margin-top: 20px;
}

.modal button.close {
	position: absolute;
	top: 15px;
	left: 5px;
	color: #000;
	z-index: 1040;
	font-size: 15px;
	font-weight: 400;
	opacity: 1;
}

.modal.reservation-popup button.close {
	color: #282828;
}

.modal button.close:focus,
.modal button.close:hover {
	color: #0095DA;
}
/*------------------------------------*\
    #ANIMATION
\*------------------------------------*/
@keyframes pulse {
 0% {
 transform: scale(0.95);
 opacity: 0.7;
}
 50% {
 transform: scale(1);
 opacity: 1;
}
 100% {
 transform: scale(0.95);
 opacity: 0.7;
}
}
@-webkit-keyframes pulse {
 0% {
 -webkit-transform: scale(0.95);
 opacity: 0.7;
}
 50% {
 -webkit-transform: scale(1);
 opacity: 1;
}
 100% {
 -webkit-transform: scale(0.95);
 opacity: 0.7;
}
}

/*------------------------------------*\
    #Heading
\*------------------------------------*/

.heading .bold {
	font-weight: 800;
}
.heading .light {
	font-weight: 700;
}

@media only screen and (max-width: 991px) {

	.heading {
		margin-bottom: 15px;
	}
}

/*------------------------------------*\
    #HEADER
\*------------------------------------*/
header {
	width: 100%;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 9999;
	color: #000;
}

header.bg {
	background-color: #333333f0;
}

.bg-header {
	background: url('/assets/images/lines_bg.png') no-repeat;
	background-size: 100% 100%;
	height: 38px;
}

.banner-image {
	width: 100%;
}

.header-transparent {
	/*background-color: transparent;*/
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.8),rgba(0,0,0,0.7), rgba(0, 0, 0, 0.6), transparent);
	background-image: -moz-linear-gradient(top, rgba(0,0,0,0.52),rgba(0,0,0,0.3), rgba(0, 0, 0, 0.2), transparent);
	background-image: -ms-linear-gradient(top, rgba(0,0,0,0.52),rgba(0,0,0,0.3), rgba(0, 0, 0, 0.2), transparent);
	background-image: -o-linear-gradient(top, rgba(0,0,0,0.52),rgba(0,0,0,0.3), rgba(0, 0, 0, 0.2), transparent);
	background-image: linear-gradient(top, rgba(0,0,0,0.52),rgba(0,0,0,0.3), rgba(0, 0, 0, 0.2), transparent);
}

header .logo {
	height: 80px;
	-moz-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
}

@media only screen and (max-width: 1200px) {
	header .logo {
		height: 70px;
	}
}
@media only screen and (max-width: 991px) {

	header {
		background: #000 !important;
	}
	header .logo {
		height: 60px !important;
	}
	
	.bg-header {
		background: url('/assets/images/lines_bg.png') no-repeat;
		background-size: 200% 100%;
		height: 32px;
	}
	
	.banner-image {
		margin-top: 120px;
	}
}

/*------------------------------------*\
    #MENU
\*------------------------------------*/

header .navbar {
	padding-top: 5px;
	padding-bottom: 5px;
	margin-bottom: 0;
	border-radius: 0;
	height: 90px;
	border: none;
	z-index: 1030;
	-moz-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
}

.navbar ul {
	padding-top: 0;
	padding-right: 0;
	-moz-transition: padding-top 0.6s ease;
    -o-transition: padding-top 0.6s ease;
    -webkit-transition: padding-top 0.6s ease;
    transition: padding-top 0.6s ease;
}

.navbar-nav > li {
	position: relative;
}

.navbar-nav > li > a {
	float: right;
	font-size: 20px;
	color: #fff;
	padding: 18px 13px 10px 13px;
	position: relative;
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
	background-color: transparent;
	border: none;
}

.navbar-nav > li.active > ul {
	margin-top: 0;
}

.navbar-nav > li.active > a,
.navbar-nav > li > a:focus,
.navbar-nav > li > a:hover {
	color: #0095DA;
}

.navbar-nav > li> a:after {
	content: " ";
	display: block;
	width: 0%;
	background: #0095DA;
	position: relative;
	height: 2px;
	transition: all 450ms ease-out;
	-webkit-transition: all 450ms ease-out;
	margin-top: 2px;
}
.navbar-nav > li > a:hover:after, .navbar-nav > li > a:focus:after, .navbar-nav > li > a.active:after {
	width:100%;
}
.navbar-nav > li > a.active {
	color: #0095DA;
}

.dropdown-toggle::after {
	display: none;
}

.dropdown-menu {
	background-color: transparent;
	position: relative;
	width: 100%;
	border: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

@media only screen and (max-width: 1200px) {
	.navbar > .container {
		max-width: 100%;
	}
	
	header .navbar {
		height: 80px;
	}
	
	.navbar-nav > li > a {
		font-size: 17px;
	}
}

@media only screen and (max-width: 991px) {

.module-call > a {
	font-size: 12px !important;
}

.navbar-brand {
	float: left;
	display: block;
	margin-right: 50px;
	text-align: center;
}
	
.navbar {
	height: 74px !important;
	padding: 5px 15px 5px 15px !important;
}

.navbar > .container, .navbar > .container-fluid {
	display: block !important;
}

.navbar-toggler {	
	padding: 4px 10px;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 0;
	margin-right: 15px;
}

.navbar-collapse {
	position: absolute;
	top: 70px;
	right: 0;
	width: 100%;
	background-color: #fff;
}

/* Navabr */
.navbar .navbar-nav > li {
	background-color: #000;
}
.navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li.has-dropdown > a:focus, .navbar .navbar-nav > li > a.active {
	font-weight: 600;
	color: #0095DA !important;
}
.navbar-nav > li > a:hover:after, .navbar-nav > li > a:after, .navbar-nav > li.active > a:after {
	display: none;
}

.navbar .navbar-nav li a {
	line-height: 25px;
	font-size: 25px;
	text-align: center;
	width: 100%;
	color: #fff;
	display: block;
	padding: 20px;
}
.navbar .navbar-nav .has-dropdown.show a {
	padding: 5px 15px;
	color: #fff;
}

.navbar.navbar-light .navbar-nav > li > a {
	color: #000;
}

.navbar-nav .has-dropdown i {
	background-color: #000;
	font-size: 30px;
	padding: 10px 20px;
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	line-height: initial;
}

.navbar-nav .has-dropdown i.open {
	transform: rotate(270deg);
}

.navbar-nav .dropdown-menu.show {
	clear: both;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 10px;
	border-radius: 0;
	background-color: #0095DA;
}

.navbar-nav .dropdown-menu li {
	line-height: 26px;
}

.navbar-nav .dropdown-menu li a, .navbar-nav .dropdown-menu.show li a {
	text-align: right;
	padding-right: 30px !important;
	color: #fff !important;
	font-size: 15px;
}

/* Responsive */

	header .navbar a.expand {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 300;
		width: 60px;
		height: 70px;
		display: block;
		cursor: pointer;		
		transition: all 0.3s ease-in-out 0s;
	}
	header .navbar a.expand label {
		position: absolute;
		left: 15px;
		bottom: 6px;
		font-size: 10px;
		color: #fff;
	}	
	header .navbar a.expand span:before, header .navbar a.expand span, header .navbar a.expand span:after {
		content: "";
		display: block;
		width: 30px;
		height: 2px;
		position: absolute;
		left: 0;
		background-color: #0095DA;
		opacity: 1;
		transition: transform 0.4s ease-in-out 0s,left 0.4s ease-in-out 0s,top 0.4s ease-in-out 0s,width 0.3s ease-in-out 0s;
	}
	header .navbar a.expand span {
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);		
	}
	header .navbar a.expand span:before {
		top: -8px;
		right: 5px;
		width: 25px;
	}
	header .navbar a.expand span:after {
		top: 8px;
		right: 10px;
		width: 20px;
	}
	header .navbar a.expand.active span {
		width: 0;
	}
	header .navbar a.expand.active span:before, header .navbar a.expand.active span:after {
		top: 0;
		right: -12px;
		width: 30px;
		background-color: #0095DA;
	}
	header .navbar a.expand.active span::before {
		transform: rotate(-45deg);
	}
	header .navbar a.expand.active span::after {
		transform: rotate(45deg);
	}
	
	header .navbar a.expand-button {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 300;
		display: block;
		cursor: pointer;		
		transition: all 0.3s ease-in-out 0s;
		color: #0095DA;
	}
	header .navbar a.expand-button.envelope {
		font-size: 30px;
		line-height: 30px;
		top: 19px;
		left: 95px;
	}
	header .navbar a.expand-button.phone {
		font-size: 25px;
		line-height: 25px;
		top: 26px;
		left: 60px;
	}	
}

@media only screen and (min-width: 992px) {

	.navbar .responsive {
		display: none;
	}
}
@media only screen and (max-width: 480px) {
	
	.navbar {
		padding: 5px 5px 5px 10px !important;
	}
	
	.module-call > a {
		font-size: 11px !important;
	}
	.module-call > a > span {
		font-size: 16px !important;
		line-height: 16px !important;
	}
}

/*------------------------------------*\
    #MODULE
\*------------------------------------*/
.module {
	display: inline-block;
	position: relative;
	line-height: normal;
}

.module span.title {
	display: none;
}
.module-call {
	float: left;
}
.module-call, .module-lang {
	margin-top: 6px;
	-moz-transition: margin-top 0.6s ease;
    -o-transition: margin-top 0.6s ease;
    -webkit-transition: margin-top 0.6s ease;
    transition: margin-top 0.6s ease;
}
.module-call > a {
	display: inline-block;
	color: #fff;
}
.module-call > a > span {
	font-size: 20px;
	line-height: 20px;
	text-align: center;
}
.module-call > img {
	width: 34px;
	margin-right: 6px;
	vertical-align: text-bottom;
}

.module-cart {
	float: left;
}
.module-cart > a {
	padding: 20px 10px 20px 20px;
}
.module-cart > a > span {
	position: absolute;
	top: 15px;
	right: 26px;
	color: #fff;
	font-size: 12px;
}

.module-lang > a {
	font-size: 18px;
	margin-left: 20px;
}
.module-lang > a:hover, .module-lang > a:focus {
	color: #0095DA;
}
.module-lang > a::before, .module-lang > a:hover::before {
	position: absolute;
	top: 27px;
	margin: auto;
	width: 0;
	height: 3px;
	background: #0095DA;
	content: '';
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
.module-lang > a:hover::before {
	width: 15px;
}

/* Transparent Header */
.transparent-header .module .module-icon > i {
	color: #ffffff;
}

@media only screen and (max-width: 1200px) {
	
	.module-call > a > span {
		font-size: 17px;
		line-height: 17px;
	}
	.module-call > img {
		width: 32px;
	}
}
@media only screen and (max-width: 991px) {

	.module .module-icon {
		padding-top: 0;
		line-height: 36px !important;
	}

	.module-call {
		margin-right: 10px;
		line-height: 12px;
		margin-top: 7px !important;
	}
}
@media only screen and (max-width: 480px) {
	.module-call {
		margin-right: 20px;
	}
}

/*------------------------------------*\
    #VIDEO SLIDER
\*------------------------------------*/

.video-wrapper {
	width: 100%;
	height: 700px;
	overflow: hidden;
	position: relative;
}
.video-wrapper .video-container {
	/*height: 1150px;*/
	position: absolute;
	width: auto;
	top: -50%;
	left: 0;
	right: 0;
	bottom: -50%;
}
.video-wrapper .video-container .video-bg {
	background: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.video-wrapper .video-container .video-bg .video-iframe, .video-wrapper .video-container .video-bg iframe, .video-bg video {
	position: absolute;
	top: 0;
	left: 0 !important;
	width: 100% !important;
	height: 100%;
}

.video-wrapper .video-container .video-bg .bg-layer {
	background: rgba(35, 31, 32, 0.45);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 1;
	height: auto;
}

@media (min-width: 1091px) and (max-width: 1251px) {
	
	.video-wrapper {
		height: 600px;
	}
	.video-wrapper .video-container {
		top: -40%;
		bottom: -40%;
	}
}
@media (min-width: 991px) and (max-width: 1091px) {
	
	.video-wrapper {
		height: 550px;
	}
	.video-wrapper .video-container {
		top: -30%;
		bottom: -30%;
	}
}

@media (max-width:991px) {
    
	.video-wrapper {
		height: 400px;
	}
	.video-wrapper .video-container {
		top: -10%;
		bottom: -30%;
	}
}
@media (max-width:591px) {
    
	.video-wrapper {
		height: auto;
		min-height: 290px;
	}
	.video-wrapper .video-container {
		top: -10%;
	}
	
	.video-wrapper .video-container .video-bg .video-iframe, .video-wrapper .video-container .video-bg iframe, .video-bg video {
		width: 130% !important;
	}
}

/*------------------------------------*\
    #Grid Gallery
\*------------------------------------*/

.grid-gallery {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}
.grid-gallery .item {
	position: relative;
	-webkit-transition: all 350ms ease;
	transition: all 350ms ease;
	margin-bottom: 1rem;
}
.grid-gallery .item .overlay-layer {
    position: absolute;
    width: 100%;
	height: 100%;
    top: 0;
	left: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    -webkit-transition: opacity .4s ease-in-out;
	-o-transition: opacity .4s ease-in-out;
	transition: opacity .4s ease-in-out;
}
.grid-gallery .item:hover .overlay-layer {
    opacity: 1;
}
.grid-gallery .item .overlay-layer .content--details {
	position: relative;
	width: 100%;
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.grid-gallery .item .overlay-layer .content--details .title {
	width: 100%;
	text-align: center;
}
.grid-gallery .item .overlay-layer .content--details .desc {
	padding: 20px 40px;
	font-size: 18px;
	text-align: center;
}

@media (max-width: 1470px) {
	
	.grid-gallery .item .overlay-layer .content--details .desc {
		padding: 20px 30px;
		font-size: 17px;		
	}
}
@media (max-width: 1200px) {
	
	.grid-gallery {
		webkit-column-gap: 0.5rem;
		-moz-column-gap: 0.5rem;
		column-gap: 0.5rem;	
	}
	.grid-gallery .item {
		margin-bottom: 0.5rem;
	}
	.grid-gallery .item .overlay-layer .content--details .desc {
		padding: 15px 30px;
		font-size: 16px;
	}
}
@media (max-width: 991px) {

	.grid-gallery {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}
}
@media (max-width: 767px) {

	.grid-gallery {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	.grid-gallery .item .overlay-layer {
		position: relative;
		display: block;
		opacity: 1;
	}
	.grid-gallery .item .overlay-layer .content--details {
		top: 0;
		left: 0;
		transform: none;
		padding: 15px 15px 30px 15px;
	}
	.grid-gallery .item .overlay-layer .content--details .title {
		text-align: right;
	}
	.grid-gallery .item .overlay-layer .content--details .desc {
		padding: 0;
		text-align: right;
	}
}

/*------------------------------------*\
    #Our Clients
\*------------------------------------*/

.our-clients {
	background-color: #0095DA;
	padding-bottom: 60px;
}

/*------------------------------------*\
    #Services List
\*------------------------------------*/

.services-list {
	padding-top: 60px;
	padding-bottom: 90px;
}

@media (max-width: 1200px) {
	
	.services-list {
		padding-top: 40px;
		padding-bottom: 70px;	
	}
}
@media (max-width: 991px) {
	
	.services-list {
		padding-top: 20px;
		padding-bottom: 10px;	
	}
}

/* Side Bar */

.sidebar {
	margin-right: 40px;
}
.sidebar .contact-box {
    position: relative;
    padding-bottom: 1px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.sidebar .contact-box .title h4 {
	background-color: #0095DA;
	color: #fff;
	padding: 15px 0 15px 0;
	text-align: center;
	font-weight: 400;
}
.sidebar .contact-box .title span {
	display: block;
	padding: 10px;
	text-align: center;
}
.sidebar .contact-box .form-group {
	padding: 0 20px;
}
.sidebar .contact-box input[type=text], .sidebar .contact-box input[type=tel], .sidebar .contact-box textarea {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    text-align: right;
    box-shadow: none;
	background-color: transparent !important;
}
.sidebar .contact-box input[type=text]::placeholder, .sidebar .contact-box input[type=tel]::placeholder, .sidebar .contact-box textarea::placeholder {
	color: #333;
}
.sidebar .contact-box .alert-success {
	background-color: #0095DA;
	border: none;
	color: #fff;
}

@media only screen and (max-width: 991px) {
	.sidebar {
		display: none;
	}
}

/*------------------------------------*\
    #Footer
\*------------------------------------*/

footer {
	padding-top: 5px;
	background-color: #000;
	color: #fff;
	font-size: 1.1rem;
}	
footer .footer-widgets-wrap {
	padding-top: 20px;
}

footer .footer-links {
	width: 100%;
	text-align: center;
}
footer .footer-links ul {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	margin-bottom: 10px;
}
footer .footer-links ul li {
	display: inline-block;
	margin: 0 auto;
	color: #fff;
	position: relative;
	padding: 0px 4px;
}
footer .footer-links ul li a {
	display: block;
	color: #fff;
}
footer .footer-links ul li a:hover {
	color: #0095DA;
}
footer .footer-links ul li:not(:last-child):after {
	left: -2px;
	width: 1px;
	height: 17px;
	position: absolute;
	content: "";
	top: 4px;
	background-color: #fff;
}

footer .follow-us {
	text-align: center;
	margin-bottom: 5px;
}
footer .follow-us a {
	display: inline-block;
	width: 35px;
	background-color: #0095DA;
	color: #000;
	margin-right: 5px;
	text-align: center;
	padding: 6px 5px 4px 5px;
}

@media (max-width: 992px) {
	
	footer .footer-links ul li a {
		padding: 0px 4px;
		margin-bottom: 2px;
	}
}
@media (max-width: 480px) {
	
	footer .follow-us a {
		padding: 8px;
	}
}


/*------------------------------------*\
    Copyright
\*------------------------------------*/
.copyright {
	padding: 10px 0;
	margin: 0 auto;
	font-size: 0.9rem;
	border-top: 1px solid #fff;
	text-align: center;
}
.copyright a {
	color: #fff;
}


/*------------------------------------*\
    #404
\*------------------------------------*/
.page-404 h3 {
	font-size: 280px;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 0;
}

.page-404 p {
	color: #a5a5a5;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	margin-bottom: 20px;
}

@media only screen and (min-width: 320px) and (max-width: 479px) {

.page-404 {
	padding-top: 150px !important;
	padding-bottom: 150px !important;
}

.page-404 h3 {
	font-size: 150px;
}

.page-404 .btn {
	width: 125px;
}

.page-404.fullscreen {
	height: auto !important;
}
}

/*------------------------------------*\
    #Pages List
\*------------------------------------*/

.pages-list {
	padding-bottom: 50px;
	color: #fff;
}
.pages-list .item {
	padding-top: 20px;
}
.pages-list .item .image {
	height: 320px;
	color: #fff;
}
.pages-list .item .image:after {
	content: '';
    position: absolute;
    top: 20px;
    bottom: 0;
    left: 30px;
    right: 0;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}
.pages-list .item .image span {
    position: absolute;
    bottom: 25px;
    right: -8px;
	max-width: 90%;
    font-weight: 500;
	line-height: normal;
    font-size: 1.3rem;
    z-index: 1;
    background-color: #0095DA;
    padding: 5px 17px 8px 17px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
.pages-list .item .image:hover span {
    color: #fff;
}

@media only screen and (max-width: 991px) {
	
	.pages-list {
		background-attachment: scroll !important;
		background-position: left bottom !important;
	}
	
	.pages-list .item {
		flex: 0 0 49.5%;
		max-width: 49.5%;
	}
	.pages-list .item .image:after {
		left: 15px;
		right: 15px;
	}
	.pages-list .item .image span {
		right: 8px;
		max-width: 80%;
	}
	
}
@media only screen and (max-width: 480px) {

	.pages-list .item {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*------------------------------------*\
    #Box List
\*------------------------------------*/

.box-list {
	padding-bottom: 50px;
	color: #fff;
}
.box-list .item {
	padding-top: 20px;
}
.box-list .item .image {
	height: 320px;
	color: #fff;
}
.box-list .item .image:after {
	content: '';
    position: absolute;
    top: 20px;
    bottom: 0;
    left: 30px;
    right: 0;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}
.box-list .item .image span {
    position: absolute;
    bottom: 25px;
    right: -8px;
	max-width: 90%;
    font-weight: 500;
	line-height: normal;
    font-size: 1.3rem;
    z-index: 1;
    background-color: #0095DA;
    padding: 5px 17px 8px 17px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
.box-list .item .image:hover span {
    color: #fff;
}

@media only screen and (max-width: 991px) {
	
	.box-list .item {
		flex: 0 0 49.5%;
		max-width: 49.5%;
	}
	.box-list .item .image:after {
		left: 15px;
		right: 15px;
	}
	.box-list .item .image span {
		right: 8px;
		max-width: 80%;
	}
	
}
@media only screen and (max-width: 480px) {

	.box-list .item {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*------------------------------------*\
    #BlockQuote List
\*------------------------------------*/

.blockquote-list {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	color: #fff;
}
.blockquote-list:after {
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(rgba(6,79,130,0.6), rgba(6,79,130,0.6));
}
.blockquote-list .testi--meta {
	text-align: center;
}
.blockquote-list .testi--meta p {
	font-size: 1rem;
}
.blockquote-list .testi--body {
	font-size: 1.2rem;
}

@media only screen and (max-width: 991px) {

	.blockquote-list {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
@media only screen and (max-width: 480px) {

	.blockquote-list {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

/*------------------------------------*\
    #Carousel
\*------------------------------------*/
.owl-nav.disabled {
	display: none;
}

.owl-carousel .owl-item img {
	width: inherit;
}

.carousel-dots button.owl-dot,
.carousel-dots button.owl-dot:focus {
	padding: 0;
	background-color: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	margin-top: 20px;
}

.carousel-dots .owl-dots {
	text-align: center;
}

.carousel-dots .owl-dots .owl-dot span {
	height: 7px;
	width: 7px;
	border-radius: 50%;
	background-color: #fff;
	border: none;
	margin: 0 4px;
	display: inline-block;
	cursor: pointer;
}

.carousel-dots .owl-dots .owl-dot.active span {
	background-color: transparent;
	box-shadow: 0 0 0 2px #fff;
}

.carousel-dots.carousel-white .owl-dots .owl-dot span {
	border-color: rgba(255, 255, 255, 0.5);
}

.carousel-dots.carousel-theme .owl-dots .owl-dot.active span {
	background-color: #0095DA;
	border-color: #0095DA;
}

.carousel-dots.carousel-white .owl-dots .owl-dot.active span {
	background-color: #ffffff;
	border-color: #ffffff;
}

.carousel-navs .owl-nav {
	position: relative;
}

.carousel-navs .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	height: 53px;
	width: 53px;
	line-height: 53px;
	color: #9b9b9b;
	font-size: 0;
	text-align: center;
	background-color: transparent;
	padding: 0;
	border-radius: 50%;
	border: 2px solid rgba(34, 34, 34, 0.1);
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
	margin-top: -250px;
	font-weight: bold;
}

.carousel-navs .owl-nav [class*=owl-]:hover {
	color: #0095DA;
	border-color: #0095DA;
	background-color: transparent;
}

.carousel-navs .owl-nav .owl-prev {
	left: 0;
}

.carousel-navs .owl-nav .owl-prev:before {
	font-family: 'Linearicons-Free';
	content: "\e879";
	font-size: 20px;
}

.carousel-navs .owl-nav .owl-next {
	right: 0;
}

.carousel-navs .owl-nav .owl-next:before {
	font-family: 'Linearicons-Free';
	content: "\e87a";
	font-size: 20px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {

	.carousel-dots {
		margin-top: 20px;
	}
}

/*------------------------------------*\
    #Services
\*------------------------------------*/

.services {
	padding-bottom: 30px;
}

.services .list .item {
	padding-top: 20px;	
}
.services .list .item .image {
	height: 320px;
	color: #fff;
}
.services .list .item .image:after {
	content: '';
    position: absolute;
    top: 20px;
    bottom: 0;
    left: 30px;
    right: 0;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}
.services .list .item .image span {
    position: absolute;
    bottom: 25px;
    right: -8px;
	max-width: 90%;
    font-weight: 500;
	line-height: normal;
    font-size: 1.3rem;
    z-index: 1;
    background-color: #0095DA;
    padding: 5px 17px 8px 17px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
.services .list .item .image:hover span {
    color: #fff;
}

@media only screen and (max-width: 991px) {
	
	.services .list .item {
		flex: 0 0 49.5%;
		max-width: 49.5%;
	}
	.services .list .item .image:after {
		left: 15px;
		right: 15px;
	}
	.services .list .item .image span {
		right: 8px;
		max-width: 80%;
	}
	
}
@media only screen and (max-width: 480px) {

	.services .list .item {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*------------------------------------*\
    #Text Profile
\*------------------------------------*/

.text-profile {
	
}

@media only screen and (max-width: 991px) {

	.text-profile .content--text img {
		height: 270px;
	}
}
@media only screen and (max-width: 480px) {

	.text-profile .content--text img {
		height: 250px;
	}
}

/*------------------------------------*\
    #Articles
\*------------------------------------*/

.articles {
	padding-bottom: 30px;
}

/*------------------------------------*\
    #Case
\*------------------------------------*/

.case-item {
	overflow: hidden;
	margin-top: 30px;
}
.case-item .case--img {
	width: 100%;
	height: 200px;
	-moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.case-item .case--img:hover {
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -moz-transform: scale(1.05,1.05);
    -ms-transform: scale(1.05,1.05);
    -o-transform: scale(1.05,1.05);
    -webkit-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05);
}
.case-item .case--content {
	padding: 10px 10px 0 10px;
}

.case-item .case--title {
	color: #000;
}
.case-item:hover .case--title {
	color: #0095DA;
	-moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media only screen and (max-width: 991px) {

	.case-item {
		max-width: 50%;
		margin-top: 15px;
	}
	.case-item .case--img {
		height: 150px;
	}
	.case-item .case--content {
		padding: 10px;
	}
}


/*------------------------------------*\
    #About US Brief
\*------------------------------------*/

.about-us-brief {
	padding-top: 90px;
	padding-bottom: 60px;
}


@media only screen and (max-width: 991px) {
	.about-us-brief {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	
	.about-us-brief .brief--text {
		padding-bottom: 50px;
	}
	
	.about-us-brief .brief--image img {
		display: block;
		width: 60%;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 480px) {
	.about-us-brief .brief--text {
		padding-bottom: 30px;
	}
	
	.about-us-brief .brief--image img {
		display: block;
		width: 80%;
		margin: 0 auto;
	}
}

/*------------------------------------*\
    #Page Header
\*------------------------------------*/

.page-header {
	position: relative !important;
	margin-bottom: 30px;
}
.page-header .slick-slide {
	height: 40vh;
}
.page-header .image {
    height: 60vh;
    background-position: top center !important;
    background-repeat: no-repeat!important;
    background-size: cover !important;    	
}
.page-header .inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
}
.page-header .inner::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.5;
	background-color: #000;
}
.page-header .inner .info {
	position: absolute;
	display: table;
	top: 50%;
	/*transform: translateY(-50%);*/
	text-align: right;
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
}
.page-header .inner .info .heading {
	display: table-cell;
    vertical-align: middle;
	color: #fff;
}

@media (max-width: 992px) {
	
	.page-header {
		margin-top: 110px;
		margin-bottom: 15px;
	}
	.page-header .slick-slide {
		height: 35vh;
	}
	.page-header .image {
		height: 25vh;
		background-position: top center !important;
	}
	
	.page-header .inner::before {
		opacity: 0.4;
	}
}
@media (max-width: 480px) {
	
	
}

/*------------------------------------*\
    #Breadcrumb
\*------------------------------------*/

.breadcrumb {
	display: inline-block;
	background-color: transparent !important;
	margin-bottom: 0;
	padding: 0;
}
.breadcrumb ul {
	padding: 0;
	margin: 0;
}
.breadcrumb ul > li {
	display: inline-block;
	padding: 0;
	font-size: 0.9rem;
}
.breadcrumb ul > li > span, .breadcrumb ul > li > a {
	color: #fff;
	padding: 0 !important;
	font-size: 0.9rem;
}
.breadcrumb ul > li.active > span, .breadcrumb ul > li.active > a {
	font-weight: 500;	
}
.breadcrumb ul > li + li:before {
	padding: 0 3px;
	content:"/\00a0";
	color: #fff;
	vertical-align: baseline;
}

@media (max-width: 992px) {	
	.breadcrumb ul > li > span, .breadcrumb ul > li > a {
		font-size: 16px;
	}
	.breadcrumb ul > li + li:before {
		padding: 0;
	}
}

/*------------------------------------*\
    #Standard Page
\*------------------------------------*/

.standart-page {
	padding-top: 50px;
	padding-bottom: 50px;
}

@media (max-width: 992px) {
	.standart-page {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
@media (max-width: 480px) {
	.standart-page {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

/* Social Nav */

.social-nav {
	margin-top: 5px;
	padding-left: 13px;
}
.social-nav ul {
	margin-bottom: 0;
}
.social-nav ul > li {
	display: inline-block;
	padding-left: 2px;
	
}
.social-nav ul > li > a {
	display: inline-block;
	font-size: 17px;
	height: 35px;
	width: 35px;
	border: 0.08rem solid #fff;
	border-radius: 50%;
	margin: 0 auto;
	text-align: center;
}
.social-nav ul > li > a:hover, .social-nav ul > li > a:focus {
	background-color: #0095DA;
	color: #fff;
}
.social-nav ul > li > a > i {	
	font-size: 22px;
	line-height: 32px;
}

.social-mobile-nav {
	background-color: #000;
	padding: 10px 0 15px 0;
	text-align: center;
}
.social-mobile-nav .social-nav {
	margin-top: 0;
	padding-left: 0;
}
.social-mobile-nav .social-nav ul > li {
	padding-right: 5px;
	
}
.social-mobile-nav .social-nav ul > li > a {
	font-size: 20px;
	height: 35px;
	width: 35px;
}
.social-mobile-nav .social-nav ul > li > a > i {	
	font-size: 22px;
	line-height: 32px;
}

@media (min-width: 991px) and (max-width: 1200px) {
	
	.social-nav {
		margin-top: 6px;
	}
	.social-nav ul > li {
		padding-left: 0;
	}
	.social-nav ul > li > a {
		font-size: 15px;
		height: 27px;
		width: 27px;
	}
	.social-nav ul > li > a > i {	
		font-size: 16px;
		line-height: 26px;
	}
}

/* Social Row */

.social-row {
	display: inline-block;
	width: 100%;	
	margin-top: 10px;
    padding-top: 5px;
	padding-bottom: 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	text-align: center;
}
.social-row .share-holder {
	float: right;
	text-align: right;
}
.social-row .share-holder h6 {
	color: #797979;
	padding-bottom: 10px;
	margin-bottom: 0;
}
.social-row .share-holder .share-buttons-list {
	display: block;
}
.social-row .share-holder .share-button {
    display: inline-block;
}
.social-row .share-holder .share-buttons-list .share-button a {
	font-size: 18px;
}
.social-row .share-holder .share-buttons-list .share-button .icon {
	color: #797979;
    padding-top: 8px;
    width: 40px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    height: 40px;
    font-size: 22px!important;
    border: 1px solid;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
.social-row .share-holder .share-buttons-list .share-button:hover .icon {
	color: #191818;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.social-row .tags {
	float: left;
	color: #797979;
	font-size: 1rem;
}

@media (max-width: 480px) {
	
	.social-row .tags {
		font-size: 0.9rem;
	}
}

@media print {
    .header > * {
        display:none !important;
    }
	.breadcrumb-nav {
        display:none !important;
    }
	.social-row {
        display:none !important;
    }
	.social-row .share-holder {
        display:none !important;
    }
	.social-row .tags {
        display:none !important;
    }
	.sticky-wrapper {
        display:none !important;
    }
	.email-bar {
        display:none !important;
    }
	.facebook-bar {
        display:none !important;
    }
	.quick-contact-form {
        display:none !important;
    }
	.widget {
        display:none !important;
    }	
	.backtop {
        display:none !important;
    }
	.case-grid {
		display:none !important;
	}
	.content--image {
		display:none !important;
	}
	.header-mobile .responsive {
        display:none !important;
    }
	#enable-toolbar {
        display:none !important;
    }	
	.copyright {
        display:none !important;
    }
	footer > * {
        display:none !important;
    }
	@page 
    {
		size: auto;
		margin: 12mm;
	}
    body 
    {
		background-color:#FFF;
		margin: 0px;
	}
}

/* Contact Floating Bar */

.facebook-bar {
	position: fixed;
    left: -406px;
    top: 380px;
    width: 400px;
    border: 3px solid #3b5997;
    z-index: 9999;
    background: white;
    -moz-border-radius: 5px 0 5px 5px;
    -webkit-border-radius: 5px 0 5px 5px;
    border-radius: 5px 0 5px 5px;
}
.facebook-bar .facebook-box {
	z-index: 999;
	position: absolute;
	top: -3px;
	cursor: pointer;
	right: -60px;
	width: 57px;
	background-color: #1E3D7C;
	border: none;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	font-weight: 400;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.facebook-bar .facebook-box img {
	width: 60px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
/*.facebook-bar .facebook-box i {
	font-size: 30px;
	color: #fff;
	padding: 12px 19px 0 0;
	float: right;
}
.facebook-bar .facebook-box i:hover, .facebook-bar .facebook-box a:hover {
	color: #fff;
	font-weight: 400;
}*/

.email-bar {
	position: fixed;
	top: 360px;
	cursor: pointer;
	left: 0;
	width: 40px;
	height: auto;
	padding-top: 6px;
	padding-bottom: 12px;
	background-color: #0095DA;
	border: none;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	color: #fff;
	font-weight: 400;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.email-bar:hover {
	width: 50px;
	height: auto;
	padding: 6px 0 12px 10px;
}
.email-bar img {
	padding: 5px 5px 0 5px;
}

@media only screen and (max-width: 992px) {
	.email-bar {
		display: none;
	}
	.facebook-box {
		display: none;
	}
}

/* Modal Popup */

.modal-dialog {
	width: 410px;
	margin: 150px auto auto auto;
}
.modal-content {
	position: relative;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: border-radius;
	outline: 0;
	box-shadow: 0 5px 15px rgba(0,0,0,.5);
	-webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
}
.modal-header {
	display: block;
	padding: 15px 15px 10px 15px;
	border-bottom: none;
}
.modal-header .modal-title {
	text-align: center;
	font-size: 30px;
	font-weight: 500;
	color: #0095DA;
	margin: 0 auto;
}
.modal-header .modal-title span {
	display: block;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	color: #555;
	padding: 0;
}
.modal-header .close {
	float: left;
	font-size: 16px;
	color: #000;
	cursor: pointer;
}
.modal-body {
	padding: 0 !important;
}
.modal-body .form-group {
	margin-bottom: 15px;
}
.modal-body .form-group input {
	box-sizing: border-box;
	height: 50px;
	font-size: 20px !important;
	display: block;
	width: 85%;
	background-color: transparent;
	text-align: right;
	margin: 0 auto;
	box-shadow: none !important;
	border: none !important;
	border-bottom: 1.5px solid #0095DA !important;
	border-radius: 0;
}
.modal-body .form-group textarea {
	box-sizing: border-box;
	height: 150px;
	font-size: 20px !important;
	background-color: transparent;
	display: block;
	width: 85%;
	text-align: right;
	margin: 0 auto;
	box-shadow: none !important;
	border: none !important;
	border-bottom: 1.5px solid #0095DA !important;
	border-radius: 0;
}
.modal-body .form-group input:focus, .modal-body .form-group textarea:focus { 
	background-color: #e3e3e3; 
}
.modal-body .form-group::placeholder { 
	color: #555; 
}
.modal-body .form-group input::placeholder { 
	color: #555; 
}
.modal-body .form-group textarea::placeholder { 
	color: #555; 
}

.modal-body .field-validation-error {
	width: 85%;
	margin: 0 auto;
	background-color: #a94442;
	font-weight: 500;
}
.modal-footer {
	border: none;
}
.modal-footer .form-group {
	margin-bottom: 15px;
	width: 100%;
}
.modal-footer .send-mail {
	height: 50px;
	cursor: pointer;
	font-size: 22px !important;
	font-weight: 500;
	padding: 0 !important;
	width: 85% !important;
	margin: auto;
	background-color: #0095DA;
	border: none;
}
.modal-footer .send-mail:focus, .modal-footer .send-mail:active {
	border: none !important;
	outline: none !important;
}
.modal-footer .send-mail i {
	font-size: 25px;
	margin-right: 20px;	
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.modal-footer .send-mail:hover i {
	padding-right: 10px;
}

.modal-dialog .alert-success {
	margin-bottom: 0;
	background-color: #0095DA;
	border: none;
	border-radius: 0;
	padding: 20px 40px 30px 40px;
	color: #fff;
	font-weight: 500;
}

/* Ajax Loading */

.ajax_loading .loading {
	text-align: center;
}

/* Validation */

.field-validation-error {
	background-color: #a94442 !important;
	color: #ffffff; color: rgba(255,255,255,1);
	display: block;
	padding: 5px;
	font-size: 12px;
}

.field-validation-valid { display: none; }

.input-validation-error, .input-validation-error:focus { border-color: #a94442 !important; }

.validation-summary-valid {	display: none; }

/* Text - Pic */

.text-pic {
	padding-top: 80px;
	padding-bottom: 40px;
}

@media only screen and (max-width: 992px) {
	
	.text-pic {
		padding-top: 30px;
		padding-bottom: 20px;
	}
	.text-pic .content--image {
		display: none;
	}
	.text-pic .content--text {
		padding-top: 0;
		padding-bottom: 0;
	}
}
