/*
    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: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}
img{
	max-width: 100%;
	height: auto;
}
body {
    background: url("../images/bg.png") no-repeat center/cover;
}

/* ================================= */
/* :::::::::: 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;
	text-align: center;
	color: #3B3B40;
}
.main h1{
	color: #fff;
	font-size: 55px;
	margin-top: 100px;
}
.main h2{
	color: #fff;
	font-size: 25px;
	margin-top: 50px;
}
.main *>a{
    color: inherit;
}
.main .container{
	padding: 0;
}
.logos_cont{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

/* ================================= */
/* :::::::::: 8. Footer :::::::::::: */
/* ================================= */

footer {
    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: 698px) and (min-width: 709px) {
    html,
    body {
        height: 100%;
    }
	.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 (max-width: 992px) {
	.main .col-md-6:last-child {
		padding-top: 30px;
	}
}

@media only screen and (max-width: 679px) {
	.main h1{
        margin-top: 50px;
    }
}

@media only screen and (max-width: 600px) {
	.main h1{
        font-size: 45px;
    }
	.main h2{
        font-size: 20px;
    }
    .logos_cont img:first-child{
        width: 200px;
    }
}

@media only screen and (max-width: 400px) {
	.main h1{
        font-size: 35px;
    }
	.main h2{
        font-size: 16px;
    }
}