.read-more {
  position: relative;
  text-decoration: none;
  line-height: 1.4;
  cursor: pointer;
  cursor: text;
}
.read-more .trigger {
  display: block;
  position: absolute;
  bottom: -10px;
  margin-top: -30px;
  cursor: pointer;
  color: #0031ff;
  font-weight: bold;
  padding-bottom: 15px;
}
.read-more .contented {
  position: relative;
  overflow: hidden;
  height: 450px;
  font-size: 14px;
  transition: max-height 500ms ease;
}
.read-more .contented::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 88px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  transition: opactiy 500ms ease, visibility 500ms ease;
}
.read-more.expanded .contented::before,
.read-more.expanded .trigger {
  opacity: 0;
  visibility: hidden;
}
.read-more.expanded .contented {
  height: auto;
}

.no-trigger .content {
  max-height: 89.6px;
}
.no-trigger .contented::before {
  height: 48px;
}

.large {
  font-size: 17.6px;
}
.large .contented {
  max-height: 98.56px;
}
.large .contented::before {
  height: 52.8px;
}



.sidebar-box {
  margin-bottom: 30px;
  padding: 25px;
  font-size: 15px;
  width: 100%;
  float: left;
  background: #fff; }
  .sidebar-box *:last-child {
    margin-bottom: 0; }
  .sidebar-box h3 {
    font-size: 18px;
    margin-bottom: 15px; }

.categories li, .sidelink li {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #dee2e6;
  background: #fff;
  padding: 10px;
  color: #1e409a;;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  list-style: none; }
  .categories li:last-child, .sidelink li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0; 
     background: #fff;
  padding: 10px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  }
  .categories li a, .sidelink li a {
    display: block;  color: #1e409a; font-weight: 500}
    .categories li a span, .sidelink li a span {
      position: absolute;
      right: 15px;
      top: 0;
      margin-top: 15px;
      color: #1e409a; }


      .categories li button{
        border-radius: 2px;
        border: none;
        width: 100%;
        background: #fff;
        display: inline-flex;
        color: #1e409a;
        font-weight: 500;
        align-items: center;
        justify-content: space-between;
      }
  .categories li.active a, .sidelink li.active a {
    color: #000;
    font-style: italic; }

.section-heading .subheading-sm {
  margin-bottom: 30px;
  color: #999999;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .1em;
  position: relative;
  display: inline-block;
  font-weight: 300; }
  .section-heading .subheading-sm:after {
    width: 80px;
    height: 2px;
    background: #999999;
    position: absolute;
    left: 120%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: ""; }

.section-heading .heading {
  font-size: 50px;
  line-height: 1.2;
  margin: 0 0 40px 0;
  padding: 0; }

.ovr{
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 99999;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
  .popup2{
  position: fixed;
  left: 50%;
}
.popup2{
  background: #011e45;
  padding: 25px;
  border-radius: 15px;
  top: 50%;
  max-width: 380px;
  width: 100%;
  height: 400px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  transform: translate(-50%, -50%) scale(1.2);
  transition: top 0s 0.2s ease-in-out,
              opacity 0.2s 0s ease-in-out,
              transform 0.2s 0s ease-in-out;
              z-index: 123123;
}


.popup2.show{
  top: 50%;
  left: 50%;
  opacity: 1;
  pointer-events: auto;
  transform:translate(-50%, -50%) scale(1);
  transition: top 0s 0s ease-in-out,
              opacity 0.2s 0s ease-in-out,
              transform 0.2s 0s ease-in-out;

}
.popup2 :is(header, .icons, .field){
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup2 header{
  padding-bottom: 15px;
  border-bottom: 1px solid #ebedf9;
}
.popup2 header span{
  font-size: 21px;
  font-weight: 600;
  color: white;
}
.popup2 header .closes, .icons a{
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
} 
.popup2 header .closes{
  color: #fff;
  font-size: 17px;
  background: #00275c;
  height: 33px;
  width: 33px;
  cursor: pointer;
}
.popup2 header .closes:hover{
  background: transparent;
  color: white;
}
.popup2 .content{
  margin: 20px 0;
}
.popup2 .icons{
  margin-left: -10px;
}
.content p{
  font-size: 16px;
  color: white;
}
.content .icons a{
  height: 50px;
  width: 50px;
  font-size: 20px;
  text-decoration: none;
  border: 1px solid transparent;
}
.icons a i{
  transition: transform 0.3s ease-in-out;
}
.icons a:nth-child(1){
  color: #1877F2;
  border-color: #b7d4fb;
}
.icons a:nth-child(1):hover{
  background: #1877F2;
}
.icons a:nth-child(2){
  color: #46C1F6;
  border-color: #b6e7fc;
}
.icons a:nth-child(2):hover{
  background: #46C1F6;
}
.icons a:nth-child(3){
  color: #e1306c;
  border-color: #f5bccf;
}
.icons a:nth-child(3):hover{
  background: #e1306c;
}
.icons a:nth-child(4){
  color: #25D366;
  border-color: #bef4d2;
}
.icons a:nth-child(4):hover{
  background: #25D366;
}
.icons a:nth-child(5){
  color: #0088cc;
  border-color: #b3e6ff;
}
.icons a:nth-child(5):hover{
  background: #0088cc;
}
.icons a:hover{
  color: #fff;
  border-color: transparent;
}
.icons a:hover i{
  transform: scale(1.2);
}
.content .field{
  margin: 12px 0 -5px 0;
  height: 45px;
  border-radius: 4px;
  padding: 0 5px;
  border: 1px solid #757171;
  color: #fff;
  background: #011633;
}
.field.active{
  border-color: #7d2ae8;
}
.field i{
  width: 50px;
  font-size: 18px;
  text-align: center;
}
.field.active i{
  color: #7d2ae8;
}
.field input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  color: white;
  background: #011633;
}
.field button{
  color: #fff;
  padding: 1px 18px;
  background: #1f409a;
  border: none;
  border-radius: 4px;
}
.field button:hover{
  background: #8d39fa;
}


.comment-form-container {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  padding: 20px;
  border-radius: 4px;
}

.input-row {
  margin-bottom: 20px;
}

.input-row textarea{
  padding-top: 10px;
}
.input-field {
  width: 100%;
  border-radius: 8px;
  padding: 10px;
  border: none;
  borer: #e0dfdf 1px solid;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  padding-left: 35px;
}

.input-field::placeholder{
  color: #333;
}

.btn-submit {
  padding: 10px 20px;
  background-image: linear-gradient(to right, #01154c, #010b27);
  font-weight: bold;
  border: #1d1d1d 1px solid;
  color: #f0f0f0;
  font-size: 0.9em;
  width: 100px;
  border-radius: 4px;
  cursor: pointer;
}



.comment-row {
  border-bottom: #e0dfdf 1px solid;
  margin-bottom: 15px;
  padding: 15px;
}

.outer-comment {
  background: #F0F0F0;
  padding: 20px;
  border: #dedddd 1px solid;
  border-radius: 4px;
}

span#blog{
   width: 40px;
  height: 40px;
  background-color: #1e409a;
  border-radius: 50%;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: white;
  font-size: 18px;
  font-weight: 400;
}

span.comment-row-label {
  color: #484848;
  display: inline-flex;

}

span.posted-by {
  font-weight: bold;
}

.toastr {
  position: fixed;
  top: 70px;
  right: 30px;
  border-radius: 12px;
  background: limegreen;
  z-index: 89999;
  padding: 20px 35px 20px 25px;
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.toastr.activer {
  transform: translateX(0%);
}

.toastr .toast-content {
  display: flex;
  align-items: center;
}

.toast-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #fff;
  color: #2770ff;
  font-size: 20px;
  border-radius: 50%;
}

.toast-content .message {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.message .text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.message .text.text-1 {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}

.toastr .close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  font-weight: 400;
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.1);
  color: #000;
}

.toastr .close:hover {
  opacity: 1;
}

.toastr .progress{
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;

}

.toastr .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #666;
}

.progress.activer:before {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}

.button {
  padding: 12px 20px;
  font-size: 20px;
  outline: none;
  border: none;
  background-color: #2770ff;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.button:hover {
  background-color: #2770ff;
}

.toastr.activer ~ .button {
  pointer-events: none;
}

.button:hover{
    cursor: pointer;
}

.rel{
      margin-left: 25px;
      font-size: 15px;
      color: #1f409a;
    }
.comment-info {
  font-size: 0.9em;
  padding: 0 0 10px 0;
}

.comment-text {
  margin: 10px 0px 30px 0;
}

.btn-reply {
  color: #2f20d1;
  cursor: pointer;
  text-decoration: none;
}

.btn-reply:hover {
  text-decoration: underline;
}

#comment-message {
  margin-left: 20px;
  color: #005e00;
  display: none;
}

.label {
  padding: 0 0 4px 0;
  font-size: 13px;
  position: absolute;
  margin-top: 12px;
  margin-left: 10px;
}
.sidebar-box {
  margin-bottom: 30px;
  padding: 25px;
  font-size: 15px;
  width: 100%;
  float: left;
  background: #fff; }
  .sidebar-box *:last-child {
    margin-bottom: 0; }
  .sidebar-box h3 {
    font-size: 18px;
    margin-bottom: 15px; }



.update_f{
      position: relative;
    }
    .update_f i{
      position: absolute;
      top: 12px;
      left: 7px;
    }

    .update_f button{
      border: none;
      background-color: #009d7e;
      color: white;
      padding: 8px;
      margin-top: 5px;
    }

    .update_f input{
      padding-left: 30px;
    }

    .dt .tagcloud{
  position: relative;
  bottom: 0;
  z-index: 67;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: white;
  padding: 5px 0;
  width: 100%;
  margin-left: -15px;
}

span#blog{
   width: 40px;
  height: 40px;
  background-color: #1e409a;
  border-radius: 50%;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: white;
  font-size: 18px;
  font-weight: 400;
}

span.comment-row-label {
  color: #484848;
  display: inline-flex;

}

span.posted-by {
  font-weight: bold;
}



.red_img{
  float:left; 
  border-radius: 5px; 
  margin-left: 5px;
  height: 180px;
  width: 250px;
}


.sec1{display: block; margin-left: 5px; height: 180px; width: 20px; float: left;}







#sd button, #sh, #sv, #comment_section button{
  border: none;
padding: 7px 15px;
border-radius: 3px;
outline: none;
color: white;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
background: #1f409a;
display: inline-flex;
flex-direction: row;
justify-content: space-evenly;
width: 23%;
flex-wrap: nowrap;
font-size: 14px;
font-weight: bold;
align-items: center;
}


