/* ===== [BEGIN] ===== GENERAL + HEADER ===== */
html, body {
	width: 100%;
}

/* == [BEGIN] SCROLLBAR == */
body::-webkit-scrollbar { 
	width: 7px;
	height: 7px;
}
body::-webkit-scrollbar-track { 
	background: #14967f77;
} 
body::-webkit-scrollbar-thumb { 
	background: #14967fff;
	border-radius: 10px;
} 
body::-webkit-scrollbar-thumb:hover { 
	background: green;
} 
body::-webkit-scrollbar-button { 
	display: none;
}
/* == [END] SCROLLBAR == */

/* == [BEGIN] CHECKBOX == */
/* Basic styling */
[type=checkbox] {
  width: 2rem;
  height: 2rem;
  color: dodgerblue;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  border-radius: 50% !important;
  background-color: #FFFFFF;
  transition: background 300ms;
  cursor: pointer;
}
/* Pseudo element for check styling */
[type=checkbox]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}
/* Checked */
[type=checkbox]:checked {
  background-color: currentcolor;
}
[type=checkbox]:checked::before {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}
/* Disabled */
[type=checkbox]:disabled {
  background-color: #CCD3D8;
  opacity: 0.84;
  cursor: not-allowed;
}
/* IE */
[type=checkbox]::-ms-check {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}
[type=checkbox]:checked::-ms-check {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}
/* == [END] CHECKBOX == */

header {
	height: 4em;
	width: 100%;
	position: relative;
	z-index: 1000;
	background-color: white;
}

p {
	margin: 0 !important;
}

.container, .row {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

.help-block {
	color: red;
}
/* ===== [END] ===== GENERAL + HEADER ===== */

/* ===== [BEGIN] ===== MODAL ===== */
.modal {
	align-items: center;
	position: fixed;
	z-index: 1;
	padding-top: 0%;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	overflow-x: hidden;
}
.modal-content {
	justify-content: center;
	background-color: #fefefe;
	margin: auto;
	padding: 2em;
	border: 0.1em solid #888;
	width: 80%;
	max-height: 40em;
	overflow: auto;
}
.close {
	color: #aaaaaa;
	float: right;
	font-size: 1.8em;
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
/* ===== [END] ===== MODAL ===== */

/* ===== [BEGIN] ===== NAVIGATION ===== */
.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1002;
	top: 0;
	left: 0;
	background-color: #800020;
	overflow-x: hidden;
	padding-top: 5em;
	transition: 0.5s;
	text-decoration: none;
}
.adminSidenav {
	height: 90%;
	width: 0;
	position: absolute;
	z-index: 1001;
	top: 0;
	right: 0;
	background-color: #800020;
	overflow-x: hidden;
	padding-top: 1em;
	transition: 0.5s;
	text-decoration: none;
	margin-top: 4em;
	border-radius: 15px;
	overflow-y: auto;
}
.sidenav a, .adminSidenav a {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	text-decoration: none;
	font-size: 1.3em;
	color: white;
	display: block;
	transition: 0.3s;
	text-align: center;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}
.sidenav a:hover, .adminSidenav a:hover {
	color: white;
	text-decoration: none;
}
.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 0.5em;
	font-size: 2.5em;
}
.adminSidenav .closebtn {
	position: absolute;
	top: 0;
	left: 0.5em;
	font-size: 2.5em;
}
.closebtn {
	padding: 0 !important;
}
/* ===== [END] ===== NAVIGATION ===== */

/* ===== [BEGIN] ===== GLOBAL HEADER ===== */
.header_account_row {
	height: 100%;
	display: flex;
	align-items: center;
}

.header_nav_row, .mobile_header_nav_row {
	background-color: #800020;
	height: 3em;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	transition: .5s;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 999;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}
.mobile_header_nav_row {
	height: 4em;
}
.header_nav_row .col-sm-1 {
	height: 100%;
	margin: 0em 1em 0em 1em;
}

.header_logo {
	width: 20em;
	height: 75%;
}

