@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700;800;900&display=swap');
html {
  font-size: 62.5%;
}

body {
  font-family: 'proxima-nova', "Montserrat", sans-serif;
}

:focus {
  outline: none;
}

.half {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  float: left;
}

@media (min-width: 992px) {
  .half {
    width: 50%;
  }
}
.contact {
  min-height: 100vh;
  width: 100%;
}
.contact .title {
  margin: 0;
  padding: 40px 0 0 40px;
  font-size: 4rem;
  font-weight: 900;
  color: #0E1720;
}
.contact .title span {
  border-bottom: 5px solid #D9181D;
}
.contact-area {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.contact__content {
  margin: auto;
  width: 100%;
  padding: 0 40px;
}
.contact__content h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  font-weight: 800;
}
.contact__content p {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.contact__content p strong {
  font-weight: 500;
}
.contact__content__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact__content__links a {
  font-size: 2rem;
  margin-block: 16px;
  font-weight: 500;
  color: #D9181D;
  position: relative;
  transition: color 0.3s;
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  outline: none;
  text-decoration: none;
}
.contact__content__links a.link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #D9181D;
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transform: scaleX(0);
  transform-origin: left;
}
.contact__content__links a.link:focus, .contact__content__links a.link:active, .contact__content__links a.link:hover {
  color: #D9181D;
  text-decoration: none;
}
.contact__content__links a.link:focus::after, .contact__content__links a.link:active::after, .contact__content__links a.link:hover::after {
  transform: scaleX(1);
}
.contact__content__links__social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contact__content__links__social a {
  margin-bottom: 0;
}
.contact__content__links__social img {
  width: 24px;
}
.contact .decor {
  background: #D9181D;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .decor .logo {
  width: 40%;
}

@media (max-width: 1024px) {
  .contact .title {
    padding: 20px 0 0 5px;
  }
  .contact__content {
    margin-top: 40px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .contact__content {
    margin-top: 32px;
  }
  .contact__content h2 {
    font-size: 2.25rem;
  }
  .contact__content p {
    font-size: 2rem;
  }
  .contact__content__links a {
    font-size: 1.75rem;
  }
  .contact .decor {
    display: none;
  }
}

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