:root {
  --color-black: #0000;
  --color-yellow: #F2C61A;
  --color-white: #fff; }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  background: url("/images/bg.png");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh; }

html {
  font-size: 62.5%;
  box-sizing: border-box;
  /* any paddings and borders are removed*/ }
  @media (max-width: 500px) {
    html {
      font-size: 30%; } }

.header {
  min-height: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.logo {
  display: flex;
  margin-left: 3rem; }

.social {
  display: inline-flex;
  align-items: baseline;
  margin-right: 1%;
  justify-content: end;
  width: 8%; }

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center; }
  .content__title h1 {
    justify-content: center;
    display: inherit; }
  .content__text {
    width: 70rem;
    font-weight: 300; }

footer {
  position: absolute;
  bottom: 10%;
  font-size: 1.4rem;
  font-weight: 300; }

.contact {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%; }
  .contact__call {
    justify-content: center;
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1;
    text-align: center; }
  .contact__email {
    border-left-color: var(--color-white);
    border-style: solid;
    border-left-width: 1px;
    border-top: none;
    border-bottom: none;
    border-right: none;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; }
  .contact__find {
    border-left-color: var(--color-white);
    border-style: solid;
    border-left-width: 1px;
    border-top: none;
    border-bottom: none;
    border-right: none;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; }

.yellow {
  color: var(--color-yellow); }

.logo {
  height: 3.25rem; }

.social a svg:hover {
  transform: scale(1.1);
  transition: 0.5s; }
  .social a svg:hover path {
    fill: var(--color-yellow); }

.content {
  text-align: center;
  justify-content: center; }
  .content__title {
    font-size: 3.2rem; }
    @media (max-width: 500px) {
      .content__title {
        font-size: 2rem; } }
  .content__sub {
    font-size: 2.5rem;
    margin-top: 5rem; }
    @media (max-width: 500px) {
      .content__sub {
        font-size: 1.8rem; } }
  .content__text {
    font-size: 1.8rem;
    margin-bottom: 5rem;
    margin-top: 5rem; }

.form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center; }
  .form__input {
    color: var(--color-yellows);
    vertical-align: middle;
    width: 45rem;
    border: 1px solid var(--color-yellow);
    padding: 0 10px;
    height: 40px;
    text-align: left;
    background: transparent; }
    @media screen and (max-width: 800px) {
      .form__input {
        width: calc(100% - 39rem); } }
    @media (max-width: 500px) {
      .form__input {
        width: calc(100% - 20rem); } }
  .form__input::placeholder {
    color: #ffff;
    opacity: 1;
    /* Firefox */ }
  .form__submit {
    vertical-align: middle;
    border: 0;
    text-align: center;
    background: var(--color-yellow);
    width: 20rem;
    padding: 0px 2.5pxs;
    color: var(--color-white);
    letter-spacing: .3rem;
    cursor: pointer;
    margin-left: -5px;
    height: 42px;
    display: inline-block; }
