﻿/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Regular.eot');
	src: url('fonts/Montserrat/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-Regular.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-Regular.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-Regular.svg#Montserrat') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Light.eot');
	src: url('fonts/Montserrat/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-Light.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-Light.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-Light.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-Light.svg#Montserrat') format('svg');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Medium.eot');
	src: url('fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'),
	   url('fonts/Montserrat/Montserrat-Medium.woff') format('woff'),
	   url('fonts/Montserrat/Montserrat-Medium.ttf') format('truetype'),
	   url('fonts/Montserrat/Montserrat-Medium.svg#Montserrat') format('svg'),
	   url('fonts/Montserrat/Montserrat-Medium.eot?#iefix') format('embedded-opentype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-SemiBold.eot');
	src: url('fonts/Montserrat/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-SemiBold.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-SemiBold.svg#Montserrat') format('svg');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Bold.eot');
	src: url('fonts/Montserrat/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-Bold.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-Bold.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-Bold.svg#Montserrat') format('svg');
	font-weight: 700;
	font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat/Montserrat-ExtraBold.eot');
  src: url('fonts/Montserrat/Montserrat-ExtraBold.eot?#iefix') format('embedded-opentype'),
	   url('fonts/Montserrat/Montserrat-ExtraBold.svg#Montserrat') format('svg'),
	   url('fonts/Montserrat/Montserrat-ExtraBold.ttf') format('truetype'),
	   url('fonts/Montserrat/Montserrat-ExtraBold.woff') format('woff'),
	   url('fonts/Montserrat/Montserrat-ExtraBold.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

/* BEGIN of CSS RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

body {
	min-height: 500px;
	margin: 0 auto;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	line-height: 1.7;
	letter-spacing: -.025em;
	font-weight: 300;
	color: #222222;
}

a {
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

img {
	max-width: 100%;
}

h1 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 70px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -.03em;
}

h2 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 60px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: -.04em;
}

h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 34px;
	font-weight: 500;
	letter-spacing: -.04em;
}

h4 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 27px;
}

h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 21px;
	font-weight: 400;
}

h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
}

blockquote {
	margin: 0 0 0;
	padding: 0 0 30px;
	font-size: 39px;
	line-height: 1.7;
	font-weight: 500;
	font-style: italic;
}

p {
	padding: 0 0 25px;
}

p:last-child {
	padding-bottom: 0;
}

ul, ol {
	padding: 0 0 15px 20px;
}

ul ol, ul ul, ol ul, ol ol {
	padding-bottom: 0;
}

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.content-wrapper {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

.alignleft, img.alignleft {
	float: left;
	display: block;
	margin: 0 5px 0 0;
}

.alignright, img.alignright {
	float: right;
	display: block;
	margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
	float: none;
	display: block;
	margin: 0 auto 0;
}

.alignnone, img.alignnone {
	margin: 0 0 0;
	display: block;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
	font-size: 32px;
	padding: 35px 0 35px;
	line-height: 2;
	color: #ffffff;
	background: transparent;
	position: absolute;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

.navbar, header, .logo, header + * {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header-fixed {
	position: absolute;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

.logo {
	float: none;
	display: block;
	margin: 0 auto 0;
	padding: 0 0 0;
	max-width: 300px;
}

.logo img {
	display: block;
}

header a {
	color: inherit;
}

header a:hover {
	color: inherit;
}

header a i {
	font-size: 20px;
}

/*  */

.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	clear: none;
	border: none;
	min-height: 0;
	float: right;
}

.navbar-collapse {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav > li {
	outline: none;
}

.navbar-nav > li > a {
	padding: 5px 15px 5px;
	margin: 0 0 0;
	font-size: 18px;
	line-height: 20px;
	color: #333333;
	background: transparent;
	font-weight: 700;
	text-transform: none;
	position: relative;
}

.navbar-nav > li.active > a {
	color: #333333;
	background: transparent;
}

.nav > li > a:focus, .nav > li > a:hover {
	color: #333333;
	background: transparent;
}

/* spinner css start */

.spinner-wr {
	background: #ffffff;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	/*!!!!!!!!!!!!!!!!!!!!!!!*/
	/* display: none; */
}

.spinner {
	margin: auto;
	width: 70px;
	height: 22px;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #45A4DD;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
	-webkit-transform: scale(0);
	transform: scale(0);
  } 40% {
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
  }
}

/* spinner css end */
/* back-to-top css start */

.back-to-top {
	position: fixed;
	bottom: 5px;
	right: 4px;
	z-index: 99;
	width: 44px;
	height: 44px;
	padding: 0 0 0;
	margin: 0 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	background: transparent url('img/i-arr-up.png') no-repeat center center;
	cursor: pointer;
	text-decoration: none;
	text-indent: -9999px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
}

.back-to-top.show {
	opacity: 1;
}

.back-to-top:not(.show):hover {
	opacity: 0;
	cursor: default;
}

.back-to-top:hover {
	-moz-animation: bounce 1.5s infinite;
	-webkit-animation: bounce 1.5s infinite;
	animation: bounce 1.5s infinite;
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

/* back-to-top css end */

#ho_adv {
	display: none;
	position: absolute;
	width: 0;
	height: 0;
	left: -9999px;
}










/* HEADER Doonbrae like styles Starts */

.main-nav-wr {
	position: fixed;
	z-index: 5;
	overflow: auto;
	top: 0;
	bottom: 0;
	width: 0;
	/* right: auto; */
	/* left: -500px; */
	text-align: center;
	color: #ffffff;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	text-align: left;

}

.main-nav-wr.active {
	width: 100%;
}

.main-nav-wr.active .main-nav-inner {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	left: auto;
}

.main-nav-inner {
	padding: 70px 60px 70px;
	min-width: 390px;
	position: fixed;
	z-index: 5;
	overflow: auto;
	top: 0;
	bottom: 0;
	height: 100%;
	right: 0;
	margin: 0 0 0;
	text-align: center;



	right: 0;
	left: auto;
	width: 390px;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	opacity: 0;
}

.main-nav-inner .img-wr {
	clear: both;
}

.main-nav-inner h4 {
	padding: 0 0 0;
	margin: 8px 0 35px;
	font-size: 25px;
	line-height: 1;
	font-weight: normal;
	font-family: 'SnellRoundhand';
}

.main-nav-inner .btn-main {
	margin: 5px auto 40px;
	display: block;
	padding: 15px 15px 15px;
	border-radius: 0;
}

.main-nav-wr ul {
	padding: 25px 0 13px;
	margin: 0 0 0;
}

.main-nav-wr li {
	margin: 0 0 20px;
	padding: 0 0 0;
	list-style: none;
	position: relative;
}

.main-nav-wr a {
	margin: 0 0 0;
	padding: 0 0 0;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .2em;
	color: #fff;
	display: block;
	position: relative;
}

