@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


.bgimg{
    background-image: url('./img/piggy-3610444_1280.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-position-y: 15%;
    background-position-x :0%;
    background-size:cover;
}
.orange{
    color: #ed5226;
}
.black{
    color: black;
}
.blackbg{
    background-color: black;
}
.grad{
    background: rgb(0,0,0);
background: linear-gradient(90deg, rgba(0, 0, 0, 0.692) 0%, rgba(0, 0, 0, 0.637) 500%);
}
.poppins{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.poppins700{
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}
.logo{
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.logo:hover{
    color:  #ed5226;
}
.comtext{
color: white;
font-family: "Poppins", sans-serif;
font-weight: 400;
}
.comtext:hover{
    border-bottom: solid 2px white;
    color: #ed5226;
}
.headline{
    font-size: 100px;
    color: #ed5226;
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: normal;
}
.headline:hover{
    color: white;
}
.borderorg{
    border: solid 2px #ed5226;
}
/* nav bar */
.logosize{
    height: 70px;
}


section {
  position: relative;
  z-index: 3;
  padding-top: 50px;
  padding-bottom: 50px;
}

.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header h2 {
  color: #FFF;
  font-weight: bold;
  font-size: 3em;
  margin-bottom: 20px;
}

.section-header p {
  color: #FFF;
}

.row  {
  display: flex;
  flwx-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.contact-info {
  width: 50%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
}

.contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color: #1da9c0;
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #FFF;
  font-size: 1em;
}

.contact-form {
  background-color:transparent;
  padding: 40px;
  width: 45%;
  padding-bottom: 20px;
  padding-top: 20px;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea{
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  background-color:transparent;
  border-bottom: 2px solid #ffffff;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #f8f8f8;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box textarea:focus ~ span{
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"]
{
  width: 100%;
  background: #00bcd4;
  color: #FFF;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #00bcd4;
  transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover
{
  background: #FFF;
  color: #00bcd4;
}



@media screen and (max-width: 500px) {
  .headline{
      font-size: 50px;
      color: #ed5226;
      font-family: "PT Serif", serif;
      font-weight: 700;
      font-style: normal;
  }
  .logosize{
      height: 50px;
  }
  .logo{
      color: white;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 15px;
  }

}

@media (max-width: 991px) {
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .row {
    flex-direction: column;
  }
  
  .contact-info {
    margin-bottom: 40px;
    width: 100%;
  }
  
  .contact-form {
    width: 100%;
  }
}



