:root {
  --brand-black: hsl(197, 44%, 19%);
  --bot-height: 80vh;
}
* {
  box-sizing: border-box;
}

/* body {
  padding: 3rem 1rem;
  font-family: sans-serif;
  color: var(--brand-black);
} */

/* @media (min-width: 800px) {
  body {
    max-width: 800px;
    margin: 0 auto;
  }
} */

/* p {
  font-size: 1.2rem;
  line-height: 1.3;
} */

/* .container {
  width: 100%;
  margin: 0;
} */

.text-center {
  text-align: center;
}

/* Font sizes */
/* .xl {
  font-size: 3.5rem;
} */

/* .large {
  font-size: 2rem;
} */

/* Padding */
/* .reset-padding {
  padding: 0;
} */

/* Margin */
/* .reset-margin {
  margin: 0;
} */

/* .large-margin {
  margin-top: 2rem;
} */

/* .medium-margin {
  margin-top: 1.5rem;
} */

header {
  width: 100%;
  margin-bottom: 3rem;
}

main {
  width: 100%;
  height: 80vh;
}

/* header img {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  height: auto;
} */

h1 {
  font-family: 'Baloo Bhaina', sans-serif;
  line-height: 1.2;
}

/* h2, h3, h4 {
  font-family: 'Baloo Bhaina', sans-serif;
  line-height: 1.2;
} */

@media (min-width: 768px) {

  /* body {
    display: flex;
  } */

  header {
    width: 50vw;
    margin-right: 5vw;
  }  

  main {
    width: 45vw;
  }

  .xl {
    font-size: 5rem;
  }

  .large {
    font-size: 3rem;
  }


}


/*----------contact-section-----------------*/
/* #contact{
  position: relative;
  background-repeat:no-repeat;
  background-size: 30% 30%;
  background-position:bottom center;
  height: 130vh;
 
  }
  
.contact-form{
  background: url(../img/env-contact.svg) no-repeat;
  background-size: 60% 22%;
  background-position:bottom right;
  background-color: rgba(138, 118, 186,0.1);
  background-blend-mode: color;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  width: 350px;
  min-height: 350px;
  padding:  50px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 210px auto;
  border-radius: 10px;
  box-shadow: 2px 5px 5px #ddd;
}
.contact-form:hover{
  box-shadow: 4px 8px 10px #ddd;
}
.contact-form form{
  padding-top: 50px;
}

.contact-form div input,textarea{
  width: 250px;
  height: 35px;
  border: 2px solid #bbb;
  border-radius: 5px;
  background: transparent;
  }
.contact-form div input:focus,textarea:focus{
  background: #fff;
  animation: input-background-animation 0.5s linear;
  }
@keyframes input-background-animation{
  0%{
      box-shadow: inset 0 0 0 0, inset 0 0 0 0;
  }
  10%{
      box-shadow: inset 0 0 5px 5px #ddd, inset 0 0 10px 10px #ccc;
  }
  }

.contact-form div textarea{
  min-height:100px;
  }
.contact-form .fa{
  color: #8A76BA;
  }  
  
.contact-form button{
  width: 100px;
  height: 40px;
  background: #FF6C3D;
  color: #fff;
  font-family: poppins;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
  outline: none;
  }

.contact-form button:active{
  transition: 0.1s;
  animation: contact-btn-anim 0.5s linear;
  }

@keyframes contact-btn-anim{
  0%{
      
      box-shadow: 0 0 0 0 ;
      
  }
  100%{
    
      box-shadow: inset 0 0 5px 5px orangered, inset 0 0 10px 10px salmon ;
  }
  } */

/*-----X-----contact-section---------X--------*/
