@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200..800&family=Readex+Pro:wght@160..700&display=swap');
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Readex Pro", sans-serif;
  font-weight: 400;
}

body{
  background-color: #060C3B;
  color: white;
  width: 100%;
}

/* Header Styles */

.main_header{
  padding: 15px 10px;
  display: flex;
  justify-content: space-between;
}

.main_header .ar_title p,
.main_header .eng_title p{
  font-family: "Changa", sans-serif;
  line-height: 26px;
  size: 16px;
  width: 300px;
}

.main_header .eng_title p{
  text-align: left;
}

.main_header .img_title img{
  width: 80px;
  height: 80px;
}

.btn_header{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  background-color: #FFFFFF;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
}

.btn_header .btn_container{
  flex: 0 0 auto;
  width: 25%;
  text-align: center;
}

.btn_container .btn_style{
  width: 90%;
  text-align: center;
  margin: 2px;
  padding: 5px;
  background-color: #202329;
  border: 1px solid #fff;
  border-radius: 15px;
  color: #fff;
  font-family: 'Times New Roman', Times, serif;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.btn_container .btn_style:hover{
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.btn_style span{
  font-size: 12px;
  margin: 0 10px;
}

/* Main Styles */

.container-fluid{
  width: 99.5%;
  margin: 0 auto;
}

.container-fluid .book_wrap{
  background-color: #F8F9FA;
  height: fit-content;
  margin: 25px 0;
  border-radius: 20px;
  padding: 15px;
}

.book_wrap .header_text{
  text-align: center;
  color: #000;
  padding: 55px 15px 15px;
}

.header_text h1{
  font-family: "Changa", sans-serif;
  font-weight: 700;
}

.book_wrap .content_text{
  margin: 5px auto;
  padding: 15px;
  color: #000;
  width: 1000px;
  font-size: 32px;
  text-align: center;
  line-height: 50px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
}

.num_color{
  color: #06105d;
}

.data_color{
  color: rgb(38, 0, 255);
  font-family: 'Times New Roman', Times, serif;
  font-weight: 900;
}

.date_text{
  margin: 25px auto;
  padding: 15px;
  color: #920000;
  width: 1000px;
  font-size: 18px;
  text-align: right;
  line-height: 35px;
}

.date_text p,
.data_text p span{
  font-family: "Changa", sans-serif;
  font-weight: 700;
}

@media (max-width: 768px) {

    /* Header Styles */
    .main_header {
        padding: 15px 5px;
        display: flex;
        justify-content: space-between;
    }

        .main_header .ar_title p,
        .main_header .eng_title p {
            line-height: 5px;
            font-size: 9px;
            width: 150px;
        }

        .main_header .img_title img {
            width: 40px;
            height: 40px;
        }

    .btn_header {
        width: 97%;
        margin: 0 auto;
        border-radius: 10px;
        padding: 5px;
    }

        .btn_header .btn_container {
            width: 50%;
        }

    .btn_container .btn_style {
        font-size: 10px;
        line-height: 14px;
    }

    .btn_style span {
        font-size: 8px;
        margin: 0 10px;
    }

    /* Main Styles */

    .container-fluid .book_wrap {
        padding: 10px;
    }

    .book_wrap .header_text {
        text-align: center;
        color: #000;
        padding: 55px 15px 15px;
    }

    .header_text h1 {
        font-size: 18px;
    }

    .book_wrap .content_text {
        width: 95%;
        font-size: 15px;
        line-height: 28px;
    }

    .num_color {
        color: #06105d;
    }

    .data_color {
        color: rgb(38, 0, 255);
        font-family: 'Times New Roman', Times, serif;
        font-weight: 900;
    }

    .date_text {
        width: 95%;
        font-size: 15px;
        line-height: 10px;
    }

        .date_text p,
        .data_text p span {
            font-family: "Changa", sans-serif;
            font-weight: 700;
            font-size: 12px;
        }
}