

@font-face {
    font-family: 'Aquire';
    src: url('path/to/Aquire-BWOox.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    font-size: 18px;
}
body{
    margin: 4vh;
    background-color: #d4c4b2;
}
#root{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar{
    width: 25%;
    border: 3px solid #eae1d8;
    border-radius: 15px;
    padding: 15px;
    height: 92vh;
    box-shadow: 0px 0px 9px #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bg-img{
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    margin-top: 20%;
}
.data{
    width: 73%;
    border-radius: 45px;
    box-shadow: 5px 25px 25px #eae1d8;
    height: 92vh;
    overflow-y: auto;
}
.searchbar{
    width: 100%;
    background-color: #eae1d8;
    border-radius: 25px;
    padding: 9px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 5px 5px 9px #333;

}
input{
    border: none;
    outline: none;
    background: none;
}
.glass:hover{
    cursor: pointer;
}
.social-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.top{
    height: 60px;
    border-radius: 3px;
    background-color: #eae1d8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.header{
    width: 99%;
    height: 200px;
    border-radius: 25px;
    background-color: #81613c;
    margin: 6vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 9px #333;
}
.header p{
    font-family: 'Aquire';
    font-size: 50px;
    font-weight: bold;
    color: #eae1d8;
    box-shadow: 0px 0px 9px 9px #eae1d8;
    border-radius: 8px;
}
.box{
    margin: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #81613c;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0px 0px 12px #333;
}
.img-box{
    width: 90%;
    height: 476px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #81613c;
    border-radius: 15px;

}
.image{
    max-height: 90%;
    max-width: 90%;
    object-fit: cover;
    object-position: center;
}
.bottom{
    margin-top: 20px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}
h2{
    font-size: 20px;
    color: #81613c;
}
button{
    width: 100%;
    position: relative;
    border: none;
    border-radius: 5px;
    background-color: #d6a163;
    padding: 7px 25px;
    cursor: pointer;
    color: #eee;
}
button:hover{
    background-color: #81613c;
}
::-webkit-scrollbar{
    display: none;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
.video{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    box-shadow: 5px 5px 9px #333;
    border-radius: 25px;
}

/* styles for mobile devices */

/*@media only screen and (max-width: 768px) {
    body{
        font-size: 16px;
        width: 80%;
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }
    .container{
        width: 100%;
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }
    .sidebar{
        width: 80%;
    }
    .bg-img{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30%;
    }
    .box{
        size: 10%;
        width: 100%;
    }
    .data{
        flex-direction: column;
        grid-template-columns: repeat(, 1fr);
    }

}*/

/* styles for tablet devices */

@media (max-width: 280px) and (max-width: 360px) and (max-width: 375px) and (max-width: 390px) {
    body{
        width: 80%;
        flex-wrap: wrap;
        grid-template-columns: repeat(1, 1fr);
    }
    #root{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .container{
        width: 100%;
        flex-wrap: wrap;
    }
    .sidebar{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;

    }
    .bg-img{
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 20%;
    }
    .box{
        flex-wrap: wrap;
        width: 100%;
    }
    .data{
        margin-top: 20px;
        width: 100%;
        flex-wrap: wrap;
    }
    .header{
        width: 100%;
        
    }
    .header p{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        
    }
    .top{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        
    }
}

@media (max-width: 768px) {
    body{
        width: 80%;
        flex-wrap: wrap;
        grid-template-columns: repeat(1, 1fr);
        
    }
    #root{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        
    }
    .container{
        width: 100%;
        flex-wrap: wrap;
        
    }
    .sidebar{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;

    }
    .bg-img{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-top: auto;
        
    }
    .box{
        flex-wrap: wrap;
        width: 100%;
    }
    .data{
        margin-top: 20px;
        width: 100%;
        flex-wrap: wrap;
    }
    .header{
        width: 100%;
    }
    .header p{
        font-size: 22px;
        
    }
    .top{
        width: 100%;
        
    }
}

@media (max-width: 912px) {
    body{
        width: 55%;
        flex-wrap: wrap;
        grid-template-columns: repeat(1, 1fr);
        
    }
    #root{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .container{
        width: 100%;
        flex-wrap: wrap;
    }
    .sidebar{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;

    }
    .bg-img{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-top: auto;
        
    }
    .box{
        flex-wrap: wrap;
        width: 100%;
    }
    .data{
        margin-top: 20px;
        width: 100%;
        flex-wrap: wrap;
    }
    .header{
        width: 100%;
    }
    .header p{
        font-size: 22px;
        
    }
    .top{
        width: 100%;
        
    }
}