#sd button:hover{
  border: none;
padding: 5px 10px;
border-radius: 3px;
outline: none;
color: #1f409a;
background: #fff;
transition: 0.5s;
cursor: pointer;
}


#comment_section button:hover{
  border: none;
padding: 5px 10px;
border-radius: 3px;
outline: none;
color: #fff;
background: #333;
transition: 0.5s;
cursor: pointer;
}


#sv:hover{
  border: none;
padding: 5px 10px;
border-radius: 3px;
outline: none;
background: #fff;
color: #ff004e;
transition: 0.5s;
cursor: pointer;
}

#sh:hover{
  cursor: pointer;
  outline: none;
  color: #fff;
  background: #065d9d;
  border: 1px solid #065d90;
  transition: 0.5s;
}

























@media (max-width: 560px){
  .read-more.expanded .content {
  max-height: 2400px;
}


.red_img{
  float:left; 
  border-radius: 5px; 
  margin-left: 5px;
  height: 250px;
  width: 98%;
}


.sec1{display: block; margin-left: 5px; margin-right: -3px; margin-top: 10px; height: auto; width: 98%; float: left;}
.sec{display: block; margin-left: 5px; margin-right: -3px; margin-top: 10px; height: auto; width: 98%; float: left;}



  .dt .tagcloud{
  position: fixed;
  bottom: 0;
  z-index: 67;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: white;
  padding: 5px 0;
  gap: 3px;
  left: 0;
  width: 100%;
  margin-left: auto;
}
#sh{
border: none;
padding: 5px 10px;
border-radius: 3px;
outline: none;
background: #065d9d;
color: white;
}

#sd button, #sh, #sv, #comment_section button{
  border: none;
padding: 2px 5px;
border-radius: 3px;
outline: none;
color: white;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
background: #1f409a;
display: inline-flex;
flex-direction: row;
justify-content: space-evenly;
width: 23%;
flex-wrap: nowrap;
font-size: 10px;
font-weight: bold;
align-items: center;
}


#sd button:hover{
  border: none;
padding: 5px 10px;
border-radius: 3px;
outline: none;
color: #1f409a;
background: #fff;
transition: 0.5s;
cursor: pointer;
}


#comment_section button:hover{
  border: none;
padding: 5px 10px;
border-radius: 3px;
outline: none;
color: #fff;
background: #333;
transition: 0.5s;
cursor: pointer;
}


#sv button:hover{
  border: none;
padding: 5px 10px;
border-radius: 3px;
outline: none;
background: #ff004e;
color: white;
transition: 0.5s;
cursor: pointer;
}

#sh:hover{
  cursor: pointer;
  outline: none;
  color: #fff;
  background: #065d9d;
  border: 1px solid #065d90;
  transition: 0.5s;
}



}