:root {
  --main-orange: #ffc045;
  --main-blue: #065471;
  --main-white: #fff;
  --main-black: #343434;
  --main-bg:rgba(255, 255, 255, 0.4);
}

body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

.main {
  background: rgb(182, 182, 182);
  background: radial-gradient(
    circle,
    rgba(130, 182, 182, 1) 0%,
    rgba(50, 96, 96, 1) 100%
  );
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main__wrapper {
  max-width: 1336px;
  padding:0 48px;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.main__header {
  margin-bottom: auto;
  padding: 0.75rem;
}

.main__header img {
  max-width: 60px;
}

.main__content {
  display: flex;
  text-align: center;
  width: 100%;
  max-width: 1240px;
  color: var(--main-white);
  position: relative;
  gap:40px;
  align-items: center;
  padding:48px;
  border-radius: 32px;
  background: radial-gradient(
    circle,
    rgba(130, 182, 182, 1) 0%,
    rgba(50, 96, 96, 1) 100%
  );
  box-shadow: 0 0 25px 10px rgba(0,0,0,.1);
}
.main__social{
  display: flex;
  gap:12px;
  margin-bottom: 16px;;
}
.main__social-icon{
  width:48px;
  height: 48px;
  display: block;
  padding:4px;
  border-radius: 48px;
  background:var(--main-bg);
  display: flex;
  transition: 0.2s all linear;
}

.main__social-icon img{
  position: relative;
  z-index: 1;
}

.main__social-icon--ln::before{
  content:"";
  display: block;
  position: absolute;
  width:38px;
  height: 38px;
  margin:1px;
  background:var(--main-white);
  border-radius: 38px;
}

.main__social-icon:hover{
  box-shadow:0 0 6px 6px rgba(50, 96, 96, 0.2);
}

.main__social-icon img, .main__social-icon svg{
  max-width: 100%;
  border-radius: 40px;
}

.main__social-icon--mail svg path{
  fill:#fff;;
}

.main__content h1::before{
  content:"";
  width: 300px;
  height: 300px;
  display: block;
  position: absolute;
  background-color:#fff;
  border-radius: 300px;
  opacity: 0.1;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  display: none;
}
.main__me{
  width:300px;
  height: 300px;
  border-radius: 400px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.4);
}

.main__description{
  width:calc(100% - 340px);
}
.main__content img{
  max-width: 100%;
  height: auto;
}

.main h1 {
  text-align: left;
  margin:0 0 12px 0;
  position: relative;
}

.main__company {
  font-size: 3rem;
  letter-spacing:6px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.1);
}

.main__company-firstname{
  color:#f2ffce;
}

.main__tags{
  display: flex;
  gap:8px;
  max-width: 400px;
  flex-wrap: wrap;
}

.main__tag{
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 12px;
  padding:4px 8px;;
  border-radius: 16px;
  background: rgba(255,255,255, 0.1);
}

.main__brange {
  font-weight: 400;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  letter-spacing: 3px;
}

.main__work-inner{
  display: flex;
  gap:8px;
}

h4{
  text-align: left;
  font-size: 18px;
  margin:0 0 12px 0;
  font-weight: 400;
}

.main__project{
  display: flex;
  flex-direction: column;
  text-align: left;
  background-color:rgba(255, 255, 255, 0.1);
  padding:12px;
  border-radius: 8px;
  gap:8px;
}
.main__project h5 {
  margin:0 0 8px 0;
}

.main__project a{
  color:#f2ffce;
}

.main__project h5 a{
  color:var(--main-white);
  text-decoration: none;
  font-weight: 300;
  font-size: 18px;
  margin:0 0 8px 0;
}

.main__project h5 svg{
  width:24px;
}

.main__project h5 a:hover{
  color:#f2ffce;
}

.main__project label{
  font-weight: 700;
  letter-spacing: 1px;
  width: 100px;
  display: block;
}

.main__lists{
  display: flex;
  flex-wrap: wrap;
  gap:24px;
}

@media screen and (max-width:1024px){
  .main__content{
    gap:32px;
  }
  .main__me{
    width:240px;
    height: 240px;
  }
  .main__description{
    width:calc(100% - 272px);
  }
}

@media screen and (max-width:920px){
  .main{
    height: auto;
  }
  .main__content{
    flex-wrap: wrap;
  }
  .main__wrapper{
    padding:24px;
  }
  .main__me{
    width:240px;
    height: 240px;
  }
  .main__description{
    width:100%;
  }
}

@media screen and (max-width:620px){
  .main__content{
    padding:24px;
    gap:24px;
  }
  .main__me{
    display: block;
    margin: 0 auto;
  }
  .main__work-inner{
    flex-wrap: wrap;
  }
  .main__project{
    width: 100%;
  }
}
@media screen and (max-width:420px){
  .main__wrapper{
    padding:12px;
  }
}