@font-face {
  font-family: GTWalsheimProBold;
  src: url("../font/GTWalsheimPro-Bold.ttf");
}
@font-face {
  font-family: GTWalsheimProReg;
  src: url("../font/GTWalsheimPro-Regular.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #26252d;
}
nav,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.common_width {
  width: 1300px;
  margin: 0rem auto;
}

/* header part */
.main_area header,
.main_area header nav {
  display: flex;
  align-items: center;
}
.main_area header {
  padding-top: 2rem;
  justify-content: space-between;
}
.main_area header nav {
  padding: 0rem 2rem;
  border-radius: 99px;
  background-color: #e4e4ef;
}
.main_area header nav li {
  width: 200px;
  display: flex;
  align-items: center;
  height: 50px;
  justify-content: center;
}
.main_area header nav a {
  font-family: GTWalsheimProReg;

  font-size: 18px;
  background-color: #e4e4ef;

  transition: 0.3s ease all;
  color: #000;
  position: relative;
}
.main_area header nav a::after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-70%);

  transition: 0.3s ease all;
  height: 3px;
  width: 100%;
  content: "";
}
.main_area header nav a:hover {
  color: #0059ff;
}
.main_area header nav a:hover::after {
  background-color: #0059ff;
  transform: translateX(-50%);
}

/* footer */
footer {
  margin-top: 8rem;
  background-color: #0059ff;
  padding-top: 4rem;
  padding-bottom: 7rem;
}
footer .footer_content {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.7fr 1fr;
  grid-gap: 1rem;
}
.footer_content .col > img {
  width: 80%;
}
footer .linkedin {
  display: flex;
  margin-top: 2rem;
  margin-left: 2rem;
  align-items: center;
}
footer .linkedin p {
  margin-left: 20px;
  width: 70%;
}
footer p,
footer a {
  font-family: GTWalsheimProReg;
  color: #fff;
  font-size: 20px;
}
footer ul {
  margin-top: 1.1rem;
}
footer ul > *:first-child a {
  font-size: 24px;
}
footer ul > * + * {
  margin-top: 1.5rem;
}
footer .footer_content .col:last-child {
  margin-top: 1.1rem;
}
footer .footer_content .col:last-child > * + * {
  margin-top: 1.5rem;
}
footer .footer_content .col:last-child form {
  background: #fff;
  display: flex;
  border-radius: 99px;
  align-items: center;
}
footer .footer_content .col:last-child form input {
  flex: 1;
  border-top-left-radius: 99px;
  border-bottom-left-radius: 99px;
  height: 50px;
  width: 100%;
  font-size: 16px;
  outline: none;
  border: none;
  padding: 0rem 1rem;
}
footer .footer_content .col:last-child form button {
  height: 50px;
  width: 130px;
  background-color: #ffa800;
  color: #fff;
  border: none;
  outline: none;
  font-size: 16px;
  border-top-right-radius: 99px;
  cursor: pointer;
  border-bottom-right-radius: 99px;
}

@media screen and (max-width: 1350px) {
  .common_width {
    width: 90%;
  }
}
@media screen and (max-width: 800px) {
  footer .footer_content {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .footer_content .col > img {
    width: 60%;
  }
  footer .footer_content {
    grid-template-columns: 1fr;
  }
  footer .linkedin {
    margin-left: 0px;
  }
  .main_area header .brand img {
    width: 200px;
  }
}