.main-nav-wr ul a:not(:last-child):after {
	margin: 0px 0 0 25px;
	content: "\f107";
	font-size: 24px;
	line-height: 1;
	padding: 0 0 0;
	font-family: "FontAwesome";
	display: inline-block;
	vertical-align: middle;
}

.main-nav-wr .social-links a i {
	color: #45a4dd;
}

.main-nav-wr * {
	/* position: relative; */
	/* z-index: 5; */
}

.main-nav-wr:before {
	/* content: ""; */
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: fixed;
	background-color: rgba(0,0,0,.5);
}

html body .btn-close-nav {
	content: "";
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	/* width: 0; */
	position: fixed;
	font-size: 0;
	color: transparent;
	-webkit-transition: all .9s ease;
	-o-transition: all .9s ease;
	transition: all .9s ease;
	backdrop-filter: blur(0px);
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	background: rgba(0,0,0,.0);
	visibility: visible;
	opacity: 0;
	visibility: hidden;
}

.main-nav-wr.active .btn-close-nav {
	background-color: rgba(0,0,0,.5);
	backdrop-filter: blur(3px);
	opacity: 1;
	/* width: 100%; */
	visibility: visible;
}

.main-nav-inner img {
	display: block;
	margin: 0 auto 20px;
	max-width: 200px;
}

a.btn-main.btn-book.bg-black {
	background: rgba(0, 0, 0, .2);
}

.btn-main .fa-calendar {
	margin: 0 6px 0 0;
	font-size: 120%;
}

.main-nav-wr .subnav {
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	background: transparent;
	margin: 0 auto 0;
	padding: 5px 0 0;
	/* text-align: center; */
	border: none;
}

/*  */

.icon-hamubrger {
	min-height: 19px;
	display: block;
	float: right;
	position: relative;
}

.btn-main-nav:hover .icon-bar:nth-of-type(1) {
	-webkit-transform: translateY(4px) translateX(-3px) rotate(-45deg);
	transform: translateY(4px) translateX(-3px) rotate(-45deg);
	width: 15px;
}

.btn-main-nav:hover .icon-bar:nth-of-type(3) {
	-webkit-transform: translateY(-4px) translateX(-3px) rotate(45deg);
	transform: translateY(-4px) translateX(-3px) rotate(45deg);
	width: 15px;
}

