/* FONTS */
/* COLORS */
/* SHADOWS */
/* MEDIA QUERIES */
/* UTILITIES */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: neue-kabel, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-image: url("/img/bg/bg.png");
  background-size: cover;
}

body::-webkit-scrollbar {
  width: 17px;
  /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #dbdbdb;
  /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #888888;
  /* color of the scroll thumb */
  border-radius: 100px;
  /* roundness of the scroll thumb */
  /* border: 3px solid orange; */
  /* creates padding around scroll thumb */
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

input,
textarea {
  padding: 1rem;
  border: none;
  outline: none;
}

::-moz-placeholder {
  opacity: 1;
}

::-webkit-input-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

.hidden {
  display: none !important;
}

/* TEXT */
h1 {
  font-size: 40px;
  line-height: 1.3;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 50px;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 60px;
    line-height: 1.5;
  }
}

h2 {
  font-size: 25px;
  line-height: 1.3;
}

@media screen and (min-width: 1280px) {
  h2 {
    font-size: 30px;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1280px) {
  h2 {
    font-size: 35px;
    line-height: 1.5;
  }
}

p {
  margin: 12px 0;
  font-size: 15px;
  line-height: 1.3;
}

@media screen and (min-width: 1280px) {
  p {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media screen and (min-width: 1440px) {
  p {
    font-size: 17px;
    line-height: 1.5;
  }
}

a {
  text-decoration: none;
}

.container {
  width: 1140px;
  max-width: 100vw;
  margin: 0 auto;
  background: #fff;
  border-top: 10px solid #4a92c6;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 0;
  row-gap: 0;
  box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 768px) {
  .container {
    border-radius: 15px;
    max-width: 85vw;
    border: none;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    grid-template-columns: 1fr 1fr;
  }
}

.container .content {
  padding: 15% 12%;
}

.container .content .name {
  display: block;
  font-weight: 300;
  color: #444;
  font-size: 20px;
  margin-bottom: 5px;
}

.container .content .logo {
  font-weight: 500;
  color: #494949;
  font-size: 35px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

@media screen and (min-width: 1280px) {
  .container .content .logo {
    margin-bottom: 38px;
  }
}

.container .content .title {
  font-weight: 500;
  font-size: 45px;
  line-height: 1.1;
  color: #0e0d0d;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

@media screen and (min-width: 1440px) {
  .container .content .title {
    font-size: 47px;
  }
}

.container .content .contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 50px;
}

@media screen and (min-width: 1280px) {
  .container .content .contact {
    margin-bottom: 180px;
  }
}

.container .content .contact a {
  display: block;
  font-size: 25px;
  color: #444;
}

.container .content .contact img {
  width: 40px;
}

.container .content p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
  margin: 5px 0;
}

.container .side {
  background-image: url("/img/hero.png");
  background-size: cover;
  background-position: center right;
  min-height: 350px;
}
/*# sourceMappingURL=styles.css.map */