:root {
  --h1-color: #fff;
  --text-color: #fff;
  --btn-color-bg: linear-gradient(90deg, #007de4 14.17%, #05abe3 99.98%);
  --btn-color-text: #fff;
  --badge-color-bg: rgba(255, 250, 247, 0.17);
  --badge-color-border: #fff;
  --badge-color-text: #fff;
}

* {
  margin: 0;
  padding: 0;
}

img{
  object-fit: cover;
}

.landing-background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: auto;
}

body {
  font-family: "Manrope", sans-serif;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

main {
  display: flex;
  height: -webkit-fill-available;
  height: -moz-available;
  position: relative;
  z-index: 2;
}

.container {
  height: 100vh;
  padding: 55px 0 20px 50px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.logo-list {
  display: flex;
  gap: 25px;
  align-items: center;
}

.logo-list span {
  color: #fff;
  font-weight: 300;
  font-size: 18px;
}

.info {
  margin-top: 5%;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info, .slider{
  width: 50%;
}

h1 {
  color: var(--h1-color);
  font-size: 74px;
  font-style: normal;
  font-weight: 800;
  line-height: 74px;
}

.subtitle {
  margin: 30px 0;
  color: var(--text-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 37px;
}

.name-model{
  height: 29px;
}

.main-btn {
  display: block;
  width: fit-content;
  text-decoration: none;
  background: var(--btn-color-bg);
  border-radius: 15px;
  padding: 22px 53px;
  box-sizing: border-box;
  color: var(--btn-color-text);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 37px;
  text-transform: uppercase;
}

.list-badges {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 12px;
  border: 0.5px solid var(--badge-color-border);
  background: var(--badge-color-bg);
  backdrop-filter: blur(12px);
  color: var(--badge-color-text);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
}

/* .slider{
    margin-top: auto;
     padding-left: 20px;
    overflow: hidden;
}

.swiper {
  display: flex;
  align-items: flex-end;
  gap: 17px;
 padding-top: 25px;

}

.main-card{
position: relative;
}


.card-img {
flex: 0 0 auto;
  width: 292px;
  height: 346px;
  border-radius: 30px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  position: absolute;
width: 100%;
    margin: 25px 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background: #fff;
} 

.card-img.focus {
  width: 380px;
  height: 450px;
  border-radius: 30px;
  border: 3px solid #fff;
  
} */


.slider {
  margin-top: auto;
  padding-left: 17px;
  overflow: hidden;
  position: relative;
  padding-bottom: 80px;
}

.swiper {
  display: flex;
  align-items: flex-end;
  gap: 17px;
  padding-top: 25px;
}

.card-img {
  flex: 0 0 auto;
  width: 292px;
  height: 346px;
  border-radius: 30px;
  border: 3px solid transparent;
  transition: all 0.6s ease;
}

.card-img.focus {
  width: 380px;
  height: 450px;
  border-radius: 30px;
  border: 3px solid #fff;
  z-index: 2;
}

.dots {
  display: flex;
  justify-content: flex-start;
  padding-left: 10%;
  gap: 7px;
  position: absolute;
  width: 100%;
  margin: 25px 0;
  bottom: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background: #fff;
}

@media (max-width:1300px) {
  h1{
    font-size: 60px;
    line-height: 60px;
  }

  .subtitle{
    font-size: 20px;
    line-height: 27px;
  }

  .main-btn{
    font-size: 24px;
    line-height: 27px;
  }

  .badge-item{
    font-size: 22px;
    line-height: 25px;
  }
}

@media (max-width:1024px){
  main{
    flex-direction: column;
  }

  .info, .slider{
    width: 100%;
  }

  .list-badges{
    margin-top: 60px;
  }

  h1, .subtitle{
    max-width: 65%;
  }

  h1 {
    font-size: 50px;
    line-height: 50px;
  }

  .subtitle {
    font-size: 18px;
    line-height: 25px;
  }

  .main-btn {
    font-size: 20px;
    line-height: 22px;
  }

  .info{
    margin-top: 3%;
    padding-bottom: 15px;
  }

  .container{
    padding: 60px 20px;
  }

  .badge-item{
    font-size: 18px;
    line-height: 20px;
    padding: 10px;
  }

  .badge-item img{
    width: 34px;
    height: 34px;
  }

  .list-badges{
    gap: 15px;
  }

  body{
    background-position: top;
  }

  .card-img{
    width: 182px;
    height: 236px;
    border-radius: 15px;
  }

  .card-img.focus {
    width: 250px;
    height: 350px;
    border-radius: 15px;
  }

  .container{
    height: auto;
  }

  .slider{
    height: 380px;
  }

  .dots{
    justify-content: center;
    padding-left: 0;
  }
}

@media (max-width:745px){
  h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .subtitle {
    font-size: 16px;
    line-height: 21px;
    margin: 20px 0;
  }

  .main-btn {
    font-size: 18px;
    line-height: 18px;
    border-radius: 11px;
    padding: 22px 33px;
  }

  .logo-onlyfans, .name-model{
    height: 20px;
  }

  .logo-list{
    gap: 10px;
  }

  .logo-list span{
    font-size: 14px;
    line-height: 14px;
  }
}

@media (max-width:475px){
  .info{
    margin-top: 20px;
  }

  h1 {
    font-size: 37px;
    line-height: 37px;
  }

  .subtitle {
    font-size: 13px;
    line-height: 17px;
    margin: 15px 0 20px;
  }

  .main-btn {
    font-size: 14px;
    line-height: 15px;
    padding: 16px 22px;
  }

  .badge-item{
    padding: 9px 10px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 16px;
  }

  .badge-item img{
    width: 25px;
    height: 25px;
  }

  .list-badges{
    margin-top: 50px;
  }

  .card-img{
    width: 135px;
    height: 165px;
    border-radius: 14px;
  }

  .card-img.focus {
    width: 179px;
    height: 212px;
    border-radius: 14px;
  }

  h1{
    max-width: 100%;
  }

  .slider{
    height: 240px;
  }

  .dots{
    width: fit-content;
    margin-left: 15%;
  }
}

@media (max-width:390px){
  .dots{
    margin-left: 8%;
  }
}
