@charset "utf-8";
/* CSS Document */

/* General page styling */
.container-body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
    overflow-y: auto;
}

body {
     height: 100vh; 
    background: linear-gradient(to bottom, #4A90E2, #003366);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
    display: flex;
    flex-direction: column;
}

*:focus {
	outline:none!important;
	box-shadow: none !important;
}

/* Header */
.ct-navbar-01 {
    background-color: #fff;
    border-color: #f0f0f0;
    height: 85px;
    padding: 7px 30px;
    margin-bottom: 0px;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.web-logo1 {
	width: 160px;
	padding-left: 0px;
	position: relative;
}

@media only screen and (max-width: 1340px) {
    .ct-navbar-01 {
        padding: 7px 15px;
    }
}

@media only screen and (max-width: 991px) {
    .ct-navbar-01 {
        padding: 7px 25px;
    }
}

/* Footer */
footer.footer {
    margin-top: 16px;
    background-color: #fff;
    border-top: 1px solid #e6e6e6;
    padding: 16px;
    font-family: metropolisregular, sans-serif;
    color: #242e42;
    overflow: hidden;
    display: flex;
    margin: 0;
    z-index: 1;
	justify-content: space-between;
}

footer div:last-child {
	text-align: right;
}

@media (max-width: 899px) {
    footer.footer {
        justify-content: center;
        flex-direction: column;
    }

    footer div {
        text-align: center !important;
    }
}

/* Call button */
.sticky-footer {
    position: fixed;
    right: auto;
    bottom: -30px;
    left: auto;
    width: 100%;
    transform: translateY(-100%);
    transition: transform .6s ease, -webkit-transform .6s ease;
    z-index: 9997;
}

.sticky-footer .btn, .sticky-footer .btn:hover {
    border-radius: 25px;
    background-color: #0F345F;
    background-image: none;
    color: #fff;
}

.sticky-footer__wrap {
    display: flex;
    margin: 0 auto;
    margin-left: calc(.75rem*(1 - 0));
}

.btn--icon {
    position: relative;
}

.btn--size-xs {
    padding: 1.25rem 1.875rem;
    font-size: .9375rem;
    line-height: 1;
}

.btn--size-xs.btn--icon {
    padding-left: 3.375rem;
    padding-right: 3.375rem;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}