/* Font */
body {
	font-family: 'Poppins', sans-serif;
}

/* General */
html {
	scroll-behavior: smooth;
}

.custom-btn {
	color: #fff;
	background-color: #006fa8;
	padding: 12px;
	font-size: 1.1rem;
	font-weight: bold;
	position: absolute;
	margin-top: 2vh;
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    font-size: 1.1rem;
}

.custom-btn:hover {
	color: #fff;
	background-color: #006294;
	text-decoration: none;
}

.hover-btn {
	color: #fff;
	background-color: #006fa8;
	padding: 12px;
	font-size: 1.1rem;
	font-weight: bold;
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    font-size: 1.1rem;
    border: 2px solid #006fa8;
}

.hover-btn:hover {
	color: #006fa8;
	background-color: #fff;
	text-decoration: none;
}

.floating-box {
    background-color: #fff;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.1);
    padding: 15px;
    margin-bottom: 2vh;
    border-radius: 10px;
    height: 220px;
}

.floating-box-title {
	text-align: center;
}

/* Header */
.header-contact-info {
	background-color: #006fa8;
	color: #fff;
	height: 50px;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
}

.header-contact-info a {
	color: #fff;
}

.mail {
	margin-left: 15px;
	display: none;
}

@media (min-width: 430px) {
	.header-contact-info {
		background-color: #006fa8;
		color: #fff;
		height: 50px;
		font-size: 1.1rem;
		display: flex;
		align-items: center;
	}


}

.navbar-brand {
	width: 80%
}

#logo {
	max-width: 100%;
	height: auto;
}

nav {
	font-size: 1.2em;
	border-bottom: 2px solid #006fa8;
}

@media (min-width: 800px) {
	#logo {
		width: 35%;
		float: left;
	}

	.nav-container {
		display: flex;
		justify-content: center;
	}
}

.nav-link {
	font-weight: bold;
	color: #3f3f3f
}

.nav-link:hover {
	color: #006fa8;
}

.nav-link.active {
	color: #006fa8;
}

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


.icon-bar {
	width: 22px;
	height: 2px;
	background-color: #000;
	display: block;
	transition: all 0.2s;
	margin-top: 4px
}

.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
  opacity: 0;
}

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

/* Hero */
.jumbotron {
	color: #fff;
	background-image: url('../img/code_header.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 60vh;
	padding: 0;
}

.jumbotron-text {
	position: absolute;
	margin-top: 5vh;
}

.layer {
	background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Services */
.service-icon {
	font-size: 1.4em;
	text-align: center;
	color: #006fa8;
}

/* Contact */
.contact-info {
	font-size: 1.1rem;
	border-radius: 5px;
	border: 2px solid #006fa8;
	padding: 5px;
	margin: 15px 0;
}
.contact-info i {
	color: #006fa8;
	padding-right: 15px;
}

.contact-info a {
	color: #000;
}

@media (min-width: 767px) {
	.contact-info {
		border: none;
	}
}

.map-container {
	height: 70%;
}

.contact-form {
	margin-top: 25px;
}

/* Footer */
footer {
	margin-top: 5vh;
	height: 100px;
	background-color: #000;
	color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
}