/* Table of Content
==================================================
	#Font-Face
	#Site Styles
	#Media Queries */
/* #Font-Face
================================================== */

@import 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300i,700';
@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i';
/* #Site Styles
================================================== */
/* ### general ### */

* {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #000000;
    height: 100%;
    background: #fff;
}
input,
select,
textarea {
    font-family: Arial;
    font-size: 12px;
    color: #000000;
}
img {
    border: 0px;
    display: block;
}
ul,
li {
    list-style: none;
}
:focus {
    outline: none;
}
/* ### global classes ### */

.gly-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.contactform #submitbtn {
    clear: left;
    margin-left: 0px;
    margin-top: 20px;
}
.contactform input[type="text"], .contactform input[type="email"], .contactform textarea {
    margin-bottom: 10px;
}
.contactform label {
    float: left;
}
.flags {
    position: absolute;
    top: 2px;
    right: 0px;
}
.flags a {
    float: left;
    padding-right: 10px;
}
.clear {
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.centered {
    margin: 0 auto;
    max-width: 1100px;
    position: relative;
}
.centered-full {
    padding-left: calc((100% - 1100px)/2);
    padding-right: calc((100% - 1100px)/2);
}
.wrapper {
    position: relative;
    overflow: hidden;
}
.wrapper--page {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}
.col {} .bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 671px;
    background: url(../images/banner.jpg) center top no-repeat;
    background-size: cover;
}
/* ### header ### */

.header {
    padding: 18px 16px 0px 25px;
    width: 100%;
    height: 111px;
    position: relative;
    z-index: 1;
    background: url(../images/header-bg.png) left top no-repeat;
    background-size: cover;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #fff;
}
.header-alternate {
    background-color: #fff;
}
.header-inner {
    padding-left: 0px;
    padding-right: 0px;
}
.header__logo {
    float: left;
}
.header__logo img {
    max-width: 100%;
}
/* ### header menu toggle ### */

.header__menu-toggle {
    cursor: pointer;
    z-index: 15;
    display: none;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: 0.2s;
    overflow: hidden;
}
.header__menu-toggle span {
    display: block;
    height: 3px;
    text-indent: -9999px;
    border-radius: 2px;
    background: #c3061f;
    position: absolute;
    top: 50%;
    right: 20%;
    left: 20%;
    transition: 0.2s;
}
.header__menu-toggle span:before,
.header__menu-toggle span:after {
    display: block;
    width: 100%;
    height: 3px;
    content: '';
    border-radius: 2px;
    background-color: #c3061f;
    transition-duration: 0.2s, 0.2s;
    position: absolute;
    left: 0;
}
.header__menu-toggle span:before {
    top: -7px;
    transition-property: top, transform;
}
.header__menu-toggle span:after {
    bottom: -7px;
    transition-property: bottom, transform;
}
.mm-opened .header__menu-toggle span {
    background: none;
}
.mm-opened .header__menu-toggle.active span:before,
.mm-opened .header__menu-toggle.active span:after {
    transition-delay: 0s, 0.2s;
}
.mm-opened .header__menu-toggle span:before {
    top: 0;
    transform: rotate(45deg);
}
.mm-opened .header__menu-toggle span:after {
    bottom: 0;
    transform: rotate(-45deg);
}
/* ### main menu ### */

.main-menu:not(.mm-menu) {
    margin-right: -50px;
    padding: 15px 0px 0px 0px;
    float: right;
}
.main-menu:not(.mm-menu) li {
    float: left;
    padding: 0px 50px 0px 0px;
}
.main-menu:not(.mm-menu) li a {
    font-size: 13px;
    color: #404040;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    line-height: 40px;
}
.main-menu:not(.mm-menu) li a:hover {
    text-decoration: underline;
}
.main-menu:not(.mm-menu) li.login {
    padding-right: 23px;
}
.main-menu:not(.mm-menu) li.login a {
    text-transform: capitalize;
    background: #0499bf;
    color: #fff;
    padding: 0px 23px;
    border-radius: 5px;
}
.main-menu:not(.mm-menu) li.register a {
    text-transform: capitalize;
    background: #bf041a;
    color: #fff;
    padding: 0px 23px;
    border-radius: 5px;
}
/* ### banner ### */

