﻿    .gal {
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
	}	
	.gal img{ width: 100%; padding: 0px 0;}
@media (max-width: 500px) {
		.gal {
	-webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1;
	}
	}

/* ======= Button style ======= */
/* button 1 */
.button-1 {
    display: inline-block;
    height: auto;
    padding: 12px 27px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: #fff;
    color: #141414;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}
.button-1:hover {
    border: 1px solid #BD945A;
    background-color: #BD945A;
    color: #fff;
    transform: translate3d(0px, -6px, 0.01px);
}
/* button 2 */
.button-2 {
    display: inline-block;
    height: auto;
    padding: 12px 27px;
    border: 1px solid #BD945A;
    border-radius: 5px;
    background-color: #BD945A;
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}
.button-2:hover {
    border: 1px solid #fff;
    background-color: #fff;
    color: #141414;
    transform: translate3d(0px, -6px, 0.01px);
}
/* button 3 */
.button-3 {
    display: inline-block;
    height: auto;
    padding: 12px 27px;
    border: 1px solid #448BC6;
    border-radius: 5px;
    background-color: #448BC6;
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}
.button-3 i {
    margin-right: 5px;
}
.button-3:hover {
    border: 1px solid #3571A3;
    background-color: #3571A3;
    color: #fff;
    transform: translate3d(0px, -6px, 0.01px);
}

/* button 4 */
.button-4 {
    display: inline-block;
    height: auto;
    padding: 12px 27px;
    border: 1px solid #25D366;
    border-radius: 5px;
    background-color: #25D366;
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}
.button-4 i {
    margin-right: 5px;
}
.button-4:hover {
    border: 1px solid #1DB154;
    background-color: #1DB154;
    color: #fff;
    transform: translate3d(0px, -6px, 0.01px);
}
/* button 5 */
.button-5 {
    display: inline-block;
    height: auto;
    padding: 12px 27px;
    border: 1px solid #BE206B;
    border-radius: 5px;
    background-color: #BE206B;
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
}
.button-5 i {
    margin-right: 5px;
}
.button-5:hover {
    border: 1px solid #9F1959;
    background-color: #9F1959;
    color: #fff;
    transform: translate3d(0px, -6px, 0.01px);
}


