/* top-banner */
section.section-mg{
  margin: 5rem 0;
  
}
section.section-mg-1{
  margin: 1rem 0;
  
}
.form-select option {
  color: #ffffff !important;
  padding: 50px;
  padding: 5rem 4rem;
  min-height: 4.2em;
}
body{
  color: #313e4a;
  font: normal normal normal 14px/22px Circular Std Book;
}
section.blogs_banner {
  margin-top: 5rem !important;
  margin-bottom: 2rem !important;
}
section.blogs_banner img{
  width: 100%;
}     
.container-xl{
  max-width: 1800px;
}  
.flex-container{
  display: flex;
  justify-content: space-between;
}
span.subscribe {
background: #fff;
color: #8dc813;
padding: 5px 5px;
}
.subscribe-wrapper{
  background: #a2c600;
}
.blog-home-wrapper{
  background: #eef0f3;
  padding: 4rem 4rem;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.25rem;
  margin: 0 0;
  position: relative;
  
}

/* .blog-home-wrapper::after{
  font-family: FontAwesome;
    position: absolute;
    content: "\f103";
    background-color: #CDDC39;
    font-size: 18px;
    bottom: -30px;
    left: 50%;
    border-radius: 100%;
    padding: 15px 20px;
    color: #fff;
    font-weight: 900;
} */

/* //animate down arrow */
section.blogs-pointing-arrow .arrows {
  position: relative;
}
.blogs-pointing-arrow .arrows {
  /* background-color: #CDDC39; */
  /* border-radius: 100%; */
  /* padding: 15px 20px; */
  font-weight: 900;
  color: #fff;
  position: relative;
  /**/
  position: absolute;
  bottom: 30px;
  left: 50%;
  /**/
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
}
.blogs-pointing-arrow .arrows:before {
  content: "";
    position: absolute;
    width: 50%;
    height: 50%;
    border-left: 5px solid rgb(255 255 255 / 70%);
    border-bottom: 5px solid rgb(255 255 255 / 70%);
    transform: translate(5px, 100px) rotate(-45deg);
    animation: arrows 5s linear infinite;
}
.blogs-pointing-arrow .arrows:after {
  content: "";
    position: absolute;
    width: 50%;
    height: 50%;
    border-left: 5px solid rgb(255 255 255 / 70%);
    border-bottom: 5px solid rgb(255 255 255 / 70%);
    transform: translate(10px, 0px) rotate(-45deg);
    animation: arrows 5s linear infinite -1.5s;
}

@keyframes arrows {
  0% {
    border-left: 5px solid #CDDC39;
    border-bottom: 5px solid #CDDC39;
    transform: translate(-2.5px, -20px) rotate(-45deg);
  }
  10%, 90% {
    border-left: 5px solid #CDDC39;
    border-bottom: 5px solid #CDDC39;
  }
  50% {
    border-left: 5px solid rgb(255 255 255 / 70%);
    border-bottom: 5px solid rgb(255 255 255 / 70%);
    transform: translate(-2.5px, 0px) rotate(-45deg);
  }
  100% {
    border-left: 5px solid #ffffff;
    border-bottom: 5px solid #ffffff;
    transform: translate(-2.5px, 20px) rotate(-45deg);
  }
}
/* //animate down arrow */

.blogs-topic-preview-flex{
  display: flex;
  justify-content: space-between;
}
.blogs-topic-preview{
  text-align: center;
  /* width: 60%; */
}
.blogs-section .card {
  padding: 0;
}
.blogs-section .card:hover{
  padding: 0 !important;
  text-align: left !important;
  line-height: 1;
}
.blogs-section .card p.card-text{
  margin-bottom: 3rem;
}
.fade:not(.show) {
  opacity: 0.8;
}
.active-blog-preview{
  text-align: left;
  background: #fff;
  /* padding: 5.5rem 2rem; */
 
}
.card.blogs-item{
  transition: all 0.3s ease-in-out;
  border-radius: 0.25rem;
  margin: 2rem 1rem;
  cursor: pointer;
}
.card.blogs-item:hover{
  scale: 1.05;
}
.date {
  color: #313e4a;
  font-size: 0.75rem;
  margin-top: 1rem;
}

.blog-detail-view{
  background-color: #eef0f3;
}
.card-body.blog-content span.color-blue {
  color: #014c82 !important;
}
.section-mt-5.topic-wrapper{
  margin-top: 6rem;
}

a.btn-subscribe{
  padding: 5px 4px;
}
a.btn-subscribe > span.text{
  padding: 0px 10px;
}
select.form-select.topic-select-blogs{
  color: #fff;
  background-color: #142244;
  padding: 0.5rem 4rem;
  font-size: 16px;
}
.small-print {
  color: #014c82;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.tags {
  color: #014c82;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  margin-top: .5rem;

}
H1{
	font-size: 2.5rem;
	color: #142244
}
H2{
	font-size: 1.8rem;
	color: #142244
}
H3 {
	font-size: 1.3rem
}
H4{
	font-size: 1rem
}


/* arrow */
.btn-arrow {
  color: transparent;
  display: block;
  margin: 0rem 2rem;
  position: relative;
  width: 2rem;
  height: 2rem;

  background-color: rgba(black, .05);

  transition: all 150ms ease-out;

  &::before,
  &::after {
      content: "";
      display: block;
      position: absolute;
          top: 0;
          left: 0;

      background-color: #606060;
      
      transition: all 150ms ease-out;
  }

  &::before {
      width: 75%;
      height: 25%;
  }

  &::after {
      width: 25%;
      height: 75%;
  }

  &:hover, &:focus {
      background-color: rgba(black, .1);
      
      &::before,
      &::after {
          background-color: #404040;
      }
  }

  &.btn-arrow-left,
  &.btn-arrow-right {
      &::before,
      &::after {
          top: 12.5%;
          left: 12.5%;
      }
  }

  &.btn-arrow-left {
      transform: rotate(-45deg);
  }

  &.btn-arrow-right {
      transform: rotate(135deg);
  }
}