.banner {
    padding: 18px 0px 72px 0px;
}
.banner .detail {
    width: 100%;
}
.banner h1 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 70px;
    color: #fff;
    line-height: 70px;
}
.banner p {
    max-height: 250px;
    padding: 21px 70px 34px 0px;
    font-size: 13px;
    color: #fff;
    line-height: 18px;
    font-style: italic;
}
.banner a {
    display: block;
    float: left;
    padding: 10px 23px 10px 14px;
    color: #c0081e;
    text-decoration: none;
    font-weight: bold;
    background: #f6f6f6;
    border-radius: 5px;
}
.banner a span {
    margin-right: 5px;
}
.banner a:hover {
    text-decoration: underline;
}
/* ### filter ### */

fieldset {
    border: none;
}
.filter {
    padding: 21px 30px;
    width: 100%;
    overflow: hidden;
    border: 1px solid #c2091f;
    border-bottom: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: rgba(173, 19, 38, 0.9);
}
.filter .col {
    float: left;
}
.filter .col2 {
    float: left;
}
.filter .label {
    padding: 8px 14px 0px 0px;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
    font-style: italic;
    float: left;
}
.filter .select {
    width: 112px;
    margin-right: 10px;
    position: relative;
    height: 37px;
    display: block;
    float: left;
}
.filter .select select {
    width: 100%;
    padding: 0 20px 0 12px;
    height: 37px;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
    font-style: italic;
    margin: 0;
    border: 1px solid#980315;
    border-radius: 5px;
    outline: none;
    display: inline-block;
    cursor: pointer;
    background: #9d0012;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.filter .select:after {
    content: url('../images/select-arrow.jpg');
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}
.filter .select.small {
    width: 75px;
}
.filter .button {
    margin-left: 70px;
    display: block;
    float: left;
    padding: 10px 23px 10px 14px;
    color: #c0081e;
    text-decoration: none;
    font-weight: bold;
    background: #f6f6f6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.filter .button span {
    margin-right: 5px;
}
.filter .button:hover {
    text-decoration: underline;
}
/* ### info ### */

.info {
    background: #fff;
}
.info p {
    padding: 30px;
    font-size: 13px;
    color: #6d7c86;
}
/* ### info ### */

.user-grid {
    padding-top: 36px;
    border-top: 1px solid #d9d9d9;
    background: #f9f9f9;
}
.user-grid .block {
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid #dfdede;
    border-bottom: 2px solid #dfdede;
}
.user-grid .block .personal {
    min-height: 56px;
}
.user-grid .icon {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0px 10px;
    line-height: 27px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}
.user-grid h3 {
    position: relative;
    width: 80%;
    margin-top: -21px;
    line-height: 35px;
    background: #f0f0f0;
    border: 3px solid #fff;
    font-size: 13px;
    color: #000;
    border-radius: 35px;
    display: inline-block;
}
.user-grid .block img {
    width: auto;
    height: 200px;
    margin: 0 auto;
}
.user-grid span.subtitle {
    max-height: 47px;
    display: block;
    padding: 12px 0px 17px 0px;
    font-size: 13px;
    color: #000;
    font-weight: 600;
    font-style: italic;
}
.user-grid p {
    padding: 0px 15px 22px 15px;
    font-size: 12px;
    color: #000;
}
.user-grid p a {
    font-style: italic;
    color: #4da1ff;
    text-decoration: none;
}
.user-grid p a:hover {
    text-decoration: underline;
}
/* ### form ### */

