* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  background: #fafafa;
  padding: 50px 8%;
  position: relative;
  font-weight: 600;
}

nav {
  background-image: url(images/circle.png);
  background-size: cover;
  background-position: right;
  padding: 10% 5% 15% 15%;
  position: absolute;
  left: -10%;
  top: -5%;
}

.logo {
  width: 60px;
  margin-bottom: 20px;
}

nav ul li {
  list-style: none;
  margin: 10px 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}
.contact-btn {
  position: absolute;
  top: 40px;
  right: 8%;
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.contact-btn img {
  width: 20px;
  margin-left: 15px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 10%;
}

.col-1 {
  max-width: 800px;
  padding-left: 13%;
  color: #333;
}

.col-1 h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 30px;
}

.col-1 span {
  color: #ff1d1d;
}

.profile-img {
  width: 80%;
  max-width: 450px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease-out;
}

.col-2 {
  margin-top: 50px;
  text-align: right;
  position: relative;
}

.back-img {
  position: absolute;
  width: 80%;
  max-width: 450px;
  top: -12px;
  right: 15px;
}

.profile-img:hover{
  transform: translate(-25px, -25px);
  cursor: pointer;
}

@media (max-width: 900px) {
  .col-1 {
    padding-left: 18%;
  }
}
