@font-face {
  font-family: "AmenableRegular";
  src: url("parts/fonts/AmenableRegular.eot");
  src: url("parts/fonts/AmenableRegular.eot?#iefix") format("embedded-opentype"), url("parts/fonts/AmenableRegular.ttf") format("trueType"), url("parts/fonts/AmenableRegular.svg#AmenableRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AmenableBold";
  src: url("parts/fonts/AmenableBold.eot");
  src: url("parts/fonts/AmenableBold.eot?#iefix") format("embedded-opentype"), url("parts/fonts/AmenableBold.ttf") format("trueType"), url("parts/fonts/AmenableBold.svg#AmenableBold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AmenableThin";
  src: url("parts/fonts/AmenableThin.eot");
  src: url("parts/fonts/AmenableThin.eot?#iefix") format("embedded-opentype"), url("parts/fonts/AmenableThin.ttf") format("trueType"), url("parts/fonts/AmenableThin.svg#AmenableThin") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GilroyBold";
  src: url("parts/fonts/Gilroy-ExtraBold.eot");
  src: url("parts/fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("parts/fonts/Gilroy-ExtraBold.otf") format("openType"), url("parts/fonts/Gilroy-ExtraBold.svg#GilroyBold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GilroyLight";
  src: url("parts/fonts/Gilroy-Light.eot");
  src: url("parts/fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("parts/fonts/Gilroy-Light.otf") format("openType"), url("parts/fonts/Gilroy-Light.svg#GilroyLight") format("svg");
  font-weight: normal;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media only screen and (max-width: 1600px) {
  html {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1300px) {
  html {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 11px;
  }
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 6px;
  }
}
html *::-webkit-scrollbar {
  width: 10px;
}
html *::-webkit-scrollbar-track {
  background: #262626;
}
html *::-webkit-scrollbar-thumb {
  background: #cfad29;
}
html *::-webkit-scrollbar-thumb:hover {
  background: #F9CF2A;
}
html input {
  border-radius: 0;
  appearance: none;
}
html #ui-datepicker-div {
  transform: scale(1.2);
  background-color: #242424;
  border: 3px solid #202020;
  color: #AAAAAA;
}
html #ui-datepicker-div .ui-datepicker-header {
  color: #AAAAAA;
  background-color: #202020;
  border: none;
}
html #ui-datepicker-div .ui-datepicker-header .ui-datepicker-next, html #ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
  background-color: #202020;
  border: none;
  cursor: pointer;
}
html #ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  background-color: #202020;
}
html #ui-datepicker-div .ui-datepicker-calendar a {
  border-color: #242424;
  color: #AAAAAA;
  background-color: #202020;
  text-align: center;
}
html #ui-datepicker-div .ui-datepicker-calendar a.ui-state-highlight {
  background-color: #F9CF2A;
  border-color: #F9CF2A;
  color: #202020;
}
html body {
  padding: 0;
  margin: 0;
  background-color: #242424;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100vh;
  width: 100vw;
}
html body #close-menu {
  background-color: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  display: none;
}
html body .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}
html body .modal .close-modal {
  background-color: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}