@media (max-width: px){
    body{
        width: 80%;
        flex-wrap: wrap;
        grid-template-columns: repeat(1, 1fr);
    }
    #root{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .container{
        width: 100%;
        flex-wrap: wrap;
    }
    .sidebar{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }
    .bg-img{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-top: 10s0px;
        
    }
    .box{
        flex-wrap: wrap;
        width: 100%;
    }
    .data{
        margin-top: 20px;
        width: 100%;
        flex-wrap: wrap;
    }
    .header{
        width: 100%;
    }
    .header p{
        font-size: 22px;
        
    }
    .top{
        width: 100%;
        
    }
}

@media (max-width: 1024px) {
    body{
        
        width: 80%;
        flex-wrap: wrap;
        grid-template-columns: repeat(1, 1fr);
    }
    #root{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .container{
        
        width: 100%;
        flex-wrap: wrap;
    }
    .sidebar{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;

    }
    .bg-img{
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 10%;
        
    }
    .box{
        flex-wrap: wrap;
        width: 100%;
    }
    .data{
        margin-top: 20px;
        width: 100%;
        flex-wrap: wrap;
    }
    .header{
        width: 100%;
    }
    .header p{
        font-size: 22px;
        
    }
    .top{
        width: 100%;
        
    }
    .video{
        width: 100%;
        margin-top: 80px;
    }
}

@media (max-width: 1280px) {
    body{
        width: 80%;
        flex-wrap: wrap;
        grid-template-columns: repeat(1, 1fr);
    }
    #root{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .container{
        width: 100%;
        flex-wrap: wrap;
    }
    .sidebar{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;

    }
    .bg-img{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-top: auto;
        
    }
    .box{
        flex-wrap: wrap;
        width: 100%;
    }
    .data{
        margin-top: 20px;
        width: 100%;
        flex-wrap: wrap;
    }
    .header{
        width: 100%;
    }
    .header p{
        font-size: 22px;
        
    }
    .top{
        width: 100%;
        
    }
}



@media (max-width: px) {
    body{
        width: 80%;
        flex-wrap: wrap;
        grid-template-columns: repeat(1, 1fr);
    }
    #root{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .container{
        width: 100%;
        flex-wrap: wrap;
    }
    .sidebar{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;

    }
    .bg-img{
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 20%;
    }
    .box{
        flex-wrap: wrap;
        width: 100%;
    }
    .data{
        margin-top: 20px;
        width: 100%;
        flex-wrap: wrap;
    }
    .header{
        width: 100%;
        
    }
    .header p{
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        
    }
    .top{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        
    }
}

@media (max-width: px) {
    body{
        width: 80%;
        flex-wrap: wrap;
        grid-template-columns: repeat(1, 1fr);
        
    }
    #root{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .container{
        width: 70%;
        margin-left: 50px;
        flex-wrap: wrap;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sidebar{
        width: 100%;
        flex-wrap: wrap;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .bg-img{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-top: auto;
        
    }
    .box{
        flex-wrap: wrap;
        width: 100%;
    }
    .data{
        margin-top: 20px;
        width: 100%;
        flex-wrap: wrap;
    }
    .header{
        width: 100%;
    }
    .header p{
        font-size: 22px;
        
    }
    .top{
        width: 100%;
        
    }
}



/*@media (min-width: 768px) {
    body{
        width: 100%;
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }
    .container{
        width: 20%;
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }
    .sidebar{
        width: 80%;
    }
    .bg-img{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30%;
    }
    .box{
        width: 100%;
    }
    .data{
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }

}
@media (min-width: ) {
    body{
        width: 100%;
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }
    .container{
        width: 100%;
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }
    .sidebar{
        width: 80%;
    }
    .bg-img{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30%;
    }
    .box{
        width: 100%;
    }
    .data{
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }

}
@media (max-width: ) {
    body{
        width: 100%;
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }
    .container{
        width: 100%;
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }
    .sidebar{
        width: 80%;
    }
    .bg-img{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30%;
    }
    .box{
        width: 100%;
    }
    .data{
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }

}*/