.btn-main-nav .icon-bar {
	position: relative;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.btn-main-nav.active .icon-hamubrger .icon-bar {
	margin: 0;
	height: 2px;
	width: 32px;
}

.btn-main-nav.active .icon-hamubrger  .icon-bar:nth-of-type(1) {
	top: 8px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn-main-nav.active .icon-bar:nth-of-type(2) {
	background-color: transparent;
}

.btn-main-nav:hover {
	opacity: 1;
}

.btn-main-nav.active .icon-hamubrger .icon-bar:nth-of-type(3) {
	top: 4px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

body .btn-main-nav {
	padding: 17px 22px 16px 90px;
	margin: 40px 40px 0;
	border: none;
	min-height: 30px;
	z-index: 25;
	outline: none;
	display: block;
	float: right;
	background-color: #45a4dd;
	color: #ffffff;
	border-radius: 40px;
	position: fixed;
	right: 0;
	top: 0;
}

.btn-main-nav.active i {
	display: none;
}

.btn-main-nav .icon-bar+.icon-bar {
	margin-top: 5px;
}

.btn-main-nav .icon-bar {
	width: 27px;
	height: 3px;
	background: #ffffff;
	display: block;
}

.btn-main-nav i {
	float: left;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	font-size: 17px;
	line-height: 1;
	margin: 0 0 0;
	padding: 19px 0 17px 20px;
	font-weight: 500;
	letter-spacing: 0;
}

.btn-main-nav:after {
	content: "";
	display: block;
	clear: both;
}

.btn-main-nav.active {
	/* background: transparent; */
	/* opacity: 0; */
	/* position: relative; */
	padding-left: 20px;
}

body .main-nav-inner .btn-main-nav {
	/* margin: -45px 0 0; */
	/* opacity: 1; */
	/* padding: 0; */
	/* color: #ffffff; */
}

.main-nav-inner .btn-main-nav .icon-bar {
	background: #ffffff;
}

.main-nav-inner .social-links {
	margin: 0 auto 0;
	padding: 0 0 0
}

.main-nav-inner .social-links a {
	margin: 0 3px;
}

.main-nav-inner .social-links i {
	font-size: 24px;
	width: 40px;
	height: 40px;
	line-height: 41px;
	text-align: center;
}

.main-nav-inner .social-links .fa-star {
	padding: 0 0 0 5px;
}

/*  */

/* width */
header *::-webkit-scrollbar {
  width: 10px;
}

/* Track */
header *::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
}

/* Handle */
header *::-webkit-scrollbar-thumb {
  background: #4d4d4d;
  background: rgba(0, 0, 0, .3);
  border-radius: 10px;
  box-shadow: inset 0 0 5px #000000;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
  cursor: pointer;
}

/*  */







/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
	position: relative;
}

.box-wr {
	padding: 110px 0 110px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

/*  */

html body .color-theme-1 {
	color: #45A4DD;
}

html body .color-theme-2 {
	color: #45A4DD;
}

html body .color-theme-3 {
	color: #f62460;
}

html body .color-black {
	color: #000000;
}


html body .color-gray {
	color: #555555;
}

/*  */

html body .bg-theme-1 {
	background-color: #45A4DD;
	color: #ffffff;
}

html body .bg-theme-2 {
	background-color: #45A4DD;
	color: #ffffff;
}

html body .bg-theme-3 {
	background-color: #f62460;
	color: #ffffff;
}

html body .bg-black {
	background-color: #000000;
	color: #ffffff;
}

html body .bg-gray {
	background-color: #f4f4f4;
}

html body .bg-white {
	background-color: #ffffff;
}

html body .bg-theme-1-semitransparent {
	background-color: rgba(69, 164, 221, 0.9);
	color: #ffffff;
}

/*  */

html body .border-color-theme-1, html body .border-color-theme-1:after {
	border-color: #45A4DD;
}

html body .border-color-theme-2, html body .border-color-theme-2:after {
	border-color: #45A4DD;
}

html body .border-color-theme-3, html body .border-color-theme-3:after {
	border-color: #f62460;
}

/*  */

.img-wr {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

.img-wr img {
	display: block;
	margin: 0 auto 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.img-wr > a {
	display: block;
	overflow: hidden;
	width: 100%;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.img-wr:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/*  */

.parallax-img-wr {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
}

.parallax-img-wr .parallax-item {
	position: absolute;
	left: 0;
	right: 0;
	top: -200px;
	bottom: -200px;
}

.parallax-img-wr + * {
	position: relative;
	z-index: 5;
}

.parallax-item {
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

/*  */

.no-padding {
	padding: 0;
}

.no-margin {
	margin: 0;
}

.bordered-bottom {
	padding: 0 0 24px;
	margin: 0 0 20px;
	position: relative;
}

.bordered-bottom:after {
	width: 75px;
	border-bottom: 5px solid;
	padding: 0 0 0;
	margin: 0 auto 0;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	display: block;
}

.bordered-bottom.text-left:after {
	margin-left: 0;
}

hr {
	margin: 20px auto 25px;
	width: 65px;
	border: none;
	border-bottom: 4px solid;
}

/*  */

.list-styled {
	padding: 0 0 0;
	margin: 0 0 0;
	line-height: 1.6;
	letter-spacing: -.04em;
	font-size: 20px;
	text-align: left;
}

.list-styled li {
	padding: 0 0 0 40px;
	margin: 0 0 15px;
	position: relative;
	list-style: none;
}

.list-styled li:before {
	content: "";
	padding: 0 0 0;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: 8px 0 0;
	width: 21px;
	height: 16px;
	text-align: center;
	border-radius: 35px;
	background: url('img/i-check-pink.png') no-repeat center;
	-webkit-background-size: contain;
	background-size: contain;
}

.list-styled-circles {
	padding: 0 0 0;
	margin: 0 0 0;
}

.list-styled-circles li {
	padding: 0 0 0 50px;
	margin: 0 0 15px;
	position: relative;
	list-style: none;
}

.list-styled-circles li:before {
	content: "";
	padding: 0 0 0;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: 13px 0 0;
	width: 30px;
	height: 30px;
	text-align: center;
	border-radius: 35px;
	background: #45A4DD url(img/i-check-white.svg) no-repeat center;
	background-size: 16px auto;
}

/*  */

.col-sm-6 > .list-styled-circles {
	font-size: 32px;
	font-weight: normal;
}

/*  */

.slide-item {
	outline: none;
}

.slick-dots li button:before {
	font-size: 15px;
	color: #ffffff;
	opacity: .25;
}

.slick-dots li.slick-active button:before {
	opacity: 1;
	color: #ffffff;
}

.slick-dots li {
	width: 20px;
	height: 20px;
	margin: 0 2px;
}

/*  */

body .btn-main {
	padding: 22px 22px 22px;
	margin: 0 auto 0;
	font-size: 20px;
	line-height: 20px;
	font-weight: 700;
	min-width: 250px;
	color: #ffffff;
	width: auto;
	font-style: normal;
	border: 3px solid;
	text-align: center;
	position: relative;
	display: inline-block;
	border-radius: 50px;
}

body .btn-main:hover {
	opacity: 1;
	box-shadow: inset 0px 0px 0px 40px rgba(0, 0, 0, .1);
}

body .btn-main.bg-theme-1 {
	border-color: #45A4DD;
}

body .btn-main.bg-theme-2 {
	border-color: #45A4DD;
}

body .btn-main.bg-theme-3 {
	border-color: #f62460;
}

body .btn-main.color-theme-1:hover {
	background-color: #45A4DD;
	color: #ffffff;
	box-shadow: none;
}

body .btn-main.color-theme-2:hover {
	background-color: #45A4DD;
	color: #ffffff;
	box-shadow: none;
}

.btn-wr .btn-main {
	margin-right: 30px;
}

/*  */

form {
	margin: 0 0 0;
	padding: 0 0 0;
}

form:after {
	content: "";
	display: block;
	clear: both;
}

form input, form textarea, form select, form button {
	display: block;
	margin: 0 0 0;
	padding: 18px 20px 18px;
	font-size: 16px;
	line-height: 20px;
	color: inherit;
	border: 2px solid;
	background-color: transparent;
	clear: both;
	outline: none;
	width: 100%;
	font-family: inherit;
	border-radius: 0;
}

form input[type="submit"] {
	margin: 0 0 0;
	width: auto;
}

form input:hover, form textarea:hover, form select:hover {
	color: inherit;
	box-shadow: 0px 0px 8px 0px #999999;
	opacity: .65;
}

form input:focus, form textarea:focus, form select:focus {
	color: inherit;
	box-shadow: 0px 0px 8px 0px #666666;
	opacity: 1;
}

textarea {
	min-height: 150px;
}

form label {
	display: block;
}

*::-webkit-input-placeholder {
	color: inherit;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-moz-placeholder {
	color: inherit;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*::-moz-placeholder {
	color: inherit;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-ms-input-placeholder {
	color: inherit;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:focus::-webkit-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus::-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-ms-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

/*  */

body .box-top-banner {
	padding: 0 0 0;
	overflow: hidden;
}

.box-top-banner .img-overlay {
	padding: 190px 0 60px;
}

.box-top-banner-inner-page .img-wr {
	margin: 0 auto -80px;
}

.box-top-banner .text-wr {
	padding: 70px 0 60px;
}

.box-top-banner h1 {
	padding: 0 0 5px;
}

.box-top-banner strong {
	font-weight: 600;
}

.box-top-banner h2 {
	font-size: 50px;
	font-weight: 700;
	line-height: 1.38;
	padding: 0 0 0;
}

.box-top-banner .btn-main {
	padding: 17px 22px 17px;
	margin: 24px auto 0;
	min-width: 200px;
}

/*  */

.box-simple h2 {
	padding: 0 0 35px;
}

.box-simple .img-wr {
	margin: 30px auto 30px;
}

/*  */

body .box-testimonials {
	padding: 0 0 0;
}

.box-testimonials .img-overlay {
	padding: 100px 0 100px;
}

.slider-testimonials {
	margin: 70px 15px 20px;
	min-height: 210px;
}

/*  */

.box-work {
	padding: 80px 0 35px;
}

.thumb-items-wr {
	padding: 32px 0 0;
}

.thumb-work {
	padding: 0 0 0;
	margin: 0 0 0;
	color: #ffffff;
}

.thumb-work .img-wr {
	padding: 0 0 0;
	margin: 0 0 0;
}

.thumb-work img {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 100%;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.thumb-work:hover img {
	opacity: .2;
}

.thumb-work:hover a img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.thumb-work:hover .img-overlay {
	opacity: 1;
}

.thumb-work .img-overlay {
	opacity: 0;
	padding: 27% 15px 15px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.thumb-work a {
	color: inherit;
}

.thumb-work h4 {
	padding: 0 0 10px;
	font-weight: 700;
}

.thumb-work a:hover {
	opacity: 1;
}

body .btn-view-more {
	font-size: 16px;
	padding: 0 20px 0 0;
	margin: 0 0 0;
	font-weight: 700;
	letter-spacing: 0;
	position: relative;
	text-transform: uppercase;
	display: inline-block;
}

body .btn-view-more:after {
	content: "\f105";
	display: inline-block;
	float: right;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	font-family: FontAwesome;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

body .btn-view-more:hover:after {
	right: -5px;
}

/*  */

.box-about {
	overflow: hidden;
}

.box-about .img-wr {
	width: 1000px;
    width: 45vw;
}

.box-about .img-wr img {
	margin: 0 0 0 auto;
}

.btn-wr {
	padding: 25px 0 0;
}

/*  */

body .box-form {
	padding: 0 0 0;
	z-index: 55;
}

.box-form .img-overlay {
	padding: 80px 0 30px;
}

.contacts-wr {
	max-width: 900px;
	margin: 35px auto 0;
}

.form-wr {
	margin: 0 8px 0;
}

.input-item {
	margin: 0 0 30px;
	position: relative;
}

.form-wr h6 {
	font-size: 16px;
	padding: 16px 0 15px;
}

.form-wr button {
	border: none;
	padding: 12px 20px 10px;
}

.block-contacts {
	padding: 45px 50px 25px;
	margin: 0 8px 0;
	font-size: 17px;
}

.block-contacts h4 {
	line-height: 1.2;
}

.block-contacts h6 {
	padding: 6px 0 2px;
	font-weight: 600;
	font-size: 18px;
}

.block-contacts p {
	padding: 0 0 17px;
}

.block-contacts a {
	color: inherit;
}

/*  */

.package-items-wr {
	padding: 32px 0 0;
}

.package-item {
	padding: 0 0 0;
	margin: 30px 0 0;
	box-shadow: 0px 0px 15px 0px #ccc;
	border-radius: 5px;
	position: relative;
}

.package-item.package-item-most-popular {
	margin-top: 0;
	background-image: url('img/star.svg');
	background-repeat: no-repeat;
	background-position: left -18px bottom -18px;
	-webkit-background-size: auto auto;
	background-size: auto auto;
}

.package-item h2 {
	font-size: 90px;
	padding: 0 0 0;
	letter-spacing: 0;
	font-weight: 700;
	position: relative;
}

.package-item h5 {
	font-size: 22px;
	padding: 10px 0 10px;
	font-weight: 700;
}

.package-item .list-styled {
	padding: 0 15px 15px;
	text-align: center;
}

.tag-item {
	padding: 1px 25px 1px;
	font-size: 14px;
	border-radius: 5px;
	font-weight: normal;
	display: inline-block;
}

.list-simple {
	font-size: 108%;
	font-weight: 400;
	padding: 0 0 20px;
	margin: 0 0 0;
	position: relative;
}

.list-simple li {
	padding: 0 0 12px;
	margin: 0 0 0;
	position: relative;
	list-style: none;
}

.package-item .btn-main {
	padding: 15px 22px 15px;
	margin: 8px auto 40px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	min-width: 250px;
	letter-spacing: .05em;
	max-width: 100%;
}

.package-item-header {
	padding: 30px 15px 11px;
}

.package-item-body {
	padding: 5px 15px 15px;
}

h2 sup {
	font-size: 35px;
	margin: 0 -20px 0 20px;
	font-weight: 600;
	display: inline-block;
	vertical-align: super;
}

h2 sup.color-theme-1 {
	font-size: 25px;
	font-weight:700;
	margin: 5px 0 0 10px;
	position: absolute;
}

h2 sub {
	font-size: 18px;
	margin: 0 0 0 -20px;
	font-weight: 500;
	opacity: .8;
}

h2 sup sup {
	position: absolute;
	font-size: 16px;
	margin: -2px 5px 0;
}

.package-item.package-item-most-popular .border-color-theme-2 {
	border-color: #ffffff;
}


/*  */

body .block-watermark {
	z-index: -1;
	padding: 0 0 0;
	margin: 0 0 0;
	left: 0;
	right: 0;
	top: 0;
	color: #222222;
	text-transform: uppercase;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	position: absolute;
}

body .block-watermark + * {
	z-index: 3;
}

body .block-watermark h3 {
	font-size: 472px;
	opacity: .04;
	font-weight: 900;
	line-height: 1;
	padding: 0 0 0;
	margin: 0 0 0;
	letter-spacing: 0;
}

/* BEGIN of content of FAQ Page */

.accordion-wr {
	padding: 0 0 0;
	margin: 0 0 0;
}

.accordion-item {
	padding: 0 0 0;
	margin: 0 0 0;
	border-bottom: 1px solid #eee;
}

.accordion-item-nav a {
	padding: 20px 0 20px;
	margin: 0 0 0;
	font-weight: 600;
	color: #000000;
	display: block;
	position: relative;
}

.accordion-item-nav a:before {
	content: "+";
	display: inline-block;
	position: absolute;
	left: auto;
	right: 0;
	font-size: 60px;
	height: 40px;
	line-height: 40px;
	width: 40px;
	text-align: center;
	color: #45A4DD;
	font-weight: 100;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.accordion-item.active .accordion-item-nav a:before {
	content: "-";
}

.accordion-item-content {
	display: none;
	padding: 0 0 20px;
	margin: -15px 0 0;
}

/* END of content of FAQ Page */

/*  */

.font-size-27px {
	font-size: 27px;
}

.font-size-27px .bordered-bottom {
	margin: 15px 0 40px;
}

.font-size-27px p {
	padding: 0 0 40px;
}

.font-size-27px p:last-child, .font-size-27px .list-styled-circles:last-child {
	padding-bottom: 0;
}

.font-size-27px .list-styled-circles {
	padding: 0 0 30px;
}

body .btn-back {
	width: 64px;
	height: 64px;
	padding: 0 0 0;
	margin: -32px 0 0;
	position: absolute;
	top: 0;
	z-index: 55;
	border: 4px solid;
	border-radius: 50px;
	border-radius: 50%;
	background-image: url('img/i-arrow-left-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: 14px auto;
	background-size: 14px auto;
	text-align: center;
	color: transparent;
	font-size: 0;
	display: block;
}

body .btn-back:hover {
	opacity: 1;
	margin-left: -5px;
}

/*  */

.btn-block {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .02em;
	text-align: left;
	margin: 0 0 0;
	padding: 8px 40px 8px 20px;
	display: block;
	position: relative;
	color: #ffffff;
}

.btn-block:after {
	font-size: 32px;
	line-height: 1;
	position: absolute;
	height: 34px;
	right: 20px;
	top: 0;
	bottom: 0;
	font-weight: 400;
	margin: auto;
	font-family: "FontAwesome";
	content: "\f105";
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.btn-block:hover, .btn-block:focus {
	color: #ffffff;
	opacity: 1;
}

.btn-block:hover:after {
	right: 13px;
}

/*  */

.block-thumb-item {
	margin: 0 auto 40px;
}

.block-thumb-item:last-child {
	margin-bottom: 0;
}

.block-thumb-item a {
	display: block;
}

body .block-thumb-item .img-wr {
	margin: 0 0 0;
	overflow: hidden;
	border-bottom: 4px solid #ffffff;
}

.block-thumb-item .img-wr img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

/*  */

.grid-sidebar-right {
	padding: 0 0 0 60px;
}

/*  */

body .box-columns {
	padding: 50px 0 50px;
}

.columns-same-height-item {
	margin: 40px 0 40px;
	padding: 0 0 0;
	letter-spacing: -.05em;
	line-height: 1.72;
	position: relative;
}

.columns-same-height-item.img-left .col-sm-6:first-child {
	float: right;
}

.columns-same-height-item.img-right .slider-simple {
	margin: 0 0 0 auto;
}

.columns-same-height-item .btn-main {
	padding: 17px 22px 17px;
	min-width: 200px;
}

.columns-same-height-item .columns-item {
	display: table-cell;
	vertical-align: middle;
	width: 900px;
}

.columns-same-height-item + .columns-same-height-item {
	margin-top: 60px;
}

.columns-same-height-item .bordered-bottom {
	margin: 0 0 20px;
}

.columns-same-height-item .slider-simple {
	max-width: 550px;
}

/*  */

.slick-prev, .slick-next {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 40px;
	height: 80px;
	text-align: center;
	display: block;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.slick-slider:hover .slick-prev, .slick-slider:hover .slick-next {
	opacity: 1;
}

.slick-prev:hover, .slick-next:hover {
	margin: 0 -5px;
}

.slick-prev {
	left: 35px;
}

.slick-next {
	right: 35px;
}

.slick-prev:before, .slick-next:before {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 40px;
	height: 80px;
	font-size: 80px;
	line-height: 1;
	text-align: center;
	display: block;
	font-family: "FontAwesome";
	background-color: transparent;
	color: #ffffff;
	opacity: 1;
}

.slick-prev:before {
	content: "\f104";
}

.slick-next:before {
	content: "\f105";
}

/*  */

.slider-simple .slick-prev, .slider-simple .slick-next {
	width: 40px;
	height: 40px;
	opacity: 1;
	top: auto;
	bottom: 20px;
	 -webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}

.slider-simple .slick-prev {
	left: auto;
	right: 70px;
}

.slider-simple .slick-prev:hover {
	margin: 0 5px;
}

.slider-simple .slick-next {
	right: 20px;
}

.slider-simple .slick-prev:before, .slider-simple .slick-next:before {
	width: 40px;
	height: 40px;
	font-size: 20px;
	line-height: 40px;
	background-color: #04034f;
	background-color: rgba(0, 0, 0, .6);
	color: #ffffff;
}

/*  */

body .box-reviews {
	padding: 0 0 30px;
	margin: 0 0 0;
}

.review-items-wr {
	padding: 0 0 0;
	margin: 0 0 0;
}

.review-item {
	padding: 40px 75px 45px;
	margin: 0 0 60px;
	font-size: 20px;
	line-height: 2;
}

.review-item h3 {
	font-size: 30px;
	font-weight: 500;
	color: #000000;
}

.review-item p {
	padding: 0 0 15px;
}

.review-item h6 {
	padding: 0 0 0;
	font-weight: 600;
	font-size: inherit;
}

.review-item .bordered-bottom {
	padding: 0 0 15px;
	margin: 0 0 20px;
}

.review-header {
	padding: 0 0 0;
	margin: 0 0 0;
}

.review-header:after {
	content: "";
	display: block;
	clear: both;
}

.review-header img {
	max-width: 50px;
	display: block;
}

.review-body {
	padding: 0 0 0;
	margin: 0 0 0;
}

.stars-rating {
	font-size: 25px;
	color: #ffd400;
	padding: 0 15px 0;
	margin: 0 0 0;
}

.stars-rating i {
	padding: 0 0 0;
	margin: 0 3px 0 0;
}

.display-inline-block {
	display: inline-block;
	vertical-align: middle;
}

/*  */

.social-links {
	padding: 0 0 0;
	margin: 0 0 0;
}

body .social-links a {
	padding: 0 0 0;
	margin: 0 0 0;
	display: inline-block;
	color: inherit;
}

body header .social-links a {
	opacity: .7;
}

body header .social-links a:hover {
	opacity: 1;
}

body .social-links a+a {
	margin-left: 5px;
}

body .social-links a:hover {
	opacity: 1;
}

body .social-links a:hover i {
	color: #ffffff;
}

body .social-links a i {
	font-size: 22px;
	width: 35px;
	height: 35px;
	color: #666;
	line-height: 38px;
	margin: 0 0 0;
	padding: 0 0 0;
	text-align: center;
	border-radius: 50px;
	border-radius: 50%;
	display: block;
	background-color: #ffffff;
}

a [class*="facebook"]:hover {
	background-color: #3B5898;
}

a [class*="star"]:hover {
	background-color: #00B779;
}

a [class*="twitter"]:hover {
	background-color: #42C8F4;
}

a [class*="youtube"]:hover {
	background-color: #ca3737;
}

a [class*="-play"]:hover {
	background-color: #ca3737;
}

a [class*="google-plus"]:hover {
	background-color: #e3411f;
}

a [class*="linkedin"]:hover {
	background-color: #1686b0;
}

a [class*="pinterest"]:hover {
	background-color: #ef4430;
}

a [class*="camera"]:hover {
	background-color: #aaaaaa;
}

a [class*="instagram"]:hover {
	background-color: #517ea4;
}

a [class*="envelope"]:hover {
	background-color: #999999;
}

a .fa {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

/*  */

.page-home .btn-home {
	display: none;
}

/*  */

.pos-fixed-bottom {
	padding: 0 0 0;
	margin: 0 0 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: fixed;
	z-index: 10;
	text-align: center;
}

.display-block {
	display: block;
}

.pos-fixed-bottom a:hover {
	opacity: 1;
}

.pos-fixed-bottom .display-block {
	padding: 13px 13px 13px;
	font-size: 20px;
	font-weight: 600;
}

/*  */

.connected-sliders-wrapper {
	position: relative;
}

.box-top-banner .connected-sliders-wrapper {
	position: absolute;
	right: 0;
	top: auto;
	bottom: 0;
	overflow: hidden;
}

.connected-sliders-wrapper .slick-list {
	height: 100%;
}

.connected-sliders-wrapper .slick-track {
	height: 100%;
}

.connected-sliders-wrapper .slick-slide {
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
}

.connected-sliders-wrapper .img-wr {
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center top;
}

.connected-slider-big {
	width: 785px;
	height: 526px;
	margin: 0 0 -25px 0;
	background: url('img/bg-ipad.png') no-repeat center;
	-webkit-background-size: contain;
	background-size: contain;
}

.connected-slider-big .slick-slide {
	padding: 40px 0 30px 25px;
}

.connected-slider-small {
	width: 201px;
	height: 407px;
	margin: 0 -15px -10px 0;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 5;
	background: url('img/bg-iphone.png') no-repeat center;
	-webkit-background-size: contain;
	background-size: contain;
}

.connected-slider-small .slick-slide {
	padding: 49px 12px 46px;
}

/*  */

body .parallax-item.background-fixed {
	top: 0;
	bottom: 0;
}

.background-fixed {
	background-attachment: fixed;
}

/*  */

.slider-simple-portfolio {
	width: 800px;
	margin: 15px 0 0 -50px;
	position: absolute;
}

.slider-simple-portfolio img {
	margin: 0;
	width: 100%;
}

/*  */

.input-label {
	font-size: 16px;
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	margin: 22px 22px 0;
	letter-spacing: 0;
	line-height: 1;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

body .input-focused .input-label, body .input-not-empty .input-label {
	/* margin: 7px 7px 0; */
	margin-top: 5px;
	font-size: 70%;
}

/*  */

.tooltip-wr i {
	padding: 0 0 0;
	margin: 0 0 0;
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 15px;
	line-height: 15px;
	text-align: center;
	border-radius: 50px;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	background: #777777;
	color: #ffffff;
}

.tooltip-wr {
	display: inline-block;
	margin-left: 5px;
}

.tooltip-inner {
	max-width: 200px;
	min-width: 200px;
	padding: 10px 15px;
	font-size: 13px;
	font-family: inherit;
	font-weight: normal;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.9);
	border-radius: 4px;
}

.tooltip.top .tooltip-arrow {
	opacity: .6;
}

.tooltip.top {
	font-family: inherit;
}

/*  */

.modal-form {
	max-width: 402px;
}

.modal-dialog {
	font-size: 15px;
	font-weight: normal;
	color: #5a5a5a;
}

.modal-dialog h2 {
	font-size: 24px;
	padding: 0 0 0;
	font-weight: 700;
	color: #202020;
	letter-spacing: 0;
}

.modal-dialog .modal-header {
	padding: 86px 15px 19px;
	text-align: center;
	background: #ffffff url('img/modal-header.svg') no-repeat center top;
	background-size: 100% auto;
	border-bottom: 1px solid #e5e5e5;
}

.modal-dialog .modal-content {
	overflow: hidden;
}

body .modal-dialog .close {
	padding: 0 0 0;
	margin: 13px 17px 0;
	width: 29px;
	height: 29px;
	background: url('img/icon-close.svg') no-repeat center;
	-webkit-background-size: contain;
	background-size: contain;
	border-radius: 50px;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	border: none;
	box-shadow: none;
	right: 0;
	top: 0;
	outline: none;
	opacity: 1;
	color:  transparent;
	font-size: 0;
}

.modal-dialog .modal-body {
	padding: 25px 25px 25px;
	background: #f5f5f7;
}

.modal-dialog .row {
	margin-right: -5px;
	margin-left: -5px;
}

.modal-dialog [class*="col-"] {
	padding: 0 5px;
}

.modal-dialog input, .modal-dialog textarea, .modal-dialog select, .modal-dialog button {
	margin: 0 0 0;
	padding: 14px 15px 14px 50px;
	font-size: 16px;
	line-height: 20px;
	border: 1px solid #e8e9eb;
	background-color: #ffffff;
	border-radius: 5px;
	background-repeat: no-repeat;
	-webkit-background-size: 22px 20px;
	background-size: 22px 20px;
	background-position: 15px center;
}

.input-name {
	background-image: url('img/icon-company.svg');
}

.input-email {
	background-image: url('img/icon-email.svg');
}

.input-card {
	background-image: url('img/icon-card.svg');
}

.input-card-expire {
	background-image: url('img/icon-calendar.svg');
}

.input-cvc {
	background-image: url('img/icon-cvc.svg');
}

.modal-dialog .input-label {
	font-size: 17px;
	color: #cccccc;
	margin: 17px 0 0 50px;
}

.modal-dialog form {
	margin: 0 0 0;
	padding: 15px 15px 10px;
}

.modal-dialog .input-item {
	margin: 0 0 10px;
}

body .modal-dialog .btn-main {
	display: block;
	width: 100%;
	border-radius: 50px;
	margin: 20px auto 0;
	font-size: 20px;
	padding: 15px 20px 15px;
}

/*  */

.block-bordered {
	border: 1px solid;
}

.btn-main a {
	color: inherit;
}

.btn-main a + i {
	margin: 0 8px;
}

/*  */

.trustpilot {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 20px;
	font-weight: 400;
	color: inherit;
	vertical-align: middle;
	display: inline-block;
}

.trustpilot .display-inline-block {
	margin: 0 5px 0;
}

.trustpilot i img {
	display: block;
	margin: 0 auto;
	padding: 0 0 0;
}

.trustpilot strong {
	font-size: 17px;
	font-weight: 500;
}

/*  */

.columns-2 {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
}

.columns-3 {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 15px;
	-moz-column-gap: 15px;
	column-gap: 15px;
}

/*  */

.box-package-info {
	padding: 70px 0 70px;
	overflow: hidden;
}

.box-package-info .text-wr h2 {
	font-size: 45px;
}

.box-package-info .text-wr h6 {
	font-size: 15px;
    padding: 15px 0 15px;
}

.box-package-info .text-wr {
	font-size: 20px;
	line-height: 2.2;
	padding-right: 40px;
}

.box-package-info .pull-right .text-wr {
	padding-right: 0;
	padding-left: 40px;
}

.box-package-info .text-wr p {
	padding: 0 0 20px;
}

.box-package-info .text-wr .btn-main {
	padding: 15px 18px 15px;
	font-size: 18px;
}

.box-package-info .package-item {
	margin: 75px 0 0;
}

.package-item h2 + .btn-main {
	margin: 20px auto 22px;
}

.box-package-info .package-item h6 {
	margin: 0 0 0;
	padding: 0 0 5px;
	font-size: 14px;
	font-weight: 500;
}

.slider-simple.slider-cut-off {
	width: 700px;
    margin: 0 0 -95px;
}

html body .bg-theme-1 .color-gray {
	color: #ffffff;
}

html body .arrows-hide .slick-arrow {
	display: none;
	opacity: 0;
	visibility: hidden;
}

/*  */



















































/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	padding: 20px 0 20px;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0;
	margin: 0 0 0;
	background: #000;
	color: #eee;
	text-align: center;
}

footer a {
	color: inherit;
}

/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media (min-width: 1260px) {
	.container {
		width: 1230px;
	}
}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1619px) {
.slider-simple-portfolio {
	width: 700px;
	margin: 70px 0 -30px -50px;
}








}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1439px) {
.connected-slider-big {
	width: 700px;
	height: 470px;
	margin: 0 0 -20px 0;
}
.connected-slider-big .slick-slide {
	padding: 37px 0 25px 22px;
}
.connected-slider-small {
	width: 201px;
	height: 407px;
	margin: 0 -20px -45px 0;
}
.slider-simple-portfolio {
	width: 660px;
	margin: 45px 0 -30px -50px;
}
.box-top-banner .text-wr {
	padding: 50px 0 30px;
}









}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1199px) {
body {
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: -.025em;
}
h1 {
	padding: 0 0 15px;
	font-size: 45px;
	letter-spacing: -.01em;
}
h2 {
	padding: 0 0 15px;
	font-size: 35px;
	letter-spacing: -.02em;
}
h3 {
	padding: 0 0 15px;
	font-size: 30px;
	letter-spacing: -.02em;
}
h4 {
	padding: 0 0 15px;
	font-size: 25px;
}
h5 {
	padding: 0 0 15px;
	font-size: 20px;
}
h6 {
	padding: 0 0 15px;
}
blockquote {
	padding: 0 0 15px;
	font-size: 30px;
}
.parallax-item {
	transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1) !important;
	-webkit-transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1) !important;
}
.parallax-img-wr .parallax-item {
	top: 0;
	bottom: 0;
}
header {
	font-size: 20px;
	padding: 20px 0 20px;
}
.logo {
	max-width: 200px;
}
body .social-links a i {
	font-size: 16px;
	width: 25px;
	height: 25px;
	line-height: 25px;
}
.box-top-banner .img-overlay {
	padding: 120px 0 70px;
}
.box-simple h2 {
	padding: 0 0 20px;
}
body .btn-main {
	padding: 15px 15px 15px;
	font-size: 18px;
	line-height: 20px;
	min-width: 200px;
}
.list-styled-circles li:before {
	margin: 6px 0 0;
	width: 25px;
	height: 25px;
	background-size: 14px auto;
}
.col-sm-6 > .list-styled-circles {
	font-size: inherit;
}
.font-size-27px {
	font-size: 22px;
}
.list-styled-circles li {
	padding: 0 0 0 40px;
	margin: 0 0 15px;
}
.box-wr {
	padding: 60px 0 60px;
}
body .block-watermark {
	padding: 0 10px 0;
}
body .block-watermark h3 {
	font-size: 330px;
}
.box-about .img-wr {
	width: 120%;
    width: 45vw;
}
.box-top-banner h2 {
	font-size: 35px;
}
body .btn-back {
	width: 40px;
	height: 40px;
	padding: 0 0 0;
	margin: -20px 0 0;
	border: 3px solid;
	-webkit-background-size: 10px auto;
	background-size: 10px auto;
}
.columns-same-height-item {
	margin: 20px 0 20px;
	letter-spacing: -.02em;
}
.grid-sidebar-right {
	padding: 0 0 0 0;
}
.font-size-27px p {
	padding: 0 0 20px;
}
.font-size-27px .bordered-bottom {
	margin: 0 0 20px;
}
.block-thumb-item {
	margin: 0 auto 15px;
}
.box-top-banner .text-wr {
	padding: 40px 0 40px;
}
.box-testimonials .img-overlay {
	padding: 40px 0 40px;
}
.slider-testimonials {
	margin: 40px 15px 20px;
	padding: 0 0 30px;
	min-height: 170px;
}
.slider-testimonials .slick-dots {
	bottom: 0;
}
.block-contacts {
	padding: 40px 30px 25px;
	margin: 0 0 0;
	font-size: 17px;
}
.form-wr {
	margin: 0 0 0;
}
.list-styled {
	letter-spacing: -.02em;
	font-size: inherit;
}
.list-styled li:before {
	margin: 5px 0 0;
	width: 15px;
	height: 12px;
	border-radius: 0;
}
.list-styled li {
	padding: 0 0 0 25px;
	margin: 0 0 10px;
}
.package-item h2 {
	font-size: 60px;
	line-height: 1.2;
}
h2 sup {
	font-size: 25px;
	margin: 0 -15px 0 15px;
}
h2 sup.color-theme-1 {
	font-size: 14px;
	margin: 0px 0 0 5px;
}
.package-item .btn-main {
	padding: 15px 15px 15px;
	margin: 0 auto 20px;
	font-size: 16px;
	display: block;
	min-width: 0;
	max-width: 90%;
}
.package-item h5 {
	font-size: 20px;
	padding: 5px 0 5px;
}
.package-item-body {
	padding: 15px 10px 15px;
}
.review-item h3 {
	font-size: 22px;
}
.review-header img {
	max-width: 30px;
}
.stars-rating {
	font-size: 18px;
	padding: 0 0 0 5px;
}
.review-item {
	padding: 35px 45px 35px;
	margin: 0 0 30px;
	font-size: 16px;
}
.btn-wr .btn-main {
	margin-right: 10px;
}
.connected-slider-big {
	width: 500px;
	height: 335px;
	margin: 0;
}
.connected-slider-big .slick-slide {
	padding: 25px 0 18px 15px;
}
.connected-slider-small {
	width: 130px;
	height: 260px;
	margin: 0 -10px -20px 0;
}
.connected-slider-small .slick-slide {
	padding: 30px 8px 28px;
}
.background-fixed {
	background-attachment: inherit;
}
.slider-simple-portfolio {
	width: auto;
	margin: 20px -10px -30px -15px;
}
.trustpilot {
	font-size: 15px;
}
.trustpilot strong {
	font-size: 90%;
}
.trustpilot .display-inline-block {
	margin: 0 2px 0;
}
.box-package-info .text-wr {
	font-size: 16px;
	line-height: 2;
	padding-right: 0;
}
.box-package-info .package-item {
	margin: 40px 0 0;
}
.box-package-info .text-wr h2 {
	font-size: 30px;
}
.box-package-info .pull-right .text-wr {
	padding-left: 0;
}
.trustpilot i img {
	max-width: 100px;
	max-height: 18px;
}
.package-item {
	padding: 0 0 0;
	margin: 30px -10px 0;
}
.slider-simple.slider-cut-off {
    width: auto;
    margin: 0 auto 0;
}













}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
body {
	font-size: 15px;
	line-height: 1.7;
	letter-spacing: -.025em;
}
h1 {
	padding: 0 0 15px;
	font-size: 40px;
	letter-spacing: -.01em;
}
h2 {
	padding: 0 0 15px;
	font-size: 30px;
	letter-spacing: -.02em;
}
h3 {
	padding: 0 0 15px;
	font-size: 26px;
	letter-spacing: -.02em;
}
h4 {
	padding: 0 0 15px;
	font-size: 20px;

}
h5 {
	padding: 0 0 15px;
	font-size: 16px;
}
h6 {
	padding: 0 0 15px;
}
blockquote {
	padding: 0 0 15px;
	font-size: 20px;
}
.thumb-work .img-overlay {
	padding: 22% 15px 15px;
}
body .btn-main {
	padding: 13px 13px 13px;
	font-size: 16px;
	line-height: 20px;
	min-width: 180px;
}
form input, form textarea, form select, form button {
	padding: 13px 13px 13px;
	font-size: 16px;
	line-height: 20px;
}
.form-wr h6 {
	font-size: 13px;
	padding: 14px 0 13px;
}
.back-to-top {
	width: 24px;
	height: 24px;
	bottom: 80px;
	-webkit-background-size: contain;
	background-size: contain;
}
.block-contacts {
	padding: 30px 30px 20px;
	margin: 0 0 0;
	font-size: 16px;
}
footer {
	padding: 15px 0 15px;
	font-weight: 400;
	font-size: 13px;
}
.font-size-27px {
	font-size: 18px;
}
.review-item .alignleft {
	max-width: 70%;
}
.connected-slider-big {
	width: 350px;
	height: 235px;
	margin: 0;
}
.connected-slider-big .slick-slide {
	padding: 18px 0 13px 12px;
}
.connected-slider-small {
	width: 100px;
	height: 200px;
	margin: 0 -5px -15px 0;
}
.connected-slider-small .slick-slide {
	padding: 23px 7px 22px;
}












}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
body {
	font-size: 15px;
	line-height: 1.7;
	letter-spacing: -.025em;
}
h1 {
	padding: 0 0 15px;
	font-size: 38px;
	line-height: 1.4;
	letter-spacing: -.01em;
}
h2 {
	padding: 0 0 15px;
	font-size: 32px;
	line-height: 1.5;
	letter-spacing: -.01em;
}
h3 {
	padding: 0 0 15px;
	font-size: 25px;
	letter-spacing: -.01em;
}
h4 {
	padding: 0 0 15px;
	font-size: 20px;
}
h5 {
	padding: 0 0 15px;
	font-size: 14px;
}
h6 {
	padding: 0 0 15px;
}
blockquote {
	padding: 0 0 15px;
	font-size: 22px;
}
body .box-top-banner {
	text-align: center;
}
body .box-top-banner .text-left {
	text-align: center;
}
header {
	font-size: 18px;
	padding: 20px 0 20px;
	line-height: 1.8;
}
.box-top-banner .img-overlay {
	padding: 100px 0 60px;
}
.box-top-banner .text-wr {
	padding: 0 0 30px;
}
.box-wr {
	padding: 50px 0 50px;
}
.font-size-27px .list-styled-circles {
	padding: 25px 0 20px;
}
.list-styled-circles li:before {
	margin: 3px 0 0;
	width: 22px;
	height: 22px;
	background-size: 11px auto;
}
.list-styled-circles li {
	padding: 0 0 0 35px;
	margin: 0 0 15px;
}
.box-top-banner h1 {
	font-size: 35px;
}
.box-top-banner h3 {
	font-size: 26px;
	padding: 0 0 5px;
}
.box-work h4 {
	padding: 0 20px 15px;
}
body .block-watermark h3 {
	font-size: 140px;
}
body .block-watermark {
	padding: 15px 0 0;
}
.thumb-work .img-overlay {
	padding: 15px 15px 15px;
	opacity: 1;
	top: auto;
}
.thumb-work .img-overlay:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100px;
	box-shadow: inset 0px -85px 40px -40px rgba(0, 0, 0, 0.8);
}
body .btn-view-more {
	font-size: 16px;
	padding: 0 20px 0 0;
	margin: 0 0 0;
	float: right;
	font-size: 0;
}
body .btn-view-more:after {
	font-size: 20px;
}
body .thumb-work h4 {
	padding: 0 0 0;
	float: left;
	font-size: 24px;
	line-height: 1.2;
	position: relative;
}
.box-work {
	padding: 50px 0 0;
}
body .btn-main {
	padding: 10px 10px 10px;
	font-size: 14px;
	line-height: 20px;
	min-width: 160px;
}
.btn-wr {
	padding: 20px 0 20px;
}
.box-about .img-wr {
	width: 105%;
}
.contacts-wr {
	margin: 10px auto 0;
}
footer {
	padding: 15px 0 15px;
	font-weight: 400;
	font-size: 11px;
}
.box-form .img-overlay {
	padding: 50px 0 30px;
}
.box-top-banner h2 {
	font-size: 20px;
}
.columns-same-height-item .columns-item {
	display: block;
	width: auto;
	height: auto !important;
	padding: 0 0 30px;
}
.columns-same-height-item {
	margin: 0 0 0;
	letter-spacing: -.01em;
}
.columns-same-height-item.img-left .col-sm-6:first-child {
	float: none;
}
.columns-same-height-item .btn-main {
	padding: 13px 22px 13px;
	min-width: 160px;
}
.accordion-item-nav a:before {
	font-size: 35px;
}
.package-item {
	padding: 0 0 0;
	margin: 0 0 25px;
}
.review-item .alignleft {
	max-width: 100%;
	margin: 0 auto;
	float: none;
	text-align: center;
}
.review-item .alignright {
	max-width: 100%;
	margin: 0 auto;
	float: none;
	text-align: center;
}
.review-item h3 {
	font-size: 20px;
	text-align: center;
	line-height: 1.6;
}
.review-item .bordered-bottom:after {
	margin-left: auto;
}
.review-item {
	padding: 30px 30px 30px;
	margin: 0 0 15px;
	font-size: 15px;
}
.box-top-banner .connected-sliders-wrapper {
	position: relative;
	width: 350px;
	margin: 0 0 -60px auto;
}
.slider-simple-portfolio {
	width: auto;
	margin: 0 0 -60px 0;
	position: relative;
}
.slider-simple-portfolio img {
	margin: 0 0 -45px;
}
.form-wr h6 {
	font-size: 15px;
	padding: 13px 0 13px;
	margin: 0 -10px 0 0;
}
.modal-dialog .modal-body {
	padding: 10px 10px 20px;
}
.box-top-banner .text-wr img {
	max-width: 80%;
}
.btn-main-nav.active {
	padding: 12px 9px 12px;
}
body .btn-main-nav {
	padding: 12px 9px 12px;
	margin: 17px 15px 0;
}


.main-nav-inner {
	padding: 70px 40px 70px;
	min-width: 330px;
	width: 100%;
}
.main-nav-inner h4 {
	padding: 0 0 0;
	margin: 15px 0 15px;
	font-size: 20px;
}
.main-nav-wr a {
	margin: 0 0 0;
	padding: 0 0 0;
	font-size: 18px;
}
.main-nav-wr ul {
	padding: 15px 0 10px;
}
.btn-main-nav i {
	display: none;
}
.main-nav-wr .subnav {
	text-align: left;
}
body .main-nav-inner .btn-main-nav {
	opacity: 0;
}
.box-top-banner-inner-page .img-wr {
	margin: 0 auto -65px;
}
.pull-left {
	float: none !important;
}
.pull-right {
	float: none!important;
}
.box-package-info .text-wr {
	font-size: 15px;
	line-height: 2;
	padding-right: 0;
}
.box-package-info .text-wr .btn-main {
	padding: 10px 15px 10px;
	font-size: 14px;
	min-width: 155px;
}
.package-item-header {
	padding: 20px 15px 5px;
}
.slider-simple.slider-cut-off {
    width: auto;
    margin: 0 -30px -55px 0;
}












}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 550px) {
.review-header {
	padding: 0 0 10px;
	margin: 0 0 0;
}
.box-form h4 {
	font-size: 18px;
}










}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
