
@charset "utf-8";

.home {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}
.home_background_container
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.home_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	animation: zoomBackground 5s ease-in-out infinite alternate;
}
@keyframes zoomBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes zoomOutBackground {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}

.home_background::after
{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35); /* 0.5 opacity overlay */
}
.home_content
{
   position: absolute;
      top: 55%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      color: #fff;
      text-align: center;
      padding: 20px;
}
.home_content h3
{
	font-size: 50px;
	line-height:60px;
	font-weight: 700;
	color: #FFFFFF;
		text-shadow: rgba(0,0,0,1) 0 0 1px;

}



.page_section
{
	padding-top: 117px;
	padding-bottom: 117px;
}
.section_title
{

}
.section_title h1
{
	display: block;
	color: #1a1a1a;
	font-weight: 500;
	padding-top: 24px;
}
.section_title h1::before
{
	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: 55px;
	height: 4px;
	content: '';
	background: #ffb606;
}

/*********************************
8. Buttons
*********************************/

.button
{
	cursor: pointer;
}
.button:hover
{
	box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}
.button a
{
	font-size: 14px;
	line-height: 48px;
	font-weight: 700;
	text-transform: uppercase;
}
.button_1
{
	width: 202px;
	height: 48px;
}

/*********************************
9. Contact
*********************************/

.contact
{
	padding-top: 106px;
	padding-bottom: 117px;
}
.contact_title
{
	font-size: 30px;
	font-weight: 500;
	color: #1a1a1a;
}
.contact_form_container
{
	margin-top: 40px;
}
.input_field
{	font-size:16px;
	width: 100%;
	background: #f8f4f4;
	border: solid 2px transparent;
	margin-bottom: 14px;
	height: 42px;
	padding-left: 33px;
}
.input_field:focus
{
	outline: none !important;
	border-color: #FFB606;
}
.text_field
{
	width: 100%;
	height: 189px;
	background: #f8f4f4;
	font-size:16px;
	border: solid 2px transparent;
	padding-left: 33px;
	margin-bottom: 14px;
	margin-top: 14px;
}
.text_field:focus
{
	outline: none !important;
	border-color: #FFB606;
}
.contact_send_btn
{
	width: 100%;
	height: 48px;
	background: #980C03;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFFFFF;
	cursor: pointer;
	border: none;
}
.contact_send_btn:focus
{
	outline: solid 1px #ffb606;
	border: green !important;
}

/*********************************
10. About
*********************************/

.about_title
{
	font-size: 30px;
	font-weight: 500;
	color: #1a1a1a;
}
.about_text
{
	margin-top: 20px;
}
.contact_info_item {
  display: flex;              /* KEY */
  align-items: flex-start;    /* icon top aligned */
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-bottom: 22px;
}

.contact_info_icon {
  width: 30px;
  height:30px;
  margin-right: 10px;
  flex-shrink: 0;             /* prevent icon shrinking */
}

.contact_info_icon img {
  width: 100%;
  height: auto;
}

.contact_info_text {
  line-height: 1.6;
}

/*********************************
11. Google Map
*********************************/

#google_map
{
	width: 100%;
	height: 532px;
	margin-top: 117px;
}
.map_container
{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#map
{
	width: 100%;
	height: calc(100% + 30px);
}

