/*
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*/
/*====================================*/
/*GLOBAL*/
:root {
	/*COLOR*/
	--hue: 210;
	--border-color: hsla(var(--hue), 38%, 36%, .5);
	--primary-color: hsl(var(--hue), 38%, 56%);
	--secondary-color: hsl(var(--hue), 38%, 48%);
	--menu-color: hsl(var(--hue), 35%, 20%);
	--title-color: hsl(var(--hue), 15%, 94%);
	--text-color: hsl(var(--hue), 8%, 75%);
	--lite-color: hsl(var(--hue), 4%, 56%);
	--fade-color: hsla(var(--hue), 38%, 12%, .9);
	--cd-color: hsl(var(--hue), 38%, 16%);
	--fr-color: hsl(var(--hue), 38%, 12%);
	--bg-color: hsl(var(--hue), 38%, 8%);
	--box-color: hsl(var(--hue), 38%, 2%);
	--overlay-color: hsla(var(--hue), 0%, 0%, .9);

	--blue-color: hsla(321deg, 67%, 62%, 1);
	--pink-color: hsla(201deg, 67%, 62%, 1);
	--yellow-color: hsla(45deg, 67%, 62%, 1);

	/*FONT*/
	--font: sans-serif;
	/*SIZE*/
	--big-size: 1.75rem;
	--h1-size: 1.5rem;
	--h2-size: 1.25rem;
	--h3-size: 1rem;
	--normal-size: .938rem;
	--small-size: .75rem;
	--smaller-size: .57rem;
	/*HEIGHT*/
	--static: 4rem;
	/*WIDTH*/
	--w1: 960px;
	--w2: 720px;
	/*WEIGHT*/
	--semi-bold: 500;
	--bold: 600;
	/*ZINDEX*/
	--z-base: 1;
	--z-absolute: 2;
	--z-fixed: 3;
	--z-moving: 4;
	--z-menu: 5;
	--z-overlay: 6;
	--z-btn: 7;
	--z-modal: 8;
	/*PADDING*/
	--p1: 1rem;
	--p2: 2rem;
}

/*====================================*/
/*BASE*/
*::selection {
	color: var(--bg-color);
	background-color: var(--secondary-color);
}
::-webkit-scrollbar {
	width: 5px;
    background-color: var(--fr-color);
}
::-webkit-scrollbar-thumb:hover {
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}
*, *::before, *::after {
	/*outline: 1px solid var(--primary-color);*/
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Lato', sans-serif;
	font-size: var(--normal-size);
	background-color: var(--bg-color);
	color: var(--text-color);
}
body.dark {
	--title-color: hsl(var(--hue), 15%, 14%);
	--text-color: hsl(var(--hue), 8%, 35%);
	--cd-color: hsl(var(--hue), 92%, 80%);
	--fade-color: hsla(var(--hue), 92%, 94%, .9);
	--fr-color: hsl(var(--hue), 92%, 94%);
	--menu-color: hsl(var(--hue), 10%, 96%);
	--box-color: hsl(var(--hue), 92%, 86%);
	--border-color: hsla(var(--hue), 92%, 36%, .5);
	--bg-color: hsl(var(--hue), 92%, 98%);
}
button {
	outline: none;
	padding: .5rem 1.5rem;
	border-radius: .25rem;
	border: 1px solid var(--border-color);
	background-color: var(--primary-color);
	cursor: pointer;
}
button,
input,
textarea {
	font-family: var(--font);
	font-size: var(--normal-size);
}
h1, h2, h3, h4, h5 {
	color: var(--primary-color);
	font-weight: var(--semi-bold);
}
ul {
	list-style-type: none;
}
a {
	/*text-decoration-style: dotted;*/
	text-decoration: none;
	color: var(--primary-color);
}
img {
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	max-width: 100%;
	height: auto;
}

/*====================================*/
/*KEYFRAMES*/
@keyframes blink {
	from { opacity: 0; }
	to { opacity: 1; }
}