.form {
    padding: 7px;
    width: 100%;
    overflow: hidden;
    background: #fff;
}
.form-block {
    padding: 23px 60px;
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
    text-align: center;
    background: #fdf2f2;
}
.form .cup {
    font-size: 42px;
    color: #9d0012;
    display: inline-block;
}
.form h2 {
    padding: 0 30px;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 18px;
    color: #6d7c86;
    font-weight: normal;
}
.form h2 span {
    font-weight: 700;
}
.form .register {
    padding: 0 33px;
    margin-top: 23px;
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    line-height: 42px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background: #09c72d;
}
.form-row {
    padding: 0 0 20px 0;
    width: 100%;
    overflow: hidden;
}
.form-row label {
    width: 104px;
    float: left;
    text-align: left;
    line-height: 33px;
}
.form-row .right {
    width: calc(100% - 104px);
    float: right;
}
.form-row input[type="text"],.form-row input[type="email"] {
    padding: 0 15px;
    width: 100%;
    height: 33px;
    font-size: 13px;
    color: #bcbcbc;
    line-height: 33px;
    border: 1px solid #d9d9d9;
    border-radius: 50px;
    background: #fff;
}
.form .holder {
    margin-right: -3px;
}
.form .column0 {
    padding: 0 3px 0 0;
    width: 23%;
    float: left;
}
.form .column1 {
    padding: 0 3px 0 0;
    width: 30%;
    float: left;
}
.form .column2 {
    padding: 0 3px 0 0;
    width: 40%;
    float: left;
}
.form .select {
    width: 100%;
    margin-right: 10px;
    position: relative;
    height: 37px;
    display: block;
    float: left;
}
.form .select select {
    width: 100%;
    padding: 0 20px 0 15px;
    height: 33px;
    font-size: 13px;
    color: #bcbcbc;
    margin: 0;
    border: 1px solid #d9d9d9;
    border-radius: 50px;
    outline: none;
    display: inline-block;
    cursor: pointer;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.form .select:after {
    content: url('../images/select-arrow1.png');
    position: absolute;
    top: 10px;
    right: 10px;
    pointer-events: none;
}
/* ### account ### */

.account {
    padding: 7px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
}
.account-block {
    padding: 29px 0px;
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
    text-align: center;
    background: #fdf2f2;
}
.account .account-icon {
    width: 53px;
    height: 53px;
    font-size: 24px;
    color: #fff;
    display: inline-block;
    line-height: 45px;
    border: 4px solid #fff;
    border-radius: 100%;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 16px;
    top: 20px;
    background: #9d0012;
}
.account h2 {
    padding: 0 100px 0 0;
    text-align: center;
    font-size: 18px;
    color: #6d7c86;
    font-weight: normal;
}
.account h2 span {
    font-weight: 700;
}
.account .register {
    padding: 0 33px;
    font-family: 'Arial';
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    line-height: 42px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 33px;
    top: 24px;
    background: #09c72d;
}
/* ### loader ### */

.loader {
    padding-top: 47px;
    padding-bottom: 117px;
    text-align: center;
    overflow: hidden;
    background: #f9f9f9;
}
.loader a {
    display: inline-block;
    font-size: 18px;
    color: #6d7c86;
    text-decoration: none;
}
.loader a span {
    margin-right: 15px;
    font-size: 25px;
}
/* ### profile ### */

.profile {
    padding-top: 20px;
    background: #f9f9f9;
}
/* ### left-bar ### */

.left-bar {
    width: 220px;
    float: left;
}
/* ### premium ### */

.premium {
    padding: 7px;
    margin-bottom: 12px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    background: #fff;
}
.premium-block {
    padding: 29px 26px;
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
    text-align: center;
    background: #fdf2f2;
}
.premium .cup {
    font-size: 42px;
    color: #9d0012;
    display: inline-block;
}
.premium h4 {
    padding: 23px 0;
    text-align: center;
    font-size: 12px;
    color: #6d7c86;
    font-weight: normal;
}
.premium h4 span {
    font-weight: 700;
}
.premium .register {
    padding: 12px 33px;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    line-height: 23px;
    border-radius: 5px;
    border: none;
    background: #09c72d;
}
/* ### links ### */

.links {
    padding: 7px;
    margin-bottom: 12px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    background: #fff;
}
.links-block {
    padding: 40px 0px 10px 0;
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
    text-align: center;
    background: #f1f1f1;
}
.links ul {
    list-style: none;
}
.links li {
    padding-bottom: 26px;
}
.links li a {
    font-size: 18px;
    color: #5a6972;
    text-decoration: none;
    text-transform: uppercase;
}
.links li a:hover {
    text-decoration: underline;
}
/* ### wrapper right ### */

.right-bar {
    padding-left: 18px;
    width: calc(100% - 220px);
    float: right;
}
.right-bar-block {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    overflow: hidden;
}
/* ### profile-top-detail ### */

.profile-top-detail {
    padding: 30px 25px;
    overflow: hidden;
    width: 100%;
}
.profile-top-detail .image {
    width: 64px;
    height: 64px;
    border: 3px solid #d9d9d9;
    border-radius: 100%;
    overflow: hidden;
    float: left;
}
.profile-top-detail .info {
    float: left;
    padding: 0px 0px 0px 14px;
}
.profile-top-detail h4 {
    padding: 2px 0px;
    font-size: 18px;
    color: #333333;
}
.profile-top-detail h4 span {
    font-weight: 400;
}
.profile-top-detail span.profile-top-text {
    font-size: 14px;
    color: #6d7c85;
    text-decoration: none;
}
.profile-top-detail a.button {
    margin-left: 17px;
    padding: 0px 15px;
    line-height: 43px;
    display: block;
    float: left;
    font-size: 14px;
    color: #09c72d;
    text-decoration: none;
    border: 1px solid #09c72d;
    border-radius: 5px;
}
.profile-top-detail a.button.button--blue {
    border-color: #0499bf;
    color: #0499bf;
}
.profile-top-detail a.button.button--gray {
    border-color: #979797;
    color: #979797;
}
.profile-top-detail a.button:hover {
    text-decoration: underline;
}
.profile-top-detail .button-right {
    float: right;
}
/* ### gallery ### */

.gallery {
    width: 100%;
    overflow: hidden;
}
.gallery ul {
    margin-right: -8px;
}
.gallery li {
    padding: 0px 8px 0px 0px;
    float: left;
    /*width: 25%;*/
	position:relative;
}
.gallery .detail {
	position: absolute;
	left:0;
	top:50%;
	margin: -20px 0px 0px 0px;
	text-align: center;
	font-size: 14px;
	color: #fff;
	height:40px;
	width:100%;
		}
.gallery .detail span {
		display: block;
			}
.gallery .detail .icon {
		font-size: 20px;
			}

.gallery img {
    width: auto;
    max-height: 200px;
    max-width: 200px;
}
/* ### newsletter ### */

.newsletter {
    padding: 43px 98px;
    text-align: center;
    width: 100%;
}
.newsletter p {
    padding: 0px 0px 24px 0px;
    font-size: 13px;
    color: #77858e;
    text-align: center;
}
.newsletter input[type="text"], .newsletter input[type="email"], .newsletter input[type="number"], .newsletter textarea {
    padding: 0px 20px;
    width: calc(100% - 190px);
    line-height: 46px;
    font-size: 14px;
    color: #333;
    border: 1px solid #d8d8d8;
    float: left;
    border-radius: 3px;
}
.newsletter .button {
    margin-left: 20px;
    width: 170px;
    float: left;
    line-height: 46px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    border-radius: 3px;
    border: none;
    background: #0499bf;
}
.newsletter .button:hover {
    text-decoration: underline;
}
/* ### slider ### */

.slider-block {
    padding-top: 17px;
    padding-bottom: 17px;
    background: #fff;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

.slider-block .slick-list { overflow: hidden;}

.holder {
    width: 100%;
    overflow: hidden;
}
.slider {
    position: relative;
}



.slider .slide {
    float: left;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.slider img {
    border-radius: 100%;
    display: inline-block;
    height: 72px;
    width: 71px;
}
.online {
    width: 17px;
    height: 17px;
    background: #41c100;
    border: 3px solid #fff;
    display: block;
    position: absolute;
    left: 70%;
    bottom: 4px;
    border-radius: 100%;
}
.slick-dots {
    display: none;
}
.slick-next {
    width: 15px;
    height: 20px;
    display: block;
    text-indent: -99999px;
    z-index: 999;
    background: url(../images/arrow-next.png) left top no-repeat;
}
.slick-prev {
    width: 15px;
    height: 20px;
    display: block;
    text-indent: -99999px;
    z-index: 999;
    background: url(../images/arrow-prev.png) left top no-repeat;
}
.slick-next:hover {
    z-index: 999;
    background: url(../images/arrow-next.png) left top no-repeat;
}
.slick-prev:hover {
    z-index: 999;
    background: url(../images/arrow-prev.png) left top no-repeat;
}
/* ### information ### */

.regular-page .information {
    padding-top: 50px;
}

.information {
    padding-bottom: 20px;
    overflow: hidden;
    background: #f9f9f9;
}
.information__cover {
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    background: #fff;
}
.information__block {
    padding: 50px 48px;
    border-bottom: 1px solid #e8e8e8;
}
.information .title {
    padding: 0 0 20px 0;
    display: block;
    font-size: 14px;
    color: #333333;
    font-weight: 700;
    text-transform: uppercase;
}
.information p {
    padding: 0 0 20px 0;
    font-size: 12px;
    color: #6d7c85;
}
.information p span {
    width: 207px;
    display: inline-block;
    color: #333;
    font-weight: 600;
}
.information p.italic {
    font-style: italic;
}
.information ul {
    list-style: none;
}
.information li {
    padding: 0 0 3px 28px;
    font-size: 12px;
    color: #6d7c85;
    background: url(../images/bullet.png) left 7px no-repeat;
}
/* ### footer ### */

.footer {
    box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #9d0012;
    background-color: #fff;
}
/* ### footer-top ### */

.footer-top {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #d2d2d2;
}
.footer-top ul {
    list-style: none;
}
.footer-top li {
    margin-right: 24px;
    float: left;
}
.footer-top li a {
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 100%;
    text-decoration: none;
    overflow: hidden;
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 42px;
}
.footer-top li.brown a {
    background: #9d0012;
}
.footer-top li.blue a {
    background: #425caf;
}
.footer-top li.orange a {
    background: #dd4b39;
}
.footer-top li.skyblue a {
    background: #00b0ed;
}
/* ### footer-bottom ### */

.footer-bottom {
    padding: 23px 0 44px 0;
    width: 100%;
    overflow: hidden;
}
.footer-bottom .list1 {
    padding-bottom: 10px;
    width: 100%;
    overflow: hidden;
}
.footer-bottom .list1 ul {
    list-style: none;
}
.footer-bottom .list1 li {
    padding: 0 19px 0 0;
    float: left;
}
.footer-bottom .list1 li a {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    font-weight: 700;
}
.footer-bottom .list1 li a:hover {
    text-decoration: underline;
}
.footer-bottom .list2 {
    padding-bottom: 10px;
    width: 100%;
    overflow: hidden;
}
.footer-bottom .list2 ul {
    list-style: none;
}
.footer-bottom .list2 li {
    padding: 0 17px 0 0;
    float: left;
}
.footer-bottom .list2 li a {
    font-size: 12px;
    color: #858585;
    text-decoration: none;
    font-weight: 300;
}
.footer-bottom .list2 li a:hover {
    text-decoration: underline;
}
/* #Media Queries
================================================== */

@media only screen and (max-width: 1199px) {
    .centered-full {
        padding-left: 20px;
        padding-right: 20px;
    }
    .centered {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (max-width: 979px) {
    .main-menu:not(.mm-menu) {
        display: none;
    }
    .header__menu-toggle {
        display: block;
    }
    .header {
        padding-top: 12px;
        height: 95px;
    }
    .banner .detail {
        width: 80%;
    }
    .filter .col2 {
        padding-top: 15px;
    }
    .account h2 {
        font-size: 13px;
    }
    .account .register {
        right: 17px;
    }
    .newsletter {
        padding: 30px;
    }
    .information p.italic {
        padding: 0 0 20px 0;
    }
    .information p {
        padding: 0 0 20px 150px;
        position: relative;
    }
    .information p span {
        width: 150px;
        position: absolute;
        left: 0px;
    }
}
@media only screen and (max-width: 767px) {
    .banner h1 {
        font-size: 48px;
        line-height: 48px;
    }
    .banner .detail {
        width: 100%;
    }
    .banner {
        padding-top: 26px;
        padding-bottom: 75px;
    }
    .filter .button {
        margin-left: 6px;
    }
    .info p {
        padding: 15px 0px;
    }
    .form-block {
        padding: 23px 40px;
    }
    .account .account-icon {
        position: static;
    }
    .account h2 {
        font-size: 14px;
        padding: 0 20px;
        margin-top: 20px;
    }
    .account .register {
        position: static;
        margin: 20px auto 0 auto;
        display: block;
    }
    .footer-bottom {
        padding: 23px 0px;
    }
    .loader {
        padding: 40px 0px;
    }
    .left-bar {
        width: 100%;
    }
    .right-bar {
        width: 100%;
        padding: 20px 0px 0px 0px;
    }
    .profile-top-detail .button-right {
        padding-top: 20px;
    }
    .information__block {
        padding: 20px 28px;
    }
    .information .title {
        padding: 0 0 10px 0;
        font-size: 12px;
    }
    .information p {
        padding: 0 0 10px 150px;
    }

	.detail { font-size: 12px; }

}
@media only screen and (max-width: 479px) {
    .bg {
        height: 700px;
    }
    .banner h1 {
        font-size: 30px;
        line-height: 30px;
    }
    .banner p {
        padding-right: 0px;
    }
    .filter .label {
        width: 120px;
    }
    .filter .select {
        margin-bottom: 10px;
    }
    .filter .label.small {
        width: auto;
    }
    .banner {
        padding-top: 15px;
        padding-bottom: 50px;
    }
    .banner p {
        padding-bottom: 20px;
    }
    .filter .button {
        margin-left: 36px;
    }
    .form-block {
        padding: 20px;
    }
    .form h2 {
        padding: 0px;
    }
    .form-row label {
        width: 100%;
    }
    .form-row .right {
        width: 100%;
    }
    .form-row {
        padding-bottom: 6px;
    }
    .form .select select {
        padding: 0 20px 0 8px;
    }
    .footer-bottom .list1 ul {
        margin-right: -15px;
    }
    .footer-bottom .list1 li {
        padding-right: 15px;
    }
    .footer-bottom .list2 li:last-child {
        padding-right: 0px;
        padding-top: 10px;
    }
    .profile-top-detail .image {
        float: none;
        margin: 0px auto;
    }
    .profile-top-detail {
        padding: 25px;
    }
    .profile-top-detail a.button {
        margin-bottom: 15px;
    }
    .gallery li {
        width: 50%;
        padding-bottom: 15px;
    }
    .newsletter input[type="text"], .newsletter input[type="email"], .newsletter input[type="number"], .newsletter textarea {
        width: 100%;
    }
    .newsletter .button {
        margin: 15px 0px 0px 0px;
        width: 100%;
    }
    .information__block {
        padding: 20px 15px;
    }
    .information p {
        padding: 0 0 10px 100px;
        font-size: 11px;
    }
    .information p span {
        width: 100px;
    }
}