* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei";
  scroll-behavior: smooth;
}

/* 
===============
    Navbar
===============
*/

#main {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

nav {
  height: 8vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

nav ul li a {
  color: #fef5f1;
  font-size: 18px;
  font-weight: bold;
  margin: 15px 12px;
  text-decoration: none;
}

#logo {
  width: 40%;
  height: 40%;
  cursor: pointer;
}

#homeBtn {
  color: #e85514;
  text-decoration: underline;
}

#hero {
  height: 92vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fef5f1;
}

.btn {
  background-color: #e85514;
  border: 2px solid white;
  border-radius: 5px;
  padding: 7px 10px;
  color: #fef5f1;
  font-size: 18px;
  transition: 0.2s ease all;
}

#tagline {
  margin: 30px;
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: lighter;
}
#search {
  display: flex;
}

#searchBtn {
  font-weight: bold;
  padding: 5px 22px;
  cursor: pointer;
  margin: 0px 20px;
}
#searchInput {
  padding: 0px 30px;
  text-indent: 5px;
  border-radius: 5px;
  border: 2px solid white;
  font-size: 16px;
  font-weight: lighter;
}

#heading {
  font-size: 50px;
  letter-spacing: 2px;
}

/* 
===============
    Services
===============
*/

#services {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/bg1.jpg");
  width: 50%;
  background-size: cover;
  color: #fef5f1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  height: 200px;
  margin: 20px;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
}

#servicesHeading {
    color: #E85514;
    margin-top: 40px;
    font-size: 40px;
    text-align: center;
}

#servicesBtn {
    font-weight: bolder;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
}


/* 
===============
    Portfolio
===============
*/
#portfolio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #E85514;
}
.portfolio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 40px
}

#businessCard, #logoDesign, #letterHead {
    width: 50%;
}

.text, .photo {
    width: 50%;
}

.portfolioImg {
    cursor: pointer;
    transition: 0.3s ease all;
}

.portfolioImg:hover {
    transform: scale(1.5);
}

#portfolioHeading {
    margin-top: 40px;
    text-align: center;
    font-size: 40px;
    color: #E85514;
}

/* 
===============
Contact Us
===============
*/

#contact {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

.socialMediaIcon {
    width: 7%;
}

.handle, .socialMediaIcon {
    display: inline;
}

.formInput {
  width: 80%;
  height: 20%;
  text-indent: 15px;
  border-radius: 5px;
  border: 2px solid white;
  font-size: 16px;
  font-weight: lighter;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(188, 188, 190);
  margin: 10px 0px;
}
#contactMessageInput {
  height: 50%;
}

#leftContact, #rightContact {
  width: 50%;
  text-align: center;
  height: 70vh;

}

#leftContact {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url("../img/bg2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: white;
}

#rightContact {
  border-width: 1px;
  border-style: solid;
  border-color: rgb(188, 188, 190);
  display: flex;
  flex-direction: column;
}

#contactHeading {
  font-size: 40px;

}

.btn:hover {
  background-color: #bf410a;
}

.socialMedia {
  display: flex;
  justify-content: center;
  align-items: center;
}

.handle {
  margin-left: 15px;
}

/* 
===============
    Footer
===============
*/

footer {
  background-color: #E85514;
  color: white;
  text-align: center;
  height: 6vh;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;

}