/*====================================*/
/*REUSABLES*/
.container {
	max-width: 100%;
	width: var(--w1);
	margin: 0 auto;
}
.flex {
	display: flex;
	grid-gap: 2rem;
}
.grid {
	display: grid;
	grid-gap: 2rem;
}
.main {
	overflow: hidden;
}
.section {
	padding: 6rem 2rem;
}
.section::after {
	content: "";
	width: 6rem;
	height: 2px;
	position: absolute;
	background-color: var(--primary-color);
	transform: translateX(-50%);
	margin-top: 6rem;
	left: 50%;
}
.section-title,
.section-subtitle {
	text-align: center;
}
.section-title {
	font-size: var(--h2-size);
	color: var(--primary-color);
	margin-bottom: 2rem;
}
.section-subtitle {
	display: block;
	color: var(--lite-color);
	font-size: var(--small-size);
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: var(--overlay-color);
	z-index: var(--z-overlay);
	display: none;
}
.text-justify {
	text-align: justify;
}
.bi-btn {
	font-size: var(--normal-size) !important;
	margin-left: .5rem;
	float: right;
}
.border {
	border: 1px solid var(--border-color);
}

/*====================================*/
/*NAVBAR*/
#moving {
	position: fixed;
	top: 64px;
	left: 0;
	height: 1px;
	background-color: var(--secondary-color);
	z-index: var(--z-moving);
}
.header {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 2rem;
	z-index: var(--z-menu);
	background-color: var(--bg-color);
	transition: all 300ms ease-in-out;
	justify-content: center;
	align-items: center;
	margin: auto;
}
.header.active {
	background-color: var(--fr-color)!important;
}
.nav {
	width: var(--w1);
	height: var(--static);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav-logo {
	color: var(--primary-color);
	font-size: var(--h2-size);
	font-weight: var(--bold);
	transition: all 300ms ease-in-out;
	text-decoration: none;
}
.nav-logo:hover {
	color: var(--secondary-color);
}
.nav-menu {
	position: fixed;
	bottom: -100%;
	left: 50%;
	padding: 1rem 1rem;
	-moz-box-shadow: 0 5px 10px hsla(0, 0%, 5%, .5);
	-webkit-box-shadow: 0 5px 10px hsla(0, 0%, 5%, .5);
	box-shadow: 0 5px 10px hsla(0, 0%, 5%, .5);
	border-radius: 1rem 1rem 0 0;
	z-index: var(--z-btn);
	width: calc(100% - 120px);
	max-width: 408px;
	transition: all 120ms ease-in-out;
	background-color: var(--menu-color);
	transform: translateX(-50%);
}
.nav-list {
	display: flex;
	width: 100%;
	/*max-width: 480px;*/
	grid-gap: .5rem;
	margin: auto;
	justify-content: center;
	flex-wrap: wrap;
	align-items: stretch;
}
.nav-item {
	flex-basis: 40px;
	flex-grow: 1;
	flex-shrink: 1;
	height: auto;
	/*
	width: 40px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	*/
}
.nav-link {
	display: flex;
	font-size: 1rem;
	color: var(--text-color);
	justify-content: center;
	border-radius: .25rem;
	padding: .5rem;
}
.nav-show {
	bottom: 0;
}
.nav-active {
	color: var(--bg-color);
	background-color: var(--primary-color);
	/*box-shadow: inset 0 0 5px var(--box-color);*/
}
#btn-menu {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: var(--z-btn);
	transition: all 300ms ease-in-out;
	/*color: var(--lite-color);*/
	color: var(--bg-color);
	font-size: var(--h3-size);
	border: none;
	padding: 0 4px;
	background-color: var(--primary-color);
}
#btn-menu:hover {
	background-color: var(--secondary-color);
}
#btn-toggle {
	color: var(--primary-color);
	font-size: var(--h2-size);
	cursor: pointer;
	transition: all 300ms ease-in-out;
}
.shadow {
	-moz-box-shadow: 0 2px 1rem rgba(20, 20, 20, .15);
	-webkit-box-shadow: 0 2px 1rem rgba(20, 20, 20, .15);
	box-shadow: 0 2px 1rem rgba(20, 20, 20, .15);
}

