/*
Theme Name: btgalliance
Description: Wordpress Theme for BTG Alliance
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: btgalliance
*/

html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body{
	color: #000;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}

@media screen and (min-width: 576px) and (max-width: 1179px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
		max-width: 96%;
	}
}

@media screen and (min-width: 1440px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
		max-width: 1190px;
	}
}

object{
	pointer-events: none;
}

h1, .h1, h2, .h2{
	font-size: 22px;
}

h1.entry-title{
	margin-top: 100px;
}

h3, .h3{
	font-size: 22px;
}

h4, .h4{
	font-size: 21px;
}

h5, .h5{
	font-size: 19px;
}

h6, .h6{
	font-size: 18px;
}

a, a:link, a:visited, a:active{
	color: #222;
	text-decoration: underline;
}

a:hover, a:focus{
	text-decoration: none;
}

p{
	margin-bottom: 1.5em;
}
	
@media screen and (min-width: 992px){
	h1, .h1, h2, .h2{
		font-size: 34px;
	}
	
	h3, .h3{
		font-size: 24px;
	}
}

@media screen and (max-width: 576px){
	.row>*{
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ~~~~~~~~~~~~~~~~ HEADER ~~~~~~~~~~~~~~~~~ */

header{
	position: static;
	width: 100%;
	padding: 20px 15px 15px;
	z-index: 3;
	transition: all ease .3s;
	background-color: #801206;
}

.header{
	position: relative;
	z-index: 1;
}

header.sticky{
	position: fixed;
	top: 0;
	left: 0;
	padding: 10px 0;
}

@media screen and (min-width: 992px){	
	header{
		position: fixed;
		top: 0;
		left: 0;
		padding: 26px 0;
	}

	header .row{
		align-items: center;
	}

	header.sticky .logo img{
		width: 190px;
	}

	.logo img{
		max-width: 260px;
	}
}


/* ~~~ NAV ~~~ */

.navbar{
	padding: 0;
}

.navbar-nav .menu-item{
	padding: 0;
}

.navbar-nav .menu-item a{
	color: #000;
    text-decoration: none;
    font-weight: 600;
	font-size: 16px;
	line-height: 19px;
    display: block;
    padding: 0 1.5em 33px;
	text-transform: uppercase;
}

.navbar-nav .menu-item a:hover,
.navbar-nav .menu-item a:focus,
.navbar-nav .menu-item a:active,
.navbar-nav .menu-item a.active{
	text-decoration: underline;
}

.navbar-subtitle{
	display: block;
    font-size: 12px;
    color: #231f59;
	margin-bottom: 2px;
}

.navbar-toggler{
	border: 0;
    padding: 8px 2px 0 0;
    width: 48px;
    height: 35px;
    text-align: center;
    position: fixed;
    top: 19px;
    right: 22px;
	background-color: transparent;
	z-index: 9;
}

.navbar-toggler:focus{
	box-shadow: none;
}

.navbar-toggler-icon{
	background: none!important;
}

.navbar-toggler-icon .icon-bar{
	display: block;
	width: 32px;
	height: 3px;
	background: #fff;
	margin: 0 auto 5px;
}

.navbar-default .navbar-nav > li > a{
	display: block;
	padding: 12px 5px 10px 55px;
    margin-bottom: 13px;
    margin-left: 15px;
	text-decoration: none;
	color: #222;
	background-repeat: no-repeat;
}

.navbar-default .navbar-nav > li > a:before{
	content: '';
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.navbar-default .navbar-nav > li > a:hover{
	color: #d1fc25;
}

.navbar-nav > li:hover > ul.sub-menu{
	display: block;
}

.collapsing {
  transition: none !important;
}

.close{
	padding: 14px 0 0 0;
    width: 45px;
    height: 45px;
    text-align: center;
    position: absolute;
	border: 0;
    background-color: transparent;
	top: 14px;
    right: 23px;
    z-index: 9999;
}

.close::before{
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	top: 13px;
    left: 12px;
	background: url('imgs/close.svg') 50% 50% no-repeat;
	border: 0;
	outline: none;
	box-shadow: none;
	z-index: 9999;
}

.modal .close{
	right: 15px;
}

@media screen and (max-width: 768px){	
	#navbarSupportedContent{
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background: #fff;
		padding-top: 8rem;
		z-index: 10;
		opacity: 1;
	}

	#navbarSupportedContent::before{
		content: '';
		position: absolute;
		top: 0;
		left: -40vw;
		width: 40vw;
		height: 100%;
		background: rgba(0,0,0,.5);
	}

	.modal-header .btn-close::before{
		width: 20px;
		height: 20px;
		top: 12px;
		right: 12px;
	}

	.navbar-nav{
		position: relative;
		z-index: 9999;
	}

	header{
		transition: none;
	}

	header.sticky{
		background: transparent;
		height: 0;
	}

	header.sticky .logo{
		display: none;
	}

	header.sticky .navbar-toggler{
		background-color: #801206;
	}
}

@media screen and (min-width: 992px){	
	.navbar-nav .menu-item a{
		padding: 1em;
		font-size: 20px;
		color: #fff;
		font-weight: 500;
	}

	.navbar-expand-lg,
	.navbar-expand-lg .navbar-nav,
	.navbar-expand-lg .navbar-collapse{
		justify-content: end;
	}
	
	#navbarSupportedContent .close{
		display: none;
	}

	header.sticky .navbar-nav .menu-item a{
		font-size: 17px;
	}
}

