@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* RESET STYLES */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

input,
textarea {
  width: 100%;
}

input,
textarea,
button {
  outline: none;
}

button {
  background: none;
  color: inherit;
  border: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

/* GLOBAL STYLES */
html {
  font-family: "Poppins", sans-serif;
}

body {
  background: #0014d4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
}

.input {
  padding: 12px 12px;
}

.text-area {
  padding: 12px 12px;
  font-family: inherit;
  resize: none;
}

/* HEADER */
.header {
  width: 100%;
}

.header-content {
  height: 100px;
  display: flex;
  align-items: center;
}
.social-icons img{
    width: 50px!important;
    height: 50px!important;
}

/* HERO SECTION */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 58.33%;
  color: white;
  min-height: 590px;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
}

.hero-content > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: center;
}

.hero-content > picture {
  display: flex;
  height: 100%;
  justify-content: center;
}

.hero-content > picture > img {
  max-width: 536px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-content > picture > img {
    max-width: 400px;
  }

  .hero-content > picture {
    grid-row: 1;
  }
}

.hero-content > div > div:nth-child(1) > p:nth-child(1) {
  font-size: 1.5rem;
  line-height: 2rem;
  --tw-text-opacity: 1;
  color: rgb(189 189 189 / var(--tw-text-opacity));
  font-weight: 700;
}

@media (min-width: 1280px) {
  .hero-content > div > div:nth-child(1) > p:nth-child(1) {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.hero-content > div > div:nth-child(1) > h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700 !important;
}

@media (min-width: 1280px) {
  .hero-content > div > div:nth-child(1) > h1 {
    font-size: 3.75rem;
    line-height: 1 !important;
  }
}

.hero-content > div > p:nth-child(2) {
  font-size: 1rem;
  line-height: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-content > div > p:nth-child(2) {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}