html body #error {
  z-index: 100;
  position: fixed;
  width: 100vw;
  left: 0;
  height: 0;
  top: -12vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px #ffe16a;
  background-color: #F9CF2A;
  transition: top 0.3s;
}
html body #error .close-error {
  cursor: pointer;
  background-color: #242424;
  width: 1vw;
  height: 1vw;
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
  position: absolute;
  right: 3vw;
  transition: filter 0.3s;
}
html body #error .close-error:hover {
  filter: brightness(80%);
  -webkit-filter: brightness(80%);
}
html body #error h2 {
  color: #242424;
  font-family: GilroyLight;
  font-weight: 900;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinR {
  0% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes spinR {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
html body .container {
  padding: 0;
  margin: 0;
  width: 100%;
  min-width: 50vw;
  max-width: 100%;
}
html body .grid {
  display: grid;
}
html body #c {
  height: 0;
  z-index: -1;
}
html body .grid-main {
  margin-top: 20vh !important;
  height: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto;
  gap: 0 0;
  grid-template-areas: "header" "section" "footer";
}
@media only screen and (max-width: 600px) {
  html body .grid-main {
    position: static;
  }
}
html body .grid-main.no-header .grid-header {
  grid-template-rows: 0 0 !important;
}
html body a {
  text-decoration: none;
}

.button {
  padding-bottom: 3rem;
  margin-top: 3rem;
}
.button a, .button div {
  cursor: pointer;
  background-color: #FFD42A;
  color: #262626;
  font-size: 1.375rem;
  padding: 1rem 4rem 1rem 4rem;
  border-color: #9ecaed;
  box-shadow: 0 0 0.3rem #FFD42A;
  transition: background-color 0.5s, box-shadow 0.5s;
  font-family: GilroyBold;
  text-transform: uppercase;
}
.button a:hover, .button div:hover {
  background-color: #cfad29;
  box-shadow: 0 0 0.5rem #cfad29;
}
.button div, .button a {
  width: fit-content;
  width: -moz-fit-content;
  margin: auto;
}
@media only screen and (max-width: 600px) {
  .button div, .button a {
    width: 100%;
    font-size: 2.725rem;
    text-align: center;
  }
}

header .grid-header {
  grid-template-columns: 100%;
  grid-template-rows: 60vh 20vh;
  gap: 0 0;
  grid-template-areas: "content" "socials";
}
@media only screen and (max-width: 600px) {
  header .grid-header {
    grid-template-rows: 65vh 15vh;
  }
}
header .grid-header .header-top {
  display: none;
  position: fixed;
  top: 0;
  background-color: transparent;
  z-index: 100;
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top {
    height: 15vw;
  }
}
header .grid-header .header-top .grid-header-top {
  padding: 3vw 0 3vw 0;
  transition: padding 0.5s, background-color 0.5s;
  grid-template-columns: 50% 50%;
  grid-template-rows: 100%;
  gap: 0 0;
  align-items: center;
  grid-template-areas: "logo nav";
}
@media only screen and (max-width: 750px) {
  header .grid-header .header-top .grid-header-top {
    grid-template-columns: 45% 55%;
    align-items: start;
  }
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top .grid-header-top {
    grid-template-columns: 50% 50%;
    padding: 0;
    align-items: start;
  }
}
header .grid-header .header-top .grid-header-top .nav-logo {
  margin: auto 0 auto 0;
}
header .grid-header .header-top .grid-header-top .nav-logo a {
  width: 50%;
  margin: 0 auto 0 7vw;
}
header .grid-header .header-top .grid-header-top .nav-logo a svg {
  width: 50%;
  max-width: 420px;
  height: auto;
  transition: all 0.5s;
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top .grid-header-top .nav-logo a svg {
    width: 100%;
  }
}
header .grid-header .header-top .grid-header-top .nav-logo a:hover svg {
  transform: scale(1.05);
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top .grid-header-top .nav-logo a:hover svg {
    transform: scale(1);
  }
}
header .grid-header .header-top .grid-header-top .nav {
  margin: auto 0 auto 0;
  z-index: 8;
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top .grid-header-top .nav {
    height: 100%;
    position: relative;
  }
}
header .grid-header .header-top .grid-header-top .nav #nav-btn {
  position: absolute;
  width: 0;
  height: 0;
  transform: translateX(40vw);
  top: 50%;
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top .grid-header-top .nav #nav-btn {
    width: 6vw;
    height: 6vw;
    transform: translateX(40vw) translateY(-50%);
  }
}
header .grid-header .header-top .grid-header-top .nav #nav-btn img {
  display: none;
  width: 6vw;
  height: 6vw;
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top .grid-header-top .nav #nav-btn img {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top .grid-header-top .nav nav {
    transition: all 0.5s;
  }
}
header .grid-header .header-top .grid-header-top .nav nav #nav-bar {
  padding-right: 11vw;
  list-style: none;
  width: 40vw;
  transition: transform 0.5s;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: 100%;
  gap: 0 0;
  grid-template-areas: ". . . .";
}
@media only screen and (max-width: 750px) {
  header .grid-header .header-top .grid-header-top .nav nav #nav-bar {
    width: 50vw;
  }
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top .grid-header-top .nav nav #nav-bar {
    padding: 30vw 0 4vw 0;
    margin-top: -10vw;
    height: 100vh;
    width: auto;
    overflow: hidden;
    transition: all 1s;
    box-shadow: 0 0 0.7vw #131313;
    background-color: #262626;
    z-index: 8;
    grid-template-columns: 80%;
    grid-template-rows: repeat(3, 8rem) 4vw;
    gap: 5vw 0;
    grid-template-areas: "." "." "." "." ".";
  }
}
header .grid-header .header-top .grid-header-top .nav nav #nav-bar li {
  text-align: right;
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top .grid-header-top .nav nav #nav-bar li {
    padding: 3rem 2rem 3rem 2rem;
    text-align: center;
  }
}
header .grid-header .header-top .grid-header-top .nav nav #nav-bar li a {
  font-size: 1.75rem;
  color: #AAAAAA;
  transition: all 0.5s;
  font-family: GilroyLight;
}
header .grid-header .header-top .grid-header-top .nav nav #nav-bar li a:hover {
  color: #F8CE29;
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top .grid-header-top .nav nav #nav-bar li a {
    font-size: 4.1875rem;
  }
}
header .grid-header .header-top .grid-header-top .nav nav #nav-bar li .nav-socials {
  width: 15vw;
  padding: 2vw 2vw 0 2vw;
  margin: 0 auto 0 auto;
  height: auto;
  display: none;
}
header .grid-header .header-top .grid-header-top .nav nav #nav-bar li .nav-socials a {
  padding: 10%;
}
header .grid-header .header-top .grid-header-top .nav nav #nav-bar li .nav-socials a svg {
  width: 4rem;
  height: auto;
}
header .grid-header .header-top .grid-header-top .nav nav #nav-bar li .nav-socials a svg .socials-a {
  transition: all 0.5s;
}
header .grid-header .header-top .grid-header-top .nav nav #nav-bar li .nav-socials a:hover svg .socials-a {
  fill: #FFE16A;
}
@media only screen and (max-width: 600px) {
  header .grid-header .header-top .grid-header-top .nav nav #nav-bar li .nav-socials {
    display: flex;
  }
}
header .grid-header .grid-header-content {
  padding: 2vh 7vw 0;
  position: relative;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
header .grid-header .grid-header-content h1 {
  font-size: 5.8125rem;
  color: #FFFFFF;
  font-family: GilroyBold;
  max-width: 40rem;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  header .grid-header .grid-header-content h1 {
    font-size: 8.125rem;
    margin-top: 0;
  }
}
header .grid-header .grid-header-content h3 {
  font-size: 1.75rem;
  color: #FFD42AF7;
  font-family: GilroyBold;
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  header .grid-header .grid-header-content h3 {
    font-size: 2.125rem;
  }
}
header .grid-header .grid-header-content .button {
  width: max-content;
  margin-top: 5vh;
}
header .grid-header .grid-header-content:before {
  content: "";
  background-image: url(/assets/img/components/io-glow.png);
  position: absolute;
  top: -740px;
  right: -500px;
  width: 2000px;
  background-position: center;
  background-repeat: no-repeat;
  height: 2000px;
  background-size: 60%;
  z-index: -1;
}
@media screen and (min-width: 1900px) {
  header .grid-header .grid-header-content:before {
    top: -660px;
    background-size: 80%;
  }
}
@media screen and (max-width: 1300px) {
  header .grid-header .grid-header-content:before {
    right: -590px;
  }
}
@media screen and (max-width: 1100px) {
  header .grid-header .grid-header-content:before {
    right: -700px;
  }
}
@media screen and (max-width: 1100px) {
  header .grid-header .grid-header-content:before {
    right: -800px;
  }
}
@media screen and (max-width: 830px) {
  header .grid-header .grid-header-content:before {
    opacity: 0.2;
  }
}
header .grid-header .header-socials .grid-socials-logos {
  padding: 0 7vw;
  justify-content: end;
}
header .grid-header .header-socials .grid-socials-logos a:nth-child(2) {
  margin-top: -3vw;
  position: relative;
}
header .grid-header .header-socials .grid-socials-logos a:nth-child(2):before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 2px;
  height: 200px;
  background-color: #FFD42AF7;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  header .grid-header .header-socials .grid-socials-logos a:nth-child(2):before {
    display: none;
  }
}