@media screen and (min-width: 1440px){
	.navbar-nav .menu-item a{
		font-size: 24px;
	}
}

/* ~~~~~~~~~~~~~~~~ END OF HEADER ~~~~~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~~~ CONTENT ~~~~~~~~~~~~~~~~~ */

@media screen and (min-width: 992px){
	#content{
		padding-top: 101px;
	}
}


.section{
	position: relative;
}

/* ~~~~~~~ */

.btn-wrapper{
	display: inline-block;
	position: relative;
}

.btn, a.btn,
.btn:visited, a.btn:visited{
	display: inline-block;
	border: none;
	text-decoration: none;
	letter-spacing: 0;
	padding: 10px 50px 12px;
	border-radius: 0;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	outline: none;
	position: relative;
	z-index: 1;
	box-shadow: none;
}

.btn-primary{
	background: #801206;
	color: #fff;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus{
	background: #000;
	outline: none;
	box-shadow: none;
}

@media screen and (min-width: 992px) {
	.btn, a.btn,
	.btn:visited, a.btn:visited{
		font-size: 18px;
	}
}

/* ~~~ UTP ~~~ */

#utp{
	margin-bottom: 30px;
	background-size: cover;
	min-height: 400px;
}

.utp-gallery .item{
	margin: 0 0 36px;
}

.utp-gallery .item .text{
	margin-top: 36px;
	padding: 0 25px;
	font-weight: 600;
}

.utp-gallery .item img{
	width: auto;
	position: relative;
}

.utp-gallery .item .img{
	position: relative;
}

.utp-gallery .item .img::before{
	content: '';
	display: block; 
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 93px;
	height: 68px;
	background: url('imgs/logo-element-part.svg');
	background-size: 100%;
	z-index: 1;
}

.desktop-about-blocks .item{ 
	font-weight: 600;
	
}

@media screen and (min-width: 992px){
	#utp{
		background: none;
		min-height: auto;
	}

	.utp-gallery{
		display: flex;
		justify-content: center;
	}

	.utp-gallery .item{
		margin: 15px 6px 0 0;
		width: 100%;
	}

	.utp-gallery .item:last-child{
		margin-right: 0;
	}

	.utp-gallery .item .img{
		height: auto;
		margin-bottom: 64px;
	}

	.desktop-about-blocks .item{ 
		font-size: 22px;
		line-height: 34px;
	}
	
	.utp-gallery .item .img::before{
		bottom: -23px;
		width: 145px;
		height: 106px;
	}
}

#about{
	margin-bottom: 30px;
}

#about .dekstop-about-blocks{
	display: none;
}

#about .entry{
	font-size: 16px;
	font-weight: 300;
	display: flex;
}

#about .btn-wrapper{
	text-align: center;
	width: 100%;
}

#about .logo-element{
	min-width: 77px;
	margin-right: 23px;
}

