@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Home
4. Header
	4.1 Top bar
	4.2 Main Menu
5. Menu
6. Features
7. Info
8. Testimonials & FAQ
	8.1 Testimonials
	8.2 Accordions
9. CTA
10. Map
11. Contact

******************************/


/*********************************
1. Fonts
*********************************/



/*********************************
2. Body and some general stuff
*********************************/



/*********************************
3. Home
*********************************/

.home_ourservices
{
	max-width: 100%;
	height: calc(100vh + 682px);
    /* max-height: 100%; */
}
.container_ourservices
{
    padding: 0px 0px;
}
.home_ourservices .container_ourservices
{
	padding: 0px;
}
.home_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.home_content
{
	width: 100%;
	height: 514px;
}
.home_content_inner
{
	position: absolute;
	top: 59%;
	left: 0;
}
.home_title
{
	font-family: 'gill', sans-serif;
	font-size: 72px;
	color: #FFFFFF;
	line-height: 0.75;
}
.home_container_text
{
    font-family: 'Inria Serif';
    font-size: 7rem;
    color: #FFFFFF;
}

/*********************************
4. Services
*********************************/

.ourservices
{
	width: 100%;
    background: #123050;
}
.ourservice
{
    max-width: 100%;
	height: 611px;
	background-color: #FFFFFF;
    background-size: cover;
    text-align: center;
    padding-top: 7%;
    padding-bottom: 10%;
    padding-right: 7.7%;
    padding-left: 7.7%;
}
.ourservice_text_title
{
    font-family: 'Inria Serif';
    position: relative;
    color: #123050;
    font-size: 7rem;
    width: 100%;
    text-align: left;
}
.ourservice_text_content
{
    font-family: 'Abel';
    position: relative;
    color: #000000;
    font-size: 2.3rem;
    line-height: 1.3;
    text-align: justify;
    justify-content: inter-word;
}
.ourservice_image
{
    width: calc(100% / 2);
	height: 611px;
    background-size: cover;
    text-align: center;
    bottom: 3px;
}
.ourservice_image_text
{
    position: absolute;
    background-color: rgba(0, 29, 83, 0.5);
    bottom: 0;
    width: 100%;
    text-align: center;
}
.ourservice_image_text p
{
    font-family: 'Abel';
    font-size: 7.5rem;
    color: #FFFFFF;
    text-align: center;
}

/*********************************
5. Contact
*********************************/

.contacts
{
	width: 100%;
	padding-top: 75px;
	padding-bottom: 75px;
	background: #FFFFFF;
    border-bottom: ridge #000000;
}
.contact_data
{
    top: 10%;
    padding-left: 5%;
    padding-bottom: 15%;
    height: 100%;
}
.contact_data3
{
    top: 10%;
    height: 100%;
    align-items: center;
    text-align: center;
}
.contact_data_text
{
    font-family: 'Abel';
    color: #FFFFFF;
	line-height: 2.14;
	padding-top: 10px;
}
.contact_data_text3
{
    font-family: 'Inria Serif';
    color: #FFFFFF;
    font-size: 4rem;
	padding-top: 10px;
}
.contact_data p:last-of-type
{
	margin-bottom: 0;
}
.col-sm-con
{
    max-width: 260px;
    background-color: #D86758;
}
.col-md-con
{
    max-width: 500px;
    background-color: #123050;
    border-right: solid 1px;
    border-color: #FFFFFF;
    padding-right: 0px;
}
.link_button_con
{
    top: 10%;
    left: 19%;
	width: 140px;
	height: 45px;
	background: #FFFFFF;
	text-align: center;
}
.link_button_con a
{
	display: block;
	position: relative;
	line-height: 45px;
	font-family: 'Inria Serif', sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #123050;
	z-index: 1;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.link_button_con a::after
{
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 50%;
	height: 100%;
	background: #123050;
	content: '';
	opacity: 0;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	z-index: -1;
}
.link_button_con:hover a::after
{
	width: 100%;
	opacity: 1;
}
.link_button_con:hover a
{
	color: #FFFFFF;
}
