.sky-whychoose{
  width:100%;
  background:#F8F4EA;
  padding:90px 20px;
  overflow:hidden;
  font-family:'Inter',sans-serif;
}

.sky-whychoose-wrap{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.sky-whychoose-images{
  position:relative;
  min-height:520px;
}

.sky-whychoose-images img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.sky-img-main{
  position:absolute;
  top:0;
  right:30px;
  width:310px;
  height:310px;
  border:14px solid #5E0006;
  border-radius:50% 50% 50% 0;
  overflow:hidden;
  z-index:3;
}

.sky-img-small{
  position:absolute;
  overflow:hidden;
  z-index:4;
}

.sky-img-one{
  left:35px;
  top:110px;
  width:190px;
  height:190px;
  border:12px solid #D53E0F;
  border-radius:50% 50% 0 50%;
}

.sky-img-two{
  left:165px;
  bottom:95px;
  width:170px;
  height:120px;
  border:12px solid #5E0006;
  border-radius:70px 0 0 70px;
}

.sky-img-three{
  right:85px;
  bottom:55px;
  width:175px;
  height:175px;
  border:12px solid #D53E0F;
  border-radius:50%;
}

.sky-dot-pattern{
  position:absolute;
  right:25px;
  bottom:145px;
  width:105px;
  height:95px;
  background-image:radial-gradient(#5E0006 3px, transparent 3px);
  background-size:18px 18px;
  opacity:0.55;
}

.sky-why-badge{
  display:inline-block;
  color:#D53E0F;
  font-size:13px;
  font-weight:900;
  letter-spacing:1.4px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.sky-whychoose-content h2{
  color:#2C1A1D;
  font-family:'Cormorant Garamond',serif;
  font-size:46px;
  line-height:1.08;
  font-weight:900;
  margin:0 0 25px;
}

.sky-why-list{
  display:grid;
  gap:22px;
}

.sky-why-item{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:18px;
  align-items:flex-start;
  position:relative;
}

.sky-why-item:not(:last-child)::after{
  content:"";
  position:absolute;
  left:28px;
  top:58px;
  width:1px;
  height:34px;
  border-left:2px dotted #D53E0F;
  opacity:0.6;
}

.sky-why-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  border:2px dashed #D53E0F;
  color:#D53E0F;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#FFF8F1;
}

.sky-why-item.active .sky-why-icon{
  background:#D53E0F;
  color:#FFF8F1;
  border-color:#D53E0F;
}

.sky-why-icon svg{
  width:27px;
  height:27px;
}

.sky-why-item h3{
  margin:0 0 7px;
  color:#2C1A1D;
  font-size:19px;
  font-weight:900;
  line-height:1.25;
}

.sky-why-item p{
  margin:0;
  color:#4A2B2B;
  font-size:15px;
  line-height:1.65;
  font-weight:500;
}

@media(max-width:1024px){
  .sky-whychoose-wrap{
    grid-template-columns:1fr;
    gap:45px;
  }

  .sky-whychoose-images{
    max-width:620px;
    width:100%;
    margin:0 auto;
  }
}

@media(max-width:600px){
  .sky-whychoose{
    padding:65px 16px;
  }

  .sky-whychoose-images{
    min-height:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .sky-img-main,
  .sky-img-one,
  .sky-img-two,
  .sky-img-three{
    position:relative;
    inset:auto;
    width:100%;
    height:190px;
    border:6px solid #D53E0F;
    border-radius:22px;
  }

  .sky-dot-pattern{
    display:none;
  }

  .sky-whychoose-content h2{
    font-size:36px;
  }

  .sky-why-item{
    grid-template-columns:50px 1fr;
  }

  .sky-why-icon{
    width:48px;
    height:48px;
  }

  .sky-why-item:not(:last-child)::after{
    left:24px;
  }
}