/* ========================= */

/* arrow css  */

@media (max-width:768px){
  section.blogs_banner {
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
  }
  section.section-mg {
    margin-top: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  section.blogs_banner {
    margin-top: 4rem !important;
  }
  .section-mt-5.topic-wrapper {
    margin-top: 5rem;
  }
  .blog-detail-view {
    min-height: 800px;
    padding: 2rem 1rem;
  }
  h3.mt-5, p.mt-5{
    margin-top: 1rem !important;
  }
   h5.mt-3{
    margin-top: .3rem !important;
    margin-bottom: .3rem !important;
  }
    h6.mt-5{
    margin-top: .2rem !important;
  }
  .card.blogs-item {
    margin: 1rem 0rem;
  }
  .blog-home-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 10px;
  }
  .blogs-topic-preview-1{
    margin-bottom: 1rem;
  }
  .active-blog-preview {
    padding: 2rem 2rem;
  }
}

@media   (min-width:769px) and (max-width:999px){
  section.blogs_banner {
    margin-top: 6.5rem !important;
  }
  section.section-mg {
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
  }
  .blog-detail-view {
    min-height: 800px;
    padding: 2rem 2rem;
  }
  h3.mt-5, p.mt-5{
    margin-top: 1rem !important;
  }
  .card.blogs-item {
    margin: 1rem 0rem;
  }

  .blog-home-wrapper {
    padding: 1rem;
  }
  .blogs-topic-preview-1, .blogs-topic-preview-2{
    flex: 1;
    place-self: normal;
  }
  .active-blog-preview {
    padding: 2rem 2rem;
  }
}

@media (min-width:1000px) and (max-width:1024px){
  section.blogs_banner {
    margin-top: 3rem !important;
  }
  section.blogs_banner {
    margin-top: 6.5rem !important;
  }
  .blogs-topic-preview {
    /* width: 88%; */
  }
  .section-mt-5.topic-wrapper {
    margin-top: 8rem;
  }
  .blog-detail-view {
    min-height: 800px;
    padding: 2rem 3rem;
  }
  h3.mt-5, p.mt-5{
    margin-top: 2rem !important;
  }
  .card.blogs-item {
    margin: 1rem 0rem;
  }
  .blogs-topic-preview-1, .blogs-topic-preview-2{
    flex: 1;
    place-self: normal;
  }
  .active-blog-preview {
    padding: 3.7rem 2rem;
  }
}


@media (min-width:1025px) and (max-width:1366px){
  section.blogs_banner {
    margin-top: 8rem !important;
  }
  .blogs_banner.banner-mt{
    margin-top: 5.5rem !important;
  }
  .blogs-topic-preview {
    /* width: 88%; */
  }
  .section-mt-5.topic-wrapper {
    margin-top: 8rem;
  }
  .blog-detail-view {
    min-height: 800px;
    padding: 2rem 5rem;
  }
  h3.mt-5, p.mt-5{
    margin-top: 2rem !important;
  }
  .blog-home-wrapper {
    padding: 2rem;
  }
  .active-blog-preview {
    padding: 6rem 2rem;
  }
  .blogs-topic-preview-1, .blogs-topic-preview-2{
    flex: 1;
    place-self: normal;
  }
/*
  .blogs-topic-preview-1, .blogs-topic-preview-2{
    flex: inherit;
    place-self: normal;
  }
*/
  .active-blog-preview {
    padding: 6rem 2rem;
  }
}

@media (min-width:1367px) and (max-width:1440px){
  section.blogs_banner {
    margin-top: 3rem !important;
  }
  .blogs_banner.banner-mt{
    margin-top: 5.5rem !important;
  }
  .blogs-topic-preview {
    width: 100%;
  }
  .section-mt-5.topic-wrapper {
    margin-top: 8rem;
  }
  .blog-detail-view {
    min-height: 800px;
    padding: 2rem 5rem;
  }
  h3.mt-5, p.mt-5{
    margin-top: 2rem !important;
  }
  .blogs-topic-preview-1, .blogs-topic-preview-2{
    flex: 1;
    place-self: normal;
  }
  .active-blog-preview {
    padding: 6rem 2rem;
  }
 /*  .blogs-topic-preview-1, .blogs-topic-preview-2 {
    flex: inherit; 
    place-self: normal;
  }
  */
}

@media (min-width:1441px){
  section.blogs_banner {
    margin-top: 3rem !important;
  }
  .blogs_banner.banner-mt{
    margin-top: 7rem !important;
  }
  .blogs-topic-preview {
    width: 88%;
  }
  .section-mt-5.topic-wrapper {
    margin-top: 8rem;
  }
  .blog-detail-view {
    min-height: 800px;
    padding: 2rem 5rem;
  }
  h3.mt-5, p.mt-5{
    margin-top: 2rem !important;
  }
  
  .active-blog-preview {
    padding: .2rem 2rem;
    /* BECCA this one controls the size of the white preview block */
  }
  .blogs-topic-preview-1, .blogs-topic-preview-2 {
    flex: 1; 
    place-self: inherit;
  }
  .small-print {
  color: #014c82;
  font-size: 0.8rem;
  margin-top: 1rem;
}
  .tags {
  color: #014c82;
  font-size: 1rem;
  margin-bottom: 2rem;
}

