@import './reset.css';

:root{
  --c-accent: #111827;

  /* Backgrounds / surfaces */
  --bg-dark: #0b0d10;
  --c-surface: #ffffff;
  --tinted-bg: #ddd9d0;
  --bg-hover-beige: rgba(245, 245, 220, .8);
  --grey-100: rgba(255, 255, 255, .8);

  /* Text */
  --main-text: #111827;
  --text-grey: #6b7280;
  --main-text-inv: #f5f7fa;

  /* Lines & shadows */
  --c-line: #e5e7eb;
  --shadow-1: 0 8px 22px rgba(17,24,39,.08);
  --shadow-2: 0 18px 40px rgba(17,24,39,.14);

  /* Radii, spacing, layout */
  --maxw: 1240px;

  /* Motion */
  --easing: cubic-bezier(.22,1,.36,1);
  --dur-fast: 200ms;
  --dur: 360ms;
}

/* ================= Reset & Base ================= */
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  color: var(--main-text);
  background: var(--c-surface);
  line-height: 1.65;
  letter-spacing: .1px;
}

img {
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height:auto;
  display:block;
}

ul.list-style-none li {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--maxw)); 
  margin-inline: auto;
  padding: 0 15px;
}

.dark-filter {
  background: radial-gradient(121.28% 121.28% at 50% 50%, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .8) 100%);
}

.main-section {
  position: relative;
}

:root {
  --bg1: url("./../src/main-bg-1.jpg");
  --bg2: url("./../src/main-bg-2.jpg");
  --bg3: url("./../src/main-bg-3.jpg");
}

.bg-slider{
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  color: var(--c-surface);
  background-color:#0b0d10;
  background-image:
    radial-gradient(80% 60% at 10% 10%, rgba(255,191,0,.18), transparent 60%),
    radial-gradient(70% 50% at 90% 0%, rgba(255,255,255,.05), transparent 50%),
    var(--bg1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-slider::before,
.bg-slider::after,
.bg-slider .bg-layer{
  content:"";
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity:0;
  will-change: opacity, transform;
  animation: fadeZoomPan 18s linear infinite;
}

.bg-slider::before{
  background-image:
    radial-gradient(121.28% 121.28% at 50% 50%, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .8) 100%)
    var(--bg1);
  animation-delay: 0s;
  --pan-x-start: -1.5%;
  --pan-x-end:   1.5%;
  --pan-y-start: 0%;
  --pan-y-end:   0%;
}

.bg-slider::after{
  background-image:
    radial-gradient(121.28% 121.28% at 50% 50%, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .8) 100%),
    var(--bg2);
  animation-delay: 6s;
  --pan-x-start:  1.5%;
  --pan-x-end:   -1.5%;
  --pan-y-start:  0%;
  --pan-y-end:    0%;
}

.bg-slider .bg-layer{
  background-image:
    radial-gradient(121.28% 121.28% at 50% 50%, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .8) 100%),
    var(--bg3);
  --flip: -1;
  animation-delay: 12s;
  --pan-x-start: 0%;
  --pan-x-end:   0%;
  --pan-y-start: -1.5%;
  --pan-y-end:    1.5%;
}

@keyframes fadeZoomPan {
  0% {
    opacity: 0;
    transform: scaleX(var(--flip, 1)) translate(var(--pan-x-start,0), var(--pan-y-start,0)) scale(1);
  }
  6%   { opacity:1; }
  33%  {
    opacity:1;
    transform: scaleX(var(--flip, 1)) translate(var(--pan-x-end,0), var(--pan-y-end,0)) scale(1.08);
  }
  39%  { opacity:0; }
  100% {
    opacity:0;
    transform: scaleX(var(--flip, 1)) translate(var(--pan-x-end,0), var(--pan-y-end,0)) scale(1.08);
  }
}

.bg-slider .content{
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce){
  .bg-slider::before,
  .bg-slider::after,
  .bg-slider .bg-layer{
    animation: none;
    opacity: 0;
  }
}

.main-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bg-video {
  width: auto;
  height: 400px;
  object-fit: cover;
}

.content {
  position: relative;
  z-index: 2;
}

/* ================= Header ================= */
.header {
  position: absolute;
  top: 0;
  inset-inline: 0;
  /* backdrop-filter: blur(10px); */
  z-index: 50;
  color:  var(--c-surface);
}

.header-logo {
  height: 95px;
}

.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom: 1px solid var(--c-line);
  padding: 12px 0;
}

.header_phone {
  display: flex;
}

.header_phone:hover {
  text-decoration: underline;
}

.nav .nav-toggle {
  display:none;
  background:none;
  border:0;
  width:44px;
  height:44px;
  position:relative;
}