/*====================================*/
/*HOME*/
.home .img-container {
	max-width: 240px;
	margin: auto;
}
.home .img-home {
	margin-top: 2rem;
	border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
}
.home p {
	display: block;
	/*font-size: var(--small-size);*/
	color: var(--text-color);
	margin-bottom: .25rem;
}
.home .data {
	text-align: center;
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	grid-gap: 1rem;
}
.home .name {
	font-size: var(--big-size);
	line-height: 1;
	margin-bottom: .5rem;
}
.home .headline {
	margin-bottom: 1rem;
	font-size: var(--h3-size);
	color: var(--text-color);
}
.home .btn-container {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: .5rem;
}
.home .socials,
.home .scroll {
	position: absolute;
	z-index: var(--z-absolute);
}
.home .socials {
	display: grid;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	grid-gap: .5rem;
}
.home .item {
	border-radius: 0 .25rem .25rem 0;
	background-color: var(--primary-color);
	border-top: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	transition: all 300ms ease-in-out;
}
.home .item:hover {
	/*padding-left: 1rem;*/
}
.home .a-link {
	display: flex;
	font-size: 1rem;
	justify-content: center;
	align-items: center;
	color: var(--bg-color);
	width: 32px;
	height: 32px;
}
.home .scroll {
	left: 50%;
	bottom: 8rem;
	transform: translateX(-50%);
	animation: blink 800ms linear infinite alternate;
	color: var(--primary-color);
	font-size: 1.25rem;
	display: none;
}
.btn {
	padding: .5rem 1rem;
	display: inline-block;
	color: var(--bg-color);
	text-decoration: none;
	background-color: var(--primary-color);
	border: 1px solid var(--border-color);
	transition: all 300ms ease-in-out;
	font-weight: var(--semi-bold);
	font-size: var(--normal-size);
	border-radius: .25rem;
}
.btn:hover,
.btn:focus {
	background-color: var(--secondary-color);
	color: var(--bg-color);
}
.btn-ghost {
	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}

.hovered {
	transition: all 240ms ease-in;
}

.hovered:hover {
	-moz-box-shadow: 0 0 2px var(--primary-color);
	-webkit-box-shadow: 0 0 2px var(--primary-color);
	box-shadow: 0 0 2px var(--primary-color);
}

/*====================================*/
/*ABOUT*/
.about .data {
	text-align: center;
}
.about img {
	margin: auto;
	width: 240px;
	border-radius: .25rem;
}
.about .info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 2rem auto 0;
	grid-gap: 1rem;
}
.about .box {
	position: relative;
	padding: 2.5rem 1rem;
	border-radius: .25rem;
	background-color: var(--fr-color);
	-moz-box-shadow: inset 0 0 10px var(--box-color);
	-webkit-box-shadow: inset 0 0 10px var(--box-color);
	box-shadow: inset 0 0 10px var(--box-color);
}
.about .title {
	display: inline-block;
}
.about .bi {
	display: block;
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: .5rem;
}
.about .description {
	padding: 0 2rem;
	text-align: center;
	letter-spacing: 1.1px;
	line-height: 1.75;
}

/*====================================*/
/*EDUCATION*/
.education .card {
	width: 100%;
	border-radius: .25rem;
	padding: 2rem;
	text-align: center;
}

.education .title {
	margin: .5rem 0;
	font-size: var(--h1-size);
}

.education small {
	font-size: var(--small-size);
}

.education .link {
	display: block;
	margin: 40px auto 0;
	width: 100%;
	max-width: 240px;
}


