@font-face {
    font-family: 'Jost';
    src: url('../fonts/static/Jost-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

*{
  box-sizing:border-box;
  padding:0;
  margin:0;
  font-family: "Jost", sans-serif;
}
body{
  background:#171720;
}
.header-banner
{
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.5), /* Overlay color with opacity */
    rgba(0, 0, 0, 0.7)), url('../img/heroimage.webp'); /* Background image */
  background-size: cover;
  background-position: 50% 50%;
  height:500px;
  display:flex;
  flex-direction:column;
}
header{
  padding:20px;
  display:flex;
  justify-content:space-between;
  color:#fff;
  border-bottom:rgba(255, 255, 255, 0.1) 1px solid;
  align-items:center;
}
header span{
  color:red;
}

header .btn{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
}
.btn button{
  color:#fff;
  width:80px;
  background:none;
  border:none;
  border-bottom:2px solid #fff;
  cursor:pointer;
}

.info{
  flex-grow:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
  padding:20px;
  align-items:center;
}
.info .con{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.info p{
  font-size:16px;
}
.info button{
  padding:10px;
  width:200px;
  color:#fff;
  background:#D1A59C;
  border:none;
  cursor:pointer;
}

.container-callgirl{
  display:grid;
  flex-direction:column;
  gap:10px;
  grid-template-columns:repeat(4,1fr);
  padding:40px 10px;
}
.con-girls{
  display:flex;
  flex-direction:column;
  gap:10px;
  color:#fff;
  align-items:center;
  border:rgba(255, 255, 255, 0.1) 1px solid;
  border-radius:5px;
  padding-bottom:5px;
}
.container-callgirl img{
  width:100%;
  border-radius:5px;
}
.c-w{
  display:flex;
  align-items:center;
  gap:20px;
}
.c-w p{
  border-bottom:1px solid #fff;
  cursor:pointer;
  padding:4px 10px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
}
.c-w p i{
  font-size:13px;
  
}


footer{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap:10px;
  color:#fff;
  padding:10px;
  border-top:rgba(255, 255, 255, 0.1) 1px solid;
}
footer p:nth-child(2)
{
  color: red;
}

@media (max-width:1100px)
{
  .container-callgirl{
    grid-template-columns:repeat(3,1fr);
  }
}


@media (max-width:800px)
{
  .container-callgirl{
    grid-template-columns:repeat(2,1fr);
  }
}


@media (max-width:500px){
  .header-banner{
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.5), /* Overlay color with opacity */
    rgba(0, 0, 0, 0.7)), url('../img/banner-m.webp');
  }
  .c-w{
    flex-direction:column;
    gap:0;
    position:relative;
    height:70px;
    width:100%;
  }
  .c-w p{
    position:absolute;
  }
  .c-w p:nth-child(1)
  {
    left:0;
    top:0;
  }
  .c-w p:nth-child(2)
  {
    right:0;
    bottom:0;
  }
  
}

.content-box{
  padding: 10px;
  color: #fff;
}
.content-box h2,.content-box h3{
  text-align: center;
  padding:10px 0px;
}
a{
  text-decoration: none;
}

footer a{
  color: red;
}