.nav-list {
  display:flex;
  gap:8px;
  align-items:center;
  font-weight:600;
  text-transform: none;
}

.nav-list a { 
  padding: 0;
  border-radius:12px;
  color: var(--c-accent);
  transition: background var(--dur-fast) var(--easing); 
}

.nav-list .nav-link {
  display: inline-block;
  text-transform: none;
  color:  var(--c-surface);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  margin: 0 18px;
  position: relative;
}

.nav-list .nav-link:not(:last-child) {
  margin-bottom: 40px;
}

.nav-list .nav-link:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--c-surface);
  transition: all .3s ease-out;
  transform: translateY(7px);
  opacity: 0;
}

.nav-list .nav-link:hover:after {
  transform: translateY(-6px);
  opacity: 1;
}

/* ================= Hero ================= */
.hero{
  position: relative;
  height: 100vh;
  color: var(--main-text-inv);
  display:grid;
  place-items: center;
  overflow: hidden;
}

.hero-description {
  max-width: 700px;
  font-size: 18px;
}

.go_to_objects {
  padding: 0 30px;
  margin: 20px 0;
  text-align: center;
  line-height: 54px;
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
  color: #000;
  width: 250px;
  display: inline-block;
  text-decoration: none;
  letter-spacing: .255em;
  text-transform: uppercase;
  background-color: var(--grey-100);
}

.hero_social {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  vertical-align: middle;
}

.social {
  display: flex;
  gap: 12px;
}

.hero_social .link,
.social .link {
  display: block;
  margin: 12px 0;
  width: 36px;
  height: 36px;
  color: #000;
  font-size: 20px;
  line-height: 39px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .7);
}

.hero_social .link:hover,
.social .link:hover {
  background-color: var(--bg-hover-beige);
}

/* ================= Sections ================= */
.section{ padding: clamp(56px, 7vw, 104px) 0; }

.section_title {
  font-size: 48px;
  line-height: 75px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

h2.section_title {
  font-size: clamp(24px, 3.6vw, 36px);
  margin:0 0 6px;
}

.grid{ display:grid; gap: 18px; }
.cards-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 980px){ .cards-3{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .cards-3{ grid-template-columns: 1fr; } }

/* ================= Projects ================= */

.projects-text {
  color:  var(--c-surface);
  background: url(./../src/main-bg-1.jpg);
  background-position: top;
}

.sotial-wrapper {
  padding: 10px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social a {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 20px;
  }

  .hero_social {
    display: none;
  }
}

.project{
  border-radius: 18px; overflow:hidden; position:relative; border:1px solid var(--c-line); background: var(--c-surface);
  box-shadow: var(--shadow-1);
}
.project img{ 
  width:100%; 
  aspect-ratio: 3 / 4; 
  object-fit: cover; 
  transition: transform .5s var(--easing);
}
.project:hover img{ transform: scale(1.04); }
.project figcaption{
  position:absolute; left:12px; bottom:12px;
  background: rgba(255,255,255,.88); backdrop-filter: blur(6px);
  padding:6px 10px; border-radius: 10px; font-weight:600; box-shadow: var(--shadow-1);
}

.section_title {
  line-height: 1.5;
}

.muted {
  color: var(--text-grey);
}

/* ================= CTA / form ================= */

.contact-form {
  position: relative;
}

.formMsg__wrapper {
  position: absolute;
  background-color: var(--bg-hover-beige);
  border: 1px solid white;
  width: 284px;
}

#formMsg.form-message {
  font-size: 12px;
}

input, textarea{
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid var(--c-line);
  font: inherit;
  color: white;
  outline: none;
  background-color: transparent;
  transition: border var(--dur-fast) var(--easing), box-shadow var(--dur-fast) var(--easing);
}


input::placeholder {
  color: #eff2f9;
}

.error-text {
  color: red;
  font-size: 14px;
  background-color: black;
  padding: 4px;
}

#phoneError {
  display: none;
}

.btn {
  display: block;
  width: 300px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 54px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .4s;
}

.btn-dark {
  color:  var(--c-surface);
  border: 1px solid #000;
  background-color: #000;
}

.btn-dark:hover {
  color: #000;
  background-color: transparent;
}

.btn-transparent {
  color:  var(--c-surface);
  background: 0 0;
  border: 1px solid var(--grey-100);
}

.btn-transparent:hover {
  color: #000;
  background-color: var(--bg-hover-beige) !important;
}

button[disabled] {
  pointer-events: none;
}

