
html, body {
	width: 100%;
	height: 100%;
}

header {
	top: 0;
	height: 10%;
	position: fixed;
	width: 100%;
	z-index: 1001;
}

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

p {
	margin: 0 !important;
}

/* == [BEGIN] SCROLLBAR == */
body::-webkit-scrollbar { 
	width: 7px;
	height: 7px;
}
body::-webkit-scrollbar-track { 
	background: #1E90FF77;
} 
body::-webkit-scrollbar-thumb { 
	background: #1E90FFFF;
	border-radius: 10px;
} 
body::-webkit-scrollbar-thumb:hover { 
	background: #0047AB;
} 
body::-webkit-scrollbar-button { 
	display: none;
}
/* == [END] SCROLLBAR == */

/* ===== [BEGIN] ===== CHECKBOX - STYLING ===== */
/* Basic styling */
[type=checkbox] {
  width: 2rem;
  height: 2rem;
  color: dodgerblue;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  border-radius: 50%;
  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 - STYLING ===== */

.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;
}

.header_nav_row, .mobile_header_nav_row {
	background-color: black;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_nav_row .col-sm-3 {
	height: 100%;
}

.header_logo {
	height: 90%;
}

.header_nav_row .nav_option {
	height: 100%;
	text-decoration: none;
	color: white;
	text-align: center;
	font-size: 1.2em;
	transition: all ease-in-out .2s;
}
.header_nav_row .nav_option:hover {
	color: red;
}
.header_nav_row .nav_option .col-sm-1 {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header_nav_row .nav_option .col-sm-1::after{
	content: '';
	position: absolute;
	width: 0;
	height: 0.3em;
	left: 50%;
	bottom:0;
	background-color: red;
	transition: all ease-in-out .2s;
}
.header_nav_row .nav_option .col-sm-1:hover::after{
	width: 100%;
	left: 0;
}

.nav_icon {
	height: 2em;
}

.mobile_emergencies {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: black;
	color: white;
	position: absolute;
	z-index: 1000;
	bottom: 0;
	padding-top: 1.5em !important;
	padding-bottom: 1.5em !important;
	font-size: 1.5em;
	text-align: center;
}

#myModalCookies {
	width: 80%;
	height: 25%;
	background-color: rgba(0, 0, 0, 0);
	left: 10%;
	top: 75%;
}
#accept_cookies_button:hover {
	background-color: dodgerblue !important;
}

#global_contact_general {
	background-color: red;
	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 p {
	color: white;
	font-weight: bold;
	font-size: 1.5em;
}
#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: #0096FF;
	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;
}
/*#global_whatsapp_icon:hover, #global_phone_icon:hover {
	width: 5em;
	height: 5em;
}*/

#main_image {
	height: 100%;
	background-image: url('../images/home/main_images/main_image_1.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: darken;
	transition: 3s;
	position: relative;
	z-index: 1000;
}

