@charset "UTF-8";

@font-face {
    font-family: 'Jost';
    src: url('/res/fonts/Jost-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Latinka-Black';
    src: url('/res/fonts/Latinka\ Black.ttf') format('truetype');
}

@font-face {
    font-family: 'Latinka-Bold';
    src: url('/res/fonts/Latinka\ Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Latinka-ExtraBold';
    src: url('/res/fonts/Latinka\ ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Latinka-Medium';
    src: url('/res/fonts/Latinka\ Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Latinka-SemiBold';
    src: url('/res/fonts/Latinka\ SemiBold.ttf') format('truetype');
}

:root {
	--primary-color: #80ac25;
	--secondary-color: #e1e1e1;

	--background-color: #ffffff;
	--secondary-background-color: #3a373a;

	--input-border-color: #ffffff;
	--input-color: #d5d5d5;

	--primary-font: "Jost";
	--black-font: "Latinka-Black";
	--bold-font: "Latinka-Bold";
	--semi-bold-font: "Latinka-SemiBold";
	--extra-bold-font: "Latinka-ExtraBold";
	--medium-font: "Latinka-Medium";

	--font-color: #000000;
	--secondary-font-color: #3a373a;
	--light-font-color: #d5d5d5;

	--danger-font-color: #fe1516;
	--warning-font-color: #f7bb00;
	--ok-font-color: #0bc91b;
	--great-font-color: #057a0f;

	--scrollbar-track-color: #e8eaf6;
	--scrollbar-thumb-color: var(--primary-color);
	--scrollbar-thumb-hover-color: #3a3a3a;

	--scrollbar-width-pc: 12px;
	--scrollbar-width-mb: 3px;
}

::-webkit-scrollbar {
	width: var(--scrollbar-width-pc);
}

::-webkit-scrollbar-track {
	background: var(--scrollbar-track-color);
}

::-webkit-scrollbar-thumb {
	background: var(--scrollbar-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--scrollbar-thumb-hover-color);
}

html {
	overflow-x: hidden;
}

body {
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;

	background-color: var(--background-color);
	color: var(--font-color);
}

*:focus {
	outline: none;
}

main{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

img {
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
    width: 100%;
    display: block;
}

a , a *{
	text-decoration: none;
}

/* a, a:visited, a:hover, a:active, a * {
	color: unset;
} */

ul {
	list-style: none;
}

* {
	font-family: var(--primary-font);
	font-size: 1em;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.stop-scrolling {
	height: 100%;
	overflow: hidden;
}

.pointer {
	cursor: pointer;
}

.clickable {
	cursor: pointer;
}

.primary{
    color: var(--primary-color);
}

.secondary{
    color: var(--secondary-color);
}

.relative{
    position: relative;
    width: 100%;
}

.primary-font{
    font-family: var(--primary-font);
}

.black-font{
    font-family: var(--black-font);
}

.bold-font{
    font-family: var(--bold-font);
}

.semi-bold-font{
    font-family: var(--semi-bold-font);
}

.extra-bold-font{
    font-family: var(--extra-bold-font);
}

.medium-font{
    font-family: var(--medium-font);
}

.pc{
	display: none;
}

.mb{
	display: unset;
}


/* LOADING SCREEN */

.loading-screen {
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
	height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 110;
    overflow: hidden;
}

.loader {
    width: 5vw;
    height: 5vw;
    border: 0.6vw solid #cccccc;
    border-top: 0.6vw solid var(--primary-color);
    border-radius: 50%;
    animation: spin 3s normal infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* NAVBAR CSS */

.top-navbar{
	width: 100%;
	z-index: 2;
}

.mb-nav{
	position: absolute;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
	padding: 5vw 0;
}

.nav-logo-a{
	width: 22vw;
}

.nav-logo {
	max-height: 15vw;
}

.nav-language{
	width: 22vw;
	display: flex;
	justify-content: center;
	gap: 1vw;
	font-size: 4vw;
	font-family: var(--medium-font);
	color: white;
}

.nav-language-btn{
	background-color: unset;
	border: none;
	color: white;
	padding: 0;
	cursor: pointer;
}

.nav-schedule{
	background-color: white;
	border: none;
	color: var(--primary-color);
	font-family: var(--bold-font);
	font-size: 2.6vw;
	width: 24vw;
	padding: 1.5vw;
	border-radius: 1vw;
	cursor: pointer;
}

.nav-hamburger{
	width: 12vw;
	margin: 0 4vw;
	background-color: transparent;
	border: none;
}

.mb-menu{
	position: fixed;
	z-index: 5;
	background-color: var(--secondary-background-color);
	/* display: flex; */
	display: none;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding-top: 4vw;
}

.menu-option{
	font-size: 5vw;
	color: white;
	padding: 2vw 0;
	border-bottom: 0.5vw solid white;
	width: 100%;
	text-align: center;
}

.menu-close{
	position: absolute;
	width: 8vw;
	right: 8vw;
	top: 6vw;
	background-color: transparent;
	border: none;
}

.w-100 {
	width: 100%;
}

@media (width >= 1024px) {
	.pc-nav{
		position: absolute;
		justify-content: space-evenly;
		align-items: center;
		padding: 1vw 0;
		width: 100%;
	}

	.nav-logo {
		max-height: 5vw;
	}

	.nav-logo-a {
		width: 8vw;
	}
	
	.nav-links{
		display: flex;
		width: fit-content;
		justify-content: center;
		gap: 2vw;
	}

	.menu-option {
		font-size: 1.2vw;
		color: white;
		border-bottom: none;
		width: fit-content;
		text-align: unset;
		padding: unset;
	}

	.phone-container{
		display: flex;
		gap: 1vw;
	}

	.phone-img{
		width: 1.7vw;
	}

	.phone{
		font-size: 1.2vw;
		color: white;
	}

	.nav-schedule{
		background-color: white;
		border: none;
		color: var(--primary-color);
		font-family: var(--bold-font);
		font-size: 1.2vw;
		width: fit-content;
		padding: 0.5vw 1.5vw;
		border-radius: 0.8vw;
	}

	.nav-language{
		width: fit-content;
		display: flex;
		justify-content: center;
		gap: 1vw;
		font-size: 1.3vw;
		font-family: var(--medium-font);
		color: white;
	}

	.nav-language-btn{
		background-color: unset;
		border: none;
		color: white;
		padding: 0;
	}
}

/* FOOTER CSS */

.footer{
	background-color: var(--primary-color);
	overflow: hidden;
}

.footer-bvc{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	width: 100%;
	position: relative;
}

.footer-img{
	margin-top: 10vw;
	width: 40%;
}

.footer-l-paw,
.footer-r-paw{
	position: absolute;
	top: -6vw;
	width: 40vw;
	left: -13vw;
}

.footer-r-paw{
	left: unset;
	right: -13vw;
}

.footer-language{
	font-size: 1.8rem;
	font-family: var(--medium-font);
	color: white;
}

.footer-language-btn{
	background-color: unset;
	border: none;
	color: white;
	padding: 0;
	cursor: pointer;
}

.footer-social{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem 0;
}

.social-title{
	color: white;
	font-size: 2rem;
	margin: 0 0 1rem;
}

.social-logos{
	display: flex;
	justify-content: space-evenly;
	width: 100%;
}

.social{
	width: 3rem;
}

.footer-menu{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
	padding: 1.5rem 0;
}

.footer-options{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
	padding: 1rem 0;
}

.footer-option{
	font-size: 1.5rem;
	color: white;
}

.footer-data{
	font-size: 1.5rem;
	color: white;
}

.pp-ts-tyc{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
	padding: 1rem 0;
}

.pp-ts-tyc > a{
	font-size: 1.2rem;
	font-weight: bold;
	color: white;
}

@media (width >= 1024px) {
	.footer {
		position: relative;
		padding: 0 17.5%;
		align-items: center;
		display: flex;
		flex-direction: column;
	}

	.footer-l-paw, .footer-r-paw {
		position: absolute;
		top: -2.5rem;
		width: 12rem;
		left: calc(50vw - 22rem);
	}

	.footer-r-paw {
		left: unset;
		right: calc(50vw - 22rem);
	}

	.footer-bvc {
		position: absolute;
		left: 5vw;
		top: 4rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1rem;
		width: 10rem;
	}

	.footer-img {
		margin-top: unset;
		width: 100%;
	}

	.footer-language {
		font-size: 1.3rem;
		font-family: var(--medium-font);
		color: white;
	}

	.footer-social {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 3rem 0;
		width: 40%;
	}

	.social-title {
		color: white;
		font-size: 2rem;
		margin: 0 0 1rem;
	}

	.social-logos {
		display: flex;
		justify-content: center;
		gap: 3rem;
		width: 100%;
	}

	.social {
		width: 2rem;
	}

	.footer-menu {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		padding: 0 0 2rem;
	}

	.footer-options {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1.5rem;
		padding: 1rem 0;
	}

	.footer-option {
		font-size: 1.4rem;
		color: white;
	}

	.footer-data {
		font-size: 1.4rem;
		color: white;
	}

	.pp-ts-tyc {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1.2rem;
		padding: 1rem 0;
	}

	.aPrivacyPolicy{
		border-right: 0.2rem solid white;
		padding: 0 1.2rem;
	}

	.footer-dog,
	.footer-cat{
		position: absolute;
		bottom: 0;
		width: 12.5rem;
		right: calc(50vw - 30rem);
		
	}

	.footer-dog{
		right: unset;
		left: calc(50vw - 30rem);
		bottom: -6.5rem;
	}
}

/* PC y MB */

@media (width >= 1024px) {
	.pc{
		display: unset;
	}
	
	.mb{
		display: none;
	}

	.pc-nav{
		display: flex;
	}
}