/* ================= Navigation responsive ================= */
@media (max-width: 900px){
  .nav .nav-toggle{ display:block; }
  .nav-list{ position:absolute; right:16px; top:64px; background: var(--c-surface); border:1px solid var(--c-line); border-radius:14px; box-shadow: var(--shadow-2); padding:8px; display:none; flex-direction:column; min-width:220px; }
  .nav-list.is-open {
    display:flex;
  }
  .nav-list a{ padding:10px 12px; }
  .nav-list.is-open a {
    color: #000;
  }
}

/* ================= Fine-tune spacing to match original ================= */
.header .header-inner{ padding-block: 14px; }
.section{ padding: 80px 0; }
.section_title{ margin-bottom: 32px; }


/* ================= Hero strict (closer match) ================= */
.hero{
  background: var(--c-bg-dark);
  color: var(--main-text-inv);
}

.hero-content{
  padding: 140px 0 96px;
  max-width: 980px;
  position: relative;

}

.hero-title {
  font-family: Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.6vw, 42px);
  line-height: 1.12;
  letter-spacing: .2px;
  margin: 0 0 22px;
  color:  var(--c-surface);
  pointer-events: none;
}

.hero-content h1 {
  max-width: 750px;
  font-size: 54px;
  line-height: 75px;
  font-weight: 700;
  z-index: 1;
  width: 100%;
  margin-bottom: 60px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}

.cta-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-section .section_content {
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    display: flex
;
}

.cta-section .section_content .cta-left {
    width: 60%;
}
.cta-section .section_content .cta-right {
    width: 40%;
}

.cta_title {
    color:  var(--c-surface);
    font-size: 48px;
    line-height: 57.28px;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: 'Roboto', sans-serif;
}

.cta_section_text {
    color:  var(--c-surface);
    font-size: 16px;
    line-height: 19.09px;
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
}

.static .service-header {
  position: static;
  border-bottom: 1px solid rgba(179, 179, 179, .5);
}

.service-header {
  height: 170px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.service-header-logo {
  height: 140px;
}

.service-header .header-right {
  display: flex;
  align-items: center;
}

.service-header .header-title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 35px;
  position: relative;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}

.service-header .header-title:after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.header-burger {
  background-color: transparent;
  border: none;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #222;
}

.service-header .svg--dark path {
  fill: #000;
}

.header-burger path {
  transition: all .3s ease;
}

.header-burger:hover path:nth-child(1) {
  transform: translateX(15px) translateY(10px);
  opacity: .5;
}

.header-burger:hover path:nth-child(2) {
  transform: translateX(-25px);
}

.header-burger:hover path:nth-child(3) {
  transform: translateX(15px) translateY(-10px);
  opacity: .5;
}

.header-burger svg {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
}

.services-item-title {
  width: 100%;
  min-height: 50px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  color:  var(--c-surface);
  padding: 0 10px;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.services-item .inner {
  display: block;
  width: 100%;
  position: relative;
}

.services-item-img {
    overflow: hidden;
}

.services-item-img img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: 2s;
  vertical-align: middle;
  border: 0;
}

.services-item-img img:hover {
  transform: scale(1.2);
  transition: 2s;
}

.form-submit-row {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.services-tabs {
  width: 100%;
  padding: 100px 50px 40px;
  margin: 0 auto;
}

.services-tabs h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 50px;
}

.services-tabs-row {
  display: flex;
}

.services-tabs ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.services-tabs li {
  margin-right: 25px;
}

.services-tabs a {
  color: rgba(34, 34, 34, .64);
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
}

.services-tabs a:hover {
    color: #000;
}

.services-tabs a.active {
  color: #000;
  position: relative;
  display: block;
}

.services-tabs a.active:before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  position: absolute;
  bottom: -15px;
  left: 0;
}

.services-about {
  width: 100%;
  padding: 70px 50px;
  background-color: var(--tinted-bg);
}

.services-about-title {
  color: #222;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 40px;
}

.services-about-text {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 300;
  color: #000;
  padding-left: 30px;
}

.services-content {
  padding: 0 50px 100px;
}

.services-content-block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.services-content-item {
  width: 50%;
}

.services-content-img img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.services-content-work-list,
.services-content-description {
  padding: 30px 15px 0 30px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 300;
  color: #000;
}

.services-about-text p, .services-content-description p,
.services-content-description ul {
  margin-bottom: 30px;
}

.services-callback {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 100px;
}