.header_nav_row .nav_option {
	height: 100%;
	width: 8.33%;
	text-decoration: none;
	font-weight: bold;
	color: white;
	text-align: center;
	font-size: 1em;
	transition: all ease-in-out .2s;
	display: flex;
}
.header_nav_row .nav_option .col-sm-1 {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.header_nav_row .nav_option .col-sm-1:hover {
	background-color: #14967f !important;
}

.header_logo_col {
	height: 100%;
	padding-left: 0 !important;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.header_logo_col a {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header_account_col {
	height: 100%;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.header_account_col .container {
	width: 150% !important;
	background-color: black;
	position: absolute;
	top: 100%;
	right: -25%;
	font-weight: bold;
	font-size: 1em !important;
	padding: 1em 1em 1em 1em !important;
	display: none;
	text-align: left;
	z-index: 1000;
	border-radius: 15px;
}
.header_account_col .container .row {
	margin-top: 1em !important;
}
.header_account_col .container .row a {
	color: white;
	text-decoration: none;
}
.header_account_col .container .row a p {
	overflow: hidden;
}
.header_account_col .container .row a:hover {
	color: #0ec7a6;
}

.header_services_col {
	height: 100%;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.header_services_col .header_services_menu {
	width: 100% !important;
	height: 40em;
	padding: 0.5em 0em !important;
	background-color: #14967f;
	position: absolute;
	top: 100%;
	right: 0;
	font-weight: bold;
	font-size: 1em !important;
	display: none;
	text-align: center;
	z-index: 1000;
	box-shadow: 0px 12px 5px -10px #000 inset;
	overflow-x: hidden;
	overflow-y: auto;
	direction: rtl;
}

.header_services_col .header_services_menu::-webkit-scrollbar { 
	width: 3px;
	height: 3px;
}
.header_services_col .header_services_menu::-webkit-scrollbar-track { 
	background: #14967f77;
} 
.header_services_col .header_services_menu::-webkit-scrollbar-thumb { 
	background: #14967fff;
	border-radius: 10px;
} 
.header_services_col .header_services_menu::-webkit-scrollbar-thumb:hover { 
	background: green;
} 
.header_services_col .header_services_menu::-webkit-scrollbar-button { 
	display: none;
}
.header_services_col .header_services_menu .row {
	height: 3em;
}
.header_services_col .header_services_menu .row a {
	color: white;
	text-decoration: none;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}

.header_services_col .header_services_menu .row .header_services_menu_second {
	margin-left: 25% !important;
	width: 16.6% !important;
	height: 40em;
	background-color: #14967f;
	position: fixed;
	top: 10.7%;
	left: 0%;
	font-weight: bold;
	font-size: 1em !important;
	padding: 0.5em 0em !important;
	text-align: center;
	z-index: 1000;
	display: none;
	box-shadow: 10px 12px 5px -10px #000 inset;
	overflow-x: hidden;
	overflow-y: auto;
}
.header_services_col .header_services_menu .row .header_services_menu_second a {
	width: 100%;
	height: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header_services_col .header_services_menu .row .header_services_menu_second a:hover {
	color: white;
	background-color: #800020;
	border-radius: 0;
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
}

.nav_icon {
	height: 2em;
}
/* ===== [END] ===== GLOBAL HEADER ===== */

/* ===== [BEGIN] ===== COOKIES CONSENT ===== */
#myModalCookies {
	width: 80%;
	height: 25%;
	background-color: rgba(0, 0, 0, 0);
	left: 10%;
	top: 75%;
}
#accept_cookies_button:hover {
	background-color: #14967fCC !important;
}
/* ===== [END] ===== COOKIES CONSENT ===== */

/* ===== [BEGIN] ===== GLOBAL CONTACT ===== */
#global_contact_general {
	background-color: #14967f;
	border-radius: 40px;
	width: 4em;
	height: 4em;
	position: fixed;
	bottom: 0.5em;
	right: 1.5em;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all ease-in-out .5s;
	cursor: pointer;
}
#global_contact_general img {
	width: 2em;
	height: 2em;
}
#global_whatsapp_icon {
	width: 3.9em;
	height: 3.9em;
	position: fixed;
	bottom: 0.5em;
	right: 1.5em;
	z-index: 998;
	display: none;
	opacity: 0;
	transition: all ease-in-out .5s;
}
#global_phone_icon {
	background-color: red;
	border-radius: 40px;
	width: 3.9em;
	height: 3.9em;
	position: fixed;
	bottom: 0.5em;
	right: 1.5em;
	z-index: 997;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all ease-in-out .5s;
}
#global_phone_icon img {
	width: 2em;
	height: 2em;
}
#global_email_icon {
	background-color: mediumpurple;
	border-radius: 40px;
	width: 3.9em;
	height: 3.9em;
	position: fixed;
	bottom: 0.5em;
	right: 1.5em;
	z-index: 997;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all ease-in-out .5s;
}
#global_email_icon img {
	width: 2em;
	height: 2em;
}
/* ===== [END] ===== GLOBAL CONTACT ===== */