@media screen and (min-width: 992px){
	#about .dekstop-about-blocks{
		display: flex;
	}

	#about .entry{
		font-size: 22px;
		margin-bottom: 35px;
	}

	#about .btn-wrapper{
		text-align: left;
	}

	#about hr{
		margin: 50px 0 45px;
	}

	#about .logo-element{
		margin-left: 10px;
		margin-right: 72px;
		min-width: 100px;
	}

	#about .about-full-block{
		margin-top: 100px;
	}
}

#about-icons{
	background: #801206;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	margin-bottom: 36px;
	padding: 136px 0 70px;
}

#about-icons .item{
	display: flex;
	justify-content: space-between;
	max-width: 360px;
	margin-bottom: 60px;
	padding-left: 20px;
	padding-right: 20px;
}

#about-icons .item .img{
	min-width: 80px;
}

#about-icons .item .text{
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #fff;
}
 
@media screen and (min-width: 992px){
	#about-icons{
		margin-top: 45px;
		padding: 98px 0 90px;
		margin-bottom: 125px;
		box-shadow: none;
	}

	#about-icons .item{
		max-width: 360px;
		margin-bottom: 0;
		padding-left: 0;
		padding-right: 0;
	}

	#about-icons .item .text{
		font-weight: 600;
		font-size: 16px;
		line-height: 19px;
		color: #fff;
	}
}

#services{
	margin-bottom: 32px;
}

#services h2{
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

#services .item{
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	text-transform: uppercase;
	margin-bottom: 28px;
}

#services .item .img{
	position: relative;
}

#services .item .img::before{
	content: '';
	display: block;
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 93px;
	height: 68px;
	background: url('imgs/logo-element-part.svg');
	background-size: 100%;
	z-index: 1;
}

#services .item .text{
	margin-bottom: 33px;
}

@media screen and (min-width: 992px){
	#services{
		margin-bottom: 145px;
	}

	#services h2{
		font-size: 36px;
		line-height: 43px;
		margin-bottom: 45px;
	}

	#services .item{
		font-size: 32px;
		line-height: 38px;
		position: relative;
	}

	#services .row{
		position: relative;
	}

	#services .row .item:nth-child(even){
		margin-top: 247px;
	}

	#services .item .text{
		max-width: 348px;
		position: absolute;
		margin-bottom: 0;
	}

	#services .row .item:nth-child(odd) .text{
		top: 0;
		right: -68%;
	}

	#services .row .item:nth-child(even) .text{
	    text-align: right;
        bottom: 0;
        left: -68%;
	}

	#services .item .img::before{
		bottom: -23px;
		width: 145px;
		height: 106px;
	}
}

#advantages{
	background: #ddd;
	margin: 0 0 40px;
	padding: 40px 0;
}

#advantages h2{
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 80px;
	margin-left: 15px;
}

#advantages .items{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

#advantages .item{
	min-width: 50%;
	max-width: 50%;
	text-align: center;
	margin-bottom: 50px;
	font-weight: 500;
}

#advantages .item .img{
	display: flex;
    align-items: center;
    justify-content: center;
	width: 130px;
	height: 150px;
	background: url('imgs/advants-bg.svg');
	margin: 0 auto 29px;
}

@media screen and (min-width: 992px){
	#advantages{
		padding: 80px 0 70px;
		margin: 0 0 85px;
	}

	#advantages h2{
		font-weight: 700;
		font-size: 36px;
		line-height: 43px;
		margin-bottom: 60px;
		margin-left: 0;
	}

	#advantages .item{
		min-width: auto;
		margin-bottom: 0;
		font-size: 22px;
		line-height: 26px;
	}

	#advantages .item .img{
		margin: 0 auto 27px;
	}
}

#contacts h2{
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 37px;
	margin-left: 13px;
}

.contacts-wrapper{
	font-weight: 300;
	margin-left: 13px;
	margin-right: 13px;
}

.contacts-wrapper .address{
	margin-bottom: 15px;
}

.contacts-wrapper a{
	text-decoration: none;
}

#contacts .btn-wrapper{
	width: 100%;
	margin: 30px 0 0;
}

#contacts .map{
	margin: 0 13px 30px;
}

