@font-face {
    font-family: kalameh;
    src: url("../fonts/KalamehWeb-Medium.woff2");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: kalameh;
  scroll-behavior: smooth;
}

img{
  user-select: none;
}

/* SINGLE PORT START */

.single{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0px 10px;
    margin: 50px 0px;
}
.single-container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    width: 1200px;
    gap: 20px;
}

.single-rast{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    max-width: 500px;
    height: 500px;
    max-height: 500px;
}
.single-rast img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid black;
}

.single-chap{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    width: 500px;
}
.single-chap-name{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: lighter;
    font-size: 26px;
    color: rgba(0, 0, 0, 0.7);
}
.single-chap-name::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    background: linear-gradient(to right,#833ab4,#fd1d1d,#fcb045);
    width: 150px;
    height: 3px;
    border-radius: 3px;
}

.single-chap-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.single-chap-btn a{
    text-align: center;
    width: 100%;
    padding: 10px;
    border-radius: 15px 0 15px 15px;
    text-decoration: none;
    background-color: black;
    color: white;
    border: 2px solid black;
    transition: all .5s;
}
.single-chap-btn a i{
    margin-right: 10px;
}
.single-chap-btn a:hover{
    background-color: white;
    color: black;
}

.single-chap-karfarma,
.single-chap-location,
.single-chap-about{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    border-bottom: 2px solid black;
    width: 100%;
    gap: 10px;
    padding: 10px;
}
.single-chap-karfarma-icon,
.single-chap-location-icon,
.single-chap-about-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5px;
}
.single-chap-karfarma-icon i,
.single-chap-location-icon i,
.single-chap-about-icon i{
    color: blue;
    font-size: 20px;
}

/* SINGLE PORT END */
















/* RESPONSIVE START */

@media screen and (max-width:768px) {

    .single-container{
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .single-rast{
        width: 100%;
        height: auto;
    }
    .single-chap{
        width: 100%;
    }
    
}

@media screen and (min-width:769px) and (max-width:1200px) {

    .single-container{
        width: 100%;
    }

    .single-rast{
        width: 100%;
        height: auto;
    }
    .single-chap{
        width: 100%;
    }
    
}

/* RESPONSIVE END */