 /* ----- Basic style start -----  */
 *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body{
  font-family: "Poppins", sans-serif;
  background-color: black;
  color: wheat;
}
.container{
  max-width: 1250px;
  padding: 0 25px;
  margin: 0 auto;
}
/* ----- Basic style end -----  */

/* ----- header style start -----  */
.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header{
  padding-top: 35px;
}
.header__logo-link{
  display: inline-block;
}


/* ----- header style end -----  */
/* ----- navbar style start -----  */

.header__navbar{
  width: 700px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__list{
  padding: 0 0 0 20px;
  display: flex;
  gap: 20px;
  color: rgb(112, 112, 112);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0px;
}
.navbar__wrapper{
  display: flex;
  align-items: center;
}
.navbar__list-drop{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: rgb(112, 112, 112);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0px;
  transition: color 0.3s ease;
}
.navbar__list-drop:hover{
  color: #3C82F4;
}
.navbar__item-link{
  color: rgb(112, 112, 112);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0px;
  transition: color 0.3s ease;
}
.navbar__item-link:hover{
  color: #3C82F4;
}
.navbar__sign-wrap{
  display: flex;
  align-items: center;
  gap: 24px;
}
.navbar__login{
  color: rgb(112, 112, 112);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0px;
  transition: color 0.3s ease;
}
.navbar__login:hover{
  color: #3C82F4;
}
.navbar__signup-btn{
  width: 119px;
  padding: 12px 20px 13px 22px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  background: rgb(48, 110, 247);
  border: 1px solid rgb(48, 110, 247);
  border-radius: 10px;
  cursor: pointer;
  transition:  0.3s ease;
}
.navbar__signup-btn:hover{
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}





/* mobile style  */
.header__btn{
  cursor: pointer;
  display: none;
}
.header__btn div{
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 5px;
}

@media only screen and (max-width:1060px){
  .header__navbar{
    width: 600px;
  }
}
@media only screen and (max-width:1000px){
.header__logo-img{
  width: 166px;
  height: 36px;
}
.navbar__list-text, .navbar__item-link, .navbar__login{
  font-size: 17px;
}
.navbar__signup-btn{
  font-size: 17px;
  width: 100px;
  padding: 9px 7px 8px 11px;
}
}
@media only screen and (max-width:882px){
  .header__navbar{
    width: 550px;
  }
  .navbar__signup-btn{
    font-size: 15px;
    width: 85px;
    padding: 7px 5px 6px 9px;
  }
}
@media only screen and (max-width:830px){
  body{
    overflow-x: hidden;
  }
  .header__navbar{
  justify-content: start;
  }
  .navbar__list-drop{
    display: none;
  }
.navbar{
  width: 50%;
  padding-top: 40px;
  /* display: none; */
  margin: auto 0;
  flex-direction: column;
  position: absolute;
  left: 50%;
  right: 0;
  height: 100vh;
  top: 16vh;
  background-color: rgb(28, 29, 29);
  transform: translateX(100%);
  transition: 0.5s ease-in;
}
.nav-active{
  transform: translateX(0);
}
.navbar__wrapper{
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.navbar__list{
  text-align: center;
  padding-left: 0;
  flex-direction: column;
}

.navbar__sign-wrap{
  flex-direction: column;
}

.header__btn{
  display: block;
 }
}
.navbar__item-link{
  color: rgb(112, 112, 112);
}
.navbar__login{
  color: rgb(112, 112, 112);
  margin-top: 17px;
}
.header__btn div{
  transition: transform 0.5s linear;
}

/* Animation */
.toggle .btn__burger1{
  transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .btn__burger2{
 opacity: 0;
}
.toggle .btn__burger3{
  transform: rotate(45deg) translate(-5px,-6px);
}

/* ----- navbar style end -----  */
/* ----- hero section style start -----  */
.hero-section{
  padding-top: 108px;
  /* height: 100vh; */
}
.hero{
  text-align: center;
}
.hero__wrap-title{
  margin: 0 auto;
  width: 900px;
  padding-bottom: 60px;
}
.hero__title{
  color: rgb(255, 255, 255);
  font-size: 74px;
  font-weight: 700;
  line-height: 84px;
  letter-spacing: 0px;
}
.hero__title-span{
  color: transparent;
  background-image: linear-gradient(90.00deg, rgb(254, 103, 131) 1.9%, rgb(255, 191, 132) 97.1%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__content{
  width: 650px;
  margin: 0 auto;
}
.hero__text{
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-weight: 500;
  /* line-height: 40px; */
  max-block-size: 30px;
}
.hero__links{
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.hero__link-started{
  width: 313px;
  padding: 20px 41px 21px 42px;
  color: rgb(255, 255, 255);
  background: rgb(50, 108, 249);
  border: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0px;
  transition:  0.3s ease;
}
.hero__link-started:hover{
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}
.hero__link-demo{
  width: 313px;
  padding: 20px 41px 21px 42px;
  color: rgb(112, 112, 112);
  border: 1px solid rgb(112, 112, 112);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0px;
  transition:  0.3s ease;
}
.hero__link-demo:hover{
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}

.hero__wrap-span{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero__wrap-span img, strong, span{
 display: inline-block;
}
.hero__wrap-span strong{
  color: rgb(255, 255, 255);
  font-size: 25px;
  font-weight: 700;
}
.hero__wrap-span span{
  color: rgb(112, 112, 112);
  font-size: 25px;
  font-weight: 400;
  line-height: 38px;
}
/* mobile style  */

@media only screen and (max-width:1066px){
  .hero-section{
    padding-top: 70px;
  }
  .hero__wrap-title{
    padding-bottom: 30px;
  }
  .hero__title{
    font-size: 54px;
    line-height: 54px;
  }
  .hero__text{
    font-size: 25px;
  }
  .hero__links{
    justify-content: center;
    gap: 20px;
  }
  .hero__link-started, .hero__link-demo{
    width: 210px;
    padding: 15px 21px 16px 22px;
  }
  .hero__wrap-span  strong{
    font-size: 17px;
  }
  .hero__wrap-span  span{
    font-size: 17px;
  }
}
@media only screen and (max-width:956px){
  .hero__wrap-title{
    width: 100%;
  }
}
@media only screen and (max-width:766px){
  .hero-section{
    padding-top: 50px;
  }
  .hero__wrap-title{
    padding-bottom: 20px;
  }
  .hero__title{
    font-size: 39px;
    line-height: 44px;
  }
  .hero__text{
    text-align: center;
    font-size: 18px;
  }
  .hero__content{
    width: 100%;
  }
  .hero__links{
    width: 100%;
    margin-top: 30px;
    justify-content: center;
    gap: 20px;
  }
  .hero__link-started, .hero__link-demo{
    font-size: 16px;
    width: 170px;
    padding: 10px 16px 11px 17px;
  }
  .hero__wrap-span  strong{
    font-size: 15px;
  }
  .hero__wrap-span  span{
    font-size: 15px;
  }
}
@media only screen and (max-width:540px){
  .hero-section{
    padding-top: 50px;
  }
  .hero__wrap-title{
    padding-bottom: 10px;
  }
  .hero__title{
    font-size: 30px;
    line-height: 37px;
  }
  .hero__text{
    text-align: center;
    font-size: 15px;
  }
  .hero__content{
    width: 100%;
  }
  .hero__links{
    width: 100%;
    margin-top: 30px;
    justify-content: center;
    gap: 20px;
  }
  .hero__link-started, .hero__link-demo{
    font-size: 14px;
    width: 150px;
    padding: 10px 16px 11px 17px;
  }
  .hero__wrap-span  strong{
    font-size: 13px;
  }
  .hero__wrap-span  span{
    font-size: 13px;
  }
}
@media only screen and (max-width:374px){
  .hero__links{
  flex-direction: column;
  }
  .hero__wrap-span{
    flex-direction: column;
  }
}
/* ----- hero section style end -----  */

/* -------creators section start ------- */
.creators-section{
  padding-top: 90px;
  padding-bottom: 190px;
}
.creators{
  text-align: center;
}
.creators__title{
  color: rgb(255, 255, 255);
  font-size: 45px;
  font-weight: 600;
  line-height: 112px;
  letter-spacing: 0px;
}
.creators__list{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 110px;
}
.creators__item{
  margin-top: 20px;
 display: flex;
 flex-direction: column;
  width: 440px;
}
.creators__item-wrap{
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.creators__item-title{
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
}
.creators__item-img{
  display: inline-block;
  transition:  0.3s ease;
}
.creators__item:hover .creators__item-img{
  transform: translateY(-15px);
}
.creators__item-text{
  color: rgb(112, 112, 112);
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
}
.creators__connect{
  text-align: center;
  margin:  0 auto;
  width: 700px;
}
.creators__connect-span{
  color: rgb(61, 130, 242);
  font-size: 25px;
  font-weight: 600;
  line-height: 38px;
}
.creators__connect-title{
  color: rgb(255, 255, 255);
  font-size: 45px;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: 0px;
}
.creators__connect-text{
  color: rgb(112, 112, 112);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 50px;
}
.creators__connect-link{
  border: 1px solid rgb(112, 112, 112);
  width: 313px;
  padding: 23.5px 37.5px 22.5px;
  color: rgb(112, 112, 112);
  font-size: 20px;
  border-radius: 10px;
  font-weight: 600;
  line-height: 30px;
  transition:  0.3s ease;
}
.creators__connect-link:hover{
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}

@media only screen and (max-width:1058px){
  .creators{
    padding-top: 50px;
  }
  .creators__title{
    font-size: 35px;
    line-height: 82px;
  }
  .creators__list{
    width: 33%;
    align-items: start;
    width: 100%;
  }
}
@media only screen and (max-width:766px){
  .creators__connect{
    width: 100%;
  }
  .creators-section{
    padding-top: 0;
  }
  .creators__list{
  padding-bottom: 60px;
  }
  .creators__connect-title{
    font-size: 35px;
    line-height: 72px;
  }
  .creators__connect-text{
    font-size: 15px;
    line-height: 30px;
    padding-bottom: 50px;
  }
  .creators__connect-link{
    width: 180px;
    padding: 13.5px 17.5px 12.5px;
    font-size: 17px;
  }
}
@media only screen and (max-width:726px){
  .creators__list{
    flex-direction: column;
    width: 100%;
    gap: 20px;
    text-align: center;
    justify-content: center;
  }
  .creators__item{
    width: 100%;
  }
}
@media only screen and (max-width:540px){
  .creators{
    padding-top: 60px;
  }
  .creators__title, .creators__connect-title{
    font-size: 28px;
    line-height: 42px;
  }
  .creators__connect-span{
    font-size: 18px;
  }
  .creators__item-title{
    font-size: 18px;
  }
  .creators__item-text{
    font-size: 14px;
    line-height: 25px;
  }
}
@media only screen and (max-width:365px){
  .creators__connect-title{
    font-size: 25px;
    line-height: 32px;
  }
  .creators__connect-link{
    width: 130px;
    padding: 10.5px 14.5px 9.5px;
    font-size: 15px;
  }
}
/* -------creators section end ------- */

/* homepage  sectin style start  */
.homepage-section{
  background-image: url("../images/hompage-img.png");
  background-size: 680px 570px;
  background-repeat: no-repeat;
  background-position-x:calc(80% + 170px);
}
.homepage__top{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 189px;
}
.hompage__top-img{
  position: absolute;
  right: -120px;
  top: 0px;
}
.homepage__content-title-top{
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0px;
  padding-bottom: 80px;
}
.homepage__content-title{
  color: rgb(255, 255, 255);
  font-size: 55px;
  font-weight: 600;
  line-height: 77px;
  letter-spacing: 0px;
  padding-bottom: 29px;
}
.homepage__content-title-span{
  color: #3C82F4;
}
.homepage__content-text{
  color: rgb(255, 255, 255);
  font-size: 19px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
}
.homepage__content-links{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 66px;
}
.homepage__started-link{
  display: inline-block;
  width: 210px;
  padding: 18px 21px  17px 22px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0px;
  background: rgb(50, 108, 249);
  border: none;
  border-radius: 10px;
  transition:  0.3s ease;
}
.homepage__started-link:hover{
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}
.homepage__demo-link{
  display: inline-block;
  width: 210px;
  padding: 17.5px 37.5px  16.5px 35.5px;
  color: rgb(112, 112, 112);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0px;
  border: 1px solid rgb(112, 112, 112);
  border-radius: 10px;
  transition:  0.3s ease;
}
.homepage__demo-link:hover{
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}
.homepage__bottom{
  text-align: center;
  margin: 0 auto;
  width: 700px;
  padding-bottom: 176px;
}
.homepage__bottom-span{
  color: rgb(61, 130, 242);
  font-size: 25px;
  font-weight: 600;
  line-height: 38px;
  padding-bottom: 15px;
}
.homepage__bottom-title{
  color: rgb(255, 255, 255);
  font-size: 55px;
  font-weight: 600;
  line-height: 57px;
  padding-bottom: 29px;
}
.homepage__bottom-text{
  color: rgb(112, 112, 112);
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
}
/* Mobile style start  */
@media only screen and (max-width:1118px){
  .homepage-section{
    background-image: url("../images/hompage-img.png");
    background-size: 580px 470px;
    background-repeat: no-repeat;
    background-position-x:calc(80% + 170px);
  }
  .homepage__content-title-top{
    font-size: 18px;
    padding-bottom: 60px;
  }
  .homepage__content-title{
    font-size: 45px;
    line-height: 67px;
    padding-bottom: 29px;
  }
  .homepage__content-text{
    font-size: 15px;
    line-height: 20px;
  }
  .homepage__content-links{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
  }
  .homepage__started-link,.homepage__demo-link{
    text-align: center;
    width: 190px;
    padding: 16.5px 8.5px  15.5px 8.5px;
    font-size: 20px;
    line-height: 20px;
  }
  .homepage__bottom-title{
    font-size: 45px;
    line-height: 47px;
    padding-bottom: 29px;
  }
  .homepage__bottom-text{
    font-size: 18px;
  }
  .creators__connect-span{
    font-size: 20px;
  }
  
}

@media only screen and (max-width:924px){
  .creators-section{
    padding-bottom: 120px;
  }
  .homepage__top{
    padding-bottom: 150px;
  }
  .homepage__bottom{
    padding-bottom: 100px;
  }
}
@media only screen and (max-width:886px){
  .homepage-section{
    background-image: url("../images/hompage-img.png");
    background-size: 480px 360px;
    background-repeat: no-repeat;
    background-position-x:calc(80% + 170px);
  }

  .homepage__content-title-top{
    font-size: 15px;
    padding-bottom: 30px;
  }
  .homepage__bottom-title{
    font-size: 33px;
    padding-bottom: 0;
  }
  .homepage__bottom-text{
    font-size: 18px;
  }
  .homepage__content-title{
    font-size: 40px;
    line-height: 55px;
    padding-bottom: 20px;
  }
  .homepage__top{
    padding-bottom: 120px;
  }
  .homepage__bottom{
    padding-bottom: 100px;
  }
}
@media only screen and (max-width:790px){

  .homepage__top{
    margin:  0 auto;
    width: 100%;
    text-align: center;
    padding-bottom: 120px;
    justify-content: center;
  }
  .homepage-section{
    background-image: none;

  }
  .homepage__bottom{
  width: 100%;
  }
}
@media only screen and (max-width:464px){
 .homepage__content-links{
  flex-direction: column;
 }
}
/* homepage  sectin style end  */

/* subscribes section style start  */
.subscribes{
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 130px;
}
.subscribes__wrap{
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.subscribes__left{
position: relative;
padding: 33px 0 0 45px;
width: 550px;
height: 480px;
background: rgb(13, 13, 13);
transition:  0.3s ease;
}
.subscribes__left:hover{
transform:  rotate(4deg);
box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}
.subscribers__left-img{
  display: inline-block;
  position: absolute;
 left: 94px;
 z-index: 1;
 bottom: 0;
}
.subscribes__right{
  width: 550px;
  height: 480px;
  background: rgb(13, 13, 13);
  z-index: 11111;
  transition:  0.3s ease;
}
.subscribes__right:hover{
  transform:  rotate(-4deg);
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}
.subscribes__span{
  color: rgb(15, 198, 92);
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}
.subscribes__title{
  padding-top: 20px;
  color: rgb(255, 255, 255);
  font-size: 60px;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: 0px;
}
.subscribes__title span{
  color: rgb(145, 145, 145);}

.subscribes__right{
  padding: 34px 0 0 29.8px;
}
.subscribes__title-right{
  padding-top: 80px;
}
.subscribes__link-wrap{
  margin-top: 49px;
}
.subscribes__link{
  text-align: center;
  padding: 20px 70px 18px 70px;
  width: 283px;
  display: inline-block;
  background: rgb(50, 108, 249);
  color: rgb(255, 255, 255);
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  border-radius: 10px;
  transition:  0.3s ease;
  margin-top: 30px;
}
.subscribes__link:hover{
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}

/* Mobile style start  */

@media only screen and (max-width:1172px){
  .subscribes__wrap{
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-evenly;
  }
  .subscribes__left, .subscribes__right{
    width: 450px;
    height: 380px;
    }
    .subscribers__left-img{
     left: 101px;
     width: 420px ;
     height: 160px;
    }
    .subscribes__title{
      padding-top: 20px;
      color: rgb(255, 255, 255);
      font-size: 45px;
      font-weight: 600;
      line-height: 60px;
      letter-spacing: 0px;
    }
}
@media only screen and (max-width:996px){
  .subscribes__wrap{
    margin: 0 auto;
    justify-content: center;
   flex-direction: column;
   align-items: center;
  }
}
@media only screen and (max-width:540px){
  .subscribes__left, .subscribes__right{
    width: 350px;
    height: 280px;
    }
    .subscribers__left-img{
     left: 85px;
     width: 320px ;
     height: 120px;
    }
    .subscribes__title{
      padding-top: 0px;
      font-size: 28px;
      line-height: 40px;
    }
    .subscribes__span{
      color: rgb(15, 198, 92);
      font-size: 18px;
      font-weight: 400;
      line-height: 30px;
    }

  .subscribes__link{
      padding: 15px 30px 13px 30px;
      width: 203px;
      font-size: 18px;
      line-height: 20px;
      margin-top: 20px;
   } 
}
/* subscribes section style end  */


/* blackpink style start  */
.blackpink-section{
  background-image: url("../images/blackpink.png");
  background-repeat: no-repeat;
  background-size: 670px 520px;
  background-position-x: calc(70% + 240px);
  background-position-y: calc(50% + 110px);
}
.blackpink{
  padding-bottom: 150px;
}
.blackpink__top-wrap{
  display: flex;
  width: 700px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 149px;
}
.blackpink__top-title{
  color: rgb(255, 255, 255);
  font-size: 45px;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: 0px;
  padding-bottom: 9px;
}
.blackpink__top-span{
  color: #3C82F4;
}
.blackpink__top-text{
  color: rgb(112, 112, 112);
  font-size: 19px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
}
.blackpink__bottom-text{
  color: white;
  font-size: 19px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0px;
}
.blackpink__bottom-wrap{
  width: 680px;
  text-align: left;
}
.blackpink__bottom-title-top{
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0px;
  padding-bottom: 80px;
}
.blackpink__bottom-title{
  color: rgb(255, 255, 255);
  font-size: 55px;
  font-weight: 600;
  line-height: 57px;
  padding-bottom: 29px;
}
.blackpink__bottom-title-span{
  
  color: rgb(61, 130, 242);
}
.blackpink__bottom-links{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 66px;
}
.blackpink__top-span{
  font-size: 27px;
  margin-bottom: 10px;
  font-weight: bold;
}
.blackpink__started-link{
  display: inline-block;
  width: 210px;
  padding: 18px 21px  17px 22px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0px;
  background: rgb(50, 108, 249);
  border: none;
  border-radius: 10px;
  transition:  0.3s ease;
}
.blackpink__started-link:hover{
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}
.blackpink__demo-link{
  display: inline-block;
  width: 210px;
  padding: 17.5px 37.5px  16.5px 35.5px;
  color: rgb(112, 112, 112);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0px;
  border: 1px solid rgb(112, 112, 112);
  border-radius: 10px;
  transition:  0.3s ease;
}
.blackpink__demo-link:hover{
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}

/* Mobile style start  */

@media only screen and (max-width:1058px){
  .blackpink-section{
    background-image: url("../images/blackpink.png");
    background-repeat: no-repeat;
    background-size: 570px 420px;
    background-position-x: calc(70% + 240px);
    background-position-y: calc(50% + 110px);
  }
  .blackpink__top-title{
    font-size: 35px;
    line-height: 47px;
  }
}
@media only screen and (max-width:996px){
  .blackpink__bottom-title{
    font-size: 45px;
    font-weight: 600;
    line-height: 47px;
    padding-bottom: 29px;
  }
  .blackpink__bottom-title-top{
    font-size: 17px;
    line-height: 22px;
    padding-bottom: 50px;
  }
  .blackpink__bottom-text{
    font-size: 15px;
    line-height: 22px;

  }
  .blackpink__bottom-links{
    gap: 20px;
    margin-top: 36px;
  }
}

@media only screen and (max-width:860px){
  .blackpink-section{
    background-image:none;
  }
  .blackpink__bottom-wrap{
    width: 100%;
  }
  .blackpink__bottom{
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .blackpink__bottom-links{
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
  }
  .blackpink__top-wrap{
    width: 100%;
    padding-bottom: 109px;
  }
}
@media only screen and (max-width:540px){
  .blackpink{
    padding-bottom: 50px;
  }
  .blackpink__bottom-links{
    display: flex;
    flex-direction: column;
  }
}
/* blackpink style end  */

/* expertes style start  */
.expertes{
  padding-bottom: 100px;
}

.expertes__title{
  color: rgb(255, 255, 255);
  font-size: 45px;
  font-weight: 600;
  line-height: 57px;
  letter-spacing: 0px;
  padding-bottom: 9px;
  text-align: center;
}
.expertes__img{
  margin-top: 20px;
  width: 100%;
  transition:  0.3s ease;
}
.expertes__img:hover{
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}

/* Mobile style start  */

@media only screen and (max-width:770px){
  .expertes__img{
   height: 210px;
    width: 100%;
  }
}
@media only screen and (max-width:578px){
  .expertes{
    padding-bottom: 40px;
  }
  .expertes__img{
   height: 150px;
    width: 100%;
  }
  .expertes__title{
    font-size: 35px;
    line-height: 47px;
  }
}
@media only screen and (max-width:438px){
  .expertes__img{
    height: 100px;
     width: 100%;
   }
}
/* expertes style end */
/* people style start   */
.people-section{
  height: 600px;
  padding: 250px 0;
  background-image: url("../images/bg-bottom.png");
  background-size: 1350px 500px;
  background-repeat: no-repeat;
  background-position: center;
}
.people__wrap-title{
  width: 780px;
  margin:  0 auto;
}
.people__title{
  color: rgb(255, 255, 255);
  font-size: 35px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0px;
  padding-bottom: 9px;
  text-align: center;
}


/* mobile style start  */

@media only screen and (max-width:890px){
  .people__wrap-title{
    width: 70%;
  }
  .people__title{
    font-size: 25px;
    font-weight: 600;
    line-height: 28px;
  }
}

/* people style end   */

/* started style start  */

.started{
  text-align: center;
  padding: 90px 0 180px;
}
.started__logo-img{
margin-bottom: 28px;
transition:  0.3s ease;
}
.started__logo-img:hover{
  transform: scale(1.2);
  box-shadow: rgba(238, 231, 231, 0.884) 0px 25px 20px -20px;
}
.started__title{
  color: rgb(255, 255, 255);
  font-size: 87px;
  font-weight: 700;
  line-height: 90px;
}
.started__text{
  margin-top: 15px;
  color: rgb(255, 255, 255);
  font-size: 25px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0px;
}
.started__link{
  width: 402px;
  padding: 29px 73px 28px 72px;
  display: inline-block;
  background: rgb(50, 108, 249);
  margin-top: 20px;
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  border-radius: 15px;
  letter-spacing: 0px;
  margin-bottom: 26px;
  transition:  0.3s ease;
}
.started__link:hover{
  box-shadow: rgba(241, 239, 239, 0.62) 0px 2px 4px, rgba(240, 237, 237, 0.652) 0px 7px 13px -3px, rgba(230, 227, 227, 0.611) 0px -3px 0px inset;
}
.started__span-wrap{
  display: flex;
  align-items: center;
  justify-content: center;

  color: rgb(255, 255, 255);
  font-size: 23px;
  font-weight: 700;
  line-height: 57px;
  letter-spacing: 0px;
}
.started__span-wrap img{
  margin-right: 15px;
}
.started__span-wrap span{
  color: rgb(112, 112, 112);
  margin-left: 10px;
}

/* mobile style start  */
@media only screen and (max-width:920px){
  .started__title{
    color: rgb(255, 255, 255);
    font-size: 67px;
    font-weight: 700;
    line-height: 70px;
  }
  .started__logo-img{
    width: 124px;
    height: 114px;
    margin-bottom: 28px;
    transition:  0.3s ease;
    }
    .started__text{
      font-size: 20px;
      line-height: 30px;
    }
    .started__link{
      width: 302px;
      padding: 29px 43px 28px 42px;
      margin-top: 20px;
      font-size: 24px;
      line-height: 35px;
      margin-bottom: 26px;

    }
    .started{
      width: 100%;
      padding-bottom: 80px;
    }
}
/* @media only screen and (max-width:630px){

} */
@media only screen and (max-width:558px){
  .started{
    width: 100%;
    padding-bottom: 40px;
  }
  .started__title{
    color: rgb(255, 255, 255);
    font-size: 47px;
    font-weight: 700;
    line-height: 50px;
  }
  .started__logo-img{
    width: 104px;
    height: 94px;
    margin-bottom: 28px;
    }
    .started__text{
      font-size: 18px;
      line-height: 27px;
    }
    .started__link{
      width: 272px;
      padding: 20px 23px 20px 22px;
      margin-top: 20px;
      font-size: 24px;
      line-height: 35px;
      margin-bottom: 26px;

    }
    .started__span-wrap strong{
      font-size: 18px;
    }
    .started__span-wrap span{
    font-size: 18px;
    }
}
@media only screen and (max-width:486px){
  .started__title{
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
  }
  .started__logo-img{
    width: 94px;
    height: 84px;
    margin-bottom: 28px;
    }
    .started__text{
      font-size: 15px;
      line-height: 20px;
    }
    .started__link{
      width: 202px;
      padding: 15px 13px 15px 12px;
      margin-top: 20px;
      font-size: 18px;
      line-height: 35px;
      margin-bottom: 26px;
   }
   .started__span-wrap{
    flex-direction: column;
   }
}
/* started style end  */

/* Footer style start  */
.footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
}
.footer__logo-wrap{
  width: 230px;
  display: flex;
  flex-direction: column;
}
.footer__logo-email{
  padding-left: 15px;
  color: rgb(112, 112, 112);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  transition:  0.3s ease;
}
.footer__logo-email:hover{
  color: rgb(50, 109, 249);
}
.footer__list{
  display: flex;
  align-items: center;
  gap: 35px;
}
.footer__item-link{
  color: rgb(112, 112, 112);
  font-size: 20px;
  font-weight: 500;
  line-height: 42px;
  transition:  0.3s ease;
}

.footer__item-link:hover{
  transform: translateX(5px);
  color: rgb(50, 109, 249);
}


/* mobile style start  */

@media only screen and (max-width:648px){
  .footer{
    flex-direction: column;
    padding-bottom: 50px;
  }
  .footer__logo-email{
    padding-left: 18px;
  }
}

@media only screen and (max-width:420px){
  .footer__list{
    gap: 15px;
  }
  .footer__list-item{
    margin-top: 15px;
  }
  .footer__item-link{
    font-size: 17px;
    line-height: 22px;
  }
}
/* Footer style end  */