.reference.section {
  padding: 40px 7vw 0 !important;
}
.reference.section .reference-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 450px) {
  .reference.section .reference-container {
    flex-direction: row;
    width: auto;
    max-width: unset;
    overflow-x: scroll;
    flex-wrap: nowrap;
    padding: 10px;
    margin-left: -5px;
    margin-right: -5px;
  }
}
.reference.section .reference-container .single-reference {
  width: 32%;
  box-shadow: 0 0 10px #131313;
  margin-bottom: 2vw;
}
@media screen and (max-width: 600px) {
  .reference.section .reference-container .single-reference {
    width: 49%;
  }
}
@media screen and (max-width: 450px) {
  .reference.section .reference-container .single-reference {
    width: 84vw;
    min-width: 84vw;
    margin-bottom: 0;
    margin-right: 4rem;
  }
  .reference.section .reference-container .single-reference:last-child {
    margin-right: 0;
  }
}
.reference.section .reference-container .single-reference .animation-container {
  overflow: hidden;
  height: 0;
  position: relative;
  padding-top: 115%;
  margin-bottom: -30px;
}
.reference.section .reference-container .single-reference .animation-container .animation {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.reference.section .reference-container .single-reference .animation-container .animation .logo {
  position: absolute;
  width: 30%;
  top: 7%;
  left: 65%;
  z-index: -2;
  transition: left 0.3s;
}
.reference.section .reference-container .single-reference .animation-container .animation:before {
  content: "";
  background-image: url("/assets/img/components/ellipse.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-y: 200%;
  background-position-x: center;
  width: 140%;
  height: 100%;
  position: absolute;
  left: 10%;
  z-index: -3;
  transition: left 0.3s;
}
.reference.section .reference-container .single-reference .text-container {
  text-align: center;
  transition: transform 0.3s;
}
.reference.section .reference-container .single-reference .text-container h3 {
  color: #FFD42AF7;
  font-size: 2.725rem;
  margin-bottom: 0;
  margin-top: 3rem;
}
@media screen and (max-width: 1000px) {
  .reference.section .reference-container .single-reference .text-container h3 {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 600px) {
  .reference.section .reference-container .single-reference .text-container h3 {
    margin-top: 6rem;
    font-size: 3.3125rem;
  }
}
.reference.section .reference-container .single-reference .text-container p {
  color: #636363;
  margin-top: 0;
  font-size: 1.25rem;
  font-family: GilroyLight;
}
@media screen and (max-width: 600px) {
  .reference.section .reference-container .single-reference .text-container p {
    font-size: 2.5rem;
  }
}
.reference.section .reference-container .single-reference:hover .animation-container .animation .logo {
  left: 35%;
}
.reference.section .reference-container .single-reference:hover .animation-container .animation .logo .st0 {
  fill: #FFFFFF;
}
.reference.section .reference-container .single-reference:hover .animation-container .animation .logo .st1 {
  fill: #D30043;
}
.reference.section .reference-container .single-reference:hover .animation-container .animation:before {
  left: -20%;
}
.reference.section .reference-container .single-reference:hover .text-container {
  transform: translateY(-20%);
}
.reference.section .reference-container .single-reference#danifit .animation-container .animation .image {
  position: absolute;
  height: 70%;
  width: auto;
  left: 27%;
  top: 30%;
  transition: left 0.3s;
  filter: grayscale(1);
}
.reference.section .reference-container .single-reference#danifit:hover .animation-container .animation .image {
  left: 25%;
  filter: grayscale(0);
}
.reference.section .reference-container .single-reference#danifit:hover .text-container h3 {
  color: #D30043;
}

