.banner-slogan {
  background: linear-gradient(to right, #135380, #17638b 40%);
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5rem;
  margin-top: 5rem;
}
@media (max-width: 991.98px) {
  .banner-slogan {
    position: relative;
    display: block;
    padding: 1rem;
    width: 100%;
    margin-top: 0;
    text-align: center;
  }
  .banner-slogan img {
    margin-bottom: 1rem;
  }
}
.banner-slogan p {
  color: #eff4f7;
  font-size: 1.75rem;
  font-weight: 200;
  margin: 0;
}
@media (max-width: 991.98px) {
  .banner-slogan p {
    text-align: center;
    line-height: 2rem;
  }
}

.btn-share {
  position: relative;
  display: inline-flex;
  z-index: 10;
}
.btn-share .btn {
  box-shadow: none;
}
.btn-share .container {
  position: absolute;
  top: 1rem;
  right: -5rem;
  z-index: -1;
}
.btn-share .container ul {
  position: relative;
  list-style: none;
  padding: 0;
}
.btn-share .container ul li {
  position: absolute;
  transition: 0.5s;
  opacity: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
}
.btn-share .container ul li span {
  cursor: pointer;
  position: relative;
}
.btn-share .container ul li span svg {
  box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.75);
  overflow: inherit;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: -0.3rem;
  bottom: 0;
  left: 0.7rem;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  padding: 0;
  transition: 0.5s;
}
.btn-share .container ul li span svg path {
  display: none;
}
.btn-share .container ul .li-open {
  opacity: 1;
}
.btn-share .container ul .li-open:nth-child(1) {
  color: #00A859;
  top: -3rem;
  bottom: 0;
  left: -2rem;
  right: 3rem;
}
.btn-share .container ul .li-open:nth-child(2) {
  color: #1877F3;
  top: -3.5rem;
  bottom: 0;
  left: 1rem;
  right: 0.4rem;
}
.btn-share .container ul .li-open:nth-child(3) {
  color: #1A91DA;
  top: -1rem;
  bottom: 0;
  left: 2.5rem;
  right: 0;
}
.btn-share .container ul .li-open svg {
  width: 2rem;
  height: 2rem;
  padding: 0.4rem;
}
.btn-share .container ul .li-open svg path {
  display: flex;
}

.blog {
  padding-top: 3rem;
}
.blog-title {
  position: relative;
}
.blog-title::before {
  content: " ";
  background-image: url("../../../../images/background-line.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 35rem;
  height: 35rem;
  top: -10.5rem;
  left: -7rem;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .blog-title::before {
    background: none;
    height: unset;
    width: unset;
  }
}
@media (max-width: 991.98px) {
  .blog-title {
    font-size: 2.5rem;
    font-weight: 200;
  }
}
.blog .form-control {
  padding: 1rem 7.5rem 1rem 1.5rem;
  font-size: 1.125rem;
  height: calc(1.2em + 2rem + 2px);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  color: #0e6caa;
  border-color: #0e6caa;
  cursor: pointer;
}
.blog .form-control option {
  color: #212529;
}
.blog .form-control::-ms-expand {
  display: none;
}
.blog .form-control:hover + span[aria-hidden=true] {
  -webkit-animation: appearance ease-in-out 1s;
          animation: appearance ease-in-out 1s;
}
@-webkit-keyframes appearance {
  16.65% {
    top: calc(8px + 1rem);
  }
  33.3% {
    top: calc(-6px + 1rem);
  }
  49.95% {
    top: calc(4px + 1rem);
  }
  66.6% {
    top: calc(-2px + 1rem);
  }
  83.25% {
    top: calc(1px + 1rem);
  }
  100% {
    top: calc(0 + 1rem);
  }
}
@keyframes appearance {
  16.65% {
    top: calc(8px + 1rem);
  }
  33.3% {
    top: calc(-6px + 1rem);
  }
  49.95% {
    top: calc(4px + 1rem);
  }
  66.6% {
    top: calc(-2px + 1rem);
  }
  83.25% {
    top: calc(1px + 1rem);
  }
  100% {
    top: calc(0 + 1rem);
  }
}
.blog .form-control + span[aria-hidden=true] {
  width: 1rem;
  height: 1rem;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-color: #0e6caa;
  pointer-events: none;
  transform: rotate(45deg);
  position: absolute;
  top: 1rem;
  right: 4rem;
}
.blog .card-posts .col-md-6 {
  margin-bottom: 30px;
}
.blog .card-posts a {
  height: 100%;
  display: block;
}
.blog .card-posts .post-item {
  border: solid 1px #CBCBCB;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog .card-posts .post-item .img .post-item-top {
  padding-left: 24px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
}
.blog .card-posts .post-item .img .post-item-top .date {
  color: #495057;
  font-size: 14px;
  display: block;
}
.blog .card-posts .post-item .img .post-item-top .subject {
  font-size: 14px;
  display: block;
  padding: 8px 16px;
  background: #19943A;
  color: #fff;
}
.blog .card-posts .post-item-body {
  padding: 0 0 24px 24px;
  margin-top: auto;
  margin-bottom: auto;
}
.blog .card-posts .post-item-body h2 {
  color: #495057;
  font-size: 18px;
  margin-bottom: 1rem;
  font-weight: 700;
  padding-right: 24px;
}
.blog .card-posts .post-item-body p {
  margin-bottom: 0;
  padding-right: 24px;
  font-size: 14px;
}
.blog .card-posts .post-item:hover {
  background: #EFF4F7;
}
.blog-1others {
  margin-top: 2.5rem;
  padding: 2rem 0 4.5rem;
  background-color: #eff4f7;
}
@media (max-width: 991.98px) {
  .blog-1others {
    margin-top: 2rem;
    padding: 2rem 0 2.5rem;
  }
}
.blog-1others h2 {
  font-size: 3.75rem;
  color: #12507e;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .blog-1others h2 {
    font-size: 2.5rem;
    font-weight: 200;
  }
}
.blog-1others .others-item {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.blog-1others .others-item img {
  max-width: 30%;
  flex: 0 0 30%;
  background: linear-gradient(to bottom, #c9d7e1, #94afc4);
  padding: 0.55rem 0.85rem 0.85rem;
}
@media (max-width: 991.98px) {
  .blog-1others .others-item img {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.blog-1others .others-item-body {
  padding-left: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0d0d0d;
  margin-top: 2rem;
  max-width: 70%;
  flex: 0 0 70%;
}
@media (max-width: 991.98px) {
  .blog-1others .others-item-body {
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 1rem;
  }
}
.blog-1others .others-item-body h1 {
  font-size: 1.875rem;
  color: #5c5c5c;
  font-weight: 200;
}
.blog-1others .others-item-body p {
  font-size: 1.25rem;
  color: #5c5c5c;
  font-weight: 200;
  margin-bottom: 0;
}
.blog-1others .others-item-body .btn {
  padding: 0.5rem 0;
}
.blog-1others .others-item-body .btn svg {
  font-size: 2.2rem;
}
.blog-1others .btn-outline-primary {
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 991.98px) {
  .blog-1others .btn-outline-primary {
    margin-bottom: 2rem;
  }
}