/*====================================*/
/*SKILLS*/
.skills .grid {
	grid-gap: 1rem;
}
.skills .content {
	padding: 2rem;
	border-radius: .25rem;
	background-color: var(--fr-color);
	-moz-box-shadow: inset 0 0 10px var(--box-color);
	-webkit-box-shadow: inset 0 0 10px var(--box-color);
	box-shadow: inset 0 0 10px var(--box-color);
}
.skills .title {
	font-size: var(--h2-size);
	font-weight: var(--semi-bold);
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 2rem;
}
.skills .box {
	display: flex;
	grid-gap: 1rem;
	justify-content: space-between;
	flex-wrap: wrap;
}
.skills .group {
	display: grid;
	align-items: stretch;
	grid-gap: 1rem;
	flex-basis: 200px;
	flex-grow: 1;
	flex-shrink: 1;
	background-color: var(--bg-color);
	border-radius: .25rem;
	padding: 1rem 1.5rem;
}
.skills .data {
	display: flex;
	grid-gap: .5rem;
	align-items: baseline;
}
.skills .bi {
	font-size: 1rem;
	color: var(--primary-color);
}
.skills .name {
	font-size: var(--normal-size);
	font-weight: var(--semi-bold);
	line-height: 1;
	color: var(--title-color);
}
.skills .level {
	color: var(--lite-color);
	font-size: var(--smaller-size);
}

/*====================================*/
/*SERVICES*/
.services .container {
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	grid-gap: 1rem;
}
.services .card {
	-moz-box-shadow: inset 0 0 10px var(--box-color);
	-webkit-box-shadow: inset 0 0 10px var(--box-color);
	box-shadow: inset 0 0 10px var(--box-color);
	background-color: var(--fr-color);
	padding: 1.5rem 2rem;
	border-radius: .25rem;
	position: relative;
	overflow: hidden;
}
.services .card > .bi {
	position: absolute;
	top: -1rem;
	right: -6rem;
	line-height: 1;
	font-size: 12rem;
	z-index: var(--z-base);
	color: var(--cd-color);
}
.services .title {
	color: var(--title-color);
	font-size: var(--h3-size);
	margin-bottom: 2rem;
}
.btn-service {
	color: var(--primary-color);
	font-size: var(--small-size);
	display: flex;
	align-items: center;
	grid-gap: .5rem;
	cursor: pointer;
}
.btn-service:hover .bi {
	transform: translateX(.25rem);
}
.btn-service .bi {
	font-size: var(--small-size);
	transition: all 300ms ease-in-out;
}
.services .modal {
	top: 3rem;
	left: 50%;
	transform: translate(-50%, 0);
	display: flex;
	position: fixed;
	justify-content: center;
	transition: all 300ms ease-in-out;
	background-color: transparent;
	z-index: var(--z-modal);
	visibility: hidden;
	margin: auto;
	opacity: 0;
}
.services .modal-body {
	max-width: 480px;
	max-height: max-content;
	position: relative;
	background-color: var(--bg-color);
	padding: 2rem 2rem 6rem;
	border-radius: .25rem;
	overflow: auto;
}
.services .modal-title,
.services .modal-subtitle {
	text-align: center;
}
.services .modal-title {
	font-size: var(--h3-size);
	color: var(--primary-color);
}
.services .modal-subtitle {
	font-size: var(--small-size);
	color: var(--text-color);
	margin: 2rem 0;
}
.services .modal-list {
	display: grid;
	grid-gap: .75rem;
	list-style-type: square;
	padding-left: 1.5rem;
}
.services .modal-item {
	font-size: var(--small-size);
	color: var(--text-color);
}
.services .close {
	bottom: 2rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: all 300ms ease-in-out;
	color: var(--primary-color);
	font-size: 1.25rem;
	cursor: pointer;
}
.services .close:hover {
	color: var(--text-color);
}

