@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Logo
	3.2 Main Nav
	3.3 Header Side
	3.4 Hamburger
4. Menu
	4.1 Menu Social
	4.2 Menu copyright
5. Home
7. Page Section
8. Buttons
9. News
	9.1 Comments
	9.2 Leave Comment
10. Sidebar
11. Footer
	11.1 Newsletter
	11.2 Footer Content
	11.3 Footer Copyright


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800|Roboto:400,500,700');

/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
body
{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: #FFFFFF;
	color: #a5a5a5;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 2.29;
	font-weight: 400;
	color: #a5a5a5;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ffa07f;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
	position: relative;
	color: #FF6347;
}
p a:hover
{
	color: #FFFFFF;
	background: #ffa07f;
}
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	background: #FFD266;
	color: #C88E00;
}
p::selection
{
	background: #FFD266;
	color: #C88E00;
}
h1{font-size: 36px;}
h2{font-size: 22px;}
h3{font-size: 18px;}
h4{font-size: 14px;}
h5{font-size: 11px;}
h1, h2, h3, h4, h5, h6
{
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	
}
::-webkit-input-placeholder
{
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #a5a5a5 !important;
}
:-moz-placeholder /* older Firefox*/
{
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #a5a5a5 !important;
}
::-moz-placeholder /* Firefox 19+ */ 
{
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #a5a5a5 !important;
} 
:-ms-input-placeholder
{ 
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #a5a5a5 !important;
}
::input-placeholder
{
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #a5a5a5 !important;
}
.form-control
{
	color: #db5246;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.nopadding
{
	padding: 0px !important;
}

/*********************************
3. Header
*********************************/

.header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 72px;
	background: #FFFFFF;
	border-bottom: 2px solid #ee334a;
	z-index: 10;
	-webkit-transition: box-shadow 200ms ease;
	-moz-transition: box-shadow 200ms ease;
	-ms-transition: box-shadow 200ms ease;
	-o-transition: box-shadow 200ms ease;
	transition: box-shadow 200ms ease;
}
.header.scrolled
{
	box-shadow: 0 4px 20px rgba(0,0,0,0.10);
	border-bottom-color: transparent;
}
.header.scrolled .header_content::before
{
	display: none;
}
.header_content
{
	width: calc(100% - 200px);
	height: 100%;
}
.header_content::before
{
	display: none;
}

/*********************************
3.1 Logo
*********************************/

.logo_container
{
	display: inline-block;
	padding-left: 28px;
}
.logo span
{
	font-family: 'Open Sans', sans-serif;
	font-size: 28px;
	font-weight: 900;
	color: #1a1a1a;
	vertical-align: middle;
	text-transform: uppercase;
	margin-left: 3px;
}

/*********************************
3.2 Main Nav
*********************************/