@media screen and (min-width: 992px){
	#contacts h2{
		font-weight: 700;
		font-size: 36px;
		line-height: 43px;
		margin-bottom: 60px;
		margin-left: 0;
	}

	.contacts-wrapper{
		font-size: 22px;
		line-height: 30px;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		margin-top: -10px;
		margin-left: 0;
		margin-right: 0;
	}

	.contacts-wrapper .address{
		margin-bottom: 50px;
	}

	#contacts .btn-wrapper{
		margin: 60px 0 0;
	}

	#contacts .map{
		margin: 0;
	}
}

/* ~~~ FOOTER
~~~ */

footer{
	background: #393939;
	color: #fff;
	margin: 45px 0 0;
	padding: 28px 0 39px;
}

footer a{
	color: #fff!important;
	text-decoration: none!important;
}

footer .logo img{
	width: 130px;
}

footer .copyright{
	margin-top: 60px;
	font-weight: 300;
	font-size: 14px;
	line-height: 19px;
}

@media screen and (min-width: 992px){
	footer{
		margin-top: 120px;
		padding: 40px 0 100px;
	}

	footer .logo img{
		width: 222px;
	}

	footer .copyright{
		margin: 18px 35px 0;
		text-align: right;
		font-size: 14px;
	}
}

@media screen and (max-width: 375px) {
	footer .copyright{
		margin-top: 11px;
		font-size: 10px;
	}
	
}

/* ~~~ FORM STYLES ~~~ */

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]), textarea{
	font-size: 15px;
	padding: 15px;
	box-shadow: none;
	display: inline-block;
	margin-bottom: 20px;
	width: 100%;
	background: #EEEEEE;
	border: none;
	color: #000;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus, textarea:focus{
	background: #fff;
	border: 1px solid #697F87;
	outline: none;
}

input[type="submit"]{
	border: 0!important;
}

textarea{
	min-width: 100%;
	width: 100%;
	max-width: 100%;
	min-height: 125px;
	height: 125px;
	max-height: 160px;
}

label{
	width: 100%;
    text-align: left;
    font-size: 16px;
    margin-bottom: 10px;
    margin-left: 5px;
}