/*====================================*/
/*WORK*/
.work.section {}
.work .container {
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	padding: 1rem 0;
	grid-gap: 1rem;
}
.work .spacer {
	max-width: 100%;
	width: var(--w1);
	/*height: 1rem;*/
	padding: .75rem 1rem;
	margin: auto;
	background-color: var(--fr-color);
	border-radius: .25rem;
	font-size: var(--small-size);
}
.work .filter {
	display: flex;
	flex-wrap: wrap;
	max-width: var(--w1);
	justify-content: center;
	background-color: var(--fr-color);
	padding: .5rem;
	align-items: center;
	grid-gap: .5rem;
	margin: 2rem auto 0;
	border-radius: .25rem;
}
.work .w-item {
	cursor: pointer;
	color: var(--title-color);
	font-weight: var(--semi-bold);
	border-radius: .25rem;
	transition: all 300ms ease-in-out;
	margin: 0 .25rem;
	padding: .25rem 0;
}
.work .w-item.work-active {
	padding: .25rem 1rem;
	background-color: var(--primary-color);
	color: var(--bg-color);
}
.work .card {
	-moz-box-shadow: inset 0 0 10px var(--box-color);
	-webkit-box-shadow: inset 0 0 10px var(--box-color);
	box-shadow: inset 0 0 10px var(--box-color);
	background-color: var(--fr-color);
	border-radius: .25rem;
	padding: 1rem;
}
.work .line,
.work .line-1,
.work .line-2 {
	width: 100%;
	height: 2px;
	margin: 2px 0 0;
}
.work .flex-column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 150px;
}
.work .mix.design .line { background-color: var(--blue-color); }
.work .mix.design .title { color: var(--blue-color); }
.work .mix.theme .line { background-color: var(--pink-color); }
.work .mix.theme .title { color: var(--pink-color); }
.work .mix.web .line { background-color: var(--yellow-color); }
.work .mix.web .title { color: var(--yellow-color); }

.work .mix.design .line-1 { background-color: var(--blue-color); }
.work .mix.theme .line-1 { background-color: var(--pink-color); }
.work .mix.web .line-1 { background-color: var(--yellow-color); }

.work .mix.design .line-2 { background-color: var(--blue-color); }
.work .mix.theme .line-2 { background-color: var(--pink-color); }
.work .mix.web .line-2 { background-color: var(--yellow-color); }

.work img {
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
	/*margin-bottom: .75rem;*/
}
.work .title {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	font-size: var(--normal-size);
	font-weight: var(--semi-bold);
	margin: .5rem 0;
}
.work-btn {
	width: max-content;
	color: var(--primary-color);
	font-size: var(--small-size);
	display: flex;
	align-items: center;
	grid-gap: .25rem;
}
.work-btn:hover .bi {
	transform: translateX(.25rem);
}
.work-btn .bi {
	font-size: 1rem;
	transition: all 300ms ease-in-out;
}
.work small {
	font-size: var(--small-size);
	/* text-align: justify; */
	line-height: 1.5;
	word-break: break-word;
}

/*====================================*/
/*TESTIMONIAL*/
.testimonial .container {
	/*width: 100%;*/
}
.testimonial .card {
	background-color: var(--fr-color);
	display: flex;
	grid-gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	padding: 1rem;
	border-radius: .25rem;
	flex-direction: column;
	align-items: flex-start;
	/*
	-moz-box-shadow: inset 0 0 10px var(--box-color);
	-webkit-box-shadow: inset 0 0 10px var(--box-color);
	box-shadow: inset 0 0 10px var(--box-color);
	*/
}
.testimonial img {
	width: 72px;
	height: 72px;
	border-radius: .25rem;
	/*
	-moz-box-shadow: 0 0 10px var(--box-color);
	-webkit-box-shadow: 0 0 10px var(--box-color);
	box-shadow: 0 0 10px var(--box-color);
	*/
}
.testimonial .name {
	font-size: var(--h3-size);
	font-weight: var(--semi-bold);
}
.testimonial .description {
	font-size: var(--smaller-size);
	line-height: 1;
}
.testimonial .feedback {
	font-size: var(--small-size);
	/*flex-basis: 100%;*/
}
.testimonial .swiper-slide {
	height: auto;
}
.testimonial .swiper-pagination {
	position: relative;
}
.testimonial .swiper-pagination-bullets {
}
.testimonial .swiper-pagination-bullet {
	background-color: var(--lite-color);
}
.testimonial .swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

