@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
	box-sizing: border-box;
}

html, body {
	overflow-x: hidden;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	line-height: 1.6;
	min-width: 320px;
	position: relative;
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5,h6 {
	margin-top: 0;
	margin-bottom: 5px;
}

strong {
	font-weight: 700;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	max-width: 1200px;
	padding: 0 20px;
	margin: 0 auto;
}

input, textarea {
	background-color: #F6F6F6;
	font-family: 'Poppins', sans-serif;
}
input::placeholder, 
textarea::placeholder {
	color: #9F9F9F;
}

.def-title {
	font-size: 42px;
	font-weight: 700;
	position: relative;
	margin-bottom: 25px;
	line-height: 1.4;
	color: #020402;
}
.def-title::before {
	content: '';
	height: 1px;
	width: 100%;
	position: absolute;
	top: 30px;
	left: calc(-100% - 25px);
	background-color: #020402;
}
.center-title {
	font-size: 42px;
	font-weight: 700;
	color: #000;
	text-align: center;
	margin-bottom: 40px;
	color: #020402;
}
.center-title::after {
	content: '';
	height: 1px;
	width: 70px;
	background-color: #020402;
	display: block;
	margin: 15px auto 0 auto;
}
.color-white {
	color: #fff;
}
.center-title.color-white::after {
	background-color: #fff;
}
.def-desc {
	color: #6D6A6A;
	font-size: 18px;
	line-height: 1.5;
}
.def-desc strong {
	letter-spacing: 0.5px;
	color: #D5B602;
}

.def-btn {
	background-color: #D5B602;
	padding: 15px 45px;
	display: inline-block;
	transition: background-color 0.35s ease;
	font-size: 20px;
	color: #fff;
}
.def-btn:hover {
	background-color: #A38B01;
}

.get-in-touch{
	border: 2px solid #fff;
	padding: 10px 30px;
	margin-top: 1rem;
}

.get-in-touch:hover{
	border: 2px solid #1C0E05;
	color: #fff;
	background-color: #1C0E05;
	padding: 10px 30px;
	margin-top: 1rem;
}

.contact-btn{
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: all .15s ease-in-out;
	padding: 10px 30px;
	border: 2px solid;
}

.contact-btn:hover{
	color: #fff !important;
	border-color: #D5B602;
	background-color: #D5B602;
}

.subtitle{
	color: #D5B602;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Header START */
.header-top {
	background-color: #D5B602;
	color: #fff;
	padding: 18px 0 55px 0;
	font-size: 14px;
}
.header-row {
	display: flex;
	align-items: center;
}
.header-right {
	display: flex;
	column-gap: 74px;
	margin-left: auto;
}
.header-info {
	display: flex;
	align-items: center;
}
.header-info img {
	margin-right: 16px;
	max-width: 21px;
}
.header-social {
	display: flex;
	align-items: center;
	column-gap: 28px;
}
.header-social a {
	transition: opacity 0.35s ease;
}
.header-social a:hover {
	opacity: 0.5;
}

.header-bottom {
	position: absolute;
	z-index: 2;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	/*max-width: 1200px;*/
	width: 103%;
}
.header-bottom-row {
	display: flex;
	background-color: #fff;
	color: #595959;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.11);
}
.header-logo {
	background-color: #fff;
	padding: 15px 60px 15px 40px;
	display: flex;
	align-items: center;
	clip-path: polygon(0px 0px, 100% 0%, 82.68% 101.20%, 0px 100%);
}
.header-logo a {
	display: flex;
}
.header-logo img {
	max-width: 160px;
}
.header-nav {
	padding: 10px 60px;
	margin-left: auto;
}
.header-nav ul {
	display: flex;
	list-style-type: none;
	padding: inherit;
	column-gap: 50px;
	font-size: 16px;
}
.header-nav ul li a {
	transition: color 0.35s ease;
}
.header-nav ul li a:hover {
	color: #D5B602;
}

.header-bottom.is-fixed {
	position: fixed;
	top: 0;
	transition: 0.35s ease;
}
.header-bottom.is-fixed .header-logo {
	padding: 0 50px 0px 40px;
}
.header-bottom.is-fixed .header-nav {
    padding: 3px 60px;
}
.header-bottom.is-fixed .header-logo img {
	max-width: 140px;
}

.go-up {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 9;
	transition: 0.35s ease;
	transform: translateY(100px);
	opacity: 0.5;
}
.go-up:hover {
	opacity: 1;
}
.go-up.is-active {
	transform: none;
}
.go-up a {
	background-color: #020402;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.35s ease;
}
.go-up img {
	max-width: 50%;
}
/* Header END */


/* Banner START */
.banner-swiper:hover .swiper-button-next, 
.banner-swiper:hover .swiper-button-prev {
	transform: none;
}
.banner-swiper .swiper-slide {
	padding: 175px 0;
	color: #fff;
	text-align: center;
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 640px;
}
.banner-swiper .swiper-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(35, 31, 31, 0.80);
	z-index: -1;
}
.banner-content {
	max-width: 750px;
	margin: 65px auto;
}
.banner-subtitle {
	font-size: 24px;
	margin-bottom: 10px;
}
.banner-title {
	font-size: 60px;
	font-weight: 300;
	line-height: 1.3;
}
.swiper-button-next {
	right: 40px;
	transform: translateX(110px);
}
.swiper-button-prev {
	left: 40px;
	transform: translateX(-110px);
}
.swiper-button-next,
.swiper-button-prev {
	color: #fff;
	background-color: #5A5454;
	width: 60px;
	height: 60px;
	transition: transform 0.3s ease;
	overflow: hidden;
}
.swiper-button-next:after, 
.swiper-button-prev:after {
	font-size: 28px;
}
.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
	transform: none;
}

