 @import url('https://fonts.googleapis.com/css2?family=Lobster&family=Oswald:wght@200&display=swap');
.resp-tab {
    border-radius: 5px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2 );	
}
.resp-tab td, .resp-tab th {
    text-align: center;
    padding: 8px;
	font-size: 15px;
	border: none;
	font-family: Verdana, sans-serif;
}
.resp-tab td {
    font-size: 13px;
	border-right: 1px solid #E6E4E4;
}
.resp-tab th {
    color: #ffffff;
    background: #2d6b9f;
}
.resp-tab th:nth-child(odd) {
    background: #337AB7;
}
.resp-tab tr:nth-child(even) {
    background: #F8F8F8;
}
@media (max-width: 767px) {
    .resp-tab {
        display: block;
        width: 100%;
	}
    .resp-tab thead, 
	.resp-tab tbody, 
	.resp-tab thead th {
        display: block;
	}
    .resp-tab thead {
        float: left;
	}
    .resp-tab tbody {
        width: auto;
        position: relative;
        overflow-x: auto;
	}
    .resp-tab td, .resp-tab th {
        padding: 10px 2px;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        width: 160px;
        font-size: 13px;
        text-overflow: ellipsis;
	}
    .resp-tab thead th {
        text-align: center;
	}
    .resp-tab tbody tr {
        display: table-cell;
	}
    .resp-tab tbody tr:nth-child(odd) {
        background: none;
	}
    .resp-tab tr:nth-child(even) {
        background: transparent;
	}
    .resp-tab tr td:nth-child(odd) {
        background: #F8F8F8;
        border-right: 1px solid #E6E4E4;
	}
    .resp-tab tr td:nth-child(even) {
        border-right: 1px solid #E6E4E4;
	}
    .resp-tab td {
        display: block;
        text-align: center;
	}
}
.hover3d * {
    box-sizing: border-box;
}	
.hover3d {
	margin: 20px 0;
}
.hover3d .info {
	transform: rotate3d(1, 0, 0, 90deg);
	width: 100%;
	height: 100%;
	padding: 20px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px;
	pointer-events: none;
	background-color: #337AB7;
}
.hover3d ul {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.hover3d li {
	perspective: 500px;
	position: relative;
	width: calc(25% - 10px);
	margin: 5px;
	padding: 0;
	list-style: none;
	border: 6px solid #BFE2FF;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 4px 6px rgba(0,0,0,0.2);
}
@media (max-width:767px){
	.hover3d li {
		width: calc(33% - 10px);
	}
}
@media (max-width:560px){
	.hover3d li {
		width: calc(50% - 10px);
	}
}	
@media (max-width:420px){
	.hover3d li {
		width: 100%;
	}
}
.hover3d li a {
	display: block;
	text-decoration: none;
	width: 100%;
	height: 100%; 
}
.hover3d li a img {
	object-fit: cover;
	width: 100%;
}
.hover3d li h3 {
	margin: 0;
	font-size: 20px;
	color: #BFE2FF;
	font-family: 'Roboto', sans-serif; 
}
.hover3d li p {
	color: #FFF;
}
.in-top .info {
	transform-origin: 50% 0%;
	animation: in-top 300ms ease 0ms 1 forwards;
}
.in-right .info {
	transform-origin: 100% 0%;
	animation: in-right 300ms ease 0ms 1 forwards;
}
.in-bottom .info {
	transform-origin: 50% 100%;
	animation: in-bottom 300ms ease 0ms 1 forwards;
}
.in-left .info {
	transform-origin: 0% 0%;
	animation: in-left 300ms ease 0ms 1 forwards;
}
.out-top .info {
	transform-origin: 50% 0%;
	animation: out-top 300ms ease 0ms 1 forwards;
}
.out-right .info {
	transform-origin: 100% 50%;
	animation: out-right 300ms ease 0ms 1 forwards;
}
.out-bottom .info {
	transform-origin: 50% 100%;
	animation: out-bottom 300ms ease 0ms 1 forwards;
}
.out-left .info {
	transform-origin: 0% 0%;
	animation: out-left 300ms ease 0ms 1 forwards;
}
@keyframes in-top {
	from {
		transform: rotate3d(-1, 0, 0, 90deg);
	}
	to {
		transform: rotate3d(0, 0, 0, 0deg);
	}
}
@keyframes in-right {
	from {
		transform: rotate3d(0, -1, 0, 90deg);
	}
	to {
		transform: rotate3d(0, 0, 0, 0deg);
	}
}
@keyframes in-bottom {
	from {
		transform: rotate3d(1, 0, 0, 90deg);
	}
	to {
		transform: rotate3d(0, 0, 0, 0deg);
	}
}
@keyframes in-left {
	from {
		transform: rotate3d(0, 1, 0, 90deg);
	}
	to {
		transform: rotate3d(0, 0, 0, 0deg);
	}
}
@keyframes out-top {
	from {
		transform: rotate3d(0, 0, 0, 0deg);
	}
	to {
		transform: rotate3d(-1, 0, 0, 104deg);
	}
}
@keyframes out-right {
	from {
		transform: rotate3d(0, 0, 0, 0deg);
	}
	to {
		transform: rotate3d(0, -1, 0, 104deg);
	}
}
@keyframes out-bottom {
	from {
		transform: rotate3d(0, 0, 0, 0deg);
	}
	to {
		transform: rotate3d(1, 0, 0, 104deg);
	}
}
@keyframes out-left {
	from {
		transform: rotate3d(0, 0, 0, 0deg);
	}
	to {
		transform: rotate3d(0, 1, 0, 104deg);
	}
}
.sign-wrap-2 {
	background: #337AB7;
	text-align: center;
	padding: 60px 20px;
}
.sign-wrap-2 .sign_word {
	font-size: 40px;
	font-weight: bold;
	line-height: 50px;
	color: #FFF;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	animation: 2s neon-2 alternate-reverse infinite;
}
@keyframes neon-2 {
	from {
		text-shadow: 0 0 5px #FFF,
		0 0 10px #FFF,
		0 0 15px #FFF,
		0 0 20px #BFE2FF;
	}
	to {
		text-shadow: 0 0 20px #BFE2FF,
		0 0 35px #BFE2FF,
		0 0 40px #BFE2FF,
		0 0 50px #BFE2FF,
		0 0 800px #BFE2FF;
	}
}	
figure.card * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}			
figure.card {
	position: relative;
	max-width: 100%;
	display: inline-block;
	border: 6px solid #BFE2FF;
	background: #BFE2FF;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
	overflow: hidden;
	margin: 15px 0;
	font-size: 0;
}
figure.card img {
	transition: all 300ms;
	position: relative;
	top: 0;
	left: 0;
}
figure.card:hover img {
	transition: all 700ms;
	transform: scale(1.1);
}
figure.card figcaption {
	position: absolute;
	background: #BFE2FF;
	transition: transform 300ms;
	padding: 12px;
}
   figure.card:hover figcaption {
	transform: translateY(0);
}
figure.info-bottom:hover img {
	top: -40px;
 
}
figure.info-bottom figcaption {
	bottom: 0;
	transform: translateY(100%);
	border-top: 6px solid #BFE2FF;
}
figure.info-top:hover img {
    top: 40px;
}
figure.info-top figcaption {
	top: 0;
	transform: translateY(-100%);
	border-bottom: 6px solid #BFE2FF;
}
figure.info-bottom figcaption, 
figure.info-top figcaption {
	width: 100%;
}
figure.info-left:hover img {
	left: 90px;
}
figure.info-left figcaption {
	left: 0;
	top: 0;
	transform: translateX(-180px);
	border-right: 6px solid #BFE2FF;
}
figure.info-right:hover img {
	left: -90px;
}
figure.info-right figcaption {
	right: 0;
	top: 0;
	transform: translateX(180px);
	border-left: 6px solid #BFE2FF;
}
figure.info-left figcaption, 
figure.info-right figcaption {
	width: 180px;
	height: 100%;
}
figure.card figcaption .info span {
	font-size: 13px;
	font-family: Verdana, sans-serif;  
	display: block;
}
figure.card figcaption .info h3 {
	font-size: 18px;
	display: inline-block;
	font-weight: normal;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 4px;
	padding-bottom: 4px;
	border-bottom: 1px solid #337AB7;
}
.list5b {
	padding:0;
	list-style: none;
}	
.list5b li {
	position: relative;
	padding: 10px 30px;
	background: linear-gradient(to left, #EFEFEF 0%, #FFF, #EFEFEF);
	border: 2px solid #C0C0C0;
	color: #506a6b;
	box-shadow: 0 5px 5px 0 rgba(0,0,0, .2);
	margin-bottom: 5px;
	text-align:center;
	background-size: 100% 100%;
	z-index: 1;
}
.list5b li:hover {
	border: 2px solid #ADCEE9;
}
.list5b li:before {
	content: "";
	position:absolute;
	width: 0;
	height: 100%;
	top: 50%;
	left: 50%;
	background: linear-gradient(to left, #E2F0FA 0%, #FFF, #E2F0FA);
	opacity: 0;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	z-index: -1;
}
.list5b li:hover:before {
	width: 100%;
	opacity: 1;
}	       
.fanphoto {
	display: block;
	transition: all 0.3s ease-in-out;
	border: 6px solid #BFE2FF;
	margin: 10px 0;

}
.fanphoto:hover {
	border: 6px solid #337AB7;
}  
.list4b {
	padding:0;
	list-style: none;
	counter-reset: li;
}	
.list4b li {
	position: relative;
	padding:12px 20px 20px 28px;
	margin-left: 40px;
	transition-duration: 0.3s;
}
.list4b li:before {
    border: 6px solid transparent;
	line-height: 30px;
	position: absolute;
	top: 0;
	left:-30px;
	width:42px;
	text-align:center;
	font-size: 13px;
	font-weight: bold;
	color: #ADCEE9;
	counter-increment: li;
	content: counter(li);
	transition-duration: 0.3s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}
.list4b li:hover:before {
	color: #337AB7;
}
.list4b li:after {
    position: absolute;
    top: 0;
    left: -30px;
    width: 42px;
    height: 42px;
    border: 6px solid #DDDDDD;
    border-radius: 50%;
    content: '';
    opacity: 0.5;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}
.list4b li:hover:after {
	animation: 500ms ease-in-out 0s bounceIn;
    opacity: 1;
    border: 6px solid #ADCEE9;	
}	

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	20% {
		transform: scale3d(1.3, 1.3, 1.3);
	}
	40% {
		transform: scale3d(.9, .9, .9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(.97, .97, .97);
	}
	to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}
.list2b {
    margin-bottom: 8px;
    padding:0;
    list-style: none;
    counter-reset: li;
}    
.list2b li {
    position: relative;
    border: 2px solid #DDDDDD;
    background: #FAFAFA;
    padding:16px 20px 16px 28px;
    margin:12px 0 12px 40px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.list2b li:hover {
    background: #F0F5FB;
    border: 2px solid #ADCEE9;
}
.list2b li:before {
    line-height: 32px;
    position: absolute;
    top: 4px;
    left:-40px;
    width:40px;
    text-align:center;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    background: #77AEDB;
    counter-increment: li;
    content: counter(li);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.list2b li:hover:before {
    width:46px;
    background: #337AB7;
}
.list2b li:after {
    position: absolute;
    left: 0;
    top: 4px;
    content: "";
    height: 0;
    width: 0;
    border: 16px solid transparent;
    border-left-color: #77AEDB;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s
}
.list2b li:hover:after {
    margin-left: 6px;
    border-left-color: #337AB7;
}
.bottom-navi{height:30px;line-height:30px;text-align:left;margin:20px 0;text-align:center}
.pprev,.pnext{line-height:36px;display:inline-block;text-align:center;color:#8b949d;background-color:#f4f4f4;font-size:14px;border-radius:3px;width:80px;border:1px solid #e3e3e3}
.pnext a,.pprev a{color:#8C9394;;display:block}
.navigations{font-size:12px;margin:0 10px;text-align:center}
.navigations a,.navigations span{border-radius:3px;display:inline-block;margin:0 5px 0 0;background-color:rgba(0,0,0,.05);font-size:14px;padding:2px 16px;color:#337ab7;border:1px solid #337ab7;font-weight: 800;}
.navigations span{border-radius:3px;background-color:#337ab7;color:#fff;}
.navigations a:hover{background-color:#3a7dc0;color:#fff}
.pnext a:hover,.pprev a:hover{background-color:#8b949d;color:#fff}
.navigations span.nav_ext{background:none;color:#fff}

.pogod-main {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   overflow: hidden;
}

.pogod-main__tem {
   font-size: 25px;
   line-height: 1;
   margin-right: 10px;
}

.pogod-main__wea span {
   display: block;
   font-size: 12px;
   color: rgba(0, 0, 0, 0.8);
   max-width: 230px;
   overflow: hidden;
}
.grid * {
	box-sizing: border-box;
}
.grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 30px;
	row-gap: 30px;
	padding: 0px 0;
}
/* Кол-во блоков на разных экранах */
@media only screen and (max-width: 1600px) {
	.grid {
		grid-template-columns:1fr 1fr;
	}
}
@media only screen and (max-width: 900px) {
	.grid {
		grid-template-columns:1fr 1fr 1fr;
	}
}
@media only screen and (max-width: 600px) {
	.grid {
		grid-template-columns: 1fr;
	}
}
.grid-item {
    	
	transition: box-shadow .3s;
	width: 100%;
	height: 100%;  
}
.grid-item .image {
	height: 100px;
	overflow: hidden;
}
.grid-item .info {
	position: relative;
	height: calc(100% - 200px);
	padding: 16px 14px 80px 14px;
    width: 270px;
  
    }
.grid-item:hover {
	
}
.grid-item .image img  {
  	transition: transform 270ms ease-in-out;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
.grid-item:hover .image img  {
	transform: scale(1.1);
}
.info h2 {
	font-family: 'Roboto Condensed', Тahoma, sans-serif;
	color: #337AB7;
	font-size: 16px;
	font-weight: normal;
	margin: 0;
	margin-bottom: 30px;
	text-align: center;
}
.info-text p {
	font-size: 15px;
	line-height: 20px;
	font-family: Verdana, sans-serif; 
	margin-bottom: 10px;
}
.info-text p:last-child {
	margin-bottom: 0;
}
.grid-item .button-wrap {
	display: block;
	width: 100%;
	position: absolute;
	bottom: 14px;
	left: 0;
	text-align: center;
}

     .atuin-btn {
	display: inline-flex;
	margin: 10px;
	text-decoration: none;
	border: 4px solid #BFE2FF;
	border-radius:  6px;
         position: relative;
	overflow: hidden;
	font-size: 15px;
	line-height: 20px;
	padding: 12px 30px;
	color: #FFF;
	font-weight: bold;
	text-transform: uppercase;
	font-family: 'Roboto Condensed', Тahoma, sans-serif;
	background: #337ab7;
	transition: box-shadow 0.3s, transform 0.3s;
	cursor: pointer;
}
.atuin-btn:hover,
.atuin-btn:active,
.atuin-btn:focus {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);
	color: #fff;
}
.atuin-btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(-45deg, transparent, rgba(191, 226, 255, 0.3), transparent);
	transition: left 0.7s;
}
.atuin-btn:hover:before,
.atuin-btn:active:before,
.atuin-btn:focus:before {
	left: 100%;
}

@keyframes from-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
    }
    100% {
        right: 50%;
        width: 100%;
    }
}
@keyframes from-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
    }
    100% {
        left: 50%;
        width: 100%;
    }
}
.shape-outside {
	margin: 20px 0;
}
.shape-outside p {
	text-align: justify;
	font-family: Verdana, sans-serif;   
	font-size: 16px;
	line-height: 1.38;
}
.shape-outside:after{
	clear: both;
	display: table;
	content: " ";
}
.shape-outside .shape-img-1 {
	float: left;
	shape-outside: url(image-1.png);
	width: 252px;
	transform: translateX(-20px);
}
.shape-outside .shape-img-2 {
	float: right;
	shape-outside: url(image-2.png);
	width: 252px;
	transform: translateX(20px);
}

html,
html a {
-webkit-font-smoothing: antialiased;
}
/* Настройка основной типографии */

body,
select,
input,
textarea,
button {
font-family: 'ProximaNovaCond-Regular', sans-serif;
margin: 0;
padding: 0;
outline: none;
}
body {
background: #f8f8f8;
background-attachment: fixed
}
*,
*::after,
*::before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
::-webkit-scrollbar {
width: 8px;
height: 4px;
}
::-webkit-scrollbar-track-piece {
background-color: #f1f1f1;
}
::-webkit-scrollbar-thumb:vertical {
height: 4px;
background-color: #ddd;
}
::-webkit-scrollbar-thumb:horizontal {
width: 8px;
background-color: #5f9e3d;
}
a {
outline: none;
color: #fefefe;
text-decoration: none;
   
}

a:hover {}
/* Заголовки H1-6 */

h1,
.h1 {
font-size: 2.9em;
 font-family: 'Lobster', cursive;    
text-align: center;
}
}
h2,
.h2 {
font-size: 1.6em;
}
h3,
.h3 {
font-size: 1.3em;
}
h4,
.h4 {
font-size: 1.5em;
}
h5,
.h5 {
font-size: 1.2em;
}
/* Частые стили */

.strike {
text-decoration: line-through;
}
.nobr {
white-space: nowrap;
}
.hide {
display: none;
}
.title_hide {
left: -9999px;
position: absolute;
top: -9999px;
overflow: hidden;
width: 0;
height: 0;
}
.uline {
text-decoration: underline;
}
.strike {
text-decoration: line-through;
}
.ultrabold {
font-weight: 500;
text-transform: uppercase;
}
.ultrabold4 {
font-weight: 400;
text-transform: uppercase;
}
.justify {
text-align: justify;
}
.center {
text-align: center;
}
.left {
float: left;
}
.right {
float: right;
}
fieldset {
border: 1px solid #ededed;
margin-bottom: 1.5em;
}
fieldset legend {
color: #555;
font-weight: 300;
}
.grey {
color: #94999e;
}
.grey a {
color: inherit;
}
.grey a:hover,
a.grey:hover {
color: #444;
}
.feedback {
float: left;
width: 100%;
overflow: hidden;
}
sup {
vertical-align: super;
font-size: smaller;
}
.over {
display: inline-block;
vertical-align: middle;
max-width: 100%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
a .over {
cursor: pointer;
}
.cover {
background-position: 50% 50%;
background-repeat: no-repeat;
-webkit-background-size: cover;
background-size: cover;
}
/* Настройка других элементов */

ul {
padding-left: 25px;
list-style: disc outside;
}
ol {
padding-left: 0px;
list-style: none;
}
p,
dl,
dd,
pre,
ul,
ol,
blockquote,
table,
fieldset {
margin-bottom: 1.5em;
}
strong,
b {
font-weight: bold
}
em,
cite,
i {
font-style: italic
}
caption {
text-align: left
}
th,
td {
vertical-align: middle
}
small,
.small {
font-size: .9em;
}
hr {
height: 0;
border: 0;
border-top: 2px solid #e3e4e6;
-moz-box-sizing: content-box;
box-sizing: content-box;
margin: 20px 0;
}
.clr {
clear: both
}
.clrfix:after {
clear: both;
content: "";
display: table;
}
.container_content {
max-width: 1200px;
width: 100%;
margin: 0 auto;
}
.if_info_if {
float: left;
width: 100%;
background: #fff;
}
#Go_Top {
position: fixed;
/* Положение кнопки */

bottom: 7px;
/* Расстояние снизу */

right: 25px;
/* Расстояние справа */

cursor: pointer;
opacity: 0.8;
}
#Go_Top img {
width: 40px;
height: 40px;
border-radius: 2px;
}
.nav_triangle {
position: fixed;
left: 0;
top: 0;
background: #111;
transition: 0.3s;
width: 50px;
height: 50px;
z-index: 100;
}
.nav_triangle:hover {
border-top: 100px solid rgba(0, 0, 0, 0.42);
transition: 0.3s;
}
.rating_bottom {
position: absolute;
z-index: 1;
top: 50%;
right: 0;
border: none !important;
padding: 0px !important;
font-size: 13px;
color: #ffc107;
-webkit-transition: all 0.35s;
-moz-transition: all 0.35s;
-o-transition: all 0.35s;
transition: all 0.35s;
text-transform: uppercase;
font-weight: 700;
-webkit-transform: translateY(20%);
-moz-transform: translateY(20%);
-ms-transform: translateY(20%);
-o-transform: translateY(20%);
transform: translateY(20%);
opacity: 1;
}
.rating_bottom:hover {
background: transparent !important;
}
header {
overflow: hidden;
float: left;
width: 100%;
-moz-background-size: 100%;
-webkit-background-size: 100%;
-o-background-size: 100%;
background-size: 100%;
background-size: cover!important;
position: relative;
background: url(/.png) fixed;
}
.logo {
z-index: 20;
margin: 30px 0px;
position: relative;
}
.logo_full {
margin: 0px;
position: relative;
z-index: 20;
margin-left: -40px;
}
.nav_vordes {
float: left;
width: 100%;
padding: 5px 0px;
height: 70px;
border-bottom: 1px solid #eee;
background: #fff;
-webkit-box-shadow: 0px 0px 5px 1px rgba(27, 27, 27, 0.1);
-moz-box-shadow: 0px 0px 5px 1px rgba(27, 27, 27, 0.1);
box-shadow: 0px 0px 5px 1px rgba(27, 27, 27, 0.1);
}
.travell {
float: left;
width: 100%;
list-style: none;
padding: 0px 10px;
margin: 0px;
margin-top: 8px;
white-space: nowrap;
}
.travell p {
float: left;
text-transform: uppercase;
margin: 13px 0px 0px 0px;
}
.travell p i {
margin: 0px 15px 0px 10px;
color: #c6c6c6;
}
.travell li {
display: block;
width: 45px;
height: 45px;
float: left;
margin-right: 35px;
position: relative;
}
.travell li a {
border: 1px solid #ccc;
display: block;
width: 45px;
height: 45px;
padding: 10px;
position: relative;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
transition: 0.3s;
}
.travell li a img {
width: 100%;
height: 100%;
float: left;
}
.travell li a:hover {
background: #333;
transition: 0.3s;
border: 1px solid #333;
transition: 0.3s;
}
.travell li a:hover::after {
opacity: 1;
left: -22px;
z-index: 10;
transition: 0.3s;
}
.travell li a::after {
position: absolute;
content: attr(data-title);
background: #333;
color: #fff;
top: 56px;
z-index: -10;
left: -42px;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
padding: 5px 12px;
transition: 0.3s;
opacity: 0;
}
.name_company {
width: 100%;
position: relative;
float: left;
margin: 0px;
text-align: center;
color: #fff;
font-weight: 400;
padding: 40px 0px;
-moz-background-size: 100%;
-webkit-background-size: 100%;
-o-background-size: 100%;
background-size: 100%;
background-size: cover!important;
background: url(../images/blue.jpg) center;
}
.cont_company {
float: left;
width: 100%;
padding: 0px 100px;
}
.cont_company h3 {
width: 100%;
font-size: 24px;
font-weight: 600;
text-align: center;
text-transform: uppercase;
}
.img_company_min {
float: left;
width: 33.3%;
padding: 10px;
}
.img_company_min img {
max-width: 100% !important;
border-radius: 2px;
height: 183px;
}
.img_company {
width: 100%;
margin: 10px 0px;
}
.img_company img {
max-width: 100% !important;
border-radius: 2px;
}
.iframe_company {
float: left;
width: 100%;
margin-bottom: -5px;
}
.iframe_company iframe {
width: 100%;
}
.colum_lic {
float: left;
width: 100%;
}
.col_licence {
float: left;
width: 25%;
padding: 10px;
margin: 30px 0px;
}
.col_licence img {
max-width: 100%;
}
.fade_op {
opacity: 0.3;
-webkit-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.body_opacity {
position: fixed;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3)!important;
top: 0;
}
.cont_header {
float: left;
width: 100%;
}
.section-bg-overlay {
position: absolute!important;
width: 100%;
height: 100%;
left: 0!important;
top: 0!important;
}
.infinite-background {
background: url(../images/cloud.png) 0px 50% repeat;
}
.infinite-background {
width: 1000em;
height: 100%;
-webkit-animation: infiniteBackground 200s linear infinite;
animation: infiniteBackground 200s linear infinite;
}
@-webkit-keyframes infiniteBackground {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
100% {
-webkit-transform: translate3d(-50%, 0, 0);
transform: translate3d(-50%, 0, 0)
}
}
@keyframes infiniteBackground {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
100% {
-webkit-transform: translate3d(-50%, 0, 0);
transform: translate3d(-50%, 0, 0)
}
}
.slideRight {
animation-name: slideRight;
-webkit-animation-name: slideRight;
animation-duration: 2s;
-webkit-animation-duration: 2s;
animation-timing-function: ease-in-out;
-webkit-animation-timing-function: ease-in-out;
visibility: visible !important;
}
@keyframes slideRight {
0% {
transform: translateX(-150%);
}
50% {
transform: translateX(8%);
}
65% {
transform: translateX(-4%);
}
80% {
transform: translateX(4%);
}
95% {
transform: translateX(-2%);
}
100% {
transform: translateX(0%);
}
}
@-webkit-keyframes slideRight {
0% {
-webkit-transform: translateX(-150%);
}
50% {
-webkit-transform: translateX(8%);
}
65% {
-webkit-transform: translateX(-4%);
}
80% {
-webkit-transform: translateX(4%);
}
95% {
-webkit-transform: translateX(-2%);
}
100% {
-webkit-transform: translateX(0%);
}
}
.main_top {
float: left;
width: 100%;
}
.cont_top {
float: left;
width: 25%;
height: 60px;
position: relative;
}
.cont_top img {
width: 100%;
height: 100%;
}
.nav_contents {
position: fixed;
height: 51px;
background: #414c57;
width: 100%;
z-index: 95;
}
.content_go {
float: left;
width: 100%;
margin-top: 50px;
margin-bottom: 50px;
}
.cols_padding {
float: left;
margin: 80px 0px 30px 0px;
width: 100%;
-webkit-box-shadow: 0px 0px 5px 1px rgba(17, 17, 17, 0.16);
-moz-box-shadow: 0px 0px 5px 1px rgba(17, 17, 17, 0.16);
box-shadow: 0px 0px 5px 1px rgba(17, 17, 17, 0.16);
background: #fff;
}
/*  */
/* slider info */
/*  */

.slider-info-wrap {
position: relative;
z-index: 20;
width: 100%;
}
.slider-info-wrap .slider-info-content .slider-info-item {
float: left;
width: 25%;
height: 65px;
position: relative;
z-index: 1;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media {
position: absolute;
z-index: 1;
bottom: 0;
height: 65px;
width: 100%;
overflow: hidden;
-webkit-transition: all 0.75s;
-moz-transition: all 0.75s;
-o-transition: all 0.75s;
transition: all 0.75s;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media:before {
content: '';
position: absolute;
z-index: 2;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.5);
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media img {
position: absolute;
z-index: 1;
bottom: 0;
top: 0;
width: 100%;
}
.info-text a {
color: #fff;
}
.gismet {
font-size: 18px !important;
}
.gismet span {
font-size: 16px !important;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media .info-item-text {
position: absolute;
z-index: 2;
top: 0;
width: 100%;
padding: 10px 20px;
line-height: 1;
color: #ffffff;
opacity: 0;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
.price a {
color: #ffc107;
}
.info-price a {
color: #fff;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media .info-item-text .info-price,
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media .info-item-text .info-temp {
font-size: 22px;
display: inline-block;
width: 49%;
-webkit-transform: translateY(40%);
-moz-transform: translateY(40%);
-ms-transform: translateY(40%);
-o-transform: translateY(40%);
transform: translateY(40%);
-webkit-transition: all 0.35s;
-moz-transition: all 0.35s;
-o-transition: all 0.35s;
transition: all 0.35s;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media .info-item-text .info-price span,
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media .info-item-text .info-temp span {
color: #ffc107;
font-size: 12px;
text-transform: uppercase;
display: block;
margin-bottom: 5px;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media .info-item-text .info-temp {
text-align: right;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media .info-item-text p.info-text {
margin-top: 30px;
line-height: 1.55;
-webkit-transform: translateY(60%);
-moz-transform: translateY(60%);
-ms-transform: translateY(60%);
-o-transform: translateY(60%);
transform: translateY(60%);
-webkit-transition: all 0.35s;
-moz-transition: all 0.35s;
-o-transition: all 0.35s;
transition: all 0.35s;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-content {
position: absolute;
z-index: 1;
bottom: 0;
width: 100%;
height: 100%;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-content .main-title {
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
height: 100%;
padding-bottom: 5px;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-content .main-title .title {
font-size: 18px;
color: #ffffff;
text-transform: uppercase;
margin-top: 13px;
display: inline-block;
font-weight: 400;
padding-left: 20px;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-content .main-title .title span {
font-size: 12px;
display: block;
margin-bottom: 5px;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-content .main-title .price {
font-size: 13px;
color: #ffffff;
line-height: 58px;
display: block;
float: right;
margin-right: 20px;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-content .main-title .price span {
color: #ffc107;
font-size: 18px;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-content .main-title .button {
position: absolute;
z-index: 1;
top: 50%;
right: 15px;
font-size: 13px;
color: #ffc107;
border: 1px solid #ffc107;
padding: 1px 10px;
margin-right: 10px;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
text-transform: uppercase;
font-weight: 700;
-webkit-transform: translateY(20%);
-moz-transform: translateY(20%);
-ms-transform: translateY(20%);
-o-transform: translateY(20%);
transform: translateY(20%);
opacity: 0;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-content .main-title .button:hover {
color: #ffffff;
background: #ffc107;
}
.slider-info-wrap .slider-info-content .slider-info-item:not(.mobile-on):hover .info-item-media,
.slider-info-wrap .slider-info-content .slider-info-item.active .info-item-media {
padding-top: 60%;
}
.slider-info-wrap .slider-info-content .slider-info-item:not(.mobile-on):hover .info-item-media .info-item-text,
.slider-info-wrap .slider-info-content .slider-info-item.active .info-item-media .info-item-text {
opacity: 1;
-webkit-transition-delay: 0.25s;
-moz-transition-delay: 0.25s;
-o-transition-delay: 0.25s;
transition-delay: 0.25s;
}
.slider-info-wrap .slider-info-content .slider-info-item:not(.mobile-on):hover .info-item-media .info-item-text .info-price,
.slider-info-wrap .slider-info-content .slider-info-item:not(.mobile-on):hover .info-item-media .info-item-text .info-temp,
.slider-info-wrap .slider-info-content .slider-info-item.active .info-item-media .info-item-text .info-price,
.slider-info-wrap .slider-info-content .slider-info-item.active .info-item-media .info-item-text .info-temp {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
-webkit-transition-delay: 0.25s;
-moz-transition-delay: 0.25s;
-o-transition-delay: 0.25s;
transition-delay: 0.25s;
}
.slider-info-wrap .slider-info-content .slider-info-item:not(.mobile-on):hover .info-item-media .info-item-text p.info-text,
.slider-info-wrap .slider-info-content .slider-info-item.active .info-item-media .info-item-text p.info-text {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
-webkit-transition-delay: 0.25s;
-moz-transition-delay: 0.25s;
-o-transition-delay: 0.25s;
transition-delay: 0.25s;
}
.slider-info-wrap .slider-info-content .slider-info-item:not(.mobile-on):hover .info-item-content .main-title,
.slider-info-wrap .slider-info-content .slider-info-item.active .info-item-content .main-title {
-webkit-transition-delay: 0.5s;
-moz-transition-delay: 0.5s;
-o-transition-delay: 0.5s;
transition-delay: 0.5s;
-webkit-transform: translateY(-15px);
-moz-transform: translateY(-15px);
-ms-transform: translateY(-15px);
-o-transform: translateY(-15px);
transform: translateY(-15px);
}
.slider-info-wrap .slider-info-content .slider-info-item:not(.mobile-on):hover .info-item-content .main-title .price,
.slider-info-wrap .slider-info-content .slider-info-item.active .info-item-content .main-title .price {
opacity: 0;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
.slider-info-wrap .slider-info-content .slider-info-item:not(.mobile-on):hover .info-item-content .main-title .button,
.slider-info-wrap .slider-info-content .slider-info-item.active .info-item-content .main-title .button {
opacity: 1;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
@media (max-width: 1400px) {
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media .info-item-text p.info-text {
margin-top: 0;
}
}
@media (max-width: 1200px) {
.slider-info-wrap .slider-info-content .slider-info-item {
width: 50%;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media .info-item-text p.info-text {
margin-top: 30px;
}
}
@media (max-width: 698px) {
.slider-info-wrap .slider-info-content .slider-info-item {
width: 100%;
}
.slider-info-wrap .slider-info-content .slider-info-item .info-item-media .info-item-text p.info-text {
margin-top: 5px;
}
}
/*  */
/* Features tours */
/*  */

.features-tours-full-width .features-tours-wrap .features-tours-item {
width: 25%;
float: left;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media {
position: relative;
height: 247px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media:before {
content: '';
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.3);
-webkit-transition: all 0.35s;
-moz-transition: all 0.35s;
-o-transition: all 0.35s;
transition: all 0.35s;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media img {
width: 100%;
height: 247px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top {
position: absolute;
z-index: 1;
top: 0;
width: -webkit-calc( 100% - 40px);
width: -moz-calc( 100% - 40px);
width: calc( 100% - 40px);
left: 20px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price,
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp {
font-size: 22px;
display: inline-block;
width: 49%;
-webkit-transition: all 0.35s;
-moz-transition: all 0.35s;
-o-transition: all 0.35s;
transition: all 0.35s;
color: #ffffff;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price span,
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp span {
color: #ffc107;
font-size: 11px;
text-transform: uppercase;
display: block;
margin-bottom: 5px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price {
-webkit-transform: translateY(40%);
-moz-transform: translateY(40%);
-ms-transform: translateY(40%);
-o-transform: translateY(40%);
transform: translateY(40%);
opacity: 0;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp {
text-align: right;
margin-top: 30px;
-webkit-transform: translateY(10px);
-moz-transform: translateY(10px);
-ms-transform: translateY(10px);
-o-transform: translateY(10px);
transform: translateY(10px);
-webkit-transition: all 0.35s;
-moz-transition: all 0.35s;
-o-transition: all 0.35s;
transition: all 0.35s;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top p.info-text {
margin-top: 20px;
line-height: 1.55;
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
-webkit-transition: all 0.35s;
-moz-transition: all 0.35s;
-o-transition: all 0.35s;
transition: all 0.35s;
color: #ffffff;
opacity: 0;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot {
position: absolute;
z-index: 1;
bottom: 10px;
left: 20px;
width: -webkit-calc( 100% - 40px);
width: -moz-calc( 100% - 40px);
width: calc( 100% - 40px);
-webkit-transition: all 0.2s;
-moz-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .title {
color: #ffffff;
text-transform: uppercase;
margin: 0;
display: inline-block;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .title span {
font-size: 12px;
display: block;
margin-bottom: 5px;
color: #ffc107;
font-weight: 400;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .button {
position: absolute;
z-index: 1;
top: 50%;
right: 0;
font-size: 13px;
color: #ffc107;
border: 1px solid #ffc107;
padding: 1px 10px;
-webkit-transition: all 0.35s;
-moz-transition: all 0.35s;
-o-transition: all 0.35s;
transition: all 0.35s;
text-transform: uppercase;
font-weight: 700;
-webkit-transform: translateY(20%);
-moz-transform: translateY(20%);
-ms-transform: translateY(20%);
-o-transform: translateY(20%);
transform: translateY(20%);
opacity: 0;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .button:hover {
color: #ffffff;
background: #ffc107;
}
.features-tours-full-width .features-tours-wrap .features-tours-item:hover .features-media:before {
background: rgba(0, 0, 0, 0.5);
}
.features-tours-full-width .features-tours-wrap .features-tours-item:hover .features-media .features-info-top {
opacity: 1;
}
.features-tours-full-width .features-tours-wrap .features-tours-item:hover .features-media .features-info-top .info-price {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price a {
color: #fff;
}
.features-tours-full-width .features-tours-wrap .features-tours-item:hover .features-media .features-info-top .info-temp {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
-webkit-transition-delay: 0.15s;
-moz-transition-delay: 0.15s;
-o-transition-delay: 0.15s;
transition-delay: 0.15s;
-webkit-transition: all 0.2s;
-moz-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
}
.features-tours-full-width .features-tours-wrap .features-tours-item:hover .features-media .features-info-top p.info-text {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
opacity: 1;
}
.features-tours-full-width .features-tours-wrap .features-tours-item:hover .features-media .features-info-bot {
bottom: 20px;
-webkit-transition-delay: 0.15s;
-moz-transition-delay: 0.15s;
-o-transition-delay: 0.15s;
transition-delay: 0.15s;
}
.features-tours-full-width .features-tours-wrap .features-tours-item:hover .features-media .features-info-bot .button {
opacity: 1;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
@media (max-width: 1400px) {
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price,
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp {
font-size: 18px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price span,
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp span {
font-size: 9px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top p.info-text {
margin-top: 10px;
font-size: 14px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .title {
font-size: 15px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .title span {
font-size: 10px;
}
}
@media (max-width: 1200px) {
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top {
left: 10px;
width: -webkit-calc( 100% - 20px);
width: -moz-calc( 100% - 20px);
width: calc( 100% - 20px);
}
.gismet a {
color: #fff !important;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price,
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp {
font-size: 16px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price span,
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp span {
font-size: 8px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp {
margin-top: 10px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top p.info-text {
margin-top: 10px;
font-size: 14px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot {
left: 10px;
bottom: 10px;
width: -webkit-calc( 100% - 20px);
width: -moz-calc( 100% - 20px);
width: calc( 100% - 20px);
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .title {
font-size: 14px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .title span {
font-size: 9px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .button {
font-size: 11px;
padding: 1.5px 10px;
}
}
@media (max-width: 992px) {
.features-tours-full-width .features-tours-wrap .features-tours-item {
width: 50%;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top {
width: -webkit-calc( 100% - 40px);
width: -moz-calc( 100% - 40px);
width: calc( 100% - 40px);
left: 20px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price,
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp {
font-size: 22px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price span,
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp span {
font-size: 12px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp {
margin-top: 30px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top p.info-text {
margin-top: 20px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot {
bottom: 10px;
left: 20px;
width: -webkit-calc( 100% - 40px);
width: -moz-calc( 100% - 40px);
width: calc( 100% - 40px);
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .title {
font-size: 26px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .title span {
font-size: 12px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .button {
font-size: 13px;
padding: 1px 10px;
}
}
@media (max-width: 698px) {
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price,
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp {
font-size: 18px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-price span,
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top .info-temp span {
font-size: 9px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-top p.info-text {
margin-top: 10px;
font-size: 14px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .title {
font-size: 15px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media .features-info-bot .title span {
font-size: 10px;
}
}
@media (max-width: 560px) {
.features-tours-full-width .features-tours-wrap .features-tours-item {
width: 100%;
}
}
.title-section-top {
font-size: 12px;
color: #ffc107;
text-transform: uppercase;
font-weight: 400;
margin: 0;
}
.title-section {
line-height: 1.3;
font-weight: 400;
text-transform: uppercase;
margin: 0;
}
.cws_divider,
hr {
position: relative;
z-index: 1;
display: block;
width: 100%;
border-bottom: 2px solid #ffc107;
}
.go_filters {
width: 100%;
font-size: 18px;
float: left;
margin: 0px;
position: relative;
color: #fff;
text-shadow: 0px 0px 8px #000;
}
.go_filters h2 {
font-size: 38px;
font-weight: 400;
text-transform: uppercase;
margin: 5px 0px;
color: #fff;
}
.go_filters h6 {
font-size: 15px;
font-weight: 400;
text-transform: uppercase;
margin: 5px 0px;
color: #ffc107;
}
.go_filters p {
font-size: 17px;
margin: 0px;
padding: 5px 0px;
}
.go_filters_next {
width: 100%;
font-size: 18px;
float: left;
padding: 40px 0px 40px 0px;
position: relative;
color: #333;
background: #fff url(../images/pattern5.png);
}
.big_back {
background: #ffc107 url(../images/pattern5.png);
}
.big_back h6 {
color: #fff !important;
}
.go_filters_next h2 {
font-size: 38px;
font-weight: 400;
text-transform: uppercase;
margin: 5px 0px;
color: #333;
position: relative;
}
.go_filters_next h6 {
font-size: 15px;
font-weight: 400;
text-transform: uppercase;
margin: 5px 0px;
color: #ffc107;
}
.go_filters_next p {
font-size: 17px;
margin: 0px;
padding: 5px 0px;
}
.icon_go_filtres {
position: absolute;
width: 45px;
height: 45px;
left: 37.2%;
top: 0;
}
.icon_go_filtres img {
width: 100%;
}
.ic_co {
position: absolute;
width: 45px;
height: 45px;
left: 26%;
top: 3px;
}
.ic_co img {
width: 100%;
}
.ic_co_part {
position: absolute;
width: 45px;
height: 45px;
left: 30.7%;
top: -3px;
}
.ic_co_part img {
width: 100%;
}
.ic_co_part1 {
position: absolute;
width: 45px;
height: 45px;
left: 32.7%;
top: -3px;
}
.ic_co_part1 img {
width: 100%;
}
.slider-info-content {
float: left;
width: 100%;
margin-top: 50px;
}
.filtres_clock p {
font-size: 17px;
margin: 0px;
padding: 5px 0px;
color: #fff;
font-weight: 400;
text-shadow: 0px 0px 8px #000;
}
.filtres_clock {
float: left;
width: 100%;
position: relative;
padding-top: 52px;
}
/* --- Информация об ошибках --- */

.rengers_ti {
float: left;
width: 100%;
}
.alert {
float: left;
width: 100%;
margin: 5px 0px;
background: #fcf6d2;
padding: 10px;
font-size: 14px;
font-weight: 300;
border-radius: 2px;
}
.miniuons {
color: #fff !important;
margin-bottom: -3px;
}
.miniuons img {
width: 28px;
height: 28px;
}
.cont_alls {
float: left;
width: 100%;
background: #fff;
}
.navigation-button {
text-align: center;
width: 100%;
}
.navigation-button a {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
position: relative;
margin: 30px 0px 20px 0px;
}
.navigation-button a span {
position: absolute;
height: 100%;
width: 0;
left: 0;
top: 0;
background: #5ac654;
}
.navigation-button span {
display: none;
}
.navigation-button a {
display: inline-block;
background: #ffc107;
color: #fff;
text-transform: uppercase;
font-weight: 500;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
border: 1px solid #ffc107;
font-size: 24px;
padding: 10px 0px;
width: 100%;
margin: 0px;
}
.button .fa.right,
.navigation-button a .fa.right {
margin-left: 5px;
}
.button .fa.left,
.navigation-button a .fa.left {
margin-right: 5px;
}
.commain {
float: left;
width: 100%;
padding: 10px;
}
.cont_userinfo_me {
width: 100%;
position: relative;
height: 380px;
float: left;
-moz-background-size: 100%;
-webkit-background-size: 100%;
-o-background-size: 100%;
background-size: 100%;
background-size: cover!important;
background: url(../images/blue.jpg) center;
}
.cont_userinfo_me:before {
height: 100%;
margin: auto;
position: absolute;
width: 100%;
content: '';
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.3) 100%);
background: -webkit-gradient(linear, top left, bottom left, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3)));
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.3) 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.3) 100%);
}
.all_user_information {
float: left;
width: 100%;
height: 90px;
overflow: hidden;
}
.out_bl {
width: 20%;
float: left;
padding: 5px;
height: 90px;
border-right: 1px solid #eee;
}
.out_bl b {
width: 100%;
font-weight: 400;
float: left;
text-align: center;
font-size: 28px;
padding: 10px 0px;
}
.out_bl p {
width: 100%;
font-weight: 400;
float: left;
margin: 0px;
padding: 0px;
text-align: center;
font-size: 18px;
}
.ceter_avatar {
width: 170px;
height: 170px;
margin-top: 40px;
border-radius: 50%;
position: relative;
z-index: 3;
border: 3px solid #fff;
}
.ceter_avatar img {
width: 100%;
border-radius: 50%;
}
.mega_mame {
margin-top: 10px;
font-size: 28px;
color: #fff;
font-weight: 600;
z-index: 3;
position: relative;
}
.mega_mamex {
margin-top: 5px;
font-size: 14px;
color: #fff;
font-weight: 400;
z-index: 3;
position: relative;
}
.pmlist {
float: right;
box-shadow: 0 0 1px #d1d1d1;
padding: 10px;
color: #111;
width: 65%;
background: #fff;
}
.block-obig {
float: left;
width: 34.3%;
padding: 10px;
background: #fff;
box-shadow: 0 0 1px #d1d1d1;
}
.block_title1 {
float: left;
width: 100%;
text-align: center;
color: #111;
}
/* --- PM --- */

.pm-box {
float: left;
width: 100%;
}
#pm-menu:after {
content: "";
clear: both;
display: block;
}
#pm-menu {} #pm-menu > a {
color: #fff;
font-weight: 500;
padding: 10px 16px;
font-size: 16px;
text-decoration: none !important;
text-align: center;
border-radius: 2px;
background: #5ac654;
float: left;
margin: 0px 5px 6px 0px;
}
#pm-menu > a:first-child {
border-radius: 2px 0 0 0;
}
#pm-menu > a:hover {
color: #fff;
}
.pm_status {
padding: 20px 50px 0px 0px;
}
.pm_progress_bar {
background-color: #f1f1f1;
margin-bottom: 10px;
border-radius: 2px;
overflow: hidden;
}
.pm_progress_bar span {
background: #111;
font-size: 0;
height: 10px;
display: block;
overflow: hidden
}
.newheans {
width: 100%;
padding: 10px 0 10px 0;
margin: 0px;
color: #caced1;
font-weight: 700;
font-size: 24px;
text-transform: uppercase;
}
.clr {
clear: both
}
.clrfix:after {
clear: both;
content: "";
display: table;
}
.stoping-res {
float: left;
width: 100%;
}
.stoping-res img {
width: 100%;
}
.ferum {
width: 64.5% !important;
margin-top: -10px !important;
float: left;
}
/* --- Страница пользователя --- */

.userstop td,
.pm td.pm_list,
.pm td.pm_head {
border-bottom: 1px solid #eee;
background: transparent;
padding: 10px;
color: #111;
font-weight: 500;
font-size: 16px;
}
.userinfo_top {
position: relative;
}
.userinfo_top:after {
clear: both;
display: block;
content: "";
}
.userinfo_top .avatar {
float: left;
margin: 0 30px 0 0;
padding: 6px;
border: 1px solid #d7d9db;
border-radius: 50%;
}
.userinfo_status {
margin: -1em 0 1.2em 0;
font-size: .9em;
}
.user_tab {
list-style: none;
padding: 0;
margin: 0;
display: inline-block;
border: 1px solid #e7e7e7;
border-radius: 20px;
}
.user_tab:after {
clear: both;
display: block;
content: "";
}
.user_tab > li {
float: left;
}
.user_tab > li:first-child > a {
border-left-width: 0;
}
.user_tab > li > a {
border-left: 1px solid #e7e7e7;
display: block;
text-decoration: none !important;
color: inherit;
font-size: .9em;
font-weight: bold;
color: #999;
line-height: 20px;
padding: 6px 20px;
}
.user_tab > li.active > a {
color: inherit;
}
.usinf {
list-style: none;
padding: 0;
margin: 0;
}
.usinf > li {
padding: 12px 0;
border-top: 1px solid #ccc;
}
.usinf > li:first-child {
border-top-width: 0;
}
.ui-c1,
.ui-c2 {
display: inline-block;
vertical-align: top;
}
.ui-c1 {
width: 30%;
margin-right: 5%;
}
.ui-c2 {
width: 60%;
}
/* Окно пользователя */

.dle-popup-userprofile .ui-dialog-content {
padding: 0;
color: #707070;
}
.popup_userinfo_top {
background-color: #f4f6f7;
padding: 5px;
text-align: center;
}
.popup_userinfo_top .avatar {
vertical-align: top;
border-radius: 50%;
border: 1px solid #1a1a1a;
}
.popup_userinfo_top .avatar .cover {
display: block;
width: 80px;
height: 80px;
border: 6px solid #fff;
}
.popup_userinfo.useronline .avatar {
border-color: #95c00e;
}
.popup_userinfo > ul {
list-style: none;
padding: 0;
margin: 0;
}
.popup_userinfo .usinf {
padding: 0px 20px;
font-size: 16px;
}
.hightsstorys {
float: left;
width: 100%;
font-size: 28px;
font-weight: 400;
padding: 10px 0px;
color: #fff;
position: relative;
z-index: 3;
background: #ffc107;
box-shadow: 0 0 1px #d1d1d1;
margin: 0px 0px 0px 0px;
text-align: center;
}
.hightsstorys:before {
content: '';
display: block;
position: absolute;
z-index: -1;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-repeat: repeat;
background-image: url(../images/pattern5.png);
}
.hightsstorys h1 {
z-index: 3;
}
.addnews {
float: left;
width: 100%;
}
.addhit {
float: left;
width: 100%;
font-size: 15px;
}
.cont_info {
float: left;
width: 100%;
margin-left: -10px;
padding: 60px 0px 40px 0px;
}
.mediatech_m {
margin-top: 50px !important;
z-index: 10;
}
.cols_infos {
float: left;
width: 25%;
padding: 10px;
}
.all_icon_info {
width: 70px;
height: 70px;
padding: 10px;
border-radius: 2px;
float: left;
background: #6dc82b;
}
.all_icon_info img {
width: 100%;
}
.cols_infos:hover > .all_icon_info img {
-webkit-animation: toBottomFromTop 0.3s forwards;
-moz-animation: toBottomFromTop 0.3s forwards;
animation: toBottomFromTop 0.3s forwards;
}
@-webkit-keyframes toBottomFromTop {
49% {
-webkit-transform: translateY(100%);
}
50% {
opacity: 0;
-webkit-transform: translateY(-100%);
}
51% {
opacity: 1;
}
}
@-moz-keyframes toBottomFromTop {
49% {
-moz-transform: translateY(100%);
}
50% {
opacity: 0;
-moz-transform: translateY(-100%);
}
51% {
opacity: 1;
}
}
@keyframes toBottomFromTop {
49% {
transform: translateY(100%);
}
50% {
opacity: 0;
transform: translateY(-100%);
}
51% {
opacity: 1;
}
}
.title_info {
float: left;
margin: 0px;
width: 50%;
padding-top: 5px;
color: #2c3e50;
padding-left: 20px;
font-size: 28px;
line-height: 28px;
font-weight: 400
}
.all_info_conts {
float: left;
width: 100%;
font-size: 16px;
color: #444;
font-family: 'ProximaNovaCond-Light';
}
.video_cont {
float: left;
width: 100%;
height: 600px;
-moz-background-size: 100%;
-webkit-background-size: 100%;
-o-background-size: 100%;
background-attachment: fixed;
background-size: 100%;
background-size: cover!important;
position: relative;
background: url(/400.webp) fixed center;
margin-bottom: 40px;    
}
.video_cont:before {
content: '';
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.4);
-webkit-transition: all 0.35s;
-moz-transition: all 0.35s;
-o-transition: all 0.35s;
transition: all 0.35s;
}
.cont_video {
float: left;
width: 100%;
z-index: 10;
padding: 0px 10px;
position: relative;
}
.el_iframe {
float: left;
width: 57%;
margin-top: 50px;
}
.el_iframe iframe {
width: 100%;
height: 360px;
}
.right_titles {
float: left;
width: 42%;
margin-top: 50px;
padding-left: 40px;
}
.right_titles p {
font-size: 22px;
color: #fff;
font-weight: 400;
padding: 0px;
margin: 0px;
text-shadow: 0px 0px 8px #000;
}
.cont_hotel {
float: left;
width: 100%;
background: #fff;
padding-bottom: 85px;
}
.col-md-6 {
float: left;
width: 50%;
height: 240px;
margin-bottom: 20px;
padding: 10px;
}
/*  */
/* Recomended items */
/*  */

.recom-item {
position: relative;
z-index: 1;
background: #ffffff;
overflow: hidden;
height: 240px;
margin-top: 12px;
border-left: 1px solid #f5f5f5;
max-width: 770px;
-webkit-box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.2);
box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.2);
margin-right: auto;
margin-left: auto;
}
.recom-item.border {
border: 1px solid #f5f5f5;
}
.recom-item:hover {
-webkit-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.2);
box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
.recom-item .recom-item-body {
width: 53%;
padding: 30px 0 0 40px;
position: absolute;
z-index: 2;
top: 0;
left: 0;
height: 100%;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
background: #ffffff;
}
.recom-item .recom-item-body:before {
content: '';
position: absolute;
z-index: -1;
top: 0;
right: 0;
height: 100%;
width: 100%;
-webkit-transform: skew(-15deg) translateX(32px);
-moz-transform: skew(-15deg) translateX(32px);
-ms-transform: skew(-15deg) translateX(32px);
-o-transform: skew(-15deg) translateX(32px);
transform: skew(-15deg) translateX(32px);
background: #ffffff;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.recom-item .recom-item-body .blog-title {
margin-top: 0;
text-transform: uppercase;
margin-bottom: 0;
font-size: 21px;
color: #111;
font-weight: 600;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.recom-item .recom-item-body .blog-title:hover {
color: #ffc107;
}
.recom-price {
color: #bbb;
}
.recom-price i {
font-size: 18px;
font-weight: 400;
}
.rat_hot {
margin: 10px 0px 5px 0px
}
.text_facture {
margin-top: 5px;
}
.recom-item .recom-item-body .recom-price span {
font-size: 26px;
color: #424d58;
}
.minimal {
font-size: 14px;
margin-top: 8px !important;
}
.features-tours-item:hover > .features-media > .features-info-top > .info_filter {
margin-top: -15px;
opacity: 1;
transition: 0.4s;
}
.info_filter {
float: left;
width: 100%;
height: 24px;
opacity: 0;
transition: 0.4s;
margin-top: 15px;
}
.info_filter i {
float: left;
width: 18px !important;
height: 18px !important;
}
.info_filter i img {
width: 100% !important;
height: 24px !important;
}
.info_filter b {
float: left;
font-size: 18px;
font-weight: 400;
color: #fff;
margin-left: 7px;
margin-right: 10px;
}
.infoblock {
padding: 10px 15px;
font-weight: normal;
margin-bottom: 50px;
background: #5ac654;
color: #fff;
border: 1px solid rgba(84, 176, 79, .8);
}
.infoblock .title {
font-size: 28px;
margin-bottom: 15px;
color: #fff;
font-weight: lighter;
}
.recom-item .recom-item-body .action {
position: absolute;
z-index: -2;
top: 30px;
right: -108px;
color: #ffffff;
background: #ffc107;
font-size: 16px;
padding: 6px 15px 6px 30px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
font-weight: 600;
}
.recom-item .recom-media {
position: relative;
z-index: 1;
width: 47%;
height: 100%;
float: right;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.recom-item .recom-media .pic:before {
content: '';
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
top: 0;
left: 0;
-webkit-box-shadow: inset 0px -100px 60px -40px rgba(0, 0, 0, 0.8);
-moz-box-shadow: inset 0px -100px 60px -40px rgba(0, 0, 0, 0.8);
box-shadow: inset 0px -100px 60px -40px rgba(0, 0, 0, 0.8);
}
.recom-item .recom-media .pic img {
width: 100%;
height: 100%;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.recom-item .recom-media .location {
position: absolute;
z-index: 1;
bottom: 5px;
left: 50%;
width: 100%;
font-size: 18px;
text-align: center;
color: #ffffff;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
}
.recom-item .recom-media:hover {
width: 100%;
}
.recom-item .recom-media:hover + .recom-item-body {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%);
}
.recom-item .recom-media:hover + .recom-item-body:before {
-webkit-transform: skew(0) translateX(0);
-moz-transform: skew(0) translateX(0);
-ms-transform: skew(0) translateX(0);
-o-transform: skew(0) translateX(0);
transform: skew(0) translateX(0);
}
.recom-item .recom-media:hover + .recom-item-body .cws-button:before {
-webkit-transform: skew(0) translateX(0);
-moz-transform: skew(0) translateX(0);
-ms-transform: skew(0) translateX(0);
-o-transform: skew(0) translateX(0);
transform: skew(0) translateX(0);
}
.recom-item .recom-media:hover + .recom-item-body .action {
right: -65px;
}
@media (max-width: 560px) {
.recom-item .recom-item-body {
padding: 15px 0 0 15px;
}
.recom-item .recom-item-body .blog-title {
font-size: 14px;
}
.recom-item .recom-item-body .recom-price span {
font-size: 20px;
}
.recom-item .recom-item-body p {
font-size: 14px;
line-height: 1.5;
}
.recom-item .recom-item-body .recom-button {
line-height: 30px;
bottom: 30px;
left: 10px;
font-size: 10px;
width: 100%;
text-align: center;
}
.recom-item .recom-item-body .cws-button {
min-width: 100%;
padding: 3px 0 3px 20px;
right: 2px;
margin: 0 !important;
}
.recom-item .recom-item-body .action {
top: 20px;
right: -100px;
font-size: 14px;
padding: 2px 10px 2px 20px;
}
.recom-item .recom-media .location {
font-size: 12px;
}
.recom-item .recom-media:hover + .recom-item-body .action {
right: -50px;
}
}
.widget_vk {
float: left;
width: 33%;
padding: 10px;
margin-top: 10px;
}
.all_text_info {
float: left;
width: 67%;
padding: 10px 10px 10px 30px;
margin-top: 10px;
font-size: 16px;
color: #667;
line-height: 27px;
}
.ava_com {
margin-top: -72px;
width: 124px;
float: left;
border-radius: 50%;
height: 124px;
margin-left: 31%;
border: 3px solid #fff;
}
.ava_com img {
width: 100%;
border-radius: 50%;
border: 3px solid #eee;
}
.commtxt {
float: left;
width: 100%;
font-size: 14px;
line-height: 21px;
padding: 5px;
}
.comic_con {
width: 33.3%;
padding: 10px;
float: left;
}
.comment_cols {
width: 100%;
float: left;
padding: 10px;
border: 1px solid #f1f1f1;
border-radius: 2px;
margin-top: 80px;
}
.reload-full-block {
float: right;
width: 76%;
margin-right: -5px;
color: #707070;
}
.name_coms {
float: left;
width: 100%;
font-size: 22px;
color: #667;
padding: 5px 0px;
text-align: center;
}
.name_coms a {
color: #444;
}
.reload-full-block a {
color: #7c7978;
font-size: 13px;
float: left;
margin-top: 15px;
}
.but-days-comm {
float: left;
padding: 0px 10px 0px 10px;
}
.icon-comms {
width: 16px;
height: 16px;
transition: 0.3s;
float: right;
position: relative;
margin-top: 0px;
}
.icon-comms img {
width: 100%;
height: 100%;
}
.icon-comms::after {
position: absolute;
content: attr(data-title);
background: #111;
color: #fff;
top: 27px;
z-index: 10;
left: -65px;
padding: 5px 15px;
transition: 0.3s;
opacity: 0;
border-radius: 3px;
}
.icon-comms:hover::after {
opacity: 1;
transition: 0.3s;
}
.min_testorial {
width: 22% !important;
margin-top: 0px !important;
}
.testimonial-item {
background: #ffffff;
margin: 0 15px;
padding-bottom: 10px;
max-width: 370px;
float: left;
margin-top: 45px;
border-radius: 2px;
}
.testimonial-item .testimonial-top {
position: relative;
z-index: 1;
height: 100px;
}
.testimonial-item .testimonial-top .pic {
position: relative;
z-index: 1;
height: 100px;
overflow: hidden;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.testimonial-item .testimonial-top .pic:before {
content: '';
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgb(51 122 183);
}
.testimonial-item .testimonial-top .pic img {
position: absolute;
z-index: -1;
top: -35%;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
max-width: none;
}
.testimonial-item .testimonial-top .author {
position: absolute;
z-index: 1;
left: 50%;
top: 50%;
width: 124px;
height: 124px;
-webkit-transform: translate3d(-50%, -10px, 0);
-moz-transform: translate3d(-50%, -10px, 0);
transform: translate3d(-50%, -10px, 0);
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.testimonial-item .testimonial-top .author img {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
width: 100%;

}
.testimonial-item .testimonial-body {
text-align: center;
margin-top: 90px;
}
.testimonial-item .testimonial-body .title {
font-weight: 400;
margin-bottom: 0;
}
.testimonial-item .testimonial-body .title span {
font-weight: 700;
}
.testimonial-item .testimonial-body p {
padding: 0 13%;
margin-bottom: 20px;
}
.testimonial-item .testimonial-body .testimonial-button {
color: #424d58;
font-size: 12px;
position: relative;
z-index: 1;
text-transform: uppercase;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
font-weight: 700;
}
.testimonial-item .testimonial-body .testimonial-button:before {
content: '';
position: absolute;
z-index: 1;
bottom: -5px;
left: 50%;
width: 30px;
height: 2px;
background: #ffc107;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.testimonial-item .testimonial-body .testimonial-button:hover {
color: #a9b5c1;
}
.testimonial-item .testimonial-body .testimonial-button:hover:before {
width: 100%;
}
.testimonial-item:hover .testimonial-top .pic {
height: 180px;
}
.testimonial-item:hover .testimonial-top .pic img {
top: 0;
}
.testimonial-item:hover .testimonial-top .author {
-webkit-transform: translate3d(-50%, -20px, 0);
-moz-transform: translate3d(-50%, -20px, 0);
transform: translate3d(-50%, -20px, 0);
}
.flaticon-return13 {
display: inline-block;
-webkit-transform: scaleX(-1);
-moz-transform: scaleX(-1);
-ms-transform: scaleX(-1);
-o-transform: scaleX(-1);
transform: scaleX(-1);
margin-left: 6px;
}
@media (max-width: 420px) {
.author {
margin: 0 0 20px 0;
float: none;
}
.comment-text {
margin-left: 0;
}
.comment-container .comment-text:before {
left: 50%;
top: -14px;
-webkit-transform: rotate(-45deg) translateX(-50%);
-moz-transform: rotate(-45deg) translateX(-50%);
-ms-transform: rotate(-45deg) translateX(-50%);
-o-transform: rotate(-45deg) translateX(-50%);
transform: rotate(-45deg) translateX(-50%);
}
.comment-container.white .comment-text:before {
left: 50%;
top: -9px;
-webkit-transform: rotate(90deg) translate(-50%, 50%);
-moz-transform: rotate(90deg) translate(-50%, 50%);
-ms-transform: rotate(90deg) translate(-50%, 50%);
-o-transform: rotate(90deg) translate(-50%, 50%);
transform: rotate(90deg) translate(-50%, 50%);
}
}
#owl-demo .item {
margin: 15px 20px 15px 10px;
}
.item img {
max-width: 100%;
transition: 0.3s;
}
.item img:hover {
transition: 0.3s;
}
.lof {
padding: 15px;
margin-top: 0px !important;
}
/* clearfix */

.owl-carousel:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
/* display none until init */

.owl-carousel {
display: none;
position: relative;
overflow: hidden;
width: 100%;
}
.owl-carousel .owl-wrapper {
position: relative;
display: inline-block;
-webkit-transform: translate3d(0px, 0px, 0px);
-webkit-perspective: 1000;
}
.owl-carousel .owl-item {
float: left;
}
.owl-controlls .owl-page,
.owl-controlls .owl-buttons {
cursor: pointer;
}
.owl-controlls {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */

.grabbing {
cursor: url(grabbing.png) 8 8, move;
}
/* fix */

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
}
.owl-theme .owl-controlls {
text-align: center;
}
/* Styling Next and Prev buttons */

.owl-theme .owl-controlls .owl-buttons div {
color: #FFF;
display: inline-block;
zoom: 1;
*display: inline;
/*IE7 life-saver */

margin: 5px;
padding: 3px 10px;
font-size: 12px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
background: #869791;
opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */

.owl-theme .owl-controlls.clickable .owl-buttons div:hover {
opacity: 1;
text-decoration: none;
}
/* Styling Pagination*/

.owl-theme .owl-controlls .owl-page {
display: inline-block;
zoom: 1;
*display: inline;
/*IE7 life-saver */
}
.owl-theme .owl-controlls .owl-page span {
display: block;
width: 12px;
height: 12px;
margin: 5px 7px;
opacity: 0.5;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: #869791;
}
.owl-theme .owl-controlls .owl-page.active span,
.owl-theme .owl-controlls.clickable .owl-page:hover span {
opacity: 1;
}
/* If PaginationNumbers is true */

.owl-theme .owl-controlls .owl-page span.owl-numbers {
height: auto;
width: auto;
color: #FFF;
padding: 2px 10px;
font-size: 12px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
}
.section_message {
float: left;
width: 100%;
position: relative;
height: 231px;
background: #ffc107;
}
.section_message:before {
content: '';
display: block;
position: absolute;
z-index: 0;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-repeat: repeat;
background-image: url(../images/pattern5.png);
}
.cont_rs_post {
float: left;
width: 100%;
z-index: 3;
position: relative;
padding-top: 40px;
}
.col_use_post {
float: left;
position: relative;
width: 43%;
padding-left: 20px;
margin-top: 50px;
text-transform: uppercase;
}
.col_use_post h6 {
color: #111;
font-size: 14px;
font-weight: 600;
margin: 0px;
padding-left: 4px;
}
.col_use_post h2 {
color: #fff;
font-size: 34px;
font-weight: 400;
margin: 0px;
}
.col_use_metod {
float: left;
padding-left: 30px;
margin-top: 57px;
width: 56%;
padding-right: 20px;
}
.subscribetextbgpost {
float: left;
width: 100%;
position: relative;
}
.subscribetextbgpost input {
width: 100%;
position: relative;
border-radius: 2px;
box-shadow: none !important;
border: 1px solid #fff;
font-size: 16px;
color: #777;
}
.dino {
position: absolute !important;
right: 5px;
top: 5px;
width: 32px !important;
}
.dino img {
width: 100% !important;
}
footer {
float: left;
width: 100%;
background: url(../images/footer-bg.jpg);
}
.foot_cols {
float: left;
width: 100%;
padding: 40px 10px 10px 10px;
}
.logo_foot img {
max-width: 100%;
}
.logo_foot p {
color: #a9b5c1;
font-size: 16px;
line-height: 24px;
}
.icon_cont {
font-size: 24px;
}
.icon_cont a {
color: #a9b5c1;
margin-right: 10px;
}
.icon_cont a:hover {
color: #ffc107;
transition: 0.2s;
}
.copyraiting {
background: #424d58;
float: left;
margin-top: 30px;
width: 100%;
padding: 25px;
}
.mininai {
float: left;
color: #fff;
font-size: 14px;
padding-left: 10px;
}
.oneix {
margin-right: 20px;
}
.mininai a {
color: #fff;
}
.mininai i {
padding: 0px 2px 0px 5px;
}
.member_bl {
float: left;
width: 100%;
font-size: 18px;
color: #fff;
padding: 10px 10px 0px 10px;
}
.member_bl p {
float: left;
margin: 6px 0px 0px 0px;
}
.member_bl i {
float: left;
width: 32px;
margin-right: 8px;
}
.member_bl i img {
width: 100%;
}
.go_feed_col {
padding: 8px 12px;
border: 2px solid #343c45;
color: #fff;
background: #343c45;
float: left;
width: 100%;
text-align: center;
border-radius: 2px;
margin-top: 15px;
font-size: 16px;
transition: 0.3s;
text-transform: uppercase;
}
.go_feed_col:hover {
background: #ffc107;
border: 2px solid #ffc107;
transition: 0.3s;
color: #111;
}
.fl_col_feed {
float: left;
width: 100%;
padding: 0px 10px;
}
div.menu_resp_box {} .menu_resp_box li {
float: left;
width: 100%;
text-align: center;
font-size: 16px;
font-weight: 500;
}
ul.menu_resp_box {
width: 320px;
z-index: 130;
max-height: 777px;
position: fixed;
top: 0;
overflow-y: scroll;
left: -100%;
list-style: none;
}
ul.menu_resp_box::-webkit-scrollbar-track-piece {
background-color: #383f49;
}
ul.menu_resp_box::-webkit-scrollbar-thumb:vertical {
height: 4px;
background-color: #262a30;
}
ul.menu_resp_box {
padding-top: 10px !important;
}
ul.menu_resp_box {
margin: 0;
padding: 0;
margin-top: 0px;
background: #414c57;
}
ul.menu_resp_box li a {
display: block;
padding: 12px;
color: #fff;
border-bottom: 1px solid #343c45;
}
.menu_resp_box {
position: absolute;
top: 55px;
left: 0;
height: 100%;
}
.nav-icon {
padding: 9px 12px 5px 12px;
width: 50px;
height: 50px;
position: fixed;
left: 0;
top: 0;
z-index: 132;
border-bottom-right-radius: 2px;
background: rgba(67, 76, 87, 0.4);
cursor: pointer;
display: block;
}
.nav-icon:after,
.nav-icon:before,
.nav-icon div {
background-color: #fff;
-o-border-radius: 1px;
-moz-border-radius: 1px;
-ms-border-radius: 1px;
-webkit-border-radius: 1px;
border-radius: 1px;
content: '';
display: block;
height: 2px;
margin: 6px 0;
z-index: 132px;
-moz-transition: all .2s ease-in-out;
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.nav-icon.active:before {
transform: translateY(10px) rotate(135deg);
-moz-transform: translateY(10px) rotate(135deg);
-webkit-transform: translateY(10px) rotate(135deg);
}
.nav-icon.active:after {
transform: translateY(-6px) rotate(-135deg);
-moz-transform: translateY(-6px) rotate(-135deg);
-webkit-transform: translateY(-6px) rotate(-135deg);
}
.nav-icon.active div {
-moz-transform: scale(0);
-webkit-transform: scale(0);
transform: scale(0);
}
div.menu_resp {} .menu_resp li {
float: left;
width: 100%;
text-align: center;
font-size: 16px;
font-weight: 500;
}
ul.menu_resp {
width: 100%;
z-index: 128;
height: 50px;
position: fixed;
top: 0;
right: -100%;
list-style: none;
}
ul.menu_resp {
padding: 1px 50px 0px 50px !important;
}
ul.menu_resp {
margin: 0;
padding: 0;
margin-top: 0px;
background: #414c57;
}
ul.menu_resp li a {
display: block;
padding: 12px;
color: #fff;
border-bottom: 1px solid #343c45;
}
.menu_resp {
position: absolute;
top: 55px;
right: 0;
height: 100%;
}
.search_icon {
padding: 12px 12px 5px 12px;
width: 50px;
height: 50px;
position: fixed;
right: 0;
top: 0;
z-index: 129;
border-bottom-left-radius: 2px;
background: rgba(67, 76, 87, 0.4);
cursor: pointer;
display: block;
}
.search_icon img {
width: 100%;
}
.mini-menu_search {
float: left;
width: 100%;
overflow: hidden;
padding: 5px;
}
.search-wrap {
float: left;
display: inline-block;
width: 100%;
height: 100%;
border-radius: 2px;
}
#quicksearch {
float: left;
width: 100%;
border-radius: 2px;
}
.search-wrap > span {
color: #fff;
margin: 0 20px;
display: inline-block;
float: left;
line-height: 50px;
}
.search-box {
width: 100%;
position: relative;
display: inline-block;
float: left;
height: 100%;
transition: 0.4s;
border-radius: 2px;
border-top: 0;
border-bottom: 0;
color: #fff;
}
.search-box > span {
color: #fff;
margin: 0 20px;
display: inline-block;
float: left;
line-height: 40px;
font-size: 18px;
}
.search-box input,
.search-box input:focus {
width: 100%;
font-size: 18px;
height: 38px;
line-height: 50px;
float: left;
box-shadow: none;
color: #fff;
font-weight: 400;
float: left;
border: 1px solid transparent;
background: #343c45;
border: 2px solid #343c45;
padding-left: 15px;
border-radius: 2px;
}
.search-box::-webkit-input-placeholder {
color: #fff;
}
.search-box button {
position: absolute;
width: 36px;
height: 38px;
background: #343c45;
border: 0;
cursor: pointer;
opacity: 1;
padding: 10px;
right: 0px;
top: 0px;
line-height: 22px;
display: inline-block;
}
.search-box button img {
float: left;
margin-left: 0px;
}
.search-box button:hover {
opacity: 0.9;
}
.line-search {
float: left;
width: 100%;
border-radius: 2px;
background: transparent;
}
.searcs {
float: left;
margin: 20px 0px 0px 20px;
width: 95.5%;
height: 45px;
background: #fff;
}

.stat-gl {
float: left;
width: 100%;
padding: 10px;
}
.use_xlink_cof {
float: left;
width: 100%;
margin-top: -5px;
}
.use_xlink_cof a {
border: none !important;
padding: 5px;
width: 100%;
float: left;
background: #343c45;
margin-bottom: 5px;
border-radius: 2px;
}
#inputs input {
background: transparent;
margin: 0 0 10px 0;
width: 100%;
font-size: 16px;
color: #fff;
border: 1px solid #343c45;
}
#inputs input:focus::-webkit-input-placeholder {
color: #111;
}
#inputs input:focus {
background-color: #fff;
border-color: #e8c291;
outline: none;
color: #777;
-moz-box-shadow: 0 0 0 1px #e8c291 inset;
-webkit-box-shadow: 0 0 0 1px #e8c291 inset;
box-shadow: 0 0 0 1px #e8c291 inset;
}
#inputs input::-webkit-input-placeholder {
color: #fff;
}
.enter {
border: 1px solid #343c45;
border-radius: 2px;
margin-top: 5px;
cursor: pointer;
float: left;
padding: 8px 45px 8px 45px;
color: #fff;
background: #343c45;
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
transition: all 0.5s;
}
.enter:hover {
background: #0089fa;
color: #fff;
transition: all 0.5s;
border: 1px solid #0089fa;
}
.lost_passw {
float: left;
text-transform: uppercase;
margin-left: 10px;
font-size: 14px;
}
.lost_passw a {
color: #fff;
border-bottom: none !important;
}
.name_go_acc {
font-size: 14px;
color: #fff;
}
.cont_go_acc {
float: left;
width: 100%;
padding-top: 10px;
}
.sociallogin {
float: left;
margin-left: 50px;
margin-top: 10px;
}
.sociallogin a {
margin-left: 8px;
float: left;
font-size: 21px;
color: #fff;
background: #41698d;
width: 37px;
height: 37px;
border-radius: 2px;
padding: 5px !important;
}
.sociallogin a:hover {
color: #aaa;
}
.go_regis {
float: left;
width: 100%;
text-align: center;
margin-top: 10px;
}
.go_regis a {
padding: 8px 0px;
text-align: center;
background: #6dc82b;
color: #fff;
border-radius: 2px;
font-size: 18px;
}
.cont_info_ul {
float: left;
width: 100%;
}
.all_ios_info {
position: absolute;
right: 0;
top: 0;
background: rgba(255, 255, 255, 0.7);
}
.map_gogles {
float: left;
width: 100%;
margin-bottom: -5px;
margin-top: -1px;
position: relative;
}
.map_gogles iframe {
width: 100%;
}
/* Cначала обозначаем стили для IE8 и более старых версий
т.е. здесь мы немного облагораживаем стандартный чекбокс. */

.checkbox {
vertical-align: top;
margin: 0 3px 0 0;
width: 17px;
height: 17px;
}
/* Это для всех браузеров, кроме совсем старых, которые не поддерживают
селекторы с плюсом. Показываем, что label кликабелен. */

.checkbox + label {
cursor: pointer;
}
/* Далее идет оформление чекбокса в современных браузерах, а также IE9 и выше.
Благодаря тому, что старые браузеры не поддерживают селекторы :not и :checked,
в них все нижеследующие стили не сработают. */
/* Прячем оригинальный чекбокс. */

.checkbox:not(checked) {
position: absolute;
opacity: 0;
}
.checkbox:not(checked) + label {
position: relative;
/* будем позиционировать псевдочекбокс относительно label */

font-size: 16px;
padding: 8px 0px 8px 45px !important;
/* оставляем слева от label место под псевдочекбокс */
}
/* Оформление первой части чекбокса в выключенном состоянии (фон). */

.checkbox:not(checked) + label:before {
content: '';
position: absolute;
top: 14px;
left: 10px;
width: 26px;
height: 7px;
border-radius: 13px;
background: #ddd;
}
/* Оформление второй части чекбокса в выключенном состоянии (переключатель). */

.checkbox:not(checked) + label:after {
content: '';
position: absolute;
top: 12px;
left: 10px;
width: 11px;
height: 11px;
border-radius: 10px;
background: #6dc82b;
transition: all .2s;
/* анимация, чтобы чекбокс переключался плавно */
}
/* Меняем фон чекбокса, когда он включен. */

.checkbox:checked + label:before {
background: #9FD468;
}
/* Сдвигаем переключатель чекбокса, когда он включен. */

.checkbox:checked + label:after {
left: 26px;
}
/* Показываем получение фокуса. */

.checkbox:focus + label:before {} .radio {
vertical-align: top;
width: 17px;
height: 17px;
margin: 0 3px 0 0;
}
.radio + label {
cursor: pointer;
}
.radio:not(checked) {
position: absolute;
opacity: 0;
}
.radio:not(checked) + label {
position: relative;
padding: 4px 0 4px 30px !important;
}
.radio:not(checked) + label:before {
content: '';
position: absolute;
top: 6px;
left: 5px;
width: 15px;
height: 15px;
border: 1px solid #CDD1DA;
border-radius: 50%;
background: #FFF;
}
.radio:not(checked) + label:after {
content: '';
position: absolute;
top: 8px;
left: 7px;
width: 11px;
height: 11px;
border-radius: 50%;
background: #6dc82b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .5);
opacity: 0;
transition: all .2s;
}
.radio:checked + label:after {
opacity: 1;
}
.radio:focus + label:before {} .scriptcode,
.title_quote,
.title_spoiler,
.text_spoiler {
float: left;
width: 100%;
margin-bottom: 15px;
}
.title_spoiler img {
width: auto !important;
}
.content_fullstory {
float: left;
width: 100%;
font-size: 18px;
text-align: justify;
margin-top: 20px;
margin-bottom: 20px;
padding: 0px 50px;
}
.content_fullstory img {
width: calc(100% + 100px);
margin: 30px 0px 30px -50px;
float: left;
}
.content_fullstory iframe {
width: calc(100% + 100px);
margin: 30px 0px 30px -50px;
float: left;
height: 550px;
}
.fix_fs {
border-radius: 0px !important;
margin-top: 2px;
padding: 2px;
}
.fix_fs img {
border-radius: 0px !important;
}
.leftbar_full {
float: left;
width: 100%;
}
.right_bar_full {
float: left;
width: 100%;
}
.images_fulls {
float: left;
width: 100%;
height: 600px;
overflow: hidden;
position: relative;
}
.img_all {
float: left;
width: 20%;
padding: 0px 0px 0px 5px;
}
.img_all:last-child {
padding-right: 5px;
}
.img_all img {
width: 100%;
margin-top: 5px;
}
.cols_oms {
position: absolute;
bottom: 0;
left: 0;
padding: 20px;
}
.date_news_ed {
position: absolute;
bottom: 0;
left: 0;
color: #fff;
font-weight: 500;
font-size: 13px;
border-top: 1px solid #424d58;
z-index: 10;
padding: 15px 10px 10px 20px;
width: 100%;
z-index: 10;
height: 100%;
background: -webkit-linear-gradient(255deg, transparent 20%, rgba(0, 0, 0, 0.72));
background: linear-gradient(195deg, transparent 10%, rgba(0, 0, 0, 0.82));
}
.date_news_ed h1 {
font-size: 41px;
float: left;
font-weight: 500;
text-transform: uppercase;
margin: 5px 0px;
}
.catefull {
float: left;
width: 100%;
color: #ffc107;
font-size: 21px;
}
.catefull_p {
color: #a9b5c1;
float: left;
width: 100%;
font-size: 21px;
}
.speedbas {
float: left;
width: 100%;
padding: 5px 10px 15px 10px;
position: relative;
background: #ffc107;
}
.speedbas:before {
content: '';
display: block;
position: absolute;
z-index: 0;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-repeat: repeat;
background-image: url(../images/pattern5.png);
}
.kiloc {
float: left;
width: 100%;
position: relative;
z-index: 5;
font-weight: 400;
margin-top: 10px;
padding-left: 5px;
font-size: 24px;
text-align: center;
color: #fff;
}
.kiloc span {
color: #fff;
}
.disqus-footer__wrapper {
display: none !important;
}
.cont_conr {
float: left;
width: 100%;
padding: 20px 10px;
border-bottom: 1px solid #f1f1f1;
}
.full_mane {
float: left;
width: 100%;
color: #fff;
border-radius: 2px;
font-size: 18px;
text-align: center;
padding: 10px 0px;
background: #414c57;
text-transform: uppercase;
border-bottom: 2px solid #ffc107;
}
.info_tur {
float: left;
width: 16.5%;
padding: 10px 0px;
font-size: 18px;
padding: 10px;
}
.info_tur p {
float: left;
margin: 0px;
padding: 0px;
color: #667;
margin-top: 1px;
text-align: center;
width: 100%;
}
.info_tur i {
width: 24px;
}
.info_tur p a {
color: #667;
}
.info_tur i img {
width: 100%;
padding: 0px 40px;
margin-top: 0px;
}
/* Browser Resets */

.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
outline: none;
}
.slides,
.flex-control-nav,
.flex-direction-nav {
margin: 0;
padding: 0;
list-style: none;
}
/* FlexSlider Necessary Styles
*********************************/

.flexslider {
width: 100%;
height: auto;
margin-bottom: 40px;
position: relative;
}
.flexslider .slides > li {
display: none;
-webkit-backface-visibility: hidden;
overflow: hidden;
height: auto;
position: relative;
}
/* Hide the slides before the JS is loaded. Avoids image jumping */

.flexslider .slides img {
width: 100%;
display: block;
height: auto;
border-radius: 2px;
position: relative;
cursor: pointer;
}
.flex-pauseplay span {
text-transform: capitalize;
}
/* Clearfix for the .slides element */

.slides:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
html[xmlns] .slides {
display: block;
}
* html .slides {
height: 1%;
}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
* include js that eliminates this class on page load */

.no-js .slides > li:first-child {
display: block;
}
/* FlexSlider Default Theme
*********************************/

.flexslider {
margin: 0 0 0px;
position: relative;
zoom: 1;
}
.flex-viewport {
max-height: 527px;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
transition: all 1s ease;
background: #fff;
border-radius: 2px;
}
.loading .flex-viewport {
max-height: 527px;
background: #383f43;
}
.flexslider .slides {
zoom: 1;
}
.carousel li {
margin-right: 5px
}
/* Direction Nav */

.flex-direction-nav {
*height: 0;
}
.flex-direction-nav a {
width: 30px;
height: 30px;
margin: -20px 0 0;
display: block;
background: url(../images/bg_direction_nav1.png) no-repeat 0 0;
position: absolute;
top: 50%;
z-index: 10;
cursor: pointer;
text-indent: -9999px;
opacity: 1;
-webkit-transition: all .3s ease;
}
.flex-direction-nav .flex-next {
background-position: 100% 0;
right: 20px;
opacity: .7;
}
.flex-direction-nav .flex-prev {
left: 20px;
opacity: .6;
}
.flexslider:hover .flex-next {
opacity: 1;
right: 25px;
}
.flexslider:hover .flex-prev {
opacity: 1;
left: 25px;
}
.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover {
opacity: 1;
}
.flex-direction-nav .flex-disabled {
opacity: .3!important;
filter: alpha(opacity=30);
cursor: default;
}
/* Control Nav */

.flex-control-nav {
width: 100%;
position: absolute;
bottom: 0px;
text-align: center;
background-color: transparent;
padding-bottom: 7px;
}
.flex-control-nav li {
margin: 0 6px;
display: inline-block;
zoom: 1;
}
.flex-control-paging li a {
width: 10px;
height: 10px;
display: block;
background: #fc8505;
cursor: pointer;
text-indent: -9999px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}
.flex-control-paging li a:hover {
background: #333;
}
.flex-control-paging li a.flex-active {
background: #2b3347;
cursor: default;
}
.flex-control-thumbs {
margin: 0px;
position: static;
overflow: hidden;
display: block;
padding-left: 2px;
}
.flex-control-thumbs li {
width: 20%;
float: left;
margin: 0;
margin-top: 2px;
padding: 0px 2px 0px 0px;
}
.flex-control-thumbs {
max-height: 150px;
overflow: hidden;
background: #f1f1f1;
}
.flex-control-thumbs img {
width: 100%;
display: block;
opacity: .7;
cursor: pointer;
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
transition: 0.3s;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
}
.flex-control-thumbs img:hover {
opacity: 1;
transition: 0.3s;
}
.flex-control-thumbs .flex-active {
opacity: 1;
cursor: default;
transition: 0.3s;
}
@media screen and (max-width: 860px) {
.flex-direction-nav .flex-prev {
opacity: 1;
left: 0;
}
.flex-direction-nav .flex-next {
opacity: 1;
right: 0;
}
}
/* Блок меню Аккордеон */

.mini-menu {
float: left;
width: 100%;
overflow: hidden;
margin-top: 45px;
border-top: 1px solid #343c45;
}
.mini-menu ul {
list-style: none;
margin: 0;
padding: 0;
text-align: left;
}
.mini-menu > ul > li {
position: relative;
}
.mini-menu > ul > li > a {
display: block;
outline: 0;
padding: 10px 10px 10px 16px;
text-transform: uppercase;
text-decoration: none;
color: #fff;
text-align: left;
font-size: 16px;
font-weight: 500;
border-bottom: 1px solid #343c45;
transition: all 0.5s;
}
.mini-menu > ul > li > a:hover,
.mini-menu > ul > li > a.active {
color: #fff;
background: #ffc107;
transition: all 0.5s;
}
.mini-menu .sub > ul {
counter-reset: items;
height: 0;
overflow: hidden;
}
.mini-menu .sub > ul > li > a {
counter-increment: items;
color: #111;
font-weight: 300;
font-size: 14px;
display: block;
text-decoration: none;
padding: .7em 1em;
text-transform: none;
background: #ffc107;
transition: all 0.5s;
border-bottom: 1px solid #343c45;
}
.mini-menu .sub > ul > li > a:hover,
.mini-menu .sub > ul > li > a.active {
background: #d8d8d8;
color: #1976d2;
transition: all 0.5s;
padding-left: 1.3em;
}
.mini-menu .sub > ul > li > a:after {
content: "»";
margin-right: 6px;
line-height: 18px;
}
.mini-menu .sub > ul:after {
content: "+";
font-size: 1em;
display: inline-block;
position: absolute;
right: 10px;
top: 8px;
line-height: 1em;
padding: 4px 5px 5px 10px;
text-align: center;
width: 38px;
height: 28px;
color: #fff;
text-indent: 0;
border: none;
text-align: center;
font-size: 17px;
font-weight: 400;
}
.fa-caret-right {
margin-right: 8px;
}
.user_categors {
transition: 0.3s;
}
.user_categors:hover {
padding-left: 21px;
transition: 0.3s;
}
.addcform:active {
display: block;
}
.cenzo {
background: transparent;
color: #111;
font-size: 16px;
float: left;
width: 100%;
font-weight: 400;
font-family: sans-serif;
margin: 20px 0px 10px 0px;
}
.cenzo img {
width: 28px;
height: 28px;
float: left;
margin-right: 8px !important;
}
.cenzo b {
font-weight: 400 !important;
float: left;
font-size: 18px;
margin-right: 10px;
margin-top: 8px;
}
.conrtolscom {
float: left;
width: 100%;
}
.upnews {
float: left;
width: 100%;
padding: 0px 250px;
margin: 10px 0px 0px 0px;
}
.link_go {
float: left;
width: 100%;
padding: 5px 0px;
margin-top: 10px;
}
.sector_title {
text-transform: uppercase;
padding: 13px 12px;
background: #414c57;
width: 100%;
font-size: 18px;
text-align: center;
color: #fff;
margin-bottom: 30px;
cursor: pointer;
border-bottom: 2px solid #ffc107;
}
.iframe_go_maps {
float: left;
width: 100%;
max-height: 550px;
}
.iframe_go_maps iframe {
max-width: 100%;
}
.sector_rais {
float: left;
margin-left: 28px;
margin-top: 3px;
}
.bolor {
border: 0 none;
display: inline-block;
vertical-align: middle;
cursor: pointer;
font-weight: 500 !important;
outline: none;
width: 40%;
text-align: center;
font-size: 16px;
text-transform: none !important;
background: #414c57;
border-radius: 2px;
text-transform: uppercase;
padding: 9px 12px;
text-decoration: none !important;
transition: all 0.5s;
color: #fff;
}
#comment-editor > #allow_subscribe {
display: none;
}
#comment-editor label {
display: none;
}
.comments-tree-list {
margin-bottom: 0px;
}
.mass_comments_action {
text-align: center;
font-size: 15px;
display: none;
}
/* Контакты */

.feedback .grid_1_4 {
margin-bottom: 20px;
}
.map_resp {
padding-top: 60%;
}
/* Формы на UL */

ul.ui-form {
list-style: none;
padding: 10px 0px 0px 0px;
margin: 0;
float: right;
width: 100%;
}
ul.ui-form > li {
margin-bottom: 20px;
}
ul.ui-form > li:last-child {
margin-bottom: 0;
}
.form-group {
margin-bottom: 20px;
}
.form-group > label {
display: block;
margin-bottom: .4em;
}
.form-group.imp > label:after {
content: "*";
margin: 0 0 0 10px;
color: #ff485b;
}
@media only screen and (min-width: 601px) {
.form-group.combo:after {
clear: both;
display: table;
content: "";
}
.form-group.combo > .combo_field {
width: 50%;
float: left;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.form-group.combo > .combo_field:last-child {
padding-left: 10px;
}
.form-group.combo > .combo_field:first-child {
padding-right: 10px;
}
}
.form_submit {
float: left;
margin-top: 20px;
width: 100%;
}
.nav_bottom_full {
float: left;
width: 100%;
border: 1px solid #f1f1f1;
margin-top: 20px;
}
.cols_full_nav {
float: left;
width: 20%;
border-right: 1px solid #f1f1f1;
padding: 5px 5px 10px 5px;
text-align: center;
}
.cols_full_nav:last-child {
border-right: none;
}
.cols_full_nav ul {
width: 100%;
margin: 0px;
padding: 0px;
list-style: none;
}
.cols_full_nav ul li {
width: 100%;
margin: 0px;
padding: 0px;
margin-top: 5px;
transition: 0.3s;
}
.cols_full_nav ul li a {
color: #888;
font-size: 18px;
}
.cols_full_nav ul li:hover {
padding-left: 20px;
transition: 0.3s;
}
@media screen and (max-width: 1200px) {
.cont_header {
padding: 0px 10px;
}
.travell li {
margin-right: 25px;
}
.icon_go_filtres {
left: 34.2%;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media img {
max-height: 227px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media {
max-height: 227px;
}
.ic_co {
left: 21%
}
.cont_info {
margin: 0px;
padding: 60px 10px 40px 10px;
}
.testimonial-item {
width: 33.3%;
margin: 35px 0px 0px 0px;
padding: 10px;
background: transparent;
max-width: 100%;
}
.testimonial-body {
background: #fff;
margin-top: -40px !important;
padding-top: 90px;
padding-bottom: 20px;
}
.ic_co_part {
left: 27%;
}
.img_all {
padding: 0px 3px 0px 2px;
}
}
@media screen and (max-width: 1090px) {
.travell p {
display: none;
}
.travell li {
margin-right: 28px;
margin-left: 3px;
}
.icon_go_filtres {
left: 33.2%;
}
.ic_co {
left: 18%;
}
.title_info {
font-size: 21px;
}
.right_titles p {
font-size: 18px;
margin-top: 40px;
}
.el_iframe {
margin-top: 60px;
}
.el_iframe iframe {
height: 320px;
}
.testimonial-item .testimonial-body p {
font-size: 14px;
}
.recom-item .recom-item-body {
padding: 20px 0 0 20px;
}
.recom-item .recom-item-body .blog-title {
font-size: 20px;
}
.ic_co_part {
left: 24%;
}
.col_use_post h2 {
font-size: 28px;
}
.ic_co_part1 {
left: 28.6%;
}
.cont_conr {
padding: 20px 0px;
}
.sector_rais {
margin-left: 18px;
}
#searchsuggestions {
width: 89%;
}
.icon_filteres {
left: 3px !important;
}
.money_big {
left: -547% !important;
width: 762% !important;
}
.filter-form .filter-submit input.submit {
width: 110% !important;
}
header {
padding-bottom: 50px;
}
.slider-info-content {
display: none;
}
.info_tur {
font-size: 16px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item {
overflow: hidden;
}
.cont_company {
padding: 0px 50px;
}
}
@media screen and (max-width: 999px) {
.icon_go_filtres {
left: 32%;
}
.travell li {
margin-right: 20px;
margin-left: 6px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item:hover .features-media .features-info-bot {
bottom: 10px
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media img {
height: auto;
max-height: 320px;
}
.ic_co {
left: 15%;
}
.title_info {
padding-left: 10px;
}
.el_iframe iframe {
height: 310px;
}
.right_titles {
padding-left: 10px;
}
.recom-item .recom-media .pic img {
width: 130%;
}
.cont_media_him {
float: left;
width: 100%;
padding: 0px 5px;
}
.ic_co_part {
left: 22%;
}
.reload-full-block {
width: 84%;
}
#searchsuggestions {
width: 87%;
}
.filter-form .btn {
font-size: 16px;
}
}
@media screen and (max-width: 880px) {
.out_bl p {
font-size: 16px;
}
.col_use_post h2 {
font-size: 24px;
}
.fz_non {
display: none;
}
.go_filters_next h2 {
font-size: 32px;
}
.ic_co_part {
top: -7px;
}
.cols_infos {
width: 50%;
}
#searchsuggestions {
width: 86%;
}
.all_info_conts {
font-size: 18px;
}
.title_info {
padding-left: 20px;
}
.ic_co {
top: -4px;
}
.icon_go_filtres {
top: -6px;
}
.travell {
margin-top: 0px;
}
.content_fullstory iframe {
max-height: 400px;
}
.iframe_go_maps iframe {
max-height: 400px;
}
.travell li {
margin-top: 8px;
margin-right: 16px;
}
.nav_vordes {
height: 66px;
}
.media_greens {
width: 100% !important;
float: left;
margin-top: 0px;
margin-left: -1px;
}
.filter-form .col-50 {
width: 16.66%;
}
.filter-form .filter-submit input.submit {
width: 101.5% !important;
}
.icon_filteres {
left: 0px !important;
}
.images_fulls {
height: 450px;
}
.min_testorial {
width: 25% !important;
}
.images_fulls img {
width: 100%;
}
.sector_rais {
margin-left: 4px;
}
}
@media screen and (max-width: 800px) {
.travell {
overflow: hidden;
}
.travell li {
margin-left: 13px;
margin-right: 10px;
}
.icon_filteres {
display: none;
}
.go_filters_next {
padding-left: 10px;
}
.filter-form .filter-submit input.submit {
width: 101.6% !important;
}
.icon_go_filtres {
left: 30%;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media img {
height: 247px;
}
.ic_co {
left: 13%;
}
.title_info {
font-size: 28px;
}
.right_titles {
float: left;
width: 100%;
padding: 10px;
margin: 0;
}
.el_iframe {
width: 100%;
margin-top: 20px;
}
.right_titles p {
margin-top: 0px;
}
.video_cont {
height: 660px;
}
.text_facture {
font-size: 14px;
}
.info-text {
margin-top: 5px !important;
}
.recom-item .recom-media .pic img {
width: 155%;
}
.recom-item .recom-item-body .blog-title {
font-size: 18px;
}
.ic_co_part {
left: 20%;
}
#searchsuggestions {
width: 86%;
}
.col_use_post h2 {
font-size: 22px;
}
.info_tur i img {
padding: 0px 25px;
}
.ic_co_part1 {
left: 26%;
}
.info_tur {
padding: 5px;
}
.mininai {
width: 100%;
text-align: center;
}
.sector_rais {
margin-left: 2px;
}
.ava_com {
margin-left: 19%;
}
.reload-full-block {
width: 100%;
}
.images_fulls img {
width: 110%;
}
.content_fullstory {
padding: 0px 20px;
}
.content_fullstory img {
width: calc(100% + 40px);
margin: 10px 0px 20px -20px;
}
.content_fullstory iframe {
width: calc(100% + 40px);
margin: 10px 0px 20px -20px;
}
.cols_padding {
margin: 0px;
}
.content_go {
margin-bottom: 0px;
}
.cont_company {
padding: 0px 10px;
}
}
@media screen and (max-width: 730px) {
.ic_co {
display: none;
}
.filter-form .filter-submit input.submit {
width: 101.8% !important;
}
.icon_go_filtres {
display: none;
}
.ic_co_part {
display: none;
}
.ic_co_part1 {
display: none;
}
.mediatech_m {
margin-top: 30px !important;
}
.col-md-6 {
width: 100%;
}
.text_facture {
font-size: 18px;
}
}
@media screen and (max-width: 700px) {
.out_bl b {
font-size: 24px;
}
.icon_go_filtres {
left: 24%;
}
.ic_co {
display: none;
}
.ava_com {
float: none;
margin-left: 0% !important;
}
.text_facture {
font-size: 16px;
}
.title_info {
font-size: 24px;
}
.mediatech_m {
margin-top: 20px !important;
}
.col-md-6 {
width: 100%;
}
.media_mot {
display: none;
}
.img_company_min img {
height: auto;
}
.ic_co_part {
left: 12%;
}
.col_use_post {
width: 100%;
margin-top: 0px;
}
.col_use_post h2 {
font-size: 28px;
}
.col_use_metod {
float: left;
padding-left: 20px;
margin-top: 27px;
width: 100%;
padding-right: 20px;
}
.section_message {
height: auto;
padding-bottom: 40px;
}
.filter-form .filter-submit input.submit {
width: 102.2% !important;
}
.min_testorial {
width: 50% !important;
}
.out_bl b {
padding: 2px 0px;
}
.images_fulls img {
width: 140%;
}
.travell li {
margin-left: 14px;
margin-right: 12px;
}
.info_tur {
width: 33.3%;
padding: 5px 25px;
}
.sector_rais {
margin-left: 17px;
}
.ava_com {
margin-left: 10%;
}
}
@media screen and (max-width: 580px) {
.go_filters h2 {
font-size: 28px;
}
.filter-form .filter-submit input.submit {
width: 102.7%;
}
header {
padding-bottom: 20px;
}
.title_info {
font-size: 20px;
padding-left: 10px;
}
.el_iframe iframe {
height: 260px;
}
.video_cont {
height: auto;
}
.go_filters_next {
padding-left: 0px;
}
.cont_hotel {
padding-bottom: 20px;
}
.cont_info {
padding: 20px 0px;
}
.images_fulls {
height: 320px;
}
.comic_con {
width: 100%;
}
.filter-form .filter-submit input.submit {
width: 102.8% !important;
}
.sector_rais {
margin-left: 1px;
}
.content_fullstory {
padding: 0px 10px;
}
.content_fullstory iframe {
max-height: 300px;
width: calc(100% + 20px);
margin: 10px 0px 20px -10px;
}
.content_fullstory img {
max-height: 300px;
width: calc(100% + 20px);
margin: 10px 0px 20px -10px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media img {
max-height: 320px;
height: auto;
}
#searchsuggestions {
width: 74%;
}
.cols_full_nav ul li a i {
display: none;
}
.cols_full_nav ul li {
width: 20%;
float: left;
}
.cols_full_nav {
width: 100%;
}
.all_text_info {
width: 100%;
padding: 5px;
margin: 0px;
}
.widget_vk {
width: 100%;
}
.iframe_go_maps {
max-height: 320px;
}
.iframe_go_maps iframe {
max-height: 320px;
}
.reload-full-block {
width: 80%;
}
}
@media screen and (max-width: 460px) {
.filter-form .filter-submit input.submit {
width: 103.7% !important;
}
.go_filters {
margin: -25px 0px 0px 0px;
}
.filter-form .btn:before {
display: none;
}
.money_big {
left: -228% !important;
width: 335% !important;
}
header {
padding-bottom: 10px;
}
.travell li {
margin-left: 4px;
margin-right: 6px;
}
.go_filters_next h6 {
font-size: 13px;
}
.go_filters_next {
padding: 20px 0px;
}
.features-tours-full-width .features-tours-wrap .features-tours-item .features-media img {
height: 247px;
}
.go_filters_next h2 {
font-size: 24px;
}
.cols_infos {
width: 100%;
}
.title_info {
font-size: 32px;
padding-left: 20px;
}
.all_info_conts {
margin-bottom: 0px;
}
.go_filters h2 {
font-size: 22px;
}
.go_filters h6 {
font-size: 13px;
}
.el_iframe {} .el_iframe iframe {
height: 190px;
}
.logo_full img {
padding: 8px 70px 8px 90px;
width: 100%;
}
.recom-item .recom-item-body p {
font-size: 14px;
line-height: 1.8;
}
.col_use_post h2 {
font-size: 24px;
}
.kiloc {
font-size: 18px;
}
#searchsuggestions {
width: 69%;
}
.search-box input,
.search-box input:focus {
font-size: 14px;
}
ul.menu_resp_box {
width: 100%;
}
.images_fulls {
height: 266px;
}
.date_news_ed h1 {
font-size: 28px;
}
.info_tur {
width: 50%;
padding: 5px 15px;
}
.sector_rais {
margin-left: 13px;
}
.content_fullstory {
font-size: 16px;
}
.content_fullstory iframe {
max-height: 230px;
width: calc(100% + 20px);
margin: 10px 0px 20px -10px;
}
.content_fullstory img {
max-height: 230px;
width: calc(100% + 20px);
margin: 10px 0px 20px -10px;
}
.all_text_info {
text-align: justify;
padding: 10px 10px;
}
.nav_bottom_full {
display: none;
}
nav li #login-content {
min-width: 343px;
max-width: 480px;
}
.block-obig {
width: 100%;
padding: 5px;
}
.pmlist {
padding: 5px 0px;
width: 100%;
}
.out_bl {
width: 33.3%;
height: 90px;
overflow: hidden;
}
.all_user_information {
height: 180px;
}
}
@media screen and (max-width: 330px) {
.title_info {
font-size: 26px;
}
.content_fullstory iframe {
max-height: 210px;
width: calc(100% + 20px);
margin: 10px 0px 20px -10px;
}
.content_fullstory img {
max-height: 210px;
width: calc(100% + 20px);
margin: 10px 0px 20px -10px;
}
.recom-item .recom-media .pic img {
width: 175%;
}
.el_iframe iframe {
height: 180px;
}
.col_use_post h2 {
font-size: 22px;
}
nav li #login-content {
min-width: 303px;
max-width: 306px;
}
.filter-form .filter-submit input.submit {
width: 104.2% !important;
}
.images_fulls img {
width: 160%;
}
.info_tur {
font-size: 14px;
}
}
.responsive {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 500px) {
  .hidemobile {
    visibility: hidden;
    display: none;
  }
}
.navbar-my{
 background: #958332;
}
.navbar-my ul li a{
 color: #fff;
}
.navbar-my ul li a:hover{
 background: #333;
}
.navbar-my .navbar-brand{
 color: #fff;
}
 .showmobile { display: none; }
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px){ .showmobile { display: inline; }
} 
/*==================== 
	Footer 
====================== */

/* Main Footer */
footer .main-footer{	padding: 10px 0;	background: #ecf5fc;}
footer ul{	padding-left: 0;	list-style: none;}

/* Copy Right Footer */
.footer-copyright {	background: #222;	padding: 5px 0;}
.footer-copyright .logo {    display: inherit;}
.footer-copyright nav {    float: right;    margin-top: 5px;}
.footer-copyright nav ul {	list-style: none;	margin: 0;	padding: 0;}
.footer-copyright nav ul li {	border-left: 1px solid #505050;	display: inline-block;	line-height: 12px;	margin: 0;	padding: 0 8px;}
.footer-copyright nav ul li a{	color: #969696;}
.footer-copyright nav ul li:first-child {	border: medium none;	padding-left: 0;}
.footer-copyright p {	color: #969696;	margin: 2px 0 0;}

/* Footer Top */
.footer-top{	background: #252525;	padding-bottom: 30px;	margin-bottom: 30px;	border-bottom: 3px solid #222;}

/* Footer transparent */
footer.transparent .footer-top, footer.transparent .main-footer{	background: transparent;}
footer.transparent .footer-copyright{	background: none repeat scroll 0 0 #ecf5fc ;}

/* Footer light */
footer.light .footer-top{	background: #f9f9f9;}
footer.light .main-footer{	background: #f9f9f9;}
footer.light .footer-copyright{	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3) ;}

/* Footer 4 */
.footer- .logo {    display: inline-block;}

/*==================== 
	Widgets 
====================== */
.widget{	padding: 20px;	margin-bottom: 40px;}
.widget.widget-last{	margin-bottom: 0px;}
.widget.no-box{	padding: 0;	background-color: transparent;	margin-bottom: 40px;
	box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none;}
.widget.subscribe p{	margin-bottom: 18px;}
.widget li a{	color: #ff8d1e;}
.widget li a:hover{	color: #4b92dc;}
.widget-title {margin-bottom: 20px;}
.widget-title span {background: #839FAD none repeat scroll 0 0;display: block; height: 1px;margin-top: 25px;position: relative;width: 20%;}
.widget-title span::after {background: inherit;content: "";height: inherit;    position: absolute;top: -4px;width: 50%;}
.widget-title.text-center span,.widget-title.text-center span::after {margin-left: auto;margin-right:auto;left: 0;right: 0;}
.widget .badge{	float: right;	background: #7f7f7f;}

.typo-light h1, 
.typo-light h2, 
.typo-light h3, 
.typo-light h4, 
.typo-light h5, 
.typo-light h6,
.typo-light p,
.typo-light div,
.typo-light span,
.typo-light small{	color: #656565;}

ul.social-footer2 {	margin: 0;padding: 0;	width: auto;}
ul.social-footer2 li {display: inline-block;padding: 0;}
ul.social-footer2 li a:hover {background-color:#ff8d1e;}
ul.social-footer2 li a {display: block;	height:30px;width: 30px;text-align: center;}
.btn{background-color: #ff8d1e; color:#fff;}
.btn:hover, .btn:focus, .btn.active {background: #4b92dc;color: #656565;
-webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
-webkit-transition: all 250ms ease-in-out 0s;
-moz-transition: all 250ms ease-in-out 0s;
-ms-transition: all 250ms ease-in-out 0s;
-o-transition: all 250ms ease-in-out 0s;
transition: all 250ms ease-in-out 0s;

}
.footer-bs {
    background-color: #3c3d41;
	padding: 60px 40px;
	color: rgba(255,255,255,1.00);
	margin-bottom: 20px;
	border-bottom-right-radius: 6px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 6px;
}
.footer-bs .footer-brand, .footer-bs .footer-nav, .footer-bs .footer-social, .footer-bs .footer-ns { padding:10px 25px; }
.footer-bs .footer-nav, .footer-bs .footer-social, .footer-bs .footer-ns { border-color: transparent; }
.footer-bs .footer-brand h2 { margin:0px 0px 10px; }
.footer-bs .footer-brand p { font-size:12px; color:rgba(255,255,255,0.70); }

.footer-bs .footer-nav ul.pages { list-style:none; padding:0px; }
.footer-bs .footer-nav ul.pages li { padding:5px 0px;}
.footer-bs .footer-nav ul.pages a { color:rgba(255,255,255,1.00); font-weight:bold; text-transform:uppercase; }
.footer-bs .footer-nav ul.pages a:hover { color:rgba(255,255,255,0.80); text-decoration:none; }
.footer-bs .footer-nav h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom:10px;
}

.footer-bs .footer-nav ul.list { list-style:none; padding:0px; }
.footer-bs .footer-nav ul.list li { padding:5px 0px;}
.footer-bs .footer-nav ul.list a { color:rgba(255,255,255,0.80); }
.footer-bs .footer-nav ul.list a:hover { color:rgba(255,255,255,0.60); text-decoration:none; }

.footer-bs .footer-social ul { list-style:none; padding:0px; }
.footer-bs .footer-social h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.footer-bs .footer-social li { padding:5px 4px;}
.footer-bs .footer-social a { color:rgba(255,255,255,1.00);}
.footer-bs .footer-social a:hover { color:rgba(255,255,255,0.80); text-decoration:none; }

.footer-bs .footer-ns h4 {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom:10px;
}
.footer-bs .footer-ns p { font-size:12px; color:rgba(255,255,255,0.70); }

@media (min-width: 768px) {
	.footer-bs .footer-nav, .footer-bs .footer-social, .footer-bs .footer-ns { border-left:solid 1px rgba(255,255,255,0.10); }
}
.wave-divider {
	width: 100%;
	height: 60px;
	display:block;	
}