.services.section {
  padding: 120px 7vw 0 !important;
}
.services.section .heading-container .heading:before {
  transform: translate(20%, -57%) rotate(7deg) !important;
  right: 0 !important;
  left: auto !important;
}
.services.section .heading-container .heading h2 {
  margin-left: auto;
}
.services.section .services-wrap {
  width: 100%;
  padding: 10px;
  margin-left: -5px;
  margin-right: -5px;
}
@media screen and (max-width: 750px) {
  .services.section .services-wrap {
    overflow-x: scroll;
  }
}
.services.section .services-wrap .services-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .services.section .services-wrap .services-container {
    min-width: 115vw;
  }
}
@media screen and (max-width: 600px) {
  .services.section .services-wrap .services-container {
    min-width: 355vw;
  }
}
.services.section .services-wrap .services-container .single-service {
  display: flex;
  flex-direction: column;
  width: 24%;
  box-shadow: 0 0 10px #131313;
  margin-bottom: 1.5vw;
  justify-content: space-between;
  align-items: center;
  padding-top: 4%;
  padding-bottom: 4%;
}
@media screen and (max-width: 750px) {
  .services.section .services-wrap .services-container .single-service {
    width: 23%;
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 600px) {
  .services.section .services-wrap .services-container .single-service {
    width: 11.5%;
    padding-top: 2%;
    padding-bottom: 2%;
  }
}
.services.section .services-wrap .services-container .single-service img {
  width: 37%;
  height: auto;
}
.services.section .services-wrap .services-container .single-service .text-container {
  text-align: center;
}
.services.section .services-wrap .services-container .single-service .text-container h3 {
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 2rem;
  font-size: 2.125rem;
  color: #FFFFFF;
}
@media screen and (max-width: 1100px) {
  .services.section .services-wrap .services-container .single-service .text-container h3 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 900px) {
  .services.section .services-wrap .services-container .single-service .text-container h3 {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 600px) {
  .services.section .services-wrap .services-container .single-service .text-container h3 {
    font-size: 2.875rem;
  }
}
.services.section .services-wrap .services-container .single-service .text-container span {
  color: #FFD52E;
  font-size: 1.25rem;
}
@media screen and (max-width: 900px) {
  .services.section .services-wrap .services-container .single-service .text-container span {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  .services.section .services-wrap .services-container .single-service .text-container span {
    font-size: 2.5rem;
  }
}
.services.section .services-wrap .services-container .single-service .text-container span img {
  width: 0.7rem;
}
@media screen and (max-width: 600px) {
  .services.section .services-wrap .services-container .single-service .text-container span img {
    width: 1.7rem;
  }
}

.contact.section {
  height: auto;
  padding: 150px 7vw 0 !important;
}
.contact.section .article-contact {
  grid-area: contact;
}
.contact.section .article-contact .contact-subheader {
  margin-bottom: 50px;
  text-align: center;
}
.contact.section .article-contact .contact-subheader h2 {
  color: #FFFFFF;
  font-size: 3.3125rem;
  margin: 0 0 10px;
}
.contact.section .article-contact .contact-subheader h2.yellow {
  color: #FFD42AF7;
  text-shadow: 1px 1px 10px #FFD42A80;
}
.contact.section .article-contact .grid-contact-form {
  grid-template-columns: 49% 49%;
  grid-template-rows: repeat(4, auto) 9vw 0;
  margin-bottom: 3vw;
  gap: 5% 2%;
  grid-template-areas: "contact-name contact-surname" "contact-email contact-phone" "contact-msg contact-msg" "contact-submit contact-submit";
}
@media only screen and (max-width: 900px) {
  .contact.section .article-contact .grid-contact-form {
    grid-template-columns: 48.5% 48.5%;
    gap: 5% 3%;
  }
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .grid-contact-form {
    overflow-x: hidden;
    grid-template-columns: 100%;
    grid-template-rows: repeat(8, auto) 0;
    gap: 2vw 2vw;
    grid-template-areas: "contact-name" "contact-surname" "contact-email" "contact-phone" "contact-msg" "contact-submit";
  }
}
.contact.section .article-contact .grid-contact-form #check {
  position: absolute;
  visibility: hidden;
  height: 0 !important;
  width: 0 !important;
}
.contact.section .article-contact .grid-contact-form label {
  width: 0;
  height: 0;
  overflow: hidden;
  display: none;
}
.contact.section .article-contact .grid-contact-form textarea {
  resize: vertical;
  height: 10rem;
  padding: 1rem 3rem 1rem 2rem;
}
.contact.section .article-contact .grid-contact-form input, .contact.section .article-contact .grid-contact-form select {
  padding: 1.5rem 0 1.5rem 2rem;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .grid-contact-form input, .contact.section .article-contact .grid-contact-form select {
    padding: 3rem 0 3rem 2rem;
  }
}
.contact.section .article-contact .grid-contact-form input, .contact.section .article-contact .grid-contact-form textarea, .contact.section .article-contact .grid-contact-form select {
  background-color: #202020 !important;
  font-size: 1.4375rem;
  color: #5d5d5d !important;
  border: none;
  box-shadow: 0 0 0.3vw #131313 !important;
  font-family: GilroyLight;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .grid-contact-form input, .contact.section .article-contact .grid-contact-form textarea, .contact.section .article-contact .grid-contact-form select {
    width: 100%;
    font-size: 2.725rem;
    color: #cccbca;
  }
}
.contact.section .article-contact .grid-contact-form input::placeholder, .contact.section .article-contact .grid-contact-form textarea::placeholder, .contact.section .article-contact .grid-contact-form select::placeholder {
  font-size: 1.4375rem;
  color: #5d5d5d !important;
  padding: 0.4rem 2rem 0 0;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .grid-contact-form input::placeholder, .contact.section .article-contact .grid-contact-form textarea::placeholder, .contact.section .article-contact .grid-contact-form select::placeholder {
    font-size: 2.5rem;
    color: #cccbca !important;
    opacity: 1;
  }
}
.contact.section .article-contact .grid-contact-form input::-moz-placeholder, .contact.section .article-contact .grid-contact-form textarea::-moz-placeholder, .contact.section .article-contact .grid-contact-form select::-moz-placeholder {
  font-size: 1.4375rem;
  color: #5d5d5d !important;
  padding: 0.4rem 2rem 0 0;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .grid-contact-form input::-moz-placeholder, .contact.section .article-contact .grid-contact-form textarea::-moz-placeholder, .contact.section .article-contact .grid-contact-form select::-moz-placeholder {
    font-size: 2.5rem;
    color: #cccbca !important;
    opacity: 1;
  }
}
.contact.section .article-contact .grid-contact-form input:focus, .contact.section .article-contact .grid-contact-form textarea:focus, .contact.section .article-contact .grid-contact-form select:focus {
  outline: none;
}
.contact.section .article-contact .grid-contact-form input[type=submit], .contact.section .article-contact .grid-contact-form textarea[type=submit], .contact.section .article-contact .grid-contact-form select[type=submit] {
  grid-area: contact-submit;
  -webkit-appearance: none;
  appearance: none;
  margin: 3vw auto auto auto;
  background-color: #FFD42A !important;
  color: #262626 !important;
  font-size: 1.4375rem;
  padding: 1rem 3rem 1rem 3rem;
  border-color: #9ecaed;
  box-shadow: 0 0 0.3rem #FFD42A !important;
  cursor: pointer;
  transition: background-color 0.5s, box-shadow 0.5s;
  font-family: GilroyBold;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .grid-contact-form input[type=submit], .contact.section .article-contact .grid-contact-form textarea[type=submit], .contact.section .article-contact .grid-contact-form select[type=submit] {
    width: 100%;
    padding: 2rem 3rem 2rem 3rem;
    font-size: 2.725rem;
  }
}
.contact.section .article-contact .grid-contact-form input[type=submit]:hover, .contact.section .article-contact .grid-contact-form textarea[type=submit]:hover, .contact.section .article-contact .grid-contact-form select[type=submit]:hover {
  background-color: #cfad29 !important;
  box-shadow: 0 0 0.5rem #cfad29 !important;
}
.contact.section .article-contact .grid-contact-form input[type=number], .contact.section .article-contact .grid-contact-form textarea[type=number], .contact.section .article-contact .grid-contact-form select[type=number] {
  -moz-appearance: textfield;
}
.contact.section .article-contact .grid-contact-form input[type=number]::-webkit-inner-spin-button, .contact.section .article-contact .grid-contact-form input[type=number]::-webkit-outer-spin-button, .contact.section .article-contact .grid-contact-form textarea[type=number]::-webkit-inner-spin-button, .contact.section .article-contact .grid-contact-form textarea[type=number]::-webkit-outer-spin-button, .contact.section .article-contact .grid-contact-form select[type=number]::-webkit-inner-spin-button, .contact.section .article-contact .grid-contact-form select[type=number]::-webkit-outer-spin-button {
  appearance: none;
  -webkit-appearance: none;
}
.contact.section .article-contact .grid-contact-form input:hover, .contact.section .article-contact .grid-contact-form textarea:hover, .contact.section .article-contact .grid-contact-form select:hover {
  background-color: #242424;
  transition: background-color 0.2s;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .grid-contact-form input:hover, .contact.section .article-contact .grid-contact-form textarea:hover, .contact.section .article-contact .grid-contact-form select:hover {
    background-color: #202020;
  }
}
.contact.section .article-contact .grid-contact-form select {
  padding-left: 2rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  text-transform: uppercase;
  background: url("../img/components/arrow.png") 96%/1vw no-repeat #202020;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .grid-contact-form select {
    background: url("../img/components/arrow.png") 96%/3vw no-repeat #202020;
    color: #cccbca !important;
  }
}
.contact.section .article-contact .grid-contact-form select option {
  color: #5d5d5d !important;
}
.contact.section .article-contact .grid-contact-form .contact-date {
  grid-area: contact-date;
  display: grid;
  grid-gap: 0;
  grid-template-columns: 50% 50%;
  grid-template-areas: ". .";
}
.contact.section .article-contact .grid-contact-form .contact-date .date-container {
  padding: 0;
  width: 100%;
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 1vw;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.contact.section .article-contact .grid-contact-form .contact-date .date-container:nth-of-type(2n) {
  padding-right: 0;
  padding-left: 1vw;
}
.contact.section .article-contact .grid-contact-form .contact-date .date-container input {
  padding-left: 2rem;
  width: 100%;
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  text-transform: uppercase;
  font-size: 1.4375rem !important;
  font-family: GilroyLight;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .grid-contact-form .contact-date .date-container input {
    font-size: 2.725rem !important;
  }
}
.contact.section .article-contact .grid-contact-form .contact-date .date-container input::before {
  content: attr(placeholder) !important;
  margin-right: 0.5em;
  display: inline-block !important;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .grid-contact-form .contact-date .date-container input::before {
    color: #cccbca !important;
    float: left;
  }
}
.contact.section .article-contact .grid-contact-form .contact-date .date-container input::-webkit-inner-spin-button, .contact.section .article-contact .grid-contact-form .contact-date .date-container input::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
@media (max-width: 767px) {
  .contact.section .article-contact .grid-contact-form .contact-date .date-container input::-webkit-calendar-picker-indicator {
    display: none;
  }
  .contact.section .article-contact .grid-contact-form .contact-date .date-container input::-webkit-input-placeholder {
    visibility: hidden !important;
  }
}
.contact.section .article-contact .grid-contact-form #contact_first_name {
  grid-area: contact-name;
}
.contact.section .article-contact .grid-contact-form #contact_last_name {
  grid-area: contact-surname;
}
.contact.section .article-contact .grid-contact-form #contact_email {
  grid-area: contact-email;
}
.contact.section .article-contact .grid-contact-form #contact_phone {
  grid-area: contact-phone;
}
.contact.section .article-contact .grid-contact-form #contact_tarif {
  grid-area: contact-tarif;
}
.contact.section .article-contact .grid-contact-form #contact_message {
  grid-area: contact-msg;
}
.contact.section .article-contact .grid-contact-form .button-submit {
  grid-area: contact-submit;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .grid-contact-form #tarif-placeholder {
    color: #cccbca !important;
  }
}
.contact.section .article-contact .contact-h2 {
  padding: 3vw 0 5vw 0;
  margin: auto auto auto 0;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .contact-h2 {
    text-align: left;
  }
}
.contact.section .article-contact .contact-h2:before {
  content: attr(data-bg-txt);
  position: absolute;
  z-index: -1;
  margin: -1.5rem auto auto -22rem;
  font-size: 10.25rem;
  color: #202020;
  font-family: GilroyBold;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .contact-h2:before {
    margin: -1.5rem auto auto auto;
    width: 100%;
    text-align: center;
  }
}
.contact.section .article-contact .contact-h2 a {
  display: block;
  width: 0;
  top: -10rem;
  position: relative;
  height: 0;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .contact-h2 a {
    top: -12rem;
  }
}
.contact.section .article-contact .contact-h2 h2 {
  text-shadow: 0 0 3px #FFD42A;
  color: #FFD42A;
  font-size: 3.3125rem;
  font-family: GilroyBold;
  letter-spacing: 0.5rem;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .contact.section .article-contact .contact-h2 h2 {
    text-align: center;
  }
}
.contact.section .article-contact .contact-h2 h2:before {
  content: "- ";
}
.contact.section .article-contact .contact-h2 h2:after {
  content: " -";
}