.main_nav_container
{
	display: inline-block;
	margin-left: auto;
	padding-right: 28px;
}
.main_nav
{
	margin-top: 0;
}
.main_nav_item
{
	display: inline-block;
	margin-right: 32px;
}
.main_nav_item:last-child
{
	margin-right: 0px;
}
.main_nav_item a
{
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	color: #3a3a3a;
	letter-spacing: 0.5px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.main_nav_item a:hover
{
	color: #ee334a;
}

/*********************************
3.3 Header Side
*********************************/

.header_side
{
	width: 200px;
	height: 100%;
	background: #ee334a;
	padding: 0 20px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.header_side img
{
	width: 20px;
	height: 20px;
}
.header_side span
{
	display: block;
	position: relative;
	font-size: 12px;
	font-weight: 600;
	color: #FFFFFF;
	padding-left: 8px;
	line-height: 1.3;
}

/*********************************
3.4 Hamburger
*********************************/

.hamburger_container
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 20px;
	display: none;
	cursor: pointer;
}
.hamburger_container i
{
	font-size: 24px;
	padding: 10px;
	color: #3a3a3a;
}
.hamburger_container:hover i
{
	color: #ee334a;
}

/*********************************
4. Menu
*********************************/

.menu_container
{
	position: fixed;
	top: 0;
	right: -380px;
	width: 380px;
	height: 100vh;
	background: #1a1a1a;
	z-index: 12;
	-webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	visibility: hidden;
	opacity: 0;
	box-shadow: -4px 0 30px rgba(0,0,0,0.4);
}
.menu_container.active
{
	visibility: visible;
	opacity: 1;
	right: 0;
}
.menu
{
	position: absolute;
	top: 110px;
	left: 0;
	padding: 0 40px;
	width: 100%;
}
.menu_list
{
	-webkit-transform: translateY(2rem);
	-moz-transform: translateY(2rem);
	-ms-transform: translateY(2rem);
	-o-transform: translateY(2rem);
	transform: translateY(2rem);
	-webkit-transition: all 500ms 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 500ms 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: all 500ms 200ms cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 500ms 200ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 500ms 200ms cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}
.menu_container.active .menu_list
{
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.menu_item
{
	margin-bottom: 4px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu_item a
{
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: rgba(255,255,255,0.82);
	display: block;
	padding: 10px 0;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_item a:hover
{
	color: #ee334a;
	padding-left: 8px;
}
.menu_close_container
{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ee334a;
	border-radius: 50%;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_close_container:hover
{
	background: #c8001e;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
.menu_close
{
	width: 16px;
	height: 2px;
	background: #fff;
	position: relative;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.menu_close::after
{
	display: block;
	position: absolute;
	top: -7px;
	left: 7px;
	content: '';
	width: 2px;
	height: 16px;
	background: #fff;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after
{
	background: #fff;
}

/*********************************
4.1 Menu Social
*********************************/

.menu_social_container
{
	margin-top: 40px;
	padding: 24px 0 0;
	border-top: 1px solid rgba(255,255,255,0.08);
	-webkit-transform: translateY(2rem);
	-moz-transform: translateY(2rem);
	-ms-transform: translateY(2rem);
	-o-transform: translateY(2rem);
	transform: translateY(2rem);
	-webkit-transition: all 500ms 600ms cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 500ms 600ms cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: all 500ms 600ms cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 500ms 600ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 500ms 600ms cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}
.menu_social_item
{
	display: inline-block;
	margin-right: 10px;
}
.menu_social_item:last-child
{
	margin-right: 0px;
}
.menu_social_item a
{
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_social_item a i
{
	color: rgba(255,255,255,0.70);
	font-size: 14px;
}
.menu_social_item a i:hover
{
	color: #fff;
}
.menu_social_item a:hover
{
	background: #ee334a;
}
.menu_container.active .menu_social_container
{
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/*********************************
4.2 Menu copyright
*********************************/

.menu_copyright
{
	margin-top: 20px;
	padding: 0;
	font-size: 12px;
	color: rgba(255,255,255,0.35);
	-webkit-transform: translateY(2rem);
	-moz-transform: translateY(2rem);
	-ms-transform: translateY(2rem);
	-o-transform: translateY(2rem);
	transform: translateY(2rem);
	-webkit-transition: all 500ms 800ms cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 500ms 800ms cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: all 500ms 800ms cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 500ms 800ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 500ms 800ms cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}
.menu_container.active .menu_copyright
{
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/*********************************
5. Home
*********************************/

.home
{
	width: 100%;
	height: 320px;
}
.home_background_container
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.home_background_container::after
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(26,26,26,0.80) 0%, rgba(238,51,74,0.40) 100%);
	z-index: 1;
}
.home_background
{
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.home_content
{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
	width: 100%;
}
.home_content h1
{
	font-size: 42px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.2;
	margin: 0 0 14px 0;
	letter-spacing: 1px;
}
.page_breadcrumb
{
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(255,255,255,0.70);
}
.page_breadcrumb a
{
	color: rgba(255,255,255,0.70);
	text-decoration: none;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}
.page_breadcrumb a:hover
{
	color: #ee334a;
}
.breadcrumb_sep
{
	font-size: 10px;
	color: rgba(255,255,255,0.35);
}
.breadcrumb_current
{
	color: #ee334a;
	font-weight: 500;
}

/*********************************
7. Page Section
*********************************/

.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: #ee334a;
}

/*********************************
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: 80px;
	padding-bottom: 100px;
	background: #f5f6fa;
}

/* ---- Contact Form Card ---- */

.contact_form_card
{
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0 10px 50px rgba(0,0,0,0.09);
	overflow: hidden;
}
.contact_form_card_header
{
	background: linear-gradient(135deg, #1a1a1a 0%, #ee334a 100%);
	padding: 32px 36px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	gap: 20px;
}
.contact_form_card_header_icon
{
	width: 56px;
	height: 56px;
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}
.contact_form_card_header_icon i
{
	font-size: 22px;
	color: #FFFFFF;
}
.contact_form_card_header_text h2
{
	font-size: 22px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0 0 4px 0;
}
.contact_form_card_header_text p
{
	font-size: 13px;
	color: rgba(255,255,255,0.72);
	margin: 0;
	line-height: 1.4;
}
.contact_form_card_body
{
	padding: 36px;
}

/* Form rows & groups */

.cf_row
{
	margin-bottom: 18px;
}
.cf_row_2col
{
	display: -webkit-flex;
	display: flex;
	gap: 16px;
}
.cf_row_2col .cf_group
{
	-webkit-flex: 1;
	flex: 1;
}
.cf_group
{
	position: relative;
}
.cf_icon
{
	position: absolute;
	left: 0;
	top: 0;
	width: 44px;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	color: #bcc0cc;
	font-size: 13px;
	pointer-events: none;
	-webkit-transition: color 200ms ease;
	transition: color 200ms ease;
	z-index: 1;
}
.cf_icon_textarea
{
	-webkit-align-items: flex-start;
	align-items: flex-start;
	padding-top: 15px;
}
.cf_input
{
	width: 100%;
	height: 50px;
	background: #f8f9fc;
	border: 2px solid #eaedf3;
	border-radius: 10px;
	padding: 0 16px 0 44px;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	color: #333333;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}
.cf_input:focus
{
	outline: none;
	border-color: #ee334a;
	background: #FFFFFF;
	box-shadow: 0 0 0 4px rgba(238,51,74,0.08);
}
.cf_group:focus-within .cf_icon
{
	color: #ee334a;
}
.cf_textarea
{
	width: 100%;
	height: 150px;
	background: #f8f9fc;
	border: 2px solid #eaedf3;
	border-radius: 10px;
	padding: 14px 16px 14px 44px;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	color: #333333;
	resize: vertical;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}
.cf_textarea:focus
{
	outline: none;
	border-color: #ee334a;
	background: #FFFFFF;
	box-shadow: 0 0 0 4px rgba(238,51,74,0.08);
}
.cf_input::placeholder,
.cf_textarea::placeholder
{
	color: #b5bac8;
	font-size: 13px;
}
.cf_submit_btn
{
	width: 100%;
	height: 54px;
	background: linear-gradient(135deg, #ee334a 0%, #c8001e 100%);
	border: none;
	border-radius: 10px;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	cursor: pointer;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	gap: 10px;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
	box-shadow: 0 6px 24px rgba(238,51,74,0.35);
	margin-top: 4px;
}
.cf_submit_btn:hover
{
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(238,51,74,0.50);
}
.cf_submit_btn:active
{
	-webkit-transform: translateY(0);
	transform: translateY(0);
	box-shadow: 0 4px 15px rgba(238,51,74,0.30);
}
.cf_submit_btn i
{
	font-size: 15px;
}

/*********************************
10. Offices Card
*********************************/

.offices_card
{
	background: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0 10px 50px rgba(0,0,0,0.09);
	overflow: hidden;
	height: 100%;
}
.offices_card_header
{
	background: linear-gradient(135deg, #ee334a 0%, #1a1a1a 100%);
	padding: 32px 28px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	gap: 16px;
}
.offices_card_header_icon
{
	width: 48px;
	height: 48px;
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}
.offices_card_header_icon i
{
	font-size: 20px;
	color: #FFFFFF;
}
.offices_card_header_text h2
{
	font-size: 20px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0 0 4px 0;
}
.offices_card_header_text p
{
	font-size: 12px;
	color: rgba(255,255,255,0.72);
	margin: 0;
}
.offices_card_body
{
	padding: 28px;
}
.office_branch
{
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f5;
}
.office_branch:last-of-type
{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.office_branch_badge
{
	display: inline-block;
	background: #ee334a;
	color: #FFFFFF;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 12px;
}
.office_branch_badge_alt
{
	background: #1a1a1a;
}
.office_detail_item
{
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 13px;
	color: #666666;
	line-height: 1.5;
}
.office_detail_item:last-child
{
	margin-bottom: 0;
}
.office_detail_icon
{
	width: 28px;
	height: 28px;
	background: #fff0f2;
	border-radius: 50%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
	margin-top: 1px;
}
.office_detail_icon i
{
	font-size: 11px;
	color: #ee334a;
}
.office_detail_item a
{
	color: #ee334a;
	text-decoration: none;
	-webkit-transition: color 200ms ease;
	transition: color 200ms ease;
}
.office_detail_item a:hover
{
	color: #c8001e;
}
.offices_cta
{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}
.offices_cta_whatsapp,
.offices_cta_call
{
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
	-webkit-transition: all 200ms ease;
	transition: all 200ms ease;
}
.offices_cta_whatsapp
{
	background: #25d366;
	color: #FFFFFF;
}
.offices_cta_whatsapp:visited
{
	color: #FFFFFF;
}
.offices_cta_whatsapp:hover
{
	color: #FFFFFF;
	background: #1da851;
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(37,211,102,0.40);
}
.offices_cta_call
{
	background: #f8f9fc;
	color: #1a1a1a;
	border: 2px solid #eaedf3;
}
.offices_cta_call:visited
{
	color: #1a1a1a;
}
.offices_cta_call:hover
{
	color: #ee334a;
	border-color: #ee334a;
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(238,51,74,0.15);
}

/*********************************
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);
}

/*********************************
12. Footer
*********************************/

.footer
{
	width: 100%;
	padding-top: 86px;
	background: #1a1a1a;
}
.footer .section_title h1
{
	color: #FFFFFF;
}

/*********************************
12.1 Newsletter
*********************************/

.newsletter
{
	padding-bottom: 85px;
	border-bottom: solid 2px #4d4e4e;
}
.newsletter_form_container
{
	width: 60%;
	margin-top: 48px;
}
.newsletter_email
{
	width: calc(100% - 164px);
	height: 42px;
	border: none;
	padding-left: 27px;
	font-weight: 500;
	color: #1a1a1a;
}
.newsletter_email:focus
{
	outline: solid 2px #ee334a;
}
.newsletter_submit_btn
{
	width: 164px;
	height: 42px;
	border: none;
	background: #ee334a;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}
.newsletter_submit_btn:focus
{
	border: solid 2px #FFFFFF;
}

/*********************************
12.2 Footer Content
*********************************/

.footer_content 
{
	padding-top: 80px;
	padding-bottom: 83px;
	border-bottom: solid 2px #4d4e4e;
}
.footer_content .logo_container
{
	padding-left: 0px;
}
.footer_content .logo span
{
	color: #FFFFFF;
}
.footer_about_text
{
	margin-top: 24px;
	margin-bottom: 0px;
	padding-right: 20px;
}
.footer_column_title
{
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	padding-top: 15px;
}
.footer_column_content
{
	margin-top: 32px;
}
.footer_list_item
{
	margin-bottom: 11px;
}
.footer_list_item a
{
	font-size: 14px;
	color: #a5a5a5;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.footer_list_item a:hover
{
	color: #ee334a;
}
.footer_contact_item
{
	font-size: 14px;
	font-weight: 400;
	color: #a5a5a5;
	margin-bottom: 22px;
}
.footer_contact_item:last-child
{
	margin-bottom: 0px;
}
.footer_contact_icon
{
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	margin-right: 10px;
}
.footer_contact_icon img
{
	width: 100%;
}

/*********************************
12.3 Footer Copyright
*********************************/

.footer_bar
{
	padding-top: 19px;
	padding-bottom: 19px;
}
.footer_social .menu_social_item a i
{
	color: #FFFFFF;
}
.footer_social .menu_social_item a i:hover
{
	color: #ee334a;
}
.footer_social .menu_social_item:last-child
{
	margin-right: 0px;
}

/* Modern Footer Styles */
.footer
{
	width: 100%;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

/* Footer Top Section */
.footer_top
{
	padding: 80px 0 60px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_logo
{
	margin-bottom: 30px;
}

.footer_logo img
{
	max-width: 150px;
	height: auto;
	filter: brightness(0) invert(1);
}

.footer_about h3
{
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 15px;
	background: linear-gradient(135deg, #ee334a, #ff6b6b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer_about p
{
	font-size: 14px;
	line-height: 1.6;
	color: #cccccc;
	margin-bottom: 25px;
}

.footer_social
{
	display: flex;
	gap: 15px;
}

.social_link
{
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 18px;
	transition: all 0.3s ease;
	text-decoration: none;
	border: 2px solid transparent;
}

.social_link:hover
{
	background: linear-gradient(135deg, #ee334a, #ff6b6b);
	border-color: #ee334a;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(238, 51, 74, 0.3);
}

/* Footer Links */
.footer_links h4
{
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer_links h4::after
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: linear-gradient(90deg, #ee334a, #ff6b6b);
}

.footer_links ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer_links li
{
	margin-bottom: 12px;
}

.footer_links a
{
	color: #cccccc;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	position: relative;
}

.footer_links a:hover
{
	color: #ee334a;
	padding-left: 10px;
}

/* Footer Contact */
.footer_contact h4
{
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer_contact h4::after
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: linear-gradient(90deg, #ee334a, #ff6b6b);
}

.contact_item
{
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.contact_item i
{
	color: #ee334a;
	font-size: 16px;
	margin-right: 15px;
	margin-top: 2px;
	min-width: 16px;
}

.contact_item span
{
	color: #cccccc;
	font-size: 14px;
	line-height: 1.5;
}

/* Newsletter Section */
.footer_newsletter
{
	background: linear-gradient(135deg, rgba(238, 51, 74, 0.1), rgba(255, 107, 107, 0.1));
	padding: 50px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter_content
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.newsletter_text h3
{
	font-size: 28px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 10px;
}

.newsletter_text p
{
	color: #cccccc;
	font-size: 16px;
	margin: 0;
}

.newsletter_form_container
{
	display: flex;
	max-width: 500px;
	width: 100%;
}

.newsletter_email
{
	flex: 1;
	padding: 15px 20px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 25px 0 0 25px;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	font-size: 14px;
	outline: none;
	transition: all 0.3s ease;
}

.newsletter_email::placeholder
{
	color: #cccccc;
}

.newsletter_email:focus
{
	border-color: #ee334a;
	background: rgba(255, 255, 255, 0.15);
}

.newsletter_submit_btn
{
	padding: 15px 25px;
	border: none;
	border-radius: 0 25px 25px 0;
	background: linear-gradient(135deg, #ee334a, #ff6b6b);
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.newsletter_submit_btn:hover
{
	background: linear-gradient(135deg, #ff6b6b, #ee334a);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(238, 51, 74, 0.3);
}

/* Footer Bottom */
.footer_bottom
{
	padding: 25px 0;
	background: rgba(0, 0, 0, 0.3);
}

.footer_bottom_content
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.copyright p
{
	color: #cccccc;
	font-size: 14px;
	margin: 0;
}

.footer_bottom_links
{
	display: flex;
	gap: 25px;
}

.footer_bottom_links a
{
	color: #cccccc;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer_bottom_links a:hover
{
	color: #ee334a;
}

.footer_powered p
{
	color: #cccccc;
	font-size: 14px;
	margin: 0;
}

.footer_powered a
{
	color: #ee334a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer_powered a:hover
{
	color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px)
{
	.footer_top
	{
		padding: 50px 0 30px 0;
	}

	.footer_col
	{
		margin-bottom: 40px;
	}

	.footer_social
	{
		justify-content: center;
	}

	.newsletter_content
	{
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}

	.newsletter_form_container
	{
		max-width: 100%;
	}

	.footer_bottom_content
	{
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.footer_bottom_links
	{
		justify-content: center;
	}
}