#main_image {
	height: 40em;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: darken;
	transition: all 3s ease-in-out;
}
#main_image_darken {
	width: 100%;
	height: 100%;
	background-color: #000000AA;
	display: flex;
	align-items: center;
	justify-content: center;
}
#main_image #main_image_darken .first_row .col-sm-8 .second_row {
	background-color: #003DA5;
	padding: 1.2em 0.8em 2em 1em !important;
	border-radius: 15px;
}
#main_image #main_image_darken .first_row .col-sm-8 .second_row form .form-group .col-sm-2 {
	padding: 0;
}
#main_image #main_image_darken .first_row .col-sm-8 .second_row form .form-group .col-sm-2 .btn-primary:hover {
	background-color: #FF0000CC !important;
	border-color: #FF000000 !important;
}

.bgImageCircles {
	width: 1em;
	height: 1em;
	border-radius: 50px;
	cursor: pointer;
	transition: all 3s ease-in-out;
}

.home_aboutus_container {
	margin-top: 10em !important;
}
.home_aboutus_container .title_row {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 2em !important;
}
.home_aboutus_container .title_row p {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	color: #900020;
}

.home_aboutus_row {
	height: 100%;
}
.home_aboutus_row .col-sm-4, .home_aboutus_row .col-sm-5 {
	height: 100%;
	display: flex;
}
.home_aboutus_row .col-sm-5 .row {
	height: 100%;
}
.home_aboutus_row .col-sm-5 .row .col-sm-6 {
	height: 100%;
}
.home_aboutus_row .col-sm-5 .row .right_col {
	flex-direction: column;
	background-color: #F7F7F7;
	min-height: 15em;
	margin-top: 2%;
	margin-left: -5em;
	border-left: 1em solid white;
	border-top: 1em solid white;
	border-bottom: 1em solid white;
}