::-webkit-input-placeholder{color: #697F87;}
::-moz-placeholder{color: #697F87;}
:-moz-placeholder{color: #697F87;}
:-ms-input-placeholder{color: #697F87;}

:focus::-webkit-input-placeholder{color: transparent}
:focus::-moz-placeholder {color: transparent}
:focus:-moz-placeholder{color: transparent}
:focus:-ms-input-placeholder{color: transparent}

/* ~~~ SLICK THEME.CSS HERE ~~~ */

/* Arrows */

.slick-track{
    display: flex !important;
}

.slick-slide{
    height: inherit !important;
}

.slick-prev,
.slick-next{
	font-size: 0;
    line-height: 0;
    position: absolute;
    top: 55%;
    width: 33px;
	height: 16px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
	z-index: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus{
    color: transparent;
    outline: none;
    background: transparent;
}

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

.slick-prev.slick-disabled::before,
.slick-next.slick-disabled::before{
    opacity: .6;
	filter: grayscale(1);
}

.slick-prev::before,
.slick-next::before{
    content: '';
	display: block;
	position: absolute;
	width: 33px;
	height: 16px;
	top: 0;
	left: 0;
	background-image: url(imgs/arrow.svg);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev::before{
	transform: scale(-1,1);
}

.slick-prev{
	left: 10px;
}

.slick-next{
    right: 10px;
}

.slick-slide img{
	margin: 0 auto;
}

@media screen and (min-width: 992px){	
	.slick-prev,
	.slick-next{
		top: 50%;
	}
	
	.slick-prev{
		left: -15px;
	}

	.slick-next{
		right: -15px;
	}
}

/* Dots */
.slick-slider{
    margin-bottom: 30px;
}

.slick-dots{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li{
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 15px;
    height: 15px;
	border-radius: 50%;
	padding: 5px;
    cursor: pointer;
    border: 0;
    outline: none;
    background: #6c6c6c;
}

.slick-dots li button:hover{
    background: #9b9b9b;
}

.slick-dots li.slick-active button{
    background: #0071ce;
}


@media screen and (min-width: 992px){
	.slick-dots{
		width: 110px;
		left: 275px;
	}
}

/* ~~~ CUSTOM ACCEPTANCE ~~~ */

.acceptance{
	display: inline-block;
	font-size: 15px;
	margin-bottom: 5px;
	text-align: left;
}

.acceptance span.wpcf7-list-item{
	margin: 0;
}

.custom-checkbox {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.acceptance label {
	color: #fff;
	font-size: 14px;
	display: inline-flex;
	align-items: top;
	user-select: none;
}

.acceptance label::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid #fff;
	margin-top: 3px;
	margin-right: 0.5em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
}

.acceptance label a{
	text-decoration: underline!important;
}

label.has-cheked-input::before{
	background-image: url("imgs/accept-check.svg");
}

/* ~~~ SOME CF7 STYLES HERE ~~~ */

div.wpcf7-response-output {
	margin: 1em 0.5em 1em;
	padding: 0.2em 1em;
	font-size: 12px;
	line-height: 1.2em;
	text-align: center;
	clear: both;
}

div.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	width: 1px;
	margin: 0;
	padding: 0;
	border: 0;
}

.wpcf7-form-control-wrap {
	position: relative;
}

span.wpcf7-not-valid-tip {
	color: #f00;
	font-size: 12px;
	font-weight: normal;
	display: block;
	position: absolute;
	top: -6px;
	right: 6px;
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
	position: absolute;
	top: 20%;
	left: 20%;
	z-index: 100;
	border: 1px solid #ff0000;
	background: #fff;
	padding: .2em .8em;
}

.grecaptcha-badge{
	opacity: 0;
}

.wpcf7 input[name="order-item"],
.wpcf7-spinner{
	display: none !important;
}

.wpcf7 p{
	margin-bottom: 0;
}

/* ~~~ MODAL STYLES ~~~ */

body.modal-open{
	overflow: visible!important;
	padding-right: 0!important;
}

.modal-body form{
	text-align: center;
}

.modal-dialog{
	width: 92%;
	max-width: 750px;
	box-shadow: none;
	margin: 2% auto 0;
	background: #fff;
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
}

.modal-content{
	border: none;
	box-shadow: none;
	background: transparent;
}

.modal-header{
	border: none;
	padding-top: 25px;
	padding-bottom: 0;
}

.modal-body{
	margin: 0 15px;
	padding: 0 10px 20px;
}

.modal-content .form-title{
    margin-bottom: 30px;
    font-weight: 600;
	font-size: 19px;
	line-height: 23px;
	text-align: left;
	text-transform: uppercase;
}

.modal input, .modal textarea{
	margin-bottom: 15px!important;
}

.modal-content .btn{
	margin-top: 5px;
	outline: none;
}

.modal div.wpcf7-response-output{
	text-align: center;
}

.modal-body form.sent{
	padding: 0 0 40px;
}

.modal-body form.sent .form-title,
.modal-body form.sent p{
	display: none;
}

.modal-body form.sent .wpcf7-response-output{
	font-size: 18px;
	font-weight: 300;
	border: none;
}

@media screen and (min-width: 992px) {
	.modal-body{
		padding: 0 100px 30px 50px;
	}

	.modal-header{
		padding: 35px 45px 0 60px;
	}

	.modal-body form.sent{
		padding: 0 0 40px 50px;
	}
	
	.modal-body form.sent .form-title,
	.modal-body form.sent p{
		display: none;
	}
	
	.modal-body form.sent .wpcf7-response-output{
		font-size: 20px;
	}

	.modal-content .btn{
		margin-top: 15px;
		margin-right: -70px;
	}
	
}

/* ~~~ WP DEFAULT STYLES ~~~ */

img.size-full, img{
	width: auto;
	height: auto;
	max-width: 100%;
}

.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter, div.aligncenter {
    margin: auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float:left;
    margin: 5px 20px 20px 0;
}
.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float:left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pagination h2.screen-reader-text{
	display: none;
}

.nav-links .page-numbers{
	font-size: 17px;
	display: inline-block;
	background: #0099cc;
	color: #fff;
	text-decoration: none;
	padding: 5px 10px;
}

.nav-links .page-numbers:hover{
	background: #f7941c;
}

.nav-links .current,
.nav-links .current:hover{
	background: none;
	color: #323232;
}

/* ~~~ WP DEFAULT GALLERY ~~~ */

.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}