@charset"utf-8";
@import url('reset.css');
@import url('font.css');

body {
	background: var(--body-bg);
	background-size: 50px;
	color: var(--font-color);
	font-family: 'Inter';
	font-size: 16px;
	overflow-x: hidden;
	transition: var(--default-transition);
}
h1, h2, h3, h4, h5, h6, button, a {
	font-family: 'Inter';
}

a {
	color: var(--font-color);
}

li {
	text-indent: 20px;
}

h1 {
	font-size: clamp(60px, calc(var(--index) * 3.4), 96px);
	font-weight: 100;
	padding: 30px 0;
}
h2 {
	font-size: clamp(23px, calc(var(--index) * 1.66), 40px);
	line-height: 48px;
	font-weight: 300;
}
.redText {
	color: var(--button-red);
}
p {
	font-size: 16px;
	line-height: 25px;
	font-weight: 500;
}
.button {
	font-weight: 700;
	padding: 10px 20px;
	background-color: var(--button-bg);
	color: var(--button-font);
	border-radius: 20px;
	transition: var(--default-transition);
	box-shadow: 3px 4px 4px var(--button-shadow);
	font-size: clamp(12px, calc(var(--index) * 0.66), 16px);
}
.button:hover {
	background-color: var(--button-red);
	color: #fff;
}
@media screen and (max-width: 992px) {
	.button {
		padding: 8px 15px;
	}
}
@media screen and (max-width: 580px) {
	.button {
		padding: 7px 10px;
	}
}
.loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--body-bg);
	color: var(--font-color);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}
.loader h2 {
	font-weight: 600;
}
.loader--text {
	color: var(--button-red);
}

/*#region ---------- GLOBAL VARS --------------*/
:root[data-theme="light"] {
	--body-bg: #fff;
	--font-color: #131313;


	--switch-bg: #f5f5f6;
	--switch-circle-bg: #ffd371;
	--swith-circle-pos: 0.22rem;
	--icon-sun: #997F44;
	--icon-moon: #b1b0b5;

	--button-bg: #f5f5f5;
	--button-font: #000;
	--button-shadow: rgba(0, 0, 0, 0.438);

	--shadowness: rgba(0,0,0,.7);
	--localization-shadowness: rgba(0,0,0,.7);

	--icon-socials: #3c3a47;
	--icon-socials-hover: #77757e;
}


:root[data-theme="dark"] {
	--body-bg: #3c3a47; 
	--body-bg: #1F1C23;
	--font-color: #fafafa;

	--switch-bg: #2d2c35;
	--switch-circle-bg: #7190ff;
	--swith-circle-pos: 3.32rem;
	--icon-sun: #77757e;
	--icon-moon: #dce3ff;

	--button-bg: #2d2c35;
	--button-font: #dce3ff;
	--button-shadow: rgba(255, 255, 255, 0.438);

	--shadowness: rgba(70,70,70,.7);
	--localization-shadowness: rgba(255, 255, 255, 0.7);

	--icon-socials: #f5f5f6;
	--icon-socials-hover: #b1b0b5;
}



:root {
	--default-transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out, fill .3s ease-in-out, transform .3s ease-in-out, opacity .3s ease-in-out;

	--button-red: #ED3237;
	--color-white: #fff;
	--default-text-color: #131313;

	--index: calc(1vw + 1vh);
	--color-header: #f4efec;
	--color-text: #cdc6c3;
	--gallery-gap: calc(var(--index) * 7.5);

}
/*#endregion --------------------------------------*/