.home_info {
	margin-top: 10em !important;
	overflow: hidden;
}
.home_info .title_row p {
	text-align: center;
	font-size: 2em;
	font-weight: bold;
	color: #900020;
}
.home_info .info_row .col-sm-2 {
	text-align: center;
}
.home_info .info_row .col-sm-2 .home_info_box {
	width: 100%;
	transition: all 1s ease-in-out;
}
.home_info .info_row .col-sm-2 img {
	 -webkit-animation-name: spin;
    -webkit-animation-duration: 10000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 10000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 10000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: none;
    animation-duration: 10000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.home_info .info_row .col-sm-2 .title {
	margin-top: 0.5em !important;
	font-size: 1.5em;
	font-weight: bold;
}
.home_info .info_row .col-sm-2 .text {
	margin-top: 1em !important;
	font-size: 1.2em;
}

.home_stats {
	margin-top: 15em !important;
}
.home_stats .row .col-sm-2 {
	text-align: center;
}
.home_stats .row .col-sm-2 .number {
	font-size: 3em;
	font-weight: bold;
	font-family: 'Lucida Handwriting', 'Brush Script MT', Cursive;
}
.home_stats .row .col-sm-2 .title {
	font-size: 2em;
}

.home_contact_box {
	margin-top: 15em !important;
}
.home_contact_box .row {
	min-height: 10em;
}
.home_contact_box .row .col-sm-8 {
	background-color: #EEEEEE;
	min-height: 10em !important;
	border-radius: 10px;
	box-shadow: 0px 0px 10px #000000;
	padding: 0;
	background-image: url('../images/home/contact_image.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-blend-mode: darken;
}
.home_contact_box .row .col-sm-8 .container {
	background-color: #000000AA;
	padding: 2em !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
}
.home_contact_box .row .col-sm-8 .container a {
	background: linear-gradient(#14967f, #14967f);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 0% 0%;
	transition: all .2s ease-out;
}
.home_contact_box .row .col-sm-8 .container a:hover {
	background-size: 100% 100%;
}

.back_arrow_button {
	background-color: #EEEEEEAA;
	padding: 0.5em 0.9em;
	border-radius: 100px;
	font-weight: bold;
	font-size: 1.2em;
	position: absolute;
	top: 50%;
	left: 1.5em;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.next_arrow_button {
	background-color: #EEEEEEAA;
	padding: 0.5em 0.9em;
	border-radius: 100px;
	font-weight: bold;
	font-size: 1.2em;
	position: absolute;
	top: 50%;
	right: 1.5em;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.back_arrow_button:hover, .next_arrow_button:hover {
	font-size: 1.5em;
}

.button_fill_left_right {
	margin-top: 5em !important;
	margin-bottom: 1em !important;
	text-align: center;
}
.button_fill_left_right p a {
	text-decoration: none;
	color: white;
	background-color: #800020 !important;
	font-weight: bold;
	font-size: 1.5em;
	border-radius: 25px;
	padding: 0.5em 1em 0.5em 1em;
	background: linear-gradient(#14967f, #14967f);
	background-position: 0% 0%;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: all .2s ease-out;
}
.button_fill_left_right p a:hover {
	background-size: 100% 100%;
}

.button_fill_top_bottom {
	margin-top: 5em !important;
	margin-bottom: 1em !important;
	text-align: center;
}
.button_fill_top_bottom p a {
	text-decoration: none;
	color: white;
	background-color: dodgerblue !important;
	font-weight: bold;
	font-size: 1.5em;
	border-radius: 25px;
	padding: 0.5em 1em 0.5em 1em;
	background: linear-gradient(red, red);
	background-position: 0% 0%;
	background-repeat: no-repeat;
	background-size: 100% 0%;
	transition: all .2s ease-out;
}
.button_fill_top_bottom p a:hover {
	background-size: 100% 100%;
}

.page_main_header {
	height: 30em;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: darken;
}
.page_main_header_darken {
	height: 100%;
	width: 100%;
	background-color: #000000AA;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page_main_header_row p {
	color: white;
	font-size: 4em;
	font-weight: bold;
	text-align: center;
	color: white;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}

#account_menu, #account_menu2, #account_menu3 {
	margin-top: 10em !important;
	text-align: center;
	color: black;
	border: 0.1em solid black;
	padding-top: 2em !important;
	padding-bottom: 2em !important;
	margin-bottom: 2em !important;
	background-color: lightgrey;
	overflow: hidden;
}
#account_menu .form-horizontal .form-group .help-block, #account_menu2 .form-horizontal .form-group .help-block, #account_menu3 .form-horizontal .form-group .help-block {
	color: red;
}

.a_panel_nav {
	position: fixed;
	left: 0;
	top: 3em;
	height: 100%;
	padding-bottom: 3em !important;
}
.a_panel_nav_main_row {
	height: 100%;
}
.a_panel_nav_main_row a {
	text-decoration: none !important;
}
.a_panel_nav_main_row .col-sm-2 {
	height: 100%;
	background-color: #1e1e2d;
	border-right: 0.1em solid black;
	text-align: left;
	padding: 0em 1em !important;
	overflow-y: auto;
}

.a_panel_nav_title {
	font-size: 1.2em;
	margin-top: 4em !important;
	text-shadow: none;
	color: white;
	border-bottom: 0.1em solid #a2a3b7;
	padding-bottom: 0.5em !important;
}

.a_panel_nav_item {
	border-top: 0.1em solid #a2a3b7;
	color: #a2a3b7;
}
.a_panel_nav_item p {
	font-size: 1.2em;
	margin-top: 0.5em !important;
	margin-bottom: 0.5em !important;
}
.a_panel_nav_item:hover {
	font-weight: bold;
	color: white !important;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}

.a_panel_page_title {
	font-weight: bold;
	font-size: 1.2em;
	background-color: #EAEBFF;
	padding: 0.5em 1em;
	border-radius: 5px;
}

.a_panel_main_page_container {
	padding: 0em 5em 0em 5em !important;
	margin-top: 1em !important;
}
.a_panel_main_page_container .container {
	overflow-x: auto;
	border:0.1em solid black;
}

.table_display th, .table_display td {
	text-align: center !important;
}

.privacy_policy {
	margin-top: 10em !important;
}
.privacy_policy h1 {
	text-align: center;
	font-weight: bold;
	margin: 0;
	margin-bottom: 2em;
}
.privacy_policy p {
	font-size: 1.2em;
	text-align: justify;
}
.privacy_policy hr {
	border-color: black;
}

.contact_main_container {
	margin-top: 10em !important;
}
.contact_title_row {
	text-align: center;
}
.contact_title_row p {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	color: black;
}
.contact_main_text {
	margin-top: 3em !important;
}
.contact_main_text_col p {
	text-align: center;
	font-size: 1.2em;
}

.contact_info_row {
	margin-top: 10em !important;
}
.contact_info_offers_row {
	margin-top: 5em !important;
}
.contact_info_row_second {
	text-align: center;
}
.contact_info_row_second .col-sm-4 {
	background-color: #EEEEEE;
	min-height: 17em;
}
.contact_info_row_second .col-sm-12 {
	background-color: #EEEEEE;
}
.contact_info_row_second .col-sm-4 img, .contact_info_row_second .col-sm-12 img {
	width: 3em;
	height: 3em;
}
.contact_info_row_second .col-sm-12 a img {
	width: 20em;
	height: 4em;
	margin-top: 2em;
}
.contact_info_title {
	margin-top: 1em !important;
	font-size: 1.5em;
	font-weight: bold;
}
.contact_info_first {
	margin-top: 2em !important;
	font-size: 1.3em;
	font-weight: bold;
}
.contact_info_second {
	font-size: 1.3em;
	font-weight: bold;
}
#contact_info_row_first, #contact_info_row_second {
	opacity: 0;
	transition: ease 1s;
}

.location_container {
	margin-top: 5em !important;
	background-color: #EEEEEE;
}
.location_title {
	margin-top: 1em !important;
	font-size: 2.5em;
	font-weight: bold;
	text-align: center;
}
.location_address {
	margin-top: 3em !important;
	padding-left: 1em !important;
	padding-right: 1em !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.location_address img {
	width: 3em;
	height: 3em;
}
.location_address p {
	font-size: 1.3em;
	font-weight: bold;
}
.location_map {
	margin-top: 3em !important;
	text-align: center;
}
.location_map iframe {
	width: 80%;
	height: 50em;
	margin-bottom: 4em;
}

.aboutus_main_container {
	margin-top: 10em !important;
}
.aboutus_title_row {
	text-align: center;
}
.aboutus_title_row p {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	color: black;
}
.aboutus_main_text {
	margin-top: 3em !important;
}
.aboutus_main_text_col p {
	text-align: center;
	font-size: 1.2em;
}

.aboutus_main_container {
	margin-top: 10em !important;
}

.aboutus_main_row_first .aboutus_main_col_left {
	background-color: #EEEEEE;
	height: 50em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aboutus_main_row_first .aboutus_main_col_right {
	background-color: #EEEEEE;
	height: 50em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aboutus_main_row_first .aboutus_main_col_left .text .title, .aboutus_main_row_first .aboutus_main_col_right .text .title {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
}
.aboutus_main_row_first .aboutus_main_col_left .text .subtext, .aboutus_main_row_first .aboutus_main_col_right .text .subtext {
	margin-top: 3em !important;
	font-size: 1.2em;
	text-align: center;
}

.aboutus_main_row_second .aboutus_main_col_left {
	border-top: 0.1em solid gray;
	background-color: #EEEEEE;
	height: 50em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aboutus_main_row_second .aboutus_main_col_left .text .title, .aboutus_main_row_second .aboutus_main_col_right .text .title {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
}
.aboutus_main_row_second .aboutus_main_col_left .text .subtext, .aboutus_main_row_second .aboutus_main_col_right .text .subtext {
	margin-top: 3em !important;
	font-size: 1.2em;
	text-align: center;
}
.aboutus_main_row_second .aboutus_main_col_right {
	border-top: 0.1em solid gray;
	background-color: #EEEEEE;
	height: 50em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home_icons_container {
	margin-top: 2em !important;
}
.home_icons_container .row .col-sm-2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.home_icons_container .first_row p {
	text-align: center;
	font-size: 2em;
	font-weight: bold;
	color: #900020;
}
.home_icons_container .second_row {
	margin-top: 2em !important;
}
.home_icons_container .second_row .col-sm-2:hover {
	color: #14967f;
}
.home_icons_container .second_row .col-sm-2 img {
    -webkit-animation-name: spin;
    -webkit-animation-duration: 10000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 10000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 10000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 10000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.home_icons_container .second_row .col-sm-2 p {
	margin-top: 1em !important;
	font-size: 1.5em;
	text-align: center;
	font-weight: bold;
}

.home_services {
	margin-top: 10em !important;
	background-color: #FAFAFA;
}
.home_services .title_row {
	margin-top: 2em !important;
}
.home_services .title_row p {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	color: #900020;
}
.home_services .services_row {
	display: flex;
	height: 35em !important;
}
.home_services .services_row .col-sm-10 {
	padding: 0;
	overflow-x: hidden;
	overflow-y: visible;
	height: 100%;
	width: 83.33%;
}
.home_services .services_row .col-sm-10 .main_row {
	display: flex;
	align-items: center;
	overflow-x: auto;
	overflow-y: visible;
	width: 100% !important;
	padding: 1em !important;
	height: 100%;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}
.home_services .services_row .col-sm-10 .row .home_service_col {
	height: 30em;
	width: 22.5%;
	margin: 0% 3%;
	flex-shrink: 0;
	padding: 0.5em;
}
.home_services .services_row .col-sm-10 .row .home_service_col .container {
	box-shadow: 0px 0px 3px #000000;
	background-color: white;
	height: 100%;
	width: 100%;
	border-radius: 10px;
	transition: all .2s ease-in-out;
}
.home_services .services_row .col-sm-10 .row .home_service_col .container:hover {
	box-shadow: 0px 0px 10px #000000;
	margin-top: -1em !important;
}
.home_services .services_row .col-sm-10 .row .home_service_col .container .first_row {
	height: 40%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.home_services .services_row .col-sm-10 .row .home_service_col .container .second_row {
	height: 60%;
	color: #900020;
	padding: 0em 0.5em !important;
}
.home_services .services_row .col-sm-10 .row .home_service_col .container .second_row .title {
	height: 25%;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home_services .services_row .col-sm-10 .row .home_service_col .container .second_row .text {
	font-size: 1.2em;
	text-align: center;
	height: 50%;
	padding-top: 5% !important;
}
.home_services .services_row .col-sm-10 .row .home_service_col .container .second_row .button {
	font-size: 1.2em;
	text-align: center;
	height: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home_services .services_row .col-sm-10 .row .home_service_col .container .second_row .button a {
	padding: 0.25em 1em;
	background-color: #14967f;
	border-radius: 50px;
	color: white;
	text-decoration: none;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}
.home_services .services_row .col-sm-10 .row .home_service_col .container .second_row .button a:hover {
	background-color: #800020;
	color: #0ec7a6;
	font-weight: bold;
}
.home_services .services_row .col_left {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.home_services .services_row .col_right {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.home_services_back, .home_services_next {
	color: #900020;
	font-weight: bold;
	font-size: 2em;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.home_services .all_services_row {
	margin-bottom: 2em !important;
	text-align: center;
}
.home_services .all_services_row a {
	padding: 0.5em 1em;
	border-radius: 25px;
	text-decoration: none;
	color: white;
	font-size: 1.2em;
	box-shadow: 0px 0px 3px #000000;
	background-color: #800020 !important;
	background: linear-gradient(#14967f, #14967f);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: all .2s ease-in-out;
}
.home_services .all_services_row a:hover {
	background-size: 100% 100%;
}

.services_categories_container {
	margin-top: 10em !important;
	overflow: hidden;
}

.services_categories_main_row {
	text-align: center;
	font-size: 2em;
	font-weight: bold;
	color: #900020;
}

.services_categories_middle_row {
	margin-top: 3em !important;
	min-height: 20em;
}
.services_categories_middle_row .col-sm-2 {
	padding: 0;
	height: 20em;
}
.services_categories_middle_row .col-sm-2 .container {
	border-radius: 25px;
	height: 100%;
	box-shadow: 0px 0px 3px #000000;
	transition: all 1s ease-in-out;
}
.services_categories_middle_row .col-sm-2 .container .container {
	width: 100%;
	height: 100%;
	background-color: #14967f;
	color: white;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
	transition: all .4s ease-in-out;
}
.services_categories_middle_row .col-sm-2 .container .container:hover {
	background-color: #800020;
	color: #0ec7a6;
}
.services_categories_middle_row .col-sm-2 .container .container a {
	color: white;
	text-decoration: none;
}
.services_categories_middle_row .col-sm-2 .container .container .container {
	height: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.services_categories_middle_row .col-sm-2 .container .container .container .row .first_info_row {
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
}

.services_categories_container .all_services_row {
	margin: 3em 0em 2em 0em !important;
	text-align: center;
}
.services_categories_container .all_services_row a {
	padding: 0.75em 1.5em;
	border-radius: 50px;
	text-decoration: none;
	color: white;
	font-size: 1.4em;
	box-shadow: 0px 0px 3px #000000;
	background-color: #800020 !important;
	background: linear-gradient(#14967f, #14967f);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: all .2s ease-in-out;
}
.services_categories_container .all_services_row a:hover {
	background-size: 100% 100%;
}

.services_icons_container {
	margin-top: 3em !important;
	overflow: hidden;
}
.services_icons_container .col-sm-12 {
	display: flex;
}
.services_icons_container .col-sm-12 .main_row {
	display: flex;
	width: 50%;
}
.services_icons_container .col-sm-12 .main_row .col-sm-6 {
	display: flex;
	align-items: center;
	justify-content: center;
}
.services_icons_container .col-sm-12 .main_row .col-sm-6 .row {
	display: flex;
	align-items: center;
	justify-content: center;
}
.services_icons_container .col-sm-12 .main_row .col-sm-6 .row span {
	font-size: 1em;
	color: #900020;
	font-weight: bold;
	display: flex;
	white-space: nowrap;
}

.services_title {
	margin-top: 5em !important;
}
.services_title .row .title {
	text-align: center;
	font-size: 2em;
	font-weight: bold;
	color: #900020;
}
.services_title .row .shortdescription {
	text-align: center;
	font-size: 1.5em;
	color: #900020;
}

.services_list {
	margin-top: 10em !important;
}
.services_list .left_col .row {
	background-color: #14967f;
	padding: 0.75em !important;
	border-radius: 50px;
	color: white;
	font-weight: bold;
	text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
	margin-top: 0.5em !important;
	display: flex;
	align-items: center;
}
.services_list .left_col .row:hover {
	background-color: transparent;
	border: 0.1em solid #14967f;
	color: #900020;
	text-shadow: none;
}
.services_list .left_col .row .col-sm-9 {
	font-size: 1.2em;
}
.services_list .left_col .row .col-sm-3 p {
	text-align: right;
	font-size: 1.2em;
}
.services_list .right_col img {
	border-radius: 15px;
}

.services_description {
	margin-top: 10em !important;
}
.services_description .col-sm-10 .title p {
	font-size: 1.5em;
	font-weight: bold;
	color: #900020;
}
.services_description .col-sm-10 .text p {
	font-size: 1.2em;
	color: #900020;
	text-align: justify;
}


/* ===== [BEGIN] ===== FOOTER ===== */
footer {
	margin-top: 10em;
	background-color: #800020;
	color: white;
	height: 20em;
	display: flex !important;
	align-items: center;
	justify-content: center;
}
footer .container .row {
	font-size: 1.2em;
	text-align: center;
}
.footer_policies {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* ===== [END] ===== FOOTER ===== */




/* SPECIAL == LAPTOP (big) & LAPTOP (small) & TABLET & MOBILE */
@media only screen and (max-width: 1500px) {
	.header_account_col .container {
		width: 200% !important;
		left: -50%;
	}
	
	#main_image #main_image_darken .first_row {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#main_image #main_image_darken .first_row .col-sm-8 {
		width: 95%;
		margin-left: 0;
		padding: 0;
	}
	
	.home_services .services_row .col-sm-10 .row .home_service_col {
		width: 32%;
	}
}

/* LAPTOP (big) & LAPTOP (small) & TABLET & MOBILE */
@media only screen and (max-width: 1300px) {
	.header_account_col .container {
		width: 200% !important;
		left: -50%;
	}
	
	.security_change_email, .security_change_password {
		width: 100% !important;
	}
	.security_change_password {
		margin-top: 1em;
	}
}

/* LAPTOP (small) & TABLET & MOBILE */
@media only screen and (max-width: 1100px) {
	.header_account_col .container {
		width: 250% !important;
		left: -75%;
	}
	
	#myModalCookies {
		height: 35%;
		top: 65%;
	}
	
	.services_icons_container {
		margin-top: 1em !important;
	}
	.services_icons_container .col-sm-12 {
		display: inline;
	}
	.services_icons_container .col-sm-12 .main_row {
		margin-top: 1em !important;
	}
	.services_icons_container .col-sm-12 .main_row .left_col {
		width: 50%;
		justify-content: flex-end;
	}
	.services_icons_container .col-sm-12 .main_row .right_col {
		width: 50%;
		justify-content: flex-start;
	}
	.services_icons_container .col-sm-12 .main_row .col-sm-6 .row {
		justify-content: flex-start;
		width: 50% !important;
	}
}

/* TABLET & MOBILE */
@media only screen and (max-width: 900px) {
	.header_account_col .container {
		width: 300% !important;
		left: -100%;
	}
	
	#main_image #main_image_darken .first_row .col-sm-8 .second_row form {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#main_image #main_image_darken .first_row .col-sm-8 .second_row form .form-group {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 80% !important;
	}
	#main_image #main_image_darken .first_row .col-sm-8 .second_row form .form-group .col-sm-2 {
		width: 100%;
		margin-top: 1em;
	}
	
	.home_services .services_row .col-sm-10 .row .home_service_col {
		width: 50%;
	}
}

/* MOBILE */
@media only screen and (max-width: 767px) {
	.header_account_col .container {
		width: 500% !important;
		left: -200%;
	}
	.header_nav_row {
		display: none;
	}
	.mobile_header_nav_row .logo_col {
		width: 100%;
		height: 100%;
	}
	.header_logo {
		width: 15em !important;
	}
	.header_account_row {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.header_account_row .header_logo_col {
		display: none;
	}
	.header_account_row .col-sm-1 {
		padding: 0em 2em 0em 2em;
	}
	
	.panel_left_col2 {
		display: none;
	}
	
	#main_image #main_image_darken .first_row .col-sm-8 .second_row .title {
		font-size: 1.5em !important;
	}
	
	.home_services .services_row .col-sm-10 .row .home_service_col {
		width: 110%;
	}
	
	.home_icons_container .row .col-sm-2 {
		margin-top: 2em;
	}
	
	.home_aboutus_container {
		height: auto;
		min-height: 50em;
		border-bottom: 0.1em solid #BBBBBB;
	}
	.home_aboutus_row .col-sm-5 .row .right_col {
		margin-top: 0;
		margin-left: 0;
		border: 0;
		padding: 1em 1em;
	}
	.home_aboutus_row .col-sm-5 .row .right_col .title {
		margin-top: 0 !important;
	}
	.home_aboutus_row .col-sm-5 .row .left_col {
		margin-left: 0 !important;
	}
	.home_aboutus_row .col-sm-4 {
		height: auto;
		min-height: 50%;
	}
	.home_aboutus_container .first_row .right_col {
		border: 0;
		border-radius: 0;
	}
	.home_aboutus_container .first_row .left_col img {
		height: 25em !important;
		border-radius: 0;
	}
	.home_aboutus_container .first_row .right_col .title {
		text-align: center !important;
		margin-top: 1em !important;
	}
	.home_aboutus_container .first_row .right_col .text {
		text-align: justify !important;
	}
	
	.home_info .info_row .col-sm-2 {
		margin-top: 5em;
	}
	
	.home_stats .row .col-sm-2 {
		margin-top: 5em;
	}
	
	#myModalCookies {
		width: 100%;
		left: 0;
		height: 40%;
		top: 60%;
	}
	
	#global_contact_general {
		right: 0.5em;
	}
	#global_email_icon, #global_whatsapp_icon, #global_phone_icon {
		right: 0.55em;
	}
	
	.a_panel_nav {
		display: none;
	}
	
	.a_panel_main_page_container {
		padding: 0 !important;
	}
	
	.social_media {
		display: none;
	}
	
	.contact_info_row_second .col-sm-4, .contact_info_row_second .col-sm-12 {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.contact_info_row_second .col-sm-12 {
		padding: 2em 1em 2em 1em;
	}
	.contact_info_middle {
		border-top: 0.1em solid gray;
		border-bottom: 0.1em solid gray;
	}
	
	.aboutus_main_row_first .aboutus_main_col_right {
		border-top: 0.1em solid gray;
	}
	
	.services_categories_middle_row .col-sm-2 {
		padding: 0px 15px;
		margin-top: 3em;
	}
	
	.services_icons_container .col-sm-12 .main_row .left_col {
		width: 50%;
		justify-content: flex-start;
	}
	.services_icons_container .col-sm-12 .main_row .right_col {
		width: 50%;
		justify-content: flex-end;
	}
	.services_icons_container .col-sm-12 .main_row .col-sm-6 .row {
		width: 100% !important;
	}
	
	.services_list .right_col {
		margin-top: 3em;
	}
	
	footer {
		height: 25em;
	}
	#footer_anpc_sol_img {
		margin-top: 1em;
	}
	.footer_policies p {
		margin-left: 1em !important;
	}
}

/* TABLET & LAPTOP (small) & LAPTOP (big) & PC */
@media only screen and (min-width: 768px) {	
	.mobile_header_nav_row {
		display: none;
	}
	
	#global_contact_general {
		margin-bottom: 0.5em;
		right: 1em;
	}
	#global_email_icon, #global_whatsapp_icon, #global_phone_icon {
		margin-bottom: 0.5em;
		right: 1.05em;
	}
	#global_contact_general:hover {
		width: 5em;
		height: 5em;
	}
	
	#filter_arrow {
		display: none;
	}
	
	.home_services_back:hover, .home_services_next:hover {
		font-size: 3em;
	}
	
	.contact_info_row_second .col-sm-4, .contact_info_row_second .col-sm-12 {
		padding-top: 2em;
		transition: ease 0.5s;
	}
	.contact_info_row_second .col-sm-12 {
		min-height: 25em;
	}
	.contact_info_row_second .col-sm-4:hover {
		padding-top: 1em;
		color: white;
		background-color: #800020 !important;
	}
	.contact_info_row_second .col-sm-12:hover {
		padding-top: 1em;
		color: white;
		background-color: #14967f !important;
		text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
	}
	.contact_info_middle {
		border-left: 0.1em solid gray;
		border-right: 0.1em solid gray;
	}
	
	.aboutus_main_row_first .aboutus_main_col_right {
		border-left: 0.1em solid gray;
	}
	.aboutus_main_row_second .aboutus_main_col_right {
		border-left: 0.1em solid gray;
	}
	
	.footer_policies p {
		margin-left: 2em !important;
	}
}



@-ms-keyframes spin {
    from { -ms-transform: rotateY(0deg); }
    to { -ms-transform: rotateY(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotateY(0deg); }
    to { -moz-transform: rotateY(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotateY(0deg); }
    to { -webkit-transform: rotateY(360deg); }
}
@keyframes spin {
    from {
        transform:rotateY(0deg);
    }
    to {
        transform:rotateY(360deg);
    }
}