/*
    Name: Mountain
    Description: Responsive Coming Soon 
    Version: 2.0
    Author: MountainTheme

    TABLE OF CONTENTS
    ---------------------------
     1. General
     2. Header
     3. Countdown
     4. Services
     5. Subscribe
     6. Contact
     7. Google map
     8. Footer
     9. Responsive CSS
*/
/* ================================= */
/* :::::::::: 1. General ::::::::::: */
/* ================================= */

html,
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
}
img{
	max-width: 100%;
	height: auto;
}

/* ================================= */
/* :::::::::: 2. Header :::::::::::: */
/* ================================= */

header {
	padding: 15px;
	background: #132147;
}
@keyframes wobbleArrow {
    from {
        bottom: 40px;
    }
    to {
        bottom: 50px;
    }
}
@-webkit-keyframes wobbleArrow {
    from {
        bottom: 40px;
    }
    to {
        bottom: 50px;
    }
}

/* ============================= */
/* :::::::::: 3. Main :::::::::: */
/* ============================= */

.main {
    padding: 50px 15px 50px;
    background-color: #E2E4E6;
	text-align: center;
	color: #3B3B40;
}
.main h2,
.main h3,
.main h4{
	color: #d0a600;
	font-family: 'Bree Serif', serif;
}
.main h2{
	font-size: 45px;
	margin-top: 0;
}
.main .container{
	padding: 0;
}

/* ================================= */
/* :::::::::: 8. Footer :::::::::::: */
/* ================================= */

footer {
    background-color: #C69337;
    padding: 60px 15px 20px;
    color: #ffffff;
	text-align: center;
}
footer a {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    color: #ffffff;
}
footer a:hover {
    color: rgba(236, 240, 241, 1);
    text-decoration: none;
}
.up-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    background: rgba(22, 182, 234, 0.5);
    display: block;
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: absolute;
    top: -26px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.up-btn:hover {
    color: #fff;
    background: rgba(22, 182, 234, 1.0);
}
.up-btn i {
    color: #fff;
}
/* ================================= */
/* :::::: 9. Responsive CSS :::::::: */
/* ================================= */

@media only screen and (min-height: 495px) and (min-width: 600px) {
	.main{
		height: calc(100% - 100px);
		height: -o-calc(100% - 100px); /* opera */
		height: -webkit-calc(100% - 100px); /* google, safari */
		height: -moz-calc(100% - 100px); /* firefox */
		position: relative;
	}
	.main .container{
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		transform: translateY(-50%);
		padding: 0 15px;
	}
}

@media only screen and (min-height: 495px) and (max-width: 600px) {
	.main{
		height: calc(100% - 120px);
		height: -o-calc(100% - 120px); /* opera */
		height: -webkit-calc(100% - 120px); /* google, safari */
		height: -moz-calc(100% - 120px); /* firefox */
		position: relative;
	}
	.main .container{
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		transform: translateY(-50%);
		padding: 0 15px;
	}
}

@media only screen and (min-height: 495px) and (max-width: 340px) {
	.main{
		height: calc(100% - 140px);
		height: -o-calc(100% - 140px); /* opera */
		height: -webkit-calc(100% - 140px); /* google, safari */
		height: -moz-calc(100% - 140px); /* firefox */
		position: relative;
	}
	.main .container{
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		transform: translateY(-50%);
		padding: 0 15px;
	}
}

@media only screen and (max-width: 992px) {
	.main .col-md-6:last-child {
		padding-top: 30px;
	}
}