.services-callback-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.services-callback-title {
  max-width: 400px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.work-list li:before {
  content: '✓';
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

.services-list-item {
  min-height: 16px;
  margin-bottom: 15px;
  cursor: pointer;
}

.services-callback-form {
  display: block !important;
  color: gray !important;
}

.footer {
  background-color:  var(--c-surface);
  padding: 40px 10px;
  border-top: 1px solid rgba(179, 179, 179, .5);
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
}

.footer a {
  position: relative;
}

.fab {
  font-family: "Font Awesome 5 Brands";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-instagram:before {
  content: "\f16d";
}

.menu-shadow {
  position: fixed;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  top: 0;
  left: 0;
  z-index: 999;
  transition: all .4s ease;
}

@media (max-width: 1200px) {
  .services-tabs ul {
    width: auto;
    min-height: 100px;
    overflow-x: scroll;
  }

  .footer_social {
    margin-top: 15px;
  }
}

@media (max-width: 916px) {
  .nav-list {
    gap: 4px;
  }
}

@media (max-width: 787px) {
  .services-tabs {
    padding: 50px 20px 30px;
  }

  .services-tabs h1 {
    font-size: 35px;
  }

  .services-tabs a {
    font-size: 14px;
  }

  .services-about {
    padding: 50px 20px;
  }

  .services-about-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .services-about-text {
    padding-left: 0;
  }

  .services-about-text,
  .services-content-work-list,
  .services-content-description {
    font-size: 16px;
  }

  .services-content {
    padding-bottom: 80px;
  }

  .services-content-block {
    display: block;
  }

  .services-content-img img {
    display: block;
    margin: 0 auto;
  }

  .services-content-item {
    width: 100%;
  }

  .services-content-work-list,
  .services-content-description {
    padding: 20px;
  }

  .services-callback {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
  }

  .services-callback-inner {
    display: block;
  }

  .services-callback-left {
    margin-bottom: 30px;
  }

  .services-callback-title {
    font-size: 14px;
  }

  .cta-title {
    text-transform: uppercase !important;
  }
}

@media (max-width: 768px) {
  .cta-section .section_content {
    padding: 50px 0;
  }

  .cta-section .section_content {
    width: 100%;
    padding: 0 35px 20px 35px;
    flex-wrap: wrap;
  }

  .cta-section .section_content .left_wrap {
    width: 100%;
    margin-bottom: 30px;
  }

  .cta-section .cta_title {
    font-size: 30px;
    line-height: 36px;
    margin-top: 30px;
    margin-bottom: 8px;
  }

  .cta-section .cta_section_text {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .cta-section .section_content .cta-right {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .service-header {
    height: auto;
    padding: 20px;
  }
  
  .header-burger {
    height: 40px;
    width: 40px;
  }

  .service-header .header-title {
    font-size: 18px;
  }
}

@media (max-width: 586px) {
  .service-header .header-title {
    display: none;
  }
}

@media (max-width: 500px) {
  .header-right {
    display: none;
  }

  .hero-content h1  {
    font-size: 44px;
    line-height: 56px;
    margin-bottom: 32px;
  }
}


/* Mobile menu */

.menu-content {
  position: fixed;
  top: 0;
  right: -450px;
  height: 100%;
  width: 450px;
  background-color:  var(--c-surface);
  padding: 50px;
  z-index: 1000;
  transform: translateX(100%);
  transition: all .4s ease;
}

.menu-content-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.menu-logo {
  height: 84px;
  cursor: pointer;
}

.phone-wrapper {
  display: flex;
}

.menu-content .header_phone {
  position: absolute;
  top: 120px;
  left: 45px;
  font-size: 18px;
  line-height: 22px;
  display: contents;
}

.menu-content a {
  color: #000;
  text-decoration: none;
}

.menu-content .header_phone img {
  filter: invert(1);
  position: relative;
  top: -3px;
  vertical-align: middle;
}

.menu-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.menu-link {
  display: block;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  position: relative;
}

.menu-link:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: all .3s ease-out;
  transform: translateY(7px);
  opacity: 0;
}

.menu-link:hover:after {
  transform: translateY(0px);
  opacity: 1;
}

.menu-link:not(:last-child) {
  margin-bottom: 40px;
}

.menu-content a:hover {
  outline: 0;
}

.menu-content .go_to_cta {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 40px;
  border: 1px solid #000;
  transform: translateY(0px);
  transition: .3s;
}

.menu-content .go_to_cta:hover {
  transform: translateY(-10px);
  transition: .3s;
}

.menu-social-link:not(:last-child) {
  margin-right: 15px;
}

.menu-socials .menu-social-link {
  margin: 0 5px;
  width: 24px;
  height: 24px;
  display: inline-block;
  color:  var(--c-surface);
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .3);
}

.menu-socials .menu-social-link:hover {
  background-color: rgba(0, 0, 0, 1);
  opacity: 1;
  color:  var(--c-surface);
}

.fab {
  font-family: "Font Awesome 5 Brands";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-instagram:before {
    content: "\f16d";
}