.header.section {
  padding: 0 0 10vw !important;
}
.header.section .h1 {
  text-align: center;
}
.header.section .h1 h1 {
  color: #D30043 !important;
  text-shadow: 1px 1px 10px #D300439B !important;
  font-size: 4.1875rem;
  position: relative;
  margin: 4rem 0 0;
}
@media screen and (max-width: 600px) {
  .header.section .h1 h1 {
    font-size: 10.125rem;
  }
}
.header.section .h1 h1:before {
  font-size: 12.5rem;
  content: "DANIFIT";
  color: #1D1D1D !important;
  text-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -65%);
  z-index: -10;
}
@media screen and (max-width: 600px) {
  .header.section .h1 h1:before {
    font-size: 17.125rem;
    transform: translate(-50%, -53%);
  }
}
.header.section .h1 h2 {
  margin: 1.5rem 0 0;
  color: #FFFFFF;
  font-size: 1.75rem;
  letter-spacing: 0.3rem;
  text-shadow: 3px 3px 10px #262626;
}
@media screen and (max-width: 600px) {
  .header.section .h1 h2 {
    font-size: 2.125rem;
  }
}
.header.section .images {
  position: relative;
  padding-top: 50%;
  height: 0;
  margin-top: -2.5%;
}
@media screen and (max-width: 600px) {
  .header.section .images {
    padding-top: 68%;
  }
}
.header.section .images .hastags {
  position: absolute;
  left: 0;
  top: 58%;
  font-size: 1.4375rem;
  color: #D30043;
  font-weight: 400;
  font-family: GilroyLight;
  background-color: #1E1E1E;
  opacity: 0.98;
  padding: 1% 1% 1% 14%;
  line-height: 1.5;
}
@media screen and (max-width: 1100px) {
  .header.section .images .hastags {
    font-size: 2.125rem;
    padding: 1% 2% 1% 14%;
    top: 61%;
  }
}
.header.section .images .left-image {
  position: absolute;
  width: 42%;
  z-index: -4;
  left: 19%;
  top: 22%;
}
@media screen and (max-width: 600px) {
  .header.section .images .left-image {
    width: 50%;
    left: 8%;
  }
}
.header.section .images .middle-image {
  position: absolute;
  width: 18%;
  z-index: -3;
  top: 0;
  left: 42%;
  transform: rotate(356deg);
}
@media screen and (max-width: 600px) {
  .header.section .images .middle-image {
    width: 26%;
    left: 36%;
  }
}
.header.section .images .right-image {
  position: absolute;
  width: 24%;
  z-index: -2;
  top: 14%;
  left: 56%;
  transform: rotate(5deg);
}
@media screen and (max-width: 600px) {
  .header.section .images .right-image {
    width: 29%;
  }
}
.header.section .images .logo-image {
  position: absolute;
  z-index: -1;
  top: 66%;
  width: 4%;
  left: 48%;
}
@media screen and (max-width: 1100px) {
  .header.section .images .logo-image {
    top: 63%;
    width: 6%;
    left: 45%;
  }
}
.header.section .images .weights-image {
  z-index: -1;
  position: absolute;
  left: 65%;
  top: 69%;
  width: 16%;
}
@media screen and (max-width: 1100px) {
  .header.section .images .weights-image {
    left: 68%;
    top: 66%;
    width: 17%;
  }
}
.header.section .images .circle-image {
  z-index: -1;
  width: 32%;
  top: 42%;
  left: 65%;
  position: absolute;
  mix-blend-mode: color;
}
.header.section .images .desc {
  color: #D3D3D3;
  font-weight: 400;
  font-family: GilroyLight;
  font-size: 1.125rem;
  width: 80%;
  position: absolute;
  left: 19%;
  top: 91%;
}
@media screen and (max-width: 1100px) {
  .header.section .images .desc {
    width: 44%;
  }
  .header.section .images .desc br:not(.linebreak) {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .header.section .images .desc {
    font-size: 2.125rem;
    width: 80%;
    left: 9%;
  }
}

.brand.section {
  padding: 40px 7vw 20vw !important;
}
.brand.section .heading-container {
  padding-bottom: 0;
}
.brand.section .heading-container .heading h2, .brand.section .heading-container .heading h2:before, .brand.section .heading-container .heading h2:after {
  color: #D30043 !important;
  text-shadow: 1px 1px 10px #D300439B !important;
}
.brand.section .brand-container {
  position: relative;
}
.brand.section .brand-container .big-image {
  width: 90%;
  height: auto;
}
.brand.section .brand-container .first-small-image, .brand.section .brand-container .second-small-image {
  position: absolute;
  width: 15%;
  padding: 5% 4%;
  bottom: 0;
  right: 0;
}
.brand.section .brand-container .first-small-image {
  background-color: #D30043;
  transform: translate(-110%, 30%);
}
.brand.section .brand-container .second-small-image {
  background-color: #042B5A;
  transform: translate(0, 30%);
}

.photo.section {
  padding: 0px 7vw 10vw !important;
}
.photo.section .heading-container {
  padding-bottom: 0;
}
.photo.section .heading-container .heading h2, .photo.section .heading-container .heading h2:before, .photo.section .heading-container .heading h2:after {
  color: #D30043 !important;
  text-shadow: 1px 1px 10px #D300439B !important;
}
.photo.section .heading-container .heading:before {
  transform: translate(-15%, -75%) rotate(353deg) !important;
}
.photo.section .photo-container {
  display: flex;
  height: 38vw;
  overflow-x: auto;
  margin-right: -7vw;
}
@media screen and (max-width: 600px) {
  .photo.section .photo-container {
    height: 45vw;
  }
}
.photo.section .photo-container::-webkit-scrollbar {
  width: 10px;
}
.photo.section .photo-container::-webkit-scrollbar-track {
  background: #262626;
}
.photo.section .photo-container::-webkit-scrollbar-thumb {
  background: #cfad29;
}
.photo.section .photo-container::-webkit-scrollbar-thumb:hover {
  background: #F9CF2A;
}
.photo.section .photo-container img {
  margin-right: 1rem;
}
.photo.section .photo-container img:last-child {
  margin-right: 0;
}
.photo.section .next {
  color: #979797F7;
  font-size: 1.4375rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 25px;
}
.photo.section .next .next-icon {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}
.photo.section .next .next-icon path {
  fill: #979797F7;
}
@media screen and (max-width: 600px) {
  .photo.section .next {
    font-size: 2.5rem;
    margin-top: 10px;
  }
  .photo.section .next .next-icon {
    width: 2rem;
    height: 2rem;
  }
}

.web.section {
  padding: 0px 7vw 10vw !important;
}
.web.section .heading-container {
  padding-bottom: 0;
}
.web.section .heading-container .heading h2, .web.section .heading-container .heading h2:before, .web.section .heading-container .heading h2:after {
  color: #D30043 !important;
  text-shadow: 1px 1px 10px #D300439B !important;
}
.web.section .heading-container .heading:before {
  transform: translate(-23%, -65%) rotate(353deg) !important;
}
.web.section .web-image-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.web.section .web-image-container img.web {
  width: 75%;
}

section.content {
  font-family: GilroyBold;
}
section.content div.section {
  max-width: 1900px;
  margin-left: auto;
  margin-right: auto;
}
section.content div.section .heading-container {
  padding: 5rem 0;
}
section.content div.section .heading-container .heading {
  position: relative;
  padding: 0 2rem;
}
section.content div.section .heading-container .heading h2 {
  color: #FFD42AF7;
  text-shadow: 1px 1px 10px #FFD42AB1;
  font-size: 3.3125rem;
  position: relative;
  width: max-content;
  letter-spacing: 0.2rem;
  margin-top: 5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  section.content div.section .heading-container .heading h2 {
    font-size: 4.1875rem;
  }
}
section.content div.section .heading-container .heading h2:before, section.content div.section .heading-container .heading h2:after {
  content: "-";
  position: absolute;
  color: #FFD42AF7;
  text-shadow: 1px 1px 10px #FFD42AB1;
  font-size: 3.3125rem;
}
section.content div.section .heading-container .heading h2:before {
  left: -2.5rem;
}
section.content div.section .heading-container .heading h2:after {
  right: -2.5rem;
}
section.content div.section .heading-container .heading:before {
  content: attr(data-heading-copy);
  position: absolute;
  text-transform: uppercase;
  color: #1D1D1D;
  font-size: 12.5rem;
  top: 50%;
  left: 0;
  z-index: -10;
  transform: translate(-15%, -65%) rotate(353deg);
}
section.content div.section .heading-container h4 {
  font-weight: 400;
  font-family: GilroyLight;
  margin-top: 0;
  font-size: 1.125rem;
  color: #D1D1D1;
}
@media screen and (max-width: 600px) {
  section.content div.section .heading-container h4 {
    font-size: 2.125rem;
  }
}

footer .grid-footer {
  overflow: hidden;
  height: auto;
  grid-template-columns: 100%;
  grid-template-rows: auto 7vw;
  gap: 0 0;
  grid-template-areas: "." ".";
}
footer .grid-footer .footer-map {
  width: 100vw;
  height: 32vw;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 1050px) {
  footer .grid-footer .footer-map {
    height: 40vw;
  }
}
footer .grid-footer .footer-map #map {
  height: 100%;
  width: 100%;
}
footer .grid-footer .footer-socials {
  z-index: 2;
}
footer .grid-footer .footer-socials .grid-socials-logos {
  margin: auto 10vw auto auto;
  width: 8rem;
  grid-template-columns: 3rem 3rem;
  grid-template-rows: 100%;
  gap: 0 2rem;
  grid-template-areas: ". .";
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  height: 100%;
}
footer .grid-footer .footer-socials .grid-socials-logos a {
  padding: 10%;
}
footer .grid-footer .footer-socials .grid-socials-logos a svg {
  margin-top: 0;
  width: 3rem;
  height: 3rem;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 1050px) {
  footer .grid-footer .footer-socials .grid-socials-logos a svg {
    width: 0;
    height: 0;
  }
}
footer .grid-footer .footer-socials .grid-socials-logos a svg .socials-b {
  transition: all 0.5s;
}
footer .grid-footer .footer-socials .grid-socials-logos a:hover svg .socials-b {
  fill: #3D3D3D;
}
@media only screen and (max-width: 1050px) {
  footer .grid-footer .footer-socials .about {
    position: absolute;
  }
}
footer .grid-footer .footer-socials .about img[alt=component] {
  width: 50vw;
  height: auto;
  margin: -22vw auto auto -10vw;
}
@media only screen and (max-width: 1050px) {
  footer .grid-footer .footer-socials .about img[alt=component] {
    width: 0;
    height: 0;
  }
}
footer .grid-footer .footer-socials .about .about-info {
  margin: -51vw auto auto 17vw;
  padding: 4rem;
  background-color: #262626;
  width: 21vw;
  height: 17vw;
  grid-template-columns: 100%;
  grid-template-rows: auto auto auto;
  gap: 0 0;
  grid-template-areas: "." "." ".";
}
@media only screen and (max-width: 1050px) {
  footer .grid-footer .footer-socials .about .about-info {
    width: 80vw;
    height: auto;
    margin: auto 0 0 0;
    padding: 0 10vw 5vw 10vw;
    background-color: transparent;
  }
}
footer .grid-footer .footer-socials .about .about-info h4 {
  font-size: 2.125rem;
  color: #FFD42A;
  font-family: GilroyBold;
}
@media only screen and (max-width: 1640px) {
  footer .grid-footer .footer-socials .about .about-info h4 {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 1050px) {
  footer .grid-footer .footer-socials .about .about-info h4 {
    font-size: 2.725rem;
  }
}
footer .grid-footer .footer-socials .about .about-info div {
  grid-template-columns: 2rem auto;
  grid-template-rows: 100%;
  gap: 0 0;
  grid-template-areas: ". .";
}
@media only screen and (max-width: 600px) {
  footer .grid-footer .footer-socials .about .about-info div {
    grid-template-columns: 2.5rem auto;
  }
}
footer .grid-footer .footer-socials .about .about-info div p, footer .grid-footer .footer-socials .about .about-info div a {
  font-size: 1.25rem;
  color: #C1C1C1 !important;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  font-family: GilroyLight;
}
@media only screen and (max-width: 1640px) {
  footer .grid-footer .footer-socials .about .about-info div p, footer .grid-footer .footer-socials .about .about-info div a {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1050px) {
  footer .grid-footer .footer-socials .about .about-info div p, footer .grid-footer .footer-socials .about .about-info div a {
    font-size: 1.75rem;
    margin-left: 2vw;
  }
}
@media only screen and (max-width: 700px) {
  footer .grid-footer .footer-socials .about .about-info div p, footer .grid-footer .footer-socials .about .about-info div a {
    font-size: 1.4375rem;
    margin-left: 2vw;
  }
}
@media only screen and (max-width: 600px) {
  footer .grid-footer .footer-socials .about .about-info div p, footer .grid-footer .footer-socials .about .about-info div a {
    font-size: 2.125rem;
    margin-left: 2vw;
  }
}
footer .grid-footer .footer-socials .about .about-info div a:hover {
  filter: brightness(90%);
  -webkit-filter: brightness(90%);
}
footer .grid-footer .footer-socials .about .about-info div img {
  width: 1.25rem;
  height: auto;
}
@media only screen and (max-width: 1050px) {
  footer .grid-footer .footer-socials .about .about-info div img {
    width: 1.75rem;
  }
}
@media only screen and (max-width: 600px) {
  footer .grid-footer .footer-socials .about .about-info div img {
    font-size: 1.4375rem;
  }
}

/*# sourceMappingURL=style.css.map */