.main_image_bottom {
	background-color: black;
	position: absolute;
	z-index: 1000;
	bottom: 0;
	color: white;
	padding-top: 2em !important;
	padding-bottom: 2em !important;
	font-size: 1.3em;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main_bottom_first {
	color: red;
}

.main_bottom_second {
	font-weight: bold;
}

.main_general {
	margin-top: 10em !important;
	background-color: #EEEEEE;
}
.main_general .col-sm-4 {
	padding: 0;
}

.main_general_row {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main_general_left {
	padding-right: 1em !important;
}
.main_general_left .title {
	text-align: left;
	font-size: 2em;
	color: red;
	font-weight: bold;
}
.main_general_left .text {
	font-size: 1.2em;
	text-align: justify;
}
.main_general_right {
	padding-left: 1em !important;
	min-height: 28em !important;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.main_services_header {
	margin-top: 10em !important;
}
.main_services_header p {
	font-size: 3em;
	color: red;
	font-weight: bold;
	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;
}

.main_services {
	margin-top: 5em !important;
	text-align: center;
	overflow-x: hidden;
}
.main_services .col-sm-1, .main_services .col-sm-2 {
	padding: 0;
}
.main_service_container {
	background: radial-gradient(circle at 0% 0.5%, rgb(241, 241, 242) 0.1%, rgb(224, 226, 228) 100.2%);
	border-radius: 10px;
}
.main_service_container a {
	color: black !important;
	text-decoration: none !important;
}
.main_service_container a:hover {
	opacity: 0.5;
}
.main_service_image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 15em;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.main_service_text {
	padding: 1em 1em 1em 1em !important;
	min-height: 20em;
}
.main_service_title {
	font-size: 1.5em;
	font-weight: bold;
	color: #BB0808;
}
.main_service_content {
	font-size: 1.2em;
	text-align: justify;
}
.main_services_button {
	margin-top: 5em !important;
	margin-bottom: 1em !important;
}
.main_services_button p {
	text-align: center;
	font-size: 1.3em;
	font-weight: bold;
}
.main_services_button p a {
	color: black;
	padding-top: 1em;
	padding-bottom: 1em;
	text-decoration: none;
	border-radius: 10px;
	background-color: #a5a3aa;
}
.main_services_button p a span {
	padding: 1em;
	border-radius: 10px;
	background: linear-gradient(#BB0808, #BB0808);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 0% 0%;
	transition: all .5s ease-out;
}
.main_services_button p a span:hover {
	background-size: 100% 100%;
	color: white;
}

.main_aboutus {
	margin-top: 10em !important;
	background-color: #EEEEEE;
}

.main_aboutus_row {
	display: flex;
	align-items: center;
	justify-content: center;
}
.main_aboutus_row .col-sm-4 {
	padding: 0;
}

.main_aboutus_left {
	padding-right: 1em !important;
	min-height: 28em !important;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.main_aboutus_right {
	padding-left: 1em !important;
}
.main_aboutus_right .title {
	text-align: left;
	font-size: 2em;
	color: red;
	font-weight: bold;
}
.main_aboutus_right .text {
	font-size: 1.2em;
	text-align: justify;
}

.gallery {
	margin-top: 10em !important;
}
.gallery .title p {
	text-align: center;
	font-size: 2em;
	font-weight: bold;
	color: red;
	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;
}
.gallery .images {
	margin-top: 5em !important;
}
.carousel-view {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  padding: 0 !important;
  transition: all 0.25s ease-in;
}
.carousel-view button {
    border: none;
    cursor: pointer;
    color: black;
    background: none;
    transition: all .3s ease-in-out;
}
.carousel-view .item-list {
	padding: 0;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	max-height: 15em;
	gap: 2em;
	transition: all 0.25s ease-in;
	overflow: auto;
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.item-list::-webkit-scrollbar {
	display: none;
}
.item {
	width: 15em;
	height: 15em;
	border-radius: 10px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.prev-btn, .next-btn {
	cursor: pointer;
	padding: 0;
	font-size: 2em;
	font-weight: bold;
}
.prev-btn:hover, .next-btn:hover {
	color: red;
}

.page_header {
	height: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: darken;
}
.page_header_darken {
	height: 100%;
	width: 100%;
	background-color: #000000AA;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page_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;
}

.contact_header {
	height: 50%;
	background-image: url('../images/contact/main_contact.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: darken;
}
.contact_header_darken {
	height: 100%;
	width: 100%;
	background-color: #000000AA;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact_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;
}

.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_appointment_row {
	margin-top: 5em !important;
}
.contact_info_row_second {
	text-align: center;
}
.contact_info_row_second .col-sm-4 {
	background-color: #777777EE;
	min-height: 17em;
}
.contact_info_row_second .col-sm-12 {
	background-color: #777777EE;
}
.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_left {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.contact_info_right {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.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;
}

.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;
}
.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_header {
	height: 50%;
	background-image: url('../images/aboutus/main_aboutus.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: darken;
}
.aboutus_header_darken {
	height: 100%;
	width: 100%;
	background-color: #000000AA;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aboutus_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;
}

.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_socialmedia {
	margin-top: 10em !important;
}

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

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

.sidenav {
	height: 100%;
	width: 50%;
	position: fixed;
	z-index: 1003;
	top: 0;
	left: -50%;
	background-color: black;
	overflow-x: hidden;
	padding-top: 5em;
	transition: 0.5s;
	text-decoration: none;
}
.secondSidenav {
	height: 90%;
	margin-top: 4em;
	width: 100%;
	position: absolute;
	z-index: 1002;
	top: 0;
	right: -100%;
	background-color: black;
	overflow-x: hidden;
	padding-top: 1em;
	transition: 0.5s;
	text-decoration: none;
}
.sidenav 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;
	cursor: pointer;
}
.sidenav a:hover {
	color: red;
	text-shadow: none;
	text-decoration: none;
}
.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 0.5em;
	font-size: 2.5em;
}
.closebtn {
	padding: 0 !important;
}

.services_header {
	height: 50%;
	background-image: url('../images/services/main_images/main_services.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: darken;
}
.services_header_darken {
	height: 100%;
	width: 100%;
	background-color: #000000AA;
	display: flex;
	align-items: center;
	justify-content: center;
}
.services_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;
}

.services_main_container {
	margin-top: 10em !important;
}
.services_title_row {
	text-align: center;
}
.services_title_row p {
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	color: black;
}
.services_main_text {
	margin-top: 3em !important;
}
.services_main_text_col p {
	text-align: center;
	font-size: 1.2em;
}

.services_list_header {
	margin-top: 10em !important;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: luminosity;
	background-color: gray;
	height: 20em;
}
.services_list_header .darken_background {
	width: 100%;
	height: 100%;
	background-color: #000000AA;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services_list_header p {
	font-size: 3em;
	color: red;
	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;
}

.services_list {
	margin-top: 5em !important;
	text-align: center;
	overflow-x: hidden;
}
.services_list .col-sm-1, .services .col-sm-2 {
	padding: 0;
}
.services_list_container {
	background: radial-gradient(circle at 0% 0.5%, rgb(241, 241, 242) 0.1%, rgb(224, 226, 228) 100.2%);
	border-radius: 10px;
}
.services_list_container a {
	color: black !important;
	text-decoration: none !important;
}
.services_list_image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 15em;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.services_list_text {
	padding: 1em 1em 1em 1em !important;
	min-height: 20em;
}
.services_list_text_top {
	min-height: 13em;
}
.services_list_title {
	font-size: 1.5em;
	font-weight: bold;
	color: #BB0808;
}
.services_list_content {
	font-size: 1.2em;
	text-align: justify;
}
.services_read_button {
	text-align: center;
	margin-bottom: 1em !important;
	margin-top: 2em !important;
}
.services_read_button a {
	background-color: #880808;
	color: white !important;
	text-decoration: none !important;
	font-weight: bold;
	padding: 1em;
	border-radius: 25px;
}
.services_read_button a:hover {
	background-color: black;
	color: red !important;
}

.services_single_row {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #EEEEEE;
	min-height: 28em;
}
.services_single_col {
	padding-left: 2em !important;
	padding-right: 2em !important;
}
.services_single_row .col-sm-6 {
	padding: 0;
}

.services_single_image {
	min-height: 28em !important;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.services_single_info {
	padding: 1em !important;
}
.services_single_info .title {
	text-align: center;
	font-size: 2em;
	font-weight: bold;
	color: #BB0808;
}
.services_single_info .text {
	font-size: 1.2em;
	text-align: justify;
}
.services_single_text_top {
	min-height: 21em;
}
.services_single_read_button {
	text-align: center;
	margin-bottom: 1em !important;
	margin-top: 2em !important;
}
.services_single_read_button a {
	background-color: #880808;
	color: white !important;
	text-decoration: none !important;
	font-weight: bold;
	padding: 1em;
	border-radius: 25px;
}
.services_single_read_button a:hover {
	background-color: black;
	color: red !important;
}

#row_services_2, #row_services_3, #row_services_4, #row_services_5 {
	opacity: 0;
	transition: ease 2s;
}

.services_info_row {
	margin-top: 5em !important;
}
.services_info_left {
	min-height: 30em;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.services_info_left_next {
	min-height: 30em;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-top: 3em;
}
.services_info_right .title {
	font-weight: bold;
	text-align: center;
	font-size: 2em;
	color: black;
}
.services_info_right .text {
	margin-top: 3em !important;
	font-size: 1.3em;
	text-align: justify;
	color: black;
}

#facebook_icon {
	height: 2em;
	width: 2em;
	border-radius: 7px;
	transition: ease 0.2s;
}
#facebook_icon:hover {
	height: 2.5em;
	width: 2.5em;
}
#instagram_icon {
	height: 2em;
	width: 2em;
	transition: ease 0.2s;
}
#instagram_icon:hover {
	height: 2.5em;
	width: 2.5em;
}
#youtube_icon {
	height: 2em;
	width: 3em;
	transition: ease 0.2s;
}
#youtube_icon:hover {
	height: 2.5em;
	width: 3.75em;
}
#tiktok_icon {
	height: 2em;
	width: 2em;
	transition: ease 0.2s;
}
#tiktok_icon:hover {
	height: 2.5em;
	width: 2.5em;
}
#whatsapp_icon {
	height: 2em;
	width: 2em;
	transition: ease 0.2s;
}
#whatsapp_icon:hover {
	height: 2.5em;
	width: 2.5em;
}