.swiper-button-next::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #312f2f;
	transform: translateX(calc(-100% - 10px));
	transition: transform 0.35s ease;
	z-index: -1;
}
.swiper-button-prev::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #312f2f;
	transform: translateX(calc(100% + 10px));
	transition: transform 0.35s ease;
	z-index: -1;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 30px;
}
.swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	border-radius: 0;
	background-color: #D9D9D9;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background-color: #020402;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 10px
}
/* Banner END */


/* About START */
.about {
	padding: 90px 0;
	background-color: #FFF;
}
.about-row {
	display: flex;
	align-items: center;
}
.about .def-desc {
	margin-bottom: 30px;
}
.about-left {
	margin-right: 90px;
}
.about-right {
	min-width: 350px;
	max-width: 350px;
}
.about-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* About END */



/* Services START */
.services {
	background: #E9E3DF;
	padding: 100px 0;
}
.services-row {
	display: flex;
	column-gap: 35px;
}
.services-item {
	box-shadow: 0px 1px 12px 1px rgba(0, 0, 0, 0.15);
	width: 30%;
	background-color: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	/*height: 100%;*/
}
.services-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.services-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.services-body {
	padding: 15px 20px 30px 20px;
}
.services-title {
	font-size: 21px;
}
.services-desc {
	margin-bottom: 15px;
	color: #999696;
	min-height: 17.5vh;
}
.services-btn {
	width: 100%;
	text-align: center;
	padding: 12px 45px;
}

.modal-form {
	background-color: #fff;
	max-width: 90%;
	margin: 0 auto;
	padding: 60px 80px;
}
.modal-form-head {
	float: right;
}
.modal-form-logo img {
	max-width: 190px;
}
.modal-form-close {
	cursor: pointer;
}
.modal-form-title {
	font-size: 25px;
	font-weight: 700;

	text-align: left;margin-right: 40px;
}

.modal-form input {
	display: block;
	padding: 22px 25px;
	background-color: #F6F6F6;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	border: none;
	width: 100%;
	outline: none;
	margin-bottom: 24px;
}
.modal-form .form-button {
	background-color: #020402;
	color: #fff;
	max-width: 285px;
	width: 100%;
	margin: 0 auto;
	display: block;
	padding: 20px 25px;
	border: none;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	transition: background-color 0.35s ease;
}
.modal-form .form-button:hover {
	background-color: #C32A45;
}

