@import "../css/fonts.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  a {
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  button,
  input,
  textarea, select {
    outline: none;
    border: none;
    background: transparent;
    resize: none;
    font-family: 'Montserrat';
  }
  
  body {
    font-family: 'Montserrat';
    position: relative;
  }

  :root {
    --btnBg: #008EB0;
    --btnHover: #0e2350;
    --elBg: #0a7777;
    --blue: #003654;
    --green: #2e5728;
    --tera: #b14a04;
    --grey: #d7d8da;
  }

  .container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}



.release_nav{
margin-top:20px;
}

.release_nav-back{
padding: 10px 20px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.top__line {
    background-color: var(--blue);
}

.releases__date {
    margin: 30px 0;
    font-size: 35px;
    font-style: normal;
    font-weight: bold;
    color: #fff;

}


.releases__title {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #3473AD;
    text-align: center;
}



.releases__txt {
    /* text-indent: 20px; */
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
    line-height: 140%;
}

.releases__txt em{
  text-align: center;
display: block;
}


.releases__ul{
  list-style-type: square;
  font-size: 18px;
  color: #000;
  margin-left: 25px;
  margin-bottom: 20px;
  line-height: 140%;
  }


.releases__img {
    width: 70%;
}

.releases__img-b{
transform: translateX(25%);
width: 700px;
margin-bottom: 15px;
}


    .next-news-btn {
  position: fixed;
  bottom: 20px;
  right: 50px;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.prev-news-btn{
  position: fixed;
  bottom: 20px;
  left: 50px;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.next-news-btn:hover {
  background-color: #0056b3;
}

.btn-text {
  display: inline;
}

.arrow {
  font-size: 24px;
  font-weight: 500;
  /* vertical-align: middle; */
}

#scrollTopBtn {
        display: none;
        position: fixed;
        bottom: 150px;
        right: 100px;
        z-index: 99;
        /* background-color: white;
        color: white;
        border-radius: 50%; */
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-align: center;
    }

@media screen and (max-width: 900px) {
  .releases__img-b{
    transform: translateX(0);

    width: 100%;
  }

.releases__date {
font-size: 26px;
 text-align: center;
 margin-top: 100px;
}

}

@media (max-width: 768px) {

  .btn-text {
    display: none;
  }

  .release_nav-back{
    position: fixed;
    top: 10px;
    left: 20px;
    z-index: 99;
  }

  .next-news-btn {
    position: fixed;
    bottom: auto;
    top: 10px;
    right: 20px;
  }
  .prev-news-btn{
    bottom: auto;
    left: auto;
    top: 10px;
    left: 70%;
    
  }
}
  