.mobile_social_media {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	background-color: black;
	padding-bottom: 3em !important;
	position: absolute;
	z-index: 1000;
}
.mobile_social_media .col-sm-2 {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.header_account_col, .header_services_col {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header_account_col .container, .header_account_col_mobile .container, .header_services_col .container {
	width: 350% !important;
	background-color: black;
	position: absolute;
	top: 100%;
	left: -125%;
	font-weight: bold;
	font-size: 0.9em !important;
	padding: 1em 1em 1em 1em !important;
	display: none;
	text-align: left;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	max-height: 20em;
	overflow-x: hidden;
	overflow-y: auto;
}
.header_services_col .container {
	width: 300% !important;
	left: -100%;
}
.header_services_col .container::-webkit-scrollbar { 
	width: 7px;
	height: 7px;
}
.header_services_col .container::-webkit-scrollbar-track { 
	background: #1E90FF77;
} 
.header_services_col .container::-webkit-scrollbar-thumb { 
	background: #1E90FFFF;
	border-radius: 10px;
} 
.header_services_col .container::-webkit-scrollbar-thumb:hover { 
	background: #0047AB;
} 
.header_services_col .container::-webkit-scrollbar-button { 
	display: none;
}
.header_account_col .container .row, .header_account_col_mobile .container .row, .header_services_col .container .row {
	margin-top: 1em !important;
}
.header_account_col .container .row a, .header_account_col_mobile .container .row a, .header_services_col .container .row a {
	color: white;
	text-decoration: none;
}
.header_account_col .container .row a:hover, .header_account_col_mobile .container .row a:hover, .header_services_col .container .row a:hover {
	color: red;
}

.product_info_images_first_row {
	display: flex;
	align-items: center;
	justify-content: center;
}

.product_info_images_scroll {
	font-size: 1.5em;
	padding: 0.5em;
	background-color: #DDDDDD;
	border-radius: 10px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.product_info_images_scroll:hover {
	background-color: dodgerblue !important;
	color: red !important;
}

.product_info_images_main_container {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product_info_images_main_container .row {
	overflow: hidden;
	height: auto;
	text-align: center;
	display: flex;
	align-items: center;
	white-space: nowrap;
}
.product_info_images_main_container .row .product_info_image_container, .product_info_images_main_container .row .product_info_image_container_small {
	height: auto;
	width: 100%;
	padding: 0.5em;
	display: inline-block;
	flex-shrink: 0;
}
.product_info_images_main_container .row .product_info_image_container .container, .product_info_images_main_container .row .product_info_image_container .container_small {
	text-align: center;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.account_menu, #account_menu, #account_menu2 {	
	margin-top: 10em !important;
	text-align: center;
	color: black;
	border: 0 !important;
	box-shadow: 0px 0px 10px #000000;
	border-radius: 10px;
	background-color: #DDDDDD;
	padding: 2em 1em !important;
	margin-bottom: 2em !important;
	overflow: hidden !important;
}
.form-group .help-block {
	color: red;
}

#header_account_menu, #header_account_menu_mobile {
	width: 75% !important;
	background-color: black;
	border-radius: 10px;
	position: absolute;
	top: 100%;
	right: 0%;
	font-weight: bold;
	font-size: 1em !important;
	padding: 1em 1em 1em 1em !important;
	display: none;
	text-align: left;
	z-index: 1000;
	box-shadow: 0px 0px 10px #000000;
}
#header_account_menu .row, #header_account_menu_mobile .row {
	margin-top: 1em !important;
}
#header_account_menu .row a, #header_account_menu_mobile .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_account_menu .row a:hover, #header_account_menu_mobile .row a:hover {
	color: #0081E9;
}

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

.a_panel_nav_title {
	font-size: 1.2em;
	font-weight: bold;
	margin-top: 1em !important;
	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 {
	color: white !important;
	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;
}

.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 {
	margin-top: 0 !important;
	padding: 0em 5em 0em 5em !important;
}
.a_panel_main_page_container .row {
	text-align: left;
	margin-top: 1em !important;
}
.a_panel_main_page_container .container {
	overflow-x: auto;
	border: 0.1em solid black;
	border-radius: 5px;
}

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

.page_main_header {
	padding: 0 !important;
	height: 30%;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: darken;
	border-radius: 5px;
}
.page_main_header_darken {
	height: 100%;
	width: 100%;
	background-color: #000000AA;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}
.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;
}

.maintanance_container .col-sm-10 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;
}

.maintanance_container .col-sm-10 .second_row img {
	-webkit-animation-name: spinZ;
    -webkit-animation-duration: 10000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spinZ;
    -moz-animation-duration: 10000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spinZ;
    -ms-animation-duration: 10000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spinZ;
    animation-duration: 10000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.a_panel_dashboard_main {
	border: 0 !important;
	margin-top: 2em !important;
}
.a_panel_dashboard_main .col-sm-4 {
	margin-top: 2em;
}
.a_panel_dashboard_main .col-sm-4 .container {
	border: 0;
	padding: 0.5em !important;
	background: #1E1E2D;
	border-radius: 10px;
	box-shadow: 0px 0px 5px #555555;
	min-height: 15em;
	display: flex;
	overflow: hidden;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.a_panel_dashboard_main .col-sm-4 .container:hover {
	margin-top: -1em !important;
	margin-bottom: 1em !important;
}
.a_panel_dashboard_main .col-sm-4 .container .col-sm-4 {
	width: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
}
.a_panel_dashboard_main .col-sm-4 .container .col-sm-4 div {
	background-color: white;
	padding: 1em;
	border-radius: 100px;
}
.a_panel_dashboard_main .col-sm-4 .container .col-sm-8 {
	display: flex;
	align-items: center;
	width: 75%;
	height: 100%;
}
.a_panel_dashboard_main .col-sm-4 .container .col-sm-8 .container {
	box-shadow: none;
	border: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.a_panel_dashboard_main .col-sm-4 .container .col-sm-8 .container:hover {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.a_panel_dashboard_main .col-sm-4 .container .col-sm-8 .container .title {
	text-align: center;
	font-size: 1.5em;
	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;
}
.a_panel_dashboard_main .col-sm-4 .container .col-sm-8 .container .data {
	color: white;
	font-size: 1.2em;
	font-weight: bold;
}

.home_contact_box {
	margin-top: 10em !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(red, red);
	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%;*/
}



footer {
	margin-top: 10em;
	background-color: black;
	color: white;
	height: 20em;
	display: flex !important;
	align-items: center;
	justify-content: center;
}
footer p {
	font-size: 1.2em;
	text-align: center;
}
footer p a:hover {
	color: dodgerblue !important;
}
.footer_policies {
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer_policies p a:hover {
	color: red !important;
}



/* LAPTOP (big) & LAPTOP (small) & TABLET & MOBILE */
@media only screen and (max-width: 1300px) {
	#header_account_menu, #header_account_menu_mobile {
		right: 5%;
	}
	
	.header_account_col .container, .header_account_col_mobile .container, .header_services_col .container {
		width: 400% !important;
		background-color: black;
		position: absolute;
		top: 100%;
		left: -150%;
		font-weight: bold;
		font-size: 1.1em;
		padding: 1em 1em 1em 1em !important;
		display: none;
	}
	.header_services_col .container {
		width: 300% !important;
		left: -100%;
	}
	
	.a_panel_dashboard_main .col-sm-4 {
		width: 50%;
	}
}

/* LAPTOP (small) & TABLET & MOBILE */
@media only screen and (max-width: 1100px) {	
	#myModalCookies {
		height: 35%;
		top: 65%;
	}
	
	#header_account_menu, #header_account_menu_mobile {
		width: 90% !important;
		right: 10%;
	}
	
	.header_account_col .container, .header_account_col_mobile .container, .header_services_col .container {
		width: 400% !important;
		background-color: black;
		position: absolute;
		top: 100%;
		left: -150%;
		font-weight: bold;
		font-size: 1.1em;
		padding: 1em 1em 1em 1em !important;
		display: none;
	}
	.header_services_col .container {
		width: 300% !important;
		left: -100%;
	}
}

/* TABLET & MOBILE */
@media only screen and (max-width: 900px) {
	#header_account_menu, #header_account_menu_mobile {
		width: 115% !important;
		right: 0%;
	}
	.header_account_col .container, .header_account_col_mobile .container, .header_services_col .container {
		width: 350% !important;
		background-color: black;
		position: absolute;
		top: 100%;
		left: -125%;
		font-weight: bold;
		font-size: 1.1em;
		padding: 1em 1em 1em 1em !important;
		display: none;
	}
	.header_services_col .container {
		width: 300% !important;
		left: -100%;
		top: 99%;
	}
	
	.a_panel_dashboard_main {
		flex-direction: column;
	}
	.a_panel_dashboard_main .col-sm-4 {
		width: 100%;
	}
}

/* MOBILE */
@media only screen and (max-width: 767px) {
	.header_nav_row {
		display: none;
	}
	.mobile_header_nav_row .logo_col {
		width: 100%;
		height: 100%;
	}
	
	#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;
	}
	
	#header_account_menu, #header_account_menu_mobile {
		width: 200% !important;
		top: 3em;
		right: 0;
		left: auto;
	}
	
	.a_panel_nav {
		display: none;
	}
	
	.a_panel_main_page_container {
		padding: 0em 1em !important;
	}
	
	.main_general_row, .main_aboutus_row {
		display: block;
	}
	.main_aboutus_row {
		margin-top: 1em !important;
	}
	.main_general_left, .main_general_right, .main_aboutus_left, .main_aboutus_right {
		padding: 0 !important;
	}
	.main_general_left {
		margin-top: 1em;
		padding-left: 1em !important;
		padding-right: 1em !important;
	}
	.main_general_left .title, .main_aboutus_right .title {
		text-align: center;
	}
	.main_general_right {
		margin-top: 1em;
	}
	.main_aboutus_right {
		margin-top: 1em;
		margin-bottom: 1em;
		padding-left: 1em !important;
		padding-right: 1em !important;
	}
	.main_service_container {
		margin-top: 2em !important;
	}
	
	.social_media {
		display: none;
	}
	
	.services_info_row {
		display: flex;
		flex-direction: column-reverse;
	}
	.services_info_row .services_info_left_main {
		margin-top: 5em;
	}
	
	.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_middle {
		border-top: 0.1em solid black;
		border-bottom: 0.1em solid black;
	}
	.contact_info_left {
		border-bottom-left-radius: 0px;
		border-top-right-radius: 5px;
	}
	.contact_info_right {
		border-top-right-radius: 0px;
		border-bottom-left-radius: 5px;
	}
	
	.location_address {
		margin-top: 3em !important;
		text-align: center;
	}
	.location_address p {
		font-size: 1.3em;
		font-weight: bold;
		margin-top: 1em !important;
	}
	
	.youtube .aboutus_social_col_right {
		border-top: 0.1em solid gray;
	}
	
	.contact_info_row_second .col-sm-12 {
		min-height: 35em;
	}
	
	#row_services_1_2 {
		margin-top: 0 !important;
	}
	.services_sublist .col-sm-4 {
		margin-top: 2em;
	}
	
	.services_single_row {
		display: block;
	}
	.services_single_image {
		padding: 0 !important;
	}
	.services_single_info {
		padding: 1em !important;
	}
	.services_single_info .title {
		text-align: center;
	}
	
	.home_contact_box {
		padding: 0em 1em !important;
	}
	
	.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;
	}
	.mobile_emergencies {
		display: none;
	}
	.main_image_bottom_mobile {
		display: none;
	}
	
	.mobile_social_media {
		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;
	}
	
	.main_general_right {
		border-bottom-right-radius: 10px;
	}
	.main_aboutus_left {
		border-top-left-radius: 10px;
	}
	
	.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-4:hover, .contact_info_row_second .col-sm-12:hover {
		padding-top: 1em;
		color: white;
		background-color: red;
		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 black;
		border-right: 0.1em solid black;
	}
	
	.location_address{
		margin-top: 3em !important;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.location_address p {
		font-size: 1.3em;
		font-weight: bold;
		margin-left: 2em !important;
	}
	
	.youtube .aboutus_social_col_right {
		border-left: 0.1em solid gray;
	}
	.tiktok .aboutus_social_col_right {
		border-left: 0.1em solid gray;
	}
	
	.contact_info_row_second .col-sm-12 {
		min-height: 25em;
	}
	
	.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);
    }
}

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