.modal-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.modal-image img {
  max-width: 330px;
}

.modal-text {
  flex: 1;
  min-width: 250px;
}

.modal-flex {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.modal-image img {
  max-width: 350px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-text {
  flex: 1;
  min-width: 280px;
  color: #222;
}


.modal-text p {
  font-size: 1rem;
  text-align: justify;
}

.highlight {
  color: #a88c00;
  font-weight: 600;
}



/* Services END */



/* Gallery START */
.s-gallery {
	padding: 60px 0;
	background-color: #FFF;
}
.gallery-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
}
.gallery-wrap a {
	position: relative;
	overflow: hidden;
}
.gallery-item:nth-child(n+7) {
	display: none;
}
.gallery-wrap a.gallery-visible {
	display: block;
}
.gallery-wrap a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-wrap a:hover::before, 
.gallery-wrap a:hover::after, 
.gallery-wrap a:hover .gallery-border {
	opacity: 1;
}

.gallery-wrap a::before {
	content: 'Zoom';
	background-color: rgba(68, 62, 62, 0.72);
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 22px;
	padding-top: 50px;
	margin-top: -20px;
	opacity: 0;
	transition: 0.5s ease;
}
.gallery-wrap a::after {
	content: '';
	background-image: url('../images/magnify.svg');
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
	width: 35px;
	height: 35px;
	z-index: 1;
	position: absolute;
	margin-top: -20px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: 0.5s ease;
}
.gallery-border {
	border: 1px solid #fff;
	width: calc(100% - 35px);
	height: calc(100% - 35px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: 0.5s ease;
}

.gallery-btn {
	text-align: center;
	margin-top: 44px;
}
/* Gallery END */



@keyframes marquee {
0% {
	transform: translateX(100%);
}
100% {
	transform: translateX(-100%);
}
}

/* @keyframes move {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
} */
/* Partners END */



/* Form START */
.s-form {
	padding: 80px 0; 
	background-color: #FFF;
}
.form-row {
	display: flex;
	align-items: center;
}
.form-left {
	max-width: 500px;
	margin-right: 70px;
}
.s-form .def-desc {
	margin-bottom: 30px;
}
.form-image img {
	max-width: 100%;
}

.form-right {
	width: 90%;
}
.form-right form {
	background-color: #fff;
	padding: 60px 45px;
	position: relative;
	box-shadow: 0px -1px 8px 4px rgba(88, 83, 83, 0.12);
}
.form-right form::before {
	content: '';
	width: 100%;
	height: 10px;
	background-color: #020402;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
}
.form-right form input,
.form-right form textarea {
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	display: block;
	width: 100%;
	padding: 22px 30px;
	background-color: #F6F6F6;
	border: none;
	outline: none;
	margin-bottom: 24px;
}
.form-button {
	border: none;
	margin: 0 auto;
	display: block;
	cursor: pointer;
	padding: 15px 65px;
}
/* Form END */

.form-row {
	display: flex; 
	align-items: flex-start;
	gap: 20px;
	flex-wrap: wrap; 
}

.form-right {
	width: 54%; 
}

.form-map {
	margin-top: 10%;
}

.map-container {
	background-color: #F6F6F6;
	padding: 15px;
	box-shadow: 0px -1px 8px 4px rgba(88, 83, 83, 0.12);
	border-radius: 5px;
}


/*--------------------------------------------------------------
# btn-wsp button
--------------------------------------------------------------*/

.btn-wsp {
	position: fixed;
	visibility: visible;
	opacity: 1;
	right: 20px;
	bottom: 20px;
	border-radius: 50%;
	z-index: 996;
	background: #26D366;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.54);
}

.btn-wsp i {
	font-size: 28px;
	color: #fff;
}

.btn-wsp:hover {
	background: #fff;
	color: #26D366;
}

.btn-wsp:hover i {
	color: #26D366;
}

.btn-wsp.active {
	visibility: visible;
	opacity: 1;
}


/* Responsividad para dispositivos móviles */
@media (max-width: 768px) {
	.form-row {
		flex-direction: column; 
		gap: 10px; 
	}

	.form-right,
	.form-map {
		width: 100%; 
	}

	.map-container iframe {
		height: 300px; 
	}
}


@media (max-width: 992px) and (min-width: 769px) {
	.form-row {
		flex-direction: column; 
		gap: 20px; 
	}

	.form-right,
	.form-map {
		width: 100%; 
	}

	.map-container iframe {
		height: 400px; 
	}
}

.icono-linkedin,
.icono-whatsapp,
.icono-email {
  fill: #D5B602;
  transition: fill 0.3s ease;
}

.icono-linkedin:hover,
.icono-whatsapp:hover,
.icono-email:hover {
  fill: #A38B01;
}


/* Footer START */
.site-footer {
	background-color: #1C0E05;
	color: #fff;
	font-size: 18px;
}
.footer-row {
	display: flex;
}

.footer-left {
	padding: 45px 15px 0px 0px;
	border-right: 1px solid rgba(239, 239, 239, 0.24);
	font-size: 45px;
}
.footer-logo {
	margin-bottom: 25px;
}

.footer-right {
	display: flex;
	justify-content: space-between;
	padding: 60px 0 60px 30px;
}
.footer-desc {
	color: #D2D2D2;
	line-height: 1.7;
}
.footer-title {
	font-size: 25px;
	margin-bottom: 18px;
}
.footer-nav ul {
	list-style-type: none;
	padding: 0;
	font-size: 18px;
	color: #E0E0E0;
}
.footer-nav ul li:nth-last-child(n+2) {
	margin-bottom: 15px;
}
.footer-nav ul li a:hover {
	color: #fff;
}
.footer-info-item {
	display: flex;
	align-items: center;
}
.footer-info-item:nth-last-child(n+2) {
	margin-bottom: 22px;
}
.footer-info-icon {
	margin-right: 14px;
}
.footer-info-icon img {
	vertical-align: middle;
	transform: translateY(-2px);
}
.footer-social {
	display: flex;
	column-gap: 30px;
}
.footer-social a {
	transition: 0.35s ease;
}
.footer-social a:hover {
	filter: brightness(3);
}

.footer-copyright {
	border-top: 1px solid rgba(239, 239, 239, 0.24);
	padding: 24px 0 30px 0;
	text-align: center;
	color: #D2D2D2;
}
/* Footer END */



/* Responsive START */
@media screen and (max-width: 1200px) {

	/* Header 1200 START */
	.header-logo {
		padding: 15px 50px 15px 20px;
	}
	.header-nav {
		padding: 10px 20px;
	}
	/* Header 1200 END */

	/* Numbers 1200 START */
	.numbers-left {
		padding-right: 50px;
	}
	.numbers-right {
		grid-template-columns: repeat(2, 200px);
	}
	/* Numbers 1200 END */

	/* Why us 1200 START */
	.why-right img {
		max-width: 450px;
	}
	/* Why us 1200 END */

}

@media screen and (max-width: 992px) {
	
	/* Header 992 START */
	.header-logo {
		padding: 10px 30px 10px 20px;
	}
	.header-logo img {
		max-width: 130px;
	}
	.header-top {
		font-size: 12px;
	}
	.header-right {
		column-gap: 30px;
	}
	.header-info img {
		margin-right: 5px;
		max-width: 18px;
	}
	.header-social {
		column-gap: 15px;
	}
	.header-social a img {
		max-width: 18px;
	}
	.header-nav ul {
		font-size: 14px;
		column-gap: 30px;
	}
	/* Header 992 END */


	/* Banner 992 START */
	.banner-swiper .swiper-slide {
		padding: 100px 20px 130px 20px;
		min-height: 400px;
	}
	.swiper-button-next {
		right: 20px;
	}
	.swiper-button-prev {
		left: 20px;
	}
	.swiper-button-next, 
	.swiper-button-prev {
		width: 40px;
    	height: 40px;
	}
	.swiper-button-next:after, 
	.swiper-button-prev:after {
		font-size: 20px;
	}
	.banner-title {
		font-size: 40px;
	}
	.banner-subtitle {
		font-size: 18px;
	}
	.def-btn {
		padding: 12px 40px;
		font-size: 20px;
		margin: 5% auto 0 auto;
	}
	/* Banner 992 END */


	/* About 992 START */
	.about-row {
		display: block;
	}
	.about-left {
		margin: 0 auto 30px auto;
		max-width: 100% !important;
	}
	.about .def-desc {
		margin-bottom: 20px;
	}
	.about-right {
		margin: 0 auto;
		width: 100%;
		max-width: 505px;
	}
	.about-right img{
		width: 90% !important;
		height: auto;
	}
	/* About 992 END */


	/* Services 992 START */
	.services {
		padding: 60px 0;
	}
	.services-row {
		column-gap: 20px;
	}
	.services-title {
		font-size: initial;
		line-height: 1.5;
	}
	.services-desc{
		font-size: 15px;
		min-height: auto !important;
	}
	.services-btn {
		padding: 10px 25px;
	}
	/* Services 992 END */

	/* Gallery 992 START */
	.s-gallery {
		padding: 60px 0;
	}
	.gallery-wrap {
		grid-gap: 20px;
	}
	/* Gallery 992 END */

	/* Form 992 START */
	.s-form {
		padding: 60px 0;
	}
	.form-row {
		display: block;
	}
	.form-left {
		margin: 0 auto 30px auto;
	}
	.form-right {
		margin: 0 auto;
		max-width: 425px;
		width: 100%;
	}
	/* Form 992 END */

	/* Footer 992 START */
	.footer-row {
		display: block;
	}
	.footer-left {
		max-width: none;
		border-right: none;
		padding-right: 0;
	}
	.footer-right {
		padding: 0;
		margin-bottom: 30px;
		width: 100%;
	}
	
	/* Footer 992 END */

}

@media screen and (min-width: 768px) {

	.header-mobile-logo,
	.hamburger,
	.header-mobile-wrap {
		display: none;
	}

}

@media screen and (max-width: 768px) {

	/* All styles 768 START */
	.def-title {
		font-size: 32px;
		margin-bottom: 20px;
		line-height: 1.3;
	}
	.def-title::before {
		top: 23px;
		left: calc(-100% - 10px);
	}
	.center-title {
		font-size: 32px;
		line-height: 1.3;
	}
	.center-title::after {
		width: 50px;
	}
	/* All styles 768 END */

	/* Header 768 START */
	.header-top {
		padding: 0;
		border-bottom: 1px solid #9F9F9F;
	}
	.header-desc,
	.header-right,
	.header-bottom {
		display: none;
	}
	.header-mobile-logo {
		background-color: #fff;
		padding: 8px 40px 8px 20px;
		display: flex;
		align-items: center;
		clip-path: polygon(0px 0px, 100% 0%, 82.68% 101.20%, 0px 100%);
		margin-left: -20px;
	}
	.header-mobile-logo img {
		max-width: 110px;
	}

	.hamburger {
		margin-left: auto;
		cursor: pointer;
		width: 26px;
		height: 11px;
		position: relative;
	}
	.hamburger span {
		height: 1px;
		width: 26px;
		background-color: #fff;
		display: block;
		transition: 0.5s ease;
		position: absolute;
	}
	.hamburger span:first-child {
		top: 0;
	}
	.hamburger span:last-child {
		bottom: 0;
	}
	.hamburger.is-active {
		
	}
	.hamburger.is-active span:first-child {
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}
	.hamburger.is-active span:last-child {
		top: 50%;
		transform: translateY(-50%) rotate(-45deg);
	}

	.header-mobile-wrap {
		background-color: #D5B602;
		color: #fff;
		padding: 30px 20px;
		text-align: center;
		position: absolute;
		top: 49px;
		left: 0;
		width: 100%;
		z-index: 12;
		display: none;
	}
	.header-mobile-nav {
		margin-bottom: 40px;
	}
	.header-mobile-nav ul {
		list-style-type: none;
		padding: 0;
	}
	.header-mobile-nav ul li {
		margin-bottom: 25px;
	}
	.header-mobile-info {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 25px;
	}
	.header-mobile-info img {
		margin-right: 12px;
	}
	.header-mobile-social {
		margin-top: 40px;
		display: flex;
		justify-content: center;
		column-gap: 28px;
	}
	/* Header 768 END */

	/* Banner 768 START */
	.swiper-button-next, 
	.swiper-button-prev {
		display: none;
	}
	/* Banner 768 END */

	/* About 768 START */
	.about {
		padding: 45px 0;
	}
	/* About 768 END */

	/* Services 768 START */
	.services-title {
		font-size: 20px;
	}
	.services-body {
		padding: 10px 15px 20px 15px;
	}
	/*.services-btn {
		font-size: 12px;
	}*/
	.services-row {
		flex-wrap: wrap;
		row-gap: 20px;
	}
	.services-item {
		width: calc(50% - 10px);
	}
	/* Services 768 END */

	/* Gallery 768 START */
	.gallery-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
	/* Gallery 768 END */


	/* Footer 768 START */
	.site-footer {
		text-align: center;
	}
	.footer-right {
		display: block;
		width: 100%;
	}
	.footer-info-item {
		justify-content: center;
		display: block;
	}
	.footer-social {
		justify-content: center;
		margin-top: 40px;
	}
	.footer-nav {
		margin-bottom: 30px;
		width: 100%;
	}
	/* Footer 768 END */

}


@media screen and (max-width: 575px) {

	/* All styles START */
	.def-title {
		text-align: center;
	}
	.def-title::before {
		display: none;
	}
	.def-title::after {
		content: '';
		height: 1px;
		width: 50px;
		background-color: #020402;
		display: block;
		margin: 20px auto 0 auto;
	}
	.def-title.color-white::after {
		background-color: #fff;
	}
	/* All styles END */

	/* Banner 575 START */
	.banner-swiper .swiper-slide {
		padding: 60px 20px 100px 20px;
	}
	.banner-subtitle {
		font-size: 18px;
	}
	.banner-title {
		font-size: 40px;
		line-height: 1.5;
	}
	.banner-btn {
		padding: 10px 30px;
		font-size: 20px;
	}
	
	/* Banner 575 END */

	/* About 575 START */
	.about .def-btn {
		display: block;
		text-align: center;
		max-width: 80%;
		margin: 10% auto 0 auto;
		padding: 12px 20px;
	}
	/* About 575 END */

	/* Services 575 START */
	.services-row {
		justify-content: center;
	}
	.services-item {
		width: 90%;
		font-size: 15px;
	}
	/* Services 575 END */


	/* Form 575 START */
	.form-right form {
		padding: 50px 30px;
	}
	.form-right form input, 
	.form-right form textarea {
		font-size: 20px;
		margin-bottom: 20px;
	}
	/* Form 575 END */

}

@media screen and (max-width: 480px) {
	.modal-form {
		padding: 20px 30px 50px 30px;
	}
	.modal-form-title {
		font-size: 28px;
		margin-bottom: 25px;
	}
	.modal-form-title::after {
		margin: 10px auto 0 auto;
	}
	.modal-form input {
		font-size: 14px;
	}
	.modal-form .form-button {
		font-size: 14px;
	}
	.modal-image img {
		display: none;
	}
	.modal-text p {
		font-size: 1rem;
		text-align: inherit;
	}
}
/* Responsive END */



  .hours {
	margin-top: 20px;
  }

  .hours h3 {
	font-weight: 600;
	margin-bottom: 10px;
  }

  .hours .day {
	display: flex;
	justify-content: space-between;
	margin-bottom: 4px;
  }