@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}
header{
  height: 100vh;
  width: 100%;
  background: url("images/background.png") no-repeat;
  background-position: center;
}
::selection{
  background: #a3f5ec;
}
header nav{
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 12;
}
.navbar{
  width: 90%;
  display: flex;
  margin: 20px auto 0 auto;
  align-items: center;
  justify-content: space-between;
}
  header nav .logo{
  height: 80px;
  width: 150px;
}
.logo img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
nav .menu{
  display: flex;
}
nav .menu li{
  list-style: none;
  margin: 0 10px;
}
nav .menu a{
  color: #2c3e50;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
}
nav .menu a:hover{
  color: darksalmon;
}
nav .search-box{
  position: relative;
  height: 40px;
  width: 250px;
}
.search-box input[type="text"]{
  position: absolute;
  font-size: 18px;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  outline: none;
  color: #2c3350;
  border: 2px solid #2c3350;
  background: #f2f2f2;
  padding: 0 10px 0 40px;
}

.text-content{
  position: absolute;
  top: 33%;
  left: 7%;
  z-index: 12;
  
}
header .text-content .text{
  font-size: 27px;
  color: #2c3350;
  
}
header .text-content .name{
color: #678983;
 font-size: 75px;
 font-weight: 600;
 margin: -20px 0 0 -3px;
}
header .text-content .job{
 color: #2c3350;
 font-size: 40px;
 margin: 5px 0;
 margin-top: -4px;
 display: flex;
}

.text-content .job .one{
  color: #1de2d1;
}
.text-content .job .two{
  color: #1de2d1;
}
.buttons{
  margin: 20px 0 0 50px;
}
.text-content .buttons button{
  outline: none;
  margin: 0 10px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  color: #fff;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: linear-gradient( 135deg, #2AFADF     10%, #C346C2 100%);
}
.buttons button:hover{
  transform: scale(1.2);
  transition: all .5s ease;
  background-image: linear-gradient( 135deg, #C346C2     10%, #2AFADF 100%);

}

header .media-icons{
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 40px;
  bottom: 40px;
}
.media-icons a{
 margin-top: 8px;
 font-size: 20px;
 font-weight: 500;
 text-decoration: none;
 opacity: 0.7;
 color: #2c3350;
 transition: all 0.3s ease;
}
.media-icons a:hover{
 opacity: 1;
}

p.creators{
  width: 100%;
  display: flex;
  margin: 100px auto 10 auto;
  align-items: center;
  justify-content: space-between;
}

.maincontact {
  text-align:center;
}
.contact_title {
  font-size: 3rem;
  color:rgb(36, 48, 94);
  margin-top: 10rem;
  
}


.contact_input_button:hover {
  background-position: 100%;
  color: #678983;
  background-color:rgb(186, 207, 184);
  cursor: pointer;
}
.contact_input_button{
  font-family: "Montserrat", "sans-serif";
  border-radius: 5px;
  font-weight: 500;
  width: 15rem;
  /* color: rgb(19, 43, 16); */
  color: white;
  font-size:1.5rem;
  padding: 1rem 2rem;
  background-color: white;
  border: 3px solid #181D31;
  background-image: -webkit-linear-gradient(30deg, #181D31 50%, transparent 50%);
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
  margin-top: .6rem;
}

.contact_input {
  font-size: 1.2rem;
  margin-top: 1rem;
}



.homeimage {
  padding-top: 20rem;
  display: relative;
}

.HeroThing {
  display: flex;
  margin: 12rem 0 25rem 0;
  justify-content: space-between;
  align-items: center;
}
.contact_input1 {
  background-color:#F0E9D2;
}
input[type=text] {
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}

input[type=text]:focus {
  border: 3px solid #555;
}

input[type=email] {
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}

input[type=email]:focus {
  border: 3px solid #555;
}

.feedback_desc {
  color:cornflowerblue;
}