* { 
	margin: 0;
	padding: 0; 
    box-sizing: border-box;
  	scrollbar-color: #ffffff #2e3192;
}

img {
	width: 100%;
}

a, a:hover {
	text-decoration: none;
	color: #ffffff;
}

::placeholder {
  color: #ffffff;
  opacity: 1;
}

label {
	position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

html {
    width: 100%;
    overflow-x: hidden;
    touch-action: manipulation;
}

@font-face {
	font-family: 'Roboto';
  	font-style: normal;
  	font-weight: 400;
  	font-display: swap;
  	src: url('roboto.woff2') format('woff2');
}

body {
	background: #ffffff;
	color: #000000;
	min-width: 300px;
  	font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}

header {
	position: absolute;
	z-index: 300;
	width: 100%;
}

header img {
	width: 20%;
	height: auto;
	min-width: 200px;
	margin: 10px;
	display: inline-block;
	vertical-align: middle;
	aspect-ratio: auto 1100 / 339;
}

header .menu {
	padding: 5px;
	background-image: linear-gradient(to left, #2e3192, #121820);
	position: fixed;
	top: 0px;
	right: 0px;
	box-shadow: 2px 2px 2px #000000;
}

header button {
	display: inline-block;
	border: 1px solid #000000;
	border-radius: 5px;
	margin: 0px 10px 0px;
	padding: 8px 8px;
	color: #ffffff;
	background-image: linear-gradient(to left, #121820, #2e3192);
	font-weight: 500;
	font-size: 20px;
	vertical-align: middle;
	line-height: 20px;
}

header button:hover {
	background-image: linear-gradient(to right, #2e3192, #121820);
	color: #fef200;
	border: 1px solid #fef200;
	cursor: pointer;
}

header .menu form {
	display: inline-block;
	margin-left: 5px;
	vertical-align: middle;
}

@media (max-width: 600px) {
	header .menu {
		background: transparent;
		padding: 0px;
		box-shadow: none;
	}
	
	header button {
		margin: 10px;
	}
	
	header .menu form {
		display: none;
	}
}

header input[type=text] {
	border: 1px solid #2e3192;
	border-radius: 5px;
	background-color: transparent;
	width: 150px;
	color: #ffffff;
	font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	padding: 10px;
}

header input[type=submit] {
	color: #2e3192;
	border: 2px solid #2e3192;
	border-radius: 50%;
	background-image: radial-gradient(#dbd115, #fef200);
	padding: 10px;
	margin-left: -25px;
	font-weight: 900;
}

header input[type=submit]:hover {
	background-image: radial-gradient(#fef200, #fef200);
	cursor: pointer;
}

header #suggestions, header #suggestions1 {
    position: absolute;
    right: 0px;
    width: 250px;
    background: linear-gradient(to left, #2e3192, #121820);
    color: #ffffff;
    z-index: 600;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: left;
}

@media (max-width: 600px) {
	header #suggestions1 {
		background-image: linear-gradient(to right, #2e3192, #121820);
	}
}

header .suggestion {
    padding: 4px 8px 4px 20px;
    cursor: pointer;
    margin:10px 0px;
}

header .suggestion:hover{ 
    background-image: linear-gradient(to left, #121820, #2e3192);
    border: 1px solid #ffffff;
}

header .no-result {
    padding: 20px;
    color: #ffffff;
    font-style: italic;
}

header .sidenav {
	height: 100vh;
	width: 0;
	position: absolute;
	z-index: 500;
	top: 0;
	right: 0;
	padding: 40px 0px;
	background-image: linear-gradient(to right, #2e3192, #121820);
	overflow-x: hidden;
	transition: 0.5s;
	box-shadow: -2px -2px 2px #000000;
	opacity: 98%;
}

header .sidenav button {
	position: absolute;
	top: 10px;
	right: 0px;
	background-image: linear-gradient(to left, #2e3192, #121820);
	border: 1px solid #ffffff;
	color: #ffffff;
	padding: 3px 0px;
	height: 30px;
	width: 30px;
	font-weight: 500;
	font-size: 28px;
	line-height: 0px;
	text-align: center;
}

header .sidenav button:hover {
	background-image: linear-gradient(to left, #121820, #2e3192);
	border: 1px solid #fef200;
	color: #fef200;
}

header .sidenav form {
	display: none;
}
	
@media (max-width: 600px) {
	header .sidenav form {
		display: block;
		margin: 10px auto 0px;
		text-align: center;
	}
	
	header input[type=text] {
		border: 1px solid #fef200;
	}
}

header .sidenav .title {
	margin: 30px 32px 0px;
	padding: 5px 5px 5px 20px;
  	background-image: linear-gradient(to left, #2e3192, #121820);
  	color: #ffffff;
  	border: 1px solid #fef200;
  	font-weight: 500;
}

header .sidenav a {
	margin: 0px 32px;
	padding: 8px 5px 8px 20px;
  	color: #ffffff;
  	display: block;
  	border-bottom: 1px dotted #fef200;
  	transition: 0.3s;
}

header .sidenav a:hover {
	color: #fef200;
	background-image: linear-gradient(to left, #2e3192, #121820);
	border-bottom: 1px solid #ffffff;
	font-weight: 500;
}

.banner {
	line-height: 0px;
	background: #121820;
	width: 100%;
	height: auto;
	position: relative;
	aspect-ratio: auto 2000 / 1000;
	overflow: hidden;
}

.banner .slide {
	position: absolute;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	z-index: 100;
	-webkit-transition: opacity 5s;
	-moz-transition: opacity 5s;
	-o-transition: opacity 5s;
	transition: opacity 5s;
	display: flex;
}

.banner .laptop {
	width: inherit;
	max-width: 100%;
	height: auto;
	aspect-ratio: auto 2000 / 1000;
}

.banner .showing {
	opacity: 1;
	z-index: 200;
}

.banner .mobile {
	display: none;
	aspect-ratio: auto 480 / 800;
	width: 100%;
	height: auto;
}

.banner .content {
	position: absolute;
	bottom: 5%; 
	right: 5%;
	line-height: 1.1;
	z-index: 300;
}

.banner .content .title {
	font-size: 48px; 
	line-height: 50px;
	text-shadow: 2px 2px 2px #000000;
	font-weight: 700;
	color: #ff0000;
}

.banner .content .subtitle {
	font-size: 30px; 
	font-weight: 500; 
	color: #fef200;
	text-shadow: 2px 2px 2px #000000;
}

.banner .content .link {
	margin-top: 10px; 
	letter-spacing: 2px; 
	text-align: center; 
	font-size: 18px;
	font-weight: 500; 
	background-image: linear-gradient(to left, #2e3192, #121820); 
	color: #ffffff; 
	padding: 10px 20px;
	border: 1px solid #ffffff;
}

.banner .content .link:hover {
	background-image: linear-gradient(to left, #121820, #2e3192);
	cursor: pointer;
	color: #fef200;
}

@media (max-width: 800px) {
	.banner {
		aspect-ratio: auto 480 / 800;
	}
	
	.banner .mobile {
		display: block;
	}
	
	.banner .laptop {
		display: none;
	}
	
	.banner .content {
		top: 20%; 
		left: auto;
		right: 5% !important;
		z-index: 300;
	}
	
	.banner .content .title {
		font-size: 36px; 
		line-height: 40px;
	}
	
	.banner .content .subtitle {
		font-size: 24px; 
		line-height: 30px;
	}
	
	.banner .content a {
		font-size: 18px;
	}
}

.banner-vehicle {
	display: flex;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    height: auto;
    line-height: 0px; 
	gap: 0;
	scrollbar-color: #ffffff #ffffff;
	background: #2e3192;
}

.banner-vehicle::-webkit-scrollbar {
 	width: 0px;
	height: 0px;
}

.banner-vehicle .wrapper {
	display: flex;
    animation: scroll-horizontal 20s linear infinite;
}

@keyframes scroll-horizontal {
	0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.banner-vehicle a {
    display: block;
    flex: 0 0 auto;
    width: 20%;
}

.banner-vehicle a img {
	width: 100%;
    height: auto;
    display: block;
	aspect-ratio: auto 1600 / 1200;
}

@media (max-width: 700px) {
	.banner-vehicle a {
		width: 40%;
	}
}

@media (max-width: 500px) {
	.banner-vehicle a {
		width: 50%;
	}
}

.main {
	padding: 30px 1% 50px;
	background: #ffffff;
	display: block;
}

.main .title, .main .title1 {
	color: #2e3192;
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	text-align: center;
	margin: 20px 0px 0px;
	display: flex;
    align-items: center;
}

@media (max-width: 600px) {
	.main .title, .main .title1 {
		font-size: 24px;
		line-height: 30px;
	}
}

.main .title span {
	color: #ff0000;
}

.main .title::before, .main .title::after, .main .title1::before, .main .title1::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #2e3192;
    margin: 0 20px;
}

@media (max-width: 400px) {
	.main .title::before, .main .title::after {
	    margin: 0 5px;
	}
}

@media (max-width: 600px) {
	.main .title1::before, .main .title1::after {
		flex: auto;
		border-bottom: 0px;
    	margin: 0px;
	}
}

.main .caption {
	color: #000000;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	margin: 10px;
}

.main .caption span {
	color: #ff0000;
	font-weight: 900;
}

.main .text {
	color: #000000;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	margin: 40px 20% 20px;
}

@media (max-width: 800px) {
	.main .text {
		margin: 40px 10% 20px;
	}
}

.main .box {
	width: 29%;
	margin: 20px 2%;
	border: 1px solid #121820;
	color: #000000;
	text-align: center;
	padding-bottom: 10px;
	display: inline-block;
	vertical-align: top;
	box-shadow: 2px 2px 0px #2e3192;
	font-size: 18px;
}

@media (max-width: 1000px) {
	.main .box {
		width: 45%;
	}
}

@media (max-width: 600px) {
	.main .box {
		width: 96%;
		margin: 20px 2%;
	}
}

.main .box:hover {
	background: #fef200;
	border: 1px solid #121820;
	cursor: pointer;
	box-shadow: none;
}

.main .subtitle {
	color: #2e3192;
	font-weight: 700;
	font-size: 20px;
	padding: 10px;
}

.main .box img {
	width: 100%;
	height: auto;
	aspect-ratio: auto 1600 / 1200;
}

.main .box .detail {
	display: inline-block;
	padding: 10px 5%;
	text-align: left;
	color: #000000;
}

@media (max-width: 500px) {
	.main .box .detail {
		padding: 10px 2%;
		color: #000000;
	}
}

.main .box .detail:nth-child(odd) {
	width: 49%;
	padding-left: 2%;
}

.main .box .detail:nth-child(even) {
	padding-right: 3%;
	width: 49%;
}

.main .box .detail img {
	width: 25px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.main .search {
	background-image: linear-gradient(#2e3192, #121820);
	padding: 20px 5%;
	text-align: center;
	margin: 40px auto 0px;
	width: 90%;
	z-index: 200;
	left: 5%;
	border: 20px solid #ffffff;
	color: #fef200;
	font-size: 24px;
	font-weight: 900;
}

@media (max-width: 710px) {
	.main .search {
		padding: 20px 2%;
		width: 100%;
		left: 0%
	}
}

@media (max-width: 600px) {
	.main .search div {
		background: url(graphics/sale.webp) no-repeat center;
		background-size: auto 100%;
	}
	
	.main .search span {
		display: block;
	}
}

.main .search input, .main .search select{
	width: 17%;
	padding: 15px 5px;
	border: 1px solid #000000;
	background: transparent;
	color: #ffffff;
	font-size: 20px;
	margin: 10px 0px
}

@media (max-width: 600px) {
	.main .search input, .main .search select{
		width: 40%;
	}
}


.main .search select option { 
	background: #121820;
}

.main .search input[type=submit] {
	width: 10%;
	padding: 15px 5px;
	border: 1px solid #000000;
	background: #fef200;
	color: #000000;
	cursor: pointer;
	font-weight: 900;
}

@media (max-width: 600px) {
	.main .search input[type=submit] {
		width: 20%;
	}
}

.vehicle {
	width: 60%;
	margin: 0px 20%;
	text-align: left;
}

@media (max-width: 1000px) {
	.vehicle {
	    width: 80%;
	   	margin: 30px 10%;
	}
}

@media (max-width: 600px) {
	.vehicle {
	    width: 100%;
	   	margin: 30px 0%;
	}
}

.vehicle .subtitle {
	letter-spacing: 1px;
	font-size: 24px;
	font-weight: 700;
	border-bottom: 1px solid #2e3192;
	color: #2e3192;
	padding: 5px 10px;
	margin: 30px 10px 0px;
	text-align: center;
}

.vehicle .content {
	padding: 10px 40px;
	font-size: 17px;
}

.vehicle .content div {
	width: 32%;
	display: inline-block;
	margin-bottom: 10px;
}

@media (max-width: 800px) {
	.vehicle .content div {
		width: 49%;
	}
}

@media (max-width: 500px) {
	.vehicle .content div {
		width: 100%;
		display: block;
	}
}

.vehicle .content1 {
	padding: 0px 40px;
	font-size: 18px;
	white-space: pre-line;
}

.vehicle .content1 li {
	margin-bottom: 5px;
}


.vehicle .price {
	border: 1px dotted #2e3192;
	padding: 10px 20px;
	font-weight: 700;
	text-align: center;
	width: 100%;
	margin: 50px auto 0px;
	font-size: 20px;
}

.vehicle .price b {
	color: #2e3192;
	font-size: 24px;
}

.vehicle .calculator {
	margin: 50px auto 0px;
	border: 1px dotted #2e3192;
	padding: 10px 20px;
	text-align: center;
	font-size: 18px;
}

.vehicle .calculator div {
	display: inline-block;
	width: 24%;
	font-weight: 500;
}

@media (max-width: 1000px) {
	.vehicle .calculator div {
		width: 49%;
	}
}

.vehicle .calculator .subtitle {
	display: block;
	width: 100%;
	margin: 0px 0px 20px;
	font-size: 24px;
}

.vehicle .calculator input {
	width: 100%;
	border: 1px dotted #2e3192;
	padding: 10px 20px;
	margin: 0px auto 20px;
	text-align: center;
	font-size: 18px;
}

.vehicle .calculator input[type=submit] {
	margin: 0px auto 0px;
	background: #2e3192;
	color: #ffffff;
	cursor: pointer;
}

.vehicle .calculator input[type=submit]:hover {
	background: #ffffff;
	color: #2e3192;
	border: 1px solid #2e3192;
	cursor: pointer;
}

.vehicle .nav {
	margin: 50px auto;
	text-align: center;
	font-size: 18px;
}

.vehicle .nav .whatsapp {
	background: transparent;
	margin-right: 20px;
	color: #000000;
	border: 0px;
	font-size: 18px;
	font-weight: 700;
}

.vehicle .nav img {
	width: 40px;
	vertical-align: middle;
}

.vehicle .nav a {
	color: #000000;
	padding: 5px 10px;
	font-weight: 400;
}

.vehicle .nav a:hover {
	color: #2e3192;
	font-weight: 700;
}

@media (max-width: 700px) {
	.vehicle .nav .whatsapp {
		margin-right: 0px;
	}

	.vehicle .nav span {
		display: block;
		margin-bottom: 40px;
	}
}

.vehicle .nav .dropdown {
	position: relative;
    display: inline-block;
}

.vehicle .nav .dropdown-content {
	display: none;
    position: absolute;
    background: #ffffff;
    min-width: 280px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    text-align: left;
}

.vehicle .nav .dropdown-content a {
    padding: 12px 8px 12px 8px;
	display: block;
	background: transparent;
	color: #000000;
	font-size: 18px;
	font-weight: 500;
}

.vehicle .nav .dropdown-content img {
	display: inline-block;
	width: 40px;
	vertical-align: middle;
}

.vehicle .nav .dropdown-content div {
	display: inline-block;
	width: 200px;
	vertical-align: middle;
	line-height: 20px;
}

.vehicle .nav .dropdown-content div i {
	font-style: italic;
	font-size: 15px;
}


.vehicle .nav .dropdown:hover .dropdown-content {
	display: block;
}

.main .not-avai {
	margin: 50px 0px;
	text-align: center;
	font-size: 20px;
	font-weight: 900;
}

.slider {
    position: relative;
    width: 60%;
    overflow: hidden;
   	margin: 30px 20%; 
   	border: 2px solid #2e3192;
}

@media (max-width: 600px) {
	.slider::after{
	   	content: 'to enlarge/zoom the image, click on the enlarge button & use 2 fingers';
	   	font-style: italic;
	   	text-align: center;
	   	margin: 10px 10px;
	   	font-size: 12px;
	   	display: flex;
  		justify-content: center; /* Centers horizontally */
	}
}

@media (max-width: 1000px) {
	.slider {
	    width: 80%;
	   	margin: 30px 10%;
	}
}

@media (max-width: 600px) {
	.slider {
	    width: 100%;
	   	margin: 30px 0%;
	}
}

.fullscreen-active {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: #ffffff;
    top: 0;
    left: 0;
    z-index: 999; /* Ensure it's on top */
    display: flex;
    flex-direction: column; /* Aligns content vertically */
    justify-content: flex-end; /* Pushes content to the bottom */
    overflow: hidden;
}

@media (max-width: 800px) {
	.fullscreen-active {
		width: auto;
	    justify-content: flex-start; /* Aligns items at the top */
	}
}

.slider .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider .slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slider .slide img {
	max-width: 100%;
    width: auto;
    margin: 0px auto;
    display: block;
}

.slider .controls {
   /** position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);**/
}

.slider button {
	position: absolute;
    top: 20%;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    color: black;
    font-size: 30px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}

@media (max-width: 500px) {
	.slider button {
	    top: 10%;
	    width: 30px;
	    font-size: 24px;
	    padding: 3px 8px;
	    margin: 5px;
	}
}

.slider .controls .prev {
   left: 0px;
}

.slider .controls .next {
   right: 0px;
}

.slider .controls .fullscreen-btn {
	top: 0px;
	right: 50%;
	left: 50%;
	height: 40px;
	background-image: url(graphics/full.webp);
	background-size: cover;
}

@media (max-width: 1000px) {
	.slider .controls .fullscreen-btn {
	/**display: none;**/
		height: 30px;
	}
}

.slider button:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.slider .thumbnails-wrapper {
    display: flex;
    justify-content: left;
    overflow-x: auto;
    width: 100%;
    scrollbar-color: #ffffff #ffffff;
}

.slider .thumbnails-wrapper::-webkit-scrollbar {
 	width: 0px;
	height: 0px;
}

.slider .thumbnails {
    display: flex;
    width: max-content;
    margin: 0px auto;
}

.slider .thumbnail {
    width: auto;
    height: 60px;
    margin: 5px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.slider .thumbnail:hover, .slider .thumbnail.active {
    opacity: 1;
    border: 2px solid #000000;
}

.page {
	padding: 50px 10%;
	background: url(graphics/traffic.webp) no-repeat center;
	background-size: auto 100%;
	white-space: pre-line;
	min-height: 400px;
	font-size: 18px;
}

@media (max-width: 600px) {
	.page {
		padding: 20px 5% 50px;
	}
}

.page a {
	color: #2e3192;
}

.page a:hover {
	color: #000000;
	text-decoration: underline;
}

.page img {
	border-radius: 20px;
	border: 1px solid #2e3192;
	box-shadow: 2px 2px 6px #c0c0c0;
}

.page .title {
	color: #2e3192;
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
	display: flex;
    align-items: center;
    text-align: center;   
}

@media (max-width: 600px) {
	.page  .title {
		margin-bottom: 10px;
	}
}

.page .title::before, .page .title::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #2e3192;
    margin: 0 20px;
}

.page ul {
	margin: 0px 0px 20px 0px;
}

.page li {
	margin: 15px 0px 0px 40px;
}

.page .map {
	white-space: nowrap;
}

.page .map div {
	width: 45%;
	margin: 0px 2% 20px;
	display: inline-block;
}

@media (max-width: 800px) {
	.page .map div {
		width: 100%;
		margin: 0px 0 50px;
		display: block;
	}
	
	.page .map div:last-child {
		margin: 0px 0 20px;
	}
}

.page .map div iframe{
	width: 100%;
	border-radius: 20px;
	height: 450px;
	border-radius: 20px;
	border: 1px solid #2e3192;
	box-shadow: 2px 2px 6px #c0c0c0;
}

.page input::placeholder, .page textarea::placeholder {
  color: #232021;
  opacity: 1;
}

.page form span {
	color: #2e3192;
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
}

.page form input {
	border: 1px solid #232021;
	padding: 4px 10px;
	font-size: 16px;
	margin: 10px 0px 5px;
	width: 100%;
	font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #232021;
	max-width: 500px;
}

.page form .hidden {
	display: none;
	visibility: hidden;
}

.page form textarea {
	border: 1px solid #232021;
	padding: 4px 10px;
	font-size: 16px;
	margin: 10px 0px;
	width: 100%;
	height: 120px;
	font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #232021;
	max-width: 500px;
}

.page form button {
	border: 1px solid #2e3192;
	background: #2e3192;
	color: #ffffff;
	padding: 5px 20px;
	width: 100%;
	font-size: 18px;
	font-weight: 700;
	font-family: "Roboto";
	cursor: pointer;
	max-width: 500px;
}

.page button:hover {
	color: #2e3192;
	background: #ffffff;
	border: 1px solid #2e3192;
}

.video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
	border-top: 5px solid #fef200;
	background-image: linear-gradient(#2e3192, #121820);
	margin: 0px auto;
	width: 100%;
	text-align: center;
	padding: 20px 20px 0px;
	color: #ffffff;
	font-size: 18px;
}
@media (max-width: 500px) {
	footer {
		padding: 20px 5px 0px;
	}
}

footer .wrapper {
	background: url(graphics/car.webp) no-repeat center;
	background-size: auto 100%;
}

@media (max-width: 1000px) {
	footer .wrapper {
		background-size: 100% auto;
	}
}

footer .logo {
	min-width: 25%;
	width: 300px;
	margin-bottom: 10px;
	aspect-ratio: auto 1100 / 339;
}

@media (max-width: 600px) {
	footer .logo {
		width: 80%;
		margin: 0 10%;
	}
}

footer .title {
	letter-spacing: 1px;
	font-size: 24px;
	font-weight: 700;
	color: #fef200;
	margin: 0px auto 20px;
}

footer .why .box {
	width: 27%;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	border: 1px solid #ffffff;
	background-image: linear-gradient(to left, #2e3192, #121820);
	color: #ffffff;
	margin: 20px 3% 20px;
	padding: 5px 10px;
	box-shadow: 2px 2px 0px #ffffff;
}

@media (max-width: 1200px) {
	footer .why .box {
		width: 43%;
	}
}

@media (max-width: 700px) {
	footer .why .box {
		width: 90%;
	}
}

footer .why .box img {
	max-width: 35px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
	aspect-ratio: auto 512 / 512;
}

footer .why .box .text {
	display: inline-block;
	vertical-align: middle;
}

footer .box .subtitle {
	letter-spacing: 1px;
	font-size: 24px;
	font-weight: 700;
	color: #fef200;
	margin: 0px auto;
}

footer .menu {
	margin: 20px 0px;
}

footer .menu a {
	margin: 20px 20px;
	color: #fef200;
	font-weight: 700;
}

@media (max-width: 500px) {
	footer .menu a {
		margin: 20px 10px;
	}
}

footer .menu a:hover {
	color: #ffffff;
	font-style: italic;
}

footer .contact {
	margin: 30px 0px 0px;
}

footer .contact img {
	width: 50px;
	margin: 20px 20px 0px 0px;
	aspect-ratio: auto 512 / 512;
}

footer .contact .map {
	width: 40px;
	margin: 0px 10px 0px 0px;
	vertical-align: middle;
	aspect-ratio: auto 386 / 512;
}

@media (max-width: 600px) {
	footer .contact span {
		display: block;
		height: 20px;
	}
}

footer .copy {
	margin: 30px auto 0px auto;
	padding: 5px 0px;
	width: 100%;
	color: #c0c0c0;
	text-align: center;
	font-size: 12px;
}
