#world {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(#e4e0ba, #f7d9aa);
}


#scene-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.view-3d {
  background-color: var(--bg-primary);
  padding-top: 120px;
}

.view-3d-item {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;


}

.view-3d-item .view-model {

  width: 100%;
  border-radius: 0.25rem;
  height: 70vh;
  margin: auto;

}


.view-3d-item .name-model {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  width: 100%;
}

.header-3d-view {
  padding-top: 80px;

}
section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
 
  background: #a3b6f4;
  transition: 0.5s;

}


.content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.content .textBox {
  position: relative;
  max-width: 600px;
  padding-left: 40px;
}

.content .textBox h2 {
  color: #fff;
  font-size: 4em;
  line-height: 1.5em;
  font-weight: 900;
}

.content .textBox h2 span {

  font-size: 2em;

}

.content .textBox p {
  padding-top: 20px;
  color: var(--bg-white-07);

}

.content .textBox a {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #fff;
  color: #111;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.content .imgBox {
  height: auto;
  width: 600px;
  display: flex;
  padding-right: 50px;
  justify-content: flex-end;
}

.content .imgBox img {
  /* max-width: 260px; */
  height: auto;
  width: 600px;
  object-fit: cover;
  border-radius: 2rem;
}

.thumb {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
}

.thumb li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  cursor: pointer;
  transition: 0.5s;
}

.thumb li:hover {
  transform: translateY(-15px);
}

.thumb li img {
  
  height: 80px;
  object-fit: cover;
}

.sci {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

.sci li {
  list-style: none;
}

.sci li a {
  display: inline-block;
  filter: invert(1);
  margin: 5px 0;
  transform: scale(0.6);
}
/* all-product-3d */
.all-product-3d .item-3d{
 border: 1px solid var(--color-border);
 border-radius: 1rem;
 background-color: var(--color-white);
 padding: 20px;
 
}
.all-product-3d {
  padding: 60px 0;
}

.all-product-3d .top {
 text-align: center;
 padding: 20px 0;
}

.all-product-3d .top h1 {
  
  font-size: 60px;
  

}

.all-product-3d .top p {
  color: var(--color-text-secondary);
}
.view-all-3d-model{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.all-product-3d .item-3d {
  margin: 10px;
  transition: all .2s ease-in-out;
}
.all-product-3d .item-3d:hover{
  box-shadow: var(--box-shadow);
}
.all-product-3d .item-3d .view-3d-item{
  width: 100%;
  height: 250px;
  border-radius: 1rem;
  transition: all .2s ease-in-out;
  /* border: 1px solid var(--color-border); */
  background-color: var(--bg-primary);
  border: 1px solid var(--color-border);
  

}
.all-product-3d .item-3d .name-project{
  padding-top: 20px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  text-align: start !important;
}
.all-product-3d .item-3d .name-project .name a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 600;
}
.all-product-3d .item-3d .name-project .tool-edit {
  font-size: 12px;
  color: var(--color-text-secondary);
  padding-top: 10px;
}
.item-3d .name-project .link-download{
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}
.item-3d .name-project .link-download a {
  color: var( --color-text-secondary);
  font-size: 12px;
  text-decoration:none;

}
.item-3d .name-project .link-download a:hover{
  color: var(--color-primary);
}
.item-3d .name-project .link-download a svg {
  height: 20px ;
}
model-viewer > #ar-prompt {
  position: absolute;
  left: 50%;
  bottom: 60px;
  animation: elongate 2s infinite ease-in-out alternate;
  display: none;
}

model-viewer[ar-status="session-started"] > #ar-prompt {
  display: block;
}

model-viewer > #ar-prompt > img {
  animation: circle 4s linear infinite;
}