/*#region ----------- THEME SWITCHER --------------*/
#theme-switch {
	position: absolute;
	top: 55px;
	right: 25px;
	background: var(--switch-bg);
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 1.33rem;
	cursor: pointer;
	padding: 0.66rem;
	z-index: 100;
	box-shadow: 3px 4px 4px var(--button-shadow);
}
#theme-switch::before {
	content: '';
	position: absolute;
	width: 2.74rem;
	height: 2.74rem;
	background-color: var(--switch-circle-bg);
	border-radius: 50px;
	z-index: 1;
	left: 0;
	transform: translateX(var(--swith-circle-pos));
	transition: var(--default-transition);
}
#theme-switch svg {
	z-index: 1;
	transition: var(--default-transition);
}
#icon-sun {
	fill: var(--icon-sun);
}
#icon-moon {
	fill: var(--icon-moon);
}
@media screen and (max-width: 992px) {
	#theme-switch {
		transform: scale(0.8);
		right: 15px;
		top: 40px;
	}
}
@media screen and (max-width: 600px) {
	#theme-switch {
		transform: scale(0.6);
		right: 5px;
		top: 34px;
	}
}
/*#endregion ------------------------------------*/


/*#region ----------- TO TOP BUTTON ---------------*/
.scroll-top {
	position: fixed;
	display: none;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 20px;
    z-index: 10;
    border-radius: 100%;
	background-color: transparent;
    outline: 0;
    cursor: pointer;
	transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;

	background-color: var(--button-bg);
	box-shadow: 3px 4px 4px var(--button-shadow);
}
.scroll-top svg {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    fill: var(--top-button-color);
	fill: #FF9800;
}
.scroll-top-text {
	position: absolute;
    width: 100%;
    height: 100%;
    animation-name: rotate;
    animation-duration: 5s;
	animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes rotate {
	0% {
    transform: rotate(360deg);
	}

	100% {
		transform: rotate(0);
	}
}
.scroll-top .arrow-top {
	width: 32%;
	height: 32%;
}
.scroll-top:hover svg {
	fill: var(--button-red);
}
/*#endregion -------------------------------------*/
 

/*#region ---------------- GLOBAL -----------------*/
.content, .intro, .logo-wrapper, .header-text, .rollpack, .whatIsIt .animLeft, .whatIsIt .animRight, .gallery, .portfolio {
	will-change: transform;
}
header, .whatIsPillpack, .whatIsIt, .pricing, .fullContent, .howTo, .gallery, footer {
	display: flex;
	padding: calc(var(--index) * 8) 0;
}
.whatIsPillpack {
	padding-bottom: 0;
}
.whatIsIt {
	padding-top: calc(var(--index) * 4);
}
.fullContent, .portfolio {
	padding: calc(var(--index) * 2) 0;
}
@media screen and (max-width: 600px) {
	.whatIsPillpack {
		padding: calc(var(--index) * 7) 0 0;
	}
	.whatIsIt {
		padding: 0;
	}
	.pricing {
		padding: calc(var(--index) * 2) 0 calc(var(--index) * 7);
	}
}
section, header, footer {
	position: relative;
}

.wrapper {
	border: 0 none;
	max-width: 1440px;
	margin: 0 auto;
	width: 1440px;
}
@media screen and (max-width: 1440px) {
	.wrapper {
		max-width: 100%;
		margin: 0;
	}
	.fullContent,
	.howTo {
		margin: 0 20px;
	}
}

.fluid-content {
	width: 100%;
	padding-right: 190px;
    padding-left: 190px;
    margin-right: auto;
    margin-left: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.row {
	display: flex;
    flex-wrap: wrap;
	margin: 0;
	padding: 0;
	flex-direction: row;
}
.col {
	flex: 0 0 50%;
    max-width: 50%;
	padding-left: 0;
	padding-right: 15px;
}
.col + .col {
	padding-left: 15px;
	padding-right: 0;
}
.col.colspan {
	flex: 0 0 100%;
    max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}
@media screen and (max-width: 1200px) {
	.fluid-content {
		padding-right: 15px;
		padding-left: 15px;
	}
}
@media screen and (max-width: 580px) {
	.col {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.col + .col {
		padding-left: 0;
		padding-top: 15px;
	}
}
/*#endregion ---------------------------------------------*/


/*#region ------------------- FIXED HEADER ---------------*/
.fixed-header {
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	height: 80px;
	display: block;
	padding: 20px 0;
}
.fixed-header-inner {
	width: 1440px;
	margin: 0 auto;
	position: relative;
}
@media screen and (max-width: 1440px) {
	.fixed-header-inner {
		width: 100%;
		margin: 0;
	}
}

.howToButton
, .toMainButton
, .localization {
	position: absolute;
	display: inline-block;
	top: 5px;
	right: 25px;
	z-index: 10;
}
.localization {
	top: 10px;
	right: unset;
	left: 35px;
}
.localization button {
	font-weight: 500;
	padding: 0;
	background-color: transparent;
	color: var(--button-font);
	text-shadow: 1px 4px 10px var(--localization-shadowness);
	transition: all .4s ease-in-out;
}
.localization button:hover {
	text-shadow: 4px 4px 4px var(--localization-shadowness);
}
.localization.magic {
	top: 5px;
	left: 25px;
}
.localization.magic button {
    padding: 10px 20px;
    background-color: var(--button-bg);
    color: var(--button-font);
    border-radius: 20px;
    box-shadow: 3px 4px 4px var(--button-shadow);
	text-shadow: none;
	font-size: clamp(12px, calc(var(--index) * 0.66), 16px);
	font-weight: 700;
}
.localization.magic button:hover {
	background-color: var(--button-red);
	color: #fff;
}
@media screen and (max-width: 320px) {
	.localization.magic button {
		padding: 7px 9px;
	}
}
/*#endregion ---------------------------------------------*/


/*#region -----------------------  HEADER INTRO ----------------*/
.intro {
	padding: 20px 20px 0;
	height: 900px;
}
.logo-wrapper {
 	z-index: 10;
	position: absolute;
	left: 50%;
	top: 100px;
	margin-left: -135px;
	width: 270px;
	height: 195px; 
	border-radius: 10px;
	box-shadow: 3px 5px 15px var(--button-shadow);
}
.afumed-logo {
	width: 270px;
	height: 195px;
	border-radius: 10px;
}
.white-bg {
	z-index: 1;
}
.red-bg {
	z-index: 0;
	display: block;
	position: relative;
	width: 545px;
	height: 818px;
	background-color: rgba(237, 50, 55, 1);
	border-radius: 20px;
}
.rollpack {
	width: 100%;
	height: 815px;
	position: absolute;
	/* top: clamp(-95px, calc(var(--index) * -2.9), -35px); */
	top: -95px;
	left: 0;
	right: 0;
	z-index: 1;
	background: url(../img/AFUMED-1.png) no-repeat center top;
	background-size: contain;
}
.header-text {
	width: calc(var(--index) * 27); /* 19 */
	position: absolute;
	left: calc(100% + 35px); /* 45 */
	top: clamp(300px, calc(var(--index) * 23), 575px); /* 570 */
}
.main-title {
	font-size: clamp(16px, calc(var(--index) * 1.3), 32px);
	font-weight: 300;
	line-height: 1.3;
}
@media screen and (max-width: 1400px) {
	.red-bg {
		width: calc(var(--index) * 22);
		height: calc(var(--index) * 34);
	}
}
@media screen and (max-width: 1200px) {
	.rollpack {
		top: -70px;
	}
}
@media screen and (max-width: 1100px) {
	.rollpack {
		top: -60px;
	}
}
@media screen and (max-width: 1024px) {
	
	.rollpack {
		top: 150px;
	}
	.red-bg {
		width: 100%;
		height: min(calc(var(--index) * 34), 530px);
		background: transparent;
	}
	.header-text {
		left: 0;
		width: 95vw;
		padding: 0 50px;
		top: min(calc(var(--index) * 37), 640px);
	}
	.logo-wrapper {
		width: 200px;
		height: 144px;
		margin-left: -100px;
		top: 60px;
	}
	.afumed-logo {
		width: 200px;
		height: 144px;
	}
}
@media screen and (max-width: 767px) {
	.intro {
		height: 600px;
	}
}
@media screen and (max-width: 600px) {
	.rollpack {
		top: 190px;
	}
	.red-bg {
		margin-top: 95px;
		height: 310px;
		width: 160px;
	}
	.header-text {
		top: 360px; 
	}
	.logo-wrapper {
		top: 115px;
		width: 160px;
		height: 116px;
		margin-left: -80px;
	}
	.afumed-logo {
		width: 160px;
		height: 116px;
	}
	.main-title {
		font-weight: 500;
		text-align: center;
	}
}
@media screen and (max-width: 320px) {
	.rollpack {
		top: 220px;
	}
	.header-text {
		top: 290px;
		width: 86vw;
	}
}
/*#endregion ------------------------------------------*/


/*#region -------------------- WHAT IS PILLPACK -------------*/
.whatIsPillpack {
	overflow: hidden;
}
.whatIsPillpack h2 {
	margin-bottom: 40px;
}
.whatIsPillpack p {
	margin-bottom: 35px;
}
.whatIsPillpack .col.animRight {
	display: flex;
}
.whatIsPillpack img {
	width: clamp(200px, calc(var(--index) * 19), 520px);
	height: auto;
	object-fit: cover;
	margin: auto;
	border-radius: 0;
	box-shadow: none;
	display: block;
}
@media screen and (max-width: 1200px) {
	.whatIsPillpack img {
		width: clamp(200px, calc(var(--index) * 24), 520px);
	}
}
@media screen and (max-width: 600px) {
	.whatIsPillpack img {
		width: 95%;
	}
}
/*#endregion ------------------------------------------*/


/*#region -------------------- WHAT IS IT -------------*/
.whatIsIt {
	overflow: hidden;
}
.whatIsIt h2 {
	margin-bottom: 40px;
}
.whatIsIt p {
	margin-bottom: 35px;
}
.carefull {
	position: relative;
	border: 0 none;
	z-index: 0;
}
.carefull::after {
	content: '';
	display: block;
	position: absolute;
	width: 102%;
    height: 130%;
    border: 2px solid red;
    top: -10px;
    left: -10px;
    border-radius: 10px;
}
.carefull-head {
	position: absolute;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--button-red);
	top: -25px;
	right: 15px;
}
.carefull-sigh {
	position: absolute;
	right: -17px;
	bottom: -38px;
	border-radius: 50%;
	color: var(--default-text-color);
	font-size: 40px;
	line-height: 62px;
	font-weight: 300;
	text-align: center;
	width: 64px;
    height: 64px;
    border: 2px solid #f5f5f5;
	box-shadow: 1px 4px 10px var(--button-shadow);
	background-color: var(--color-white);
	z-index: 1;
}
.carefull-sigh::after {
	content: '';
	display: block;
	position: absolute;
	width: 54px;
    height: 54px;
    border: 2px solid #f5f5f5;
    top: 2px;
    left: 2px;
    border-radius: 50%;
	background-color: transparent;
}
.whatIsIt img {
	width: clamp(100px, calc(var(--index) * 9), 253px);
	height: auto;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 3px 4px 4px var(--button-shadow);
}
.whatIsIt .row .first {
	align-self: flex-end;
	margin-right: 5px;
	margin-bottom: 10px;
}
.whatIsIt .fluid-content {
	flex-direction: row-reverse;
}
@media screen and (max-width: 1200px) {
	.whatIsIt img {
		width: clamp(100px, calc(var(--index) * 9), 253px);
	}
}
@media screen and (max-width: 600px) {
	.whatIsIt .fluid-content {
		flex-direction: row;
	}
	.row.animRight {
		flex-wrap: nowrap;
	}
	.whatIsIt img {
		width: 95%;
	}
}
/*#endregion ------------------------------------------*/


/*#region -------------------- PRICING CLEAR -------------*/
.pricing h1,
.pricing h2,
.pricing .button {
	margin: 35px 0;
}
/*#endregion ---------------------------------------------*/


/*#region -------------------- FULL CONTETNT -------*/
.fullContent {
	background-color: #F5F5F5;
	height: 155px;
	border-radius: 30px;
}
.fullContent h2 {
	font-weight: 300;
	line-height: 36px;
	color: var(--default-text-color);
}
.fullContent .button {
	background-color: var(--button-red);
	color: var(--color-white);
	box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.438);
	margin-left: 35px;
}
.fullContent .button:hover {
	box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.938);
}
.fullContent h2, .fullContent .button {
	display: inline-block;
}
@media screen and (max-width: 600px) {
	.fullContent .button {
		margin: 10px auto 0;
	}
	.fullContent .col.colspan {
		text-align: center;
	}
	.fullContent h2, .fullContent .button {
	display: block;
}
}
.shadowness {
	z-index: 10000;
    background-color: var(--shadowness);
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-review {
	position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    font-size: 16px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1100px;
    box-sizing: border-box;
    max-height: 90vh;
    background-color: var(--body-bg);
    padding: 40px;
    overflow: hidden;
	border-radius: 30px;
}
@media screen and (max-width: 1100px) {
	.modal-review {
		width: 90%;
		padding: 25px 18px;
		max-height: 100vh;
		left: unset;
		transform: translateY(-50%);
	}
}
.modal-review .closeBtn {
	position: sticky;
    top: 0;
    left: 95%;
    cursor: pointer;
    z-index: 1;
}
.modal-review .closeBtn g {
	fill: var(--font-color)
}
.modal-review .closeBtn:hover g {
	fill: var(--button-red);
}
.modal-review .modal-header {
	font-weight: 600;
    font-size: clamp(23px, calc(var(--index) * 1.66), 40px);
	font-weight: 300;
    margin: 20px 0 22px;
    color: var(--font-color);
}
.modal-review .modal-content {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;

	overflow: hidden;
}
.modal-review .modal-content ul {
	columns: 2;
  	-webkit-columns: 2;
  	-moz-columns: 2;
	column-rule: none;
	list-style-type: disclosure-closed;
}
.modal-review .modal-content li {
	margin: 0 0 15px 20px;
	font-size: 16px;
}
.modal-review .modal-content li::marker {
	color: var(--button-red);
}
.iban-pair,.swift-pair {
	margin: 10px;
	padding: 10px;
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 1100px) {
	.iban-pair,.swift-pair {
		width: 100%;
		margin: 10px 0 10px 10px;
		padding: 10px 0 10px 5px;
	}
	.modal-review .modal-content ul li {
		font-size: 15px;
	}
}
@media screen and (max-width: 600px) {
	.modal-review .modal-header {
		margin: 0 0 15px;
	}
	.modal-review .modal-content ul li {
		font-size: 14px;
		margin: 0 0 10px 15px;
	}
}
@media screen and (max-width: 320px) {
	.modal-review .modal-header {
		font-size: 18px;
	}
	.modal-review .modal-content ul li {
		font-size: 10px;
		margin: 0 0 10px 14px;
	}
}
.iban-hint, .swift-hint {
	color: #7190ff;
	font-weight: 600;
}
.iban-value, .swift-value {
	font-size: 18px;
	color: var(--font-color);
}
/*#endregion ---------------------------------------*/


/*#region ---------- HOW CAN I HELP ---------*/
.howTo {
	height: 721px;
	overflow: hidden;
	border-radius: 30px;
	background-image: url(../img/AFUMED-2.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}
.howTo .offset {
	margin-top: -200px;
}
@media screen and (max-width: 1150px) {
	.howTo .offset {
		margin-top: -150px;
	}
}
@media screen and (max-width: 700px) {
	.howTo .offset {
		margin-top: -100px;
	}
}
.howTo h1 {
	font-size: clamp(32px, calc(var(--index) * 2.2), 64px);
	font-weight: 700;
	color: var(--color-white);
	text-align: left;
}
@media screen and (max-width: 320px) {
	.howTo h1 {
		font-size: 26px;
		font-weight: 500;
		padding: 50px 0 0;
		text-align: center;
	}
}
.howTo-wrapper {
	padding: 0;
	height: 450px;
	margin-top: 50px;
}
.howTo-wrapper .howTo-item {
	flex: 0 0 33.3%;
    max-width: 33.3%;
	padding: 0 15px 0 30px;
	border-left: 3px solid var(--button-red);
	color: var(--color-white);
	display: flex;
	align-items: center;
}
.howTo-item:first-child .item {
	align-self: flex-start;
}
.howTo-item:last-child .item {
	align-self: flex-end;
}
.howTo-item h2 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 30px;
}
.howTo p {
	margin-bottom: 25px;
}
.howTo .button {
	margin-bottom: 25px;
	display: block;
	box-shadow: 2px 3px 10px rgba(255,255,255,.7);
}
@media screen and (max-width: 992px) {
	.howTo {
		height: 940px;
	}
	.howTo-wrapper {
		height: 665px;
		margin-top: 0;
	}
	.howTo-wrapper .howTo-item {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
		padding: 0 15px 0 30px;
		border-left: 0 none;
		border-bottom: 3px solid var(--button-red);
		align-items: center;
	}
	.howTo-item h2 {
		margin-bottom: 0;
	}
	.howTo .button {
		display: inline-block;
		margin-right: 20px;
	}
}
@media screen and (max-width: 480px) {
	.howTo-wrapper .howTo-item {
		padding: 0 15px;
	}
}
@media screen and (max-width: 320px) {
	.howTo-wrapper {
		margin-top: -60px;
	}
	.howTo-item h2 {
		font-size: 18px;
		font-weight: 500;
	}
	.howTo p {
		font-size: 15px;
		line-height: 19px;
		margin-bottom: 15px;
	}
}
/*#endregion --------------------------------*/


/*#region ---------- G A L L E R Y ---------*/
.g-header h1 {
	font-size: clamp(32px, calc(var(--index) * 2.2), 64px);
	font-weight: 700;
	color: var(--button-red);
	margin-bottom: 25px;
}
@media screen and (max-width: 320px) {
	.g-header h1 {
		font-size: 26px;
	}
}
.g-header p {
	font-size: 32px;
	font-size: clamp(20px, calc(var(--index) * 1.45), 32px);
	line-height: 38px;
	font-weight: 300;
}
.portfolio, .portfolio-wrapper {
	overflow: hidden;
}
.section-gallery:not(.last) {
  	padding-bottom: 1rem;
}
.wrapped {
  	display: flex;
}
.portfolio img {
	width: 100%;
	height: auto;
	background: #f0f0f0;
}
.portfolio ul {
	padding-left: 1rem;
	list-style: none;
}
.portfolio li {
	flex-shrink: 0;
	width: clamp(100px, 60vw, 350px);
	padding-right: 1rem;
	align-self: baseline;
}
/*#endregion --------------------------------*/


/*#region ---------- FOOTER -----------------*/
footer {
	height: 690px;
	width: 100%;
	background: url(../img/AFUMED-3.png) no-repeat center bottom;
	background-size: contain;
}
.social {
	position: absolute;
	left: 50%;
	margin-left: clamp(-323px, calc(var(--index) * -11), -190px);
	top: 0px;
	width: clamp(350px, calc(var(--index) * 19), 495px);
}
@media screen and (max-width: 580px) {
	footer {
		height: 560px;
	}
	.social {
		left: 30px;
		margin-left: 0;
	}
}
@media screen and (max-width: 300px) {
	.social {
		left: 30px;
		margin-left: 0;
		width: 230px;
		top: -80px;
	}
}
.social p {
	display: block;
	font-size: 15px;
	line-height: 20px;
	padding: 0;
	margin: 0 0 15px;
}
.social p > a {
	display: block;
	transition: var(--default-transition);
	width: fit-content;
	margin: 0 0 5px;
	color: var(--button-red);
	font-size: 18px;
	font-weight: 500;
	text-decoration: dotted;
}
#social-icons a {
	display: block;
	text-decoration: none;
	transition: var(--default-transition);
	width: fit-content;
	margin: 0;
}
#social-icons a svg {
	fill: var(--icon-socials);
	transition: var(--default-transition);
}
#social-icons a span {
	color: var(--icon-socials);
	line-height: 40px;
	font-size: 18px;
	font-weight: 500;
	margin-left: 8px;
}
#social-icons a:hover svg {
	fill: var(--icon-socials-hover);
}
#social-icons a:hover span
, .social p > a:hover {
	color: var(--icon-socials-hover);
}
/*#endregion --------------------------------*/