/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(220, 100%, 99%);
  --dark-color: hsl(240, 3.6%, 16.3%);
  --secondary-color: hsl(0, 100%, 98%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --title-font-size: 2.8rem;
  --large-font-size: 1.8rem;
  --normal-font-size: 1.1rem;
  --small-font-size: .9rem;
  --smaller-font-size: .85rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  --d: 400ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);

}
@media screen and (max-width: 1118px) {
  :root {
    --title-font-size: 2.4rem;
    --large-font-size: 1.4rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.95rem;
    --smaller-font-size: 0.85rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

/*=============== HERO ===============*/

.hero__container {
    width: 100%;
    height: 50vh;
    background-image: url(https://images.unsplash.com/photo-1616432043562-3671ea2e5242?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position-y: 55%;
}

.hero__content {
    text-align: center;
}

.hero__title {
    display: flex;
    font-size: var(--title-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--body-color);
    margin-bottom: 0rem;
}

/*=============== CONTACT ===============*/

.contact__contacts {
    background-color: var(--secondary-color);
    padding: 2% 0%;
    margin-bottom: 0%;
}

/*=============== FORM ===============*/

.form__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2%;
  margin-top: 4%;
}

.form__title {
  font-size: var(--title-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}


.contact__form__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2%;
    margin: 2% 30%;
    box-sizing: border-box;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
    @media screen and (max-width: 1118px) {
        margin: 2% 5%;
    }
}

.contact__form__group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2% 0;
    margin: 0%;
    box-sizing: border-box;
}

input {
  border-radius: 5px;
  padding: 1%;
  font-size: var(--normal-font-size);
  width: 100%;
  background-color: var(--secondary-color);
    border: 0.2rem solid var(--title-color);
}

label {
    display: flex;
    padding-bottom: 5px;
    font-size: var(--normal-font-size);
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

select {
  width: 100%;
  height: 100%;
  font-size: var(--normal-font-size);
  border: 0.2rem solid var(--title-color);
  background-color: var(--secondary-color);
  border-radius: 5px;
}

textarea {
  width: 100%;
  border-radius: 5px;
  font-size: var(--normal-font-size);
  background-color: var(--secondary-color);
    border: 0.2rem solid var(--title-color);
  resize: none;
}



