.Read_More_Btn {
    width: fit-content;
    height: 35px;
    background: #ffffff;
    border: 1px solid #fd8500;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    padding: 0 20px;
    outline: none;
}

.Read_More_Btn:hover {
  background-color: #fd8500;
  color: #ffffff;
  border: none;
}

.Read_More_Btn .btn_text {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fd8500;
}

.Read_More_Btn:hover .btn_text {
  color: #fff;
}

/* =============== Media Queries ============== */

@media (min-width:0px) and (max-width:574.98px) {
  .Read_More_Btn {
    margin-top: 25px;
  }
}

@media (min-width:575px) and (max-width:767.98px) {
  .Read_More_Btn {
    margin-top: 40px;
  }
}

@media (min-width:768px) and (max-width:991.98px) {
  .Read_More_Btn {
    margin-top: 25px;
  }

  .Read_More_Btn .btn_text {
    font-size: 13px;
  }
}

@media (min-width:992px) and (max-width:1199.98px) {

  .Read_More_Btn {
    margin-top: 25px;
  }

  .Read_More_Btn .btn_text {
    font-size: 13px;
  }
}

@media (min-width:1200px) and (max-width:1399.98px) {
  .Read_More_Btn {
    margin-top: 25px;
  }
}