/*====================================*/
/*CONTACT*/
.contact .container {
	grid-gap: 1rem;
	width: 625px;
}
.contact .title {
	font-size: var(--h3-size);
	margin-bottom: 2rem;
}
.contact .info {
	display: flex;
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.contact .card {
	display: flex;
	flex: 1 0 48%;
	grid-gap: 1rem;
	justify-content: flex-start;
	/*
	-moz-box-shadow: inset 0 0 10px var(--box-color);
	-webkit-box-shadow: inset 0 0 10px var(--box-color);
	box-shadow: inset 0 0 10px var(--box-color);
	*/
	background-color: var(--fr-color);
	padding: 1rem 2rem 1.325rem;
	border-radius: .25rem;
	text-align: left;
}
.contact .clinks {
	color: var(--title-color);
	font-size: var(--small-size);
	text-decoration: underline;
	text-decoration-style: dotted;
}
.contact .bi {
	font-size: var(--big-size);
	color: var(--title-color);
}
.contact form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
}
.contact input,
.contact textarea {
	border: 1px solid var(--border-color);
	background-color: transparent;
	color: var(--text-color);
	outline: none;
	width: 100%;
	resize: none;
	border-radius: .25rem;
	padding: .75rem 1rem .5rem;
	transition: all 300ms ease-in-out;
}
.contact input:focus,
.contact textarea:focus {
	-moz-box-shadow: 0 0 2px var(--primary-color);
	-webkit-box-shadow: 0 0 2px var(--primary-color);
	box-shadow: 0 0 2px var(--primary-color);
}
.contact .input-group {
	position: relative;
}
.contact .input-group + .input-group {
	margin-top: 1rem;
}
.contact label {
	line-height: 1;
	position: absolute;
	top: -8px;
	left: 16px;
	padding: 2px .5rem;
	font-size: var(--small-size);
	background-color: var(--bg-color);
	z-index: var(--z-base);
}
.contact .btn-send {
	width: 100%;
	max-width: 300px;
	padding: .5rem 1rem;
	/*margin: .625rem auto 0;*/
	margin: .5rem auto;
}
.contact .btn-send .bi {
	color: var(--bg-color);
}

/*====================================*/
/*FOOTER*/
.footer {
	background-color: var(--fr-color);
	width: 100%!important;
	padding: 2rem;
	border-top: 1px solid var(--border-color);
}
.footer .f-title,
.footer .f-link {
	color: var(--primary-color);
}
.footer .f-title {
	text-align: center;
}
.footer .f-list {
	display: flex;
	justify-content: center;
	margin: 2rem 0 1.5rem;
	padding: 0 1rem;
	grid-gap: 1rem;
	flex-wrap: wrap;
}
.footer .f-social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: .75rem;
}
.footer .f-social .f-item {
	background-color: var(--bg-color);
	/*box-shadow: 2px 6px 0px var(--cd-color);*/
	/*
	-moz-box-shadow: inset 0 0 10px var(--box-color);
	-webkit-box-shadow: inset 0 0 10px var(--box-color);
	box-shadow: inset 0 0 10px var(--box-color);
	*/
	border: 1px solid var(--border-color);
	/*transition: all 300ms ease-in-out;*/
	padding: .5rem .675rem;
	/*padding: 1rem;*/
	border-radius: .25rem;
	font-size: 1rem;
	display: inline-flex;
}
/*
.footer .f-social .f-item:focus,
.footer .f-social .f-item:hover {
	transform: translateY(4px);
	box-shadow: 2px 2px 0px var(--cd-color);
}
.footer .bi {
	transition: all 300ms ease-in-out;
	color: var(--primary-color);
}
*/
.footer .f-social .f-item:focus .bi,
.footer .f-social .f-item:hover .bi {
	color: var(--blue-color);
}

.footer .f-social .f-item:focus,
.footer .f-social .f-item:hover {
	-moz-box-shadow: 0 0 2px var(--primary-color);
	-webkit-box-shadow: 0 0 2px var(--primary-color);
	box-shadow: 0 0 2px var(--primary-color);
}
.footer .copy {
	display: block;
	padding: 0 4rem;
	margin-top: 2rem;
	font-size: var(--small-size);
	color: var(--primary-color);
	font-weight: var(--semi-bold);
	text-align: center;
}