* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }
:root {
  --primary-color: #002570;
  --secondary-color: #007eff;
  --light: #fff;
  --dark: #000;
  --body-color: #97a9bf;
}
  
  @font-face {
    font-family: 'lora';
    src: url(../font/Lora-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }
  
  body {
    font-family: 'lora';
    font-size: 16px;
    color: #656565;
    line-height: 26px;
    font-weight: 400;
    background: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-font-smoothing: antialiased;
    background-color: #e6f1ff
  }
  
  ol,
  ul {
    padding-left: 2rem;
  }
  
  dl,
  ol,
  ul {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-right: auto;
    margin-left: auto;
}
  
  
  .container{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  @media(min-width: 576px) {
  
    .container {
      max-width: 540px
    }
  }
  
  @media(min-width: 768px) {
  
    .container {
      max-width: 720px
    }
  }
  
  @media(min-width: 992px) {
  
    .container {
      max-width: 960px
    }
  }
  
  @media(min-width: 1200px) {
  
    .container {
      max-width: 1140px
    }
  }
  
  .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
  }
  
  article,
  aside,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  main,
  nav,
  section {
    display: block;
  }
  
  .navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem;
  }
  
  @media (min-width: 992px) {
    .navbar-expand-lg {
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
  }
  
  a {
    color: #012549;
    text-decoration: none;
  }

  a, i, cite, em, var, address, dfn, ol, li, ul {
    font-style: normal;
    font-weight: 400;
    list-style: none;
}
  
  a, a:focus, a:hover {
    text-decoration: none;
  }
  
  .navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
  }
  
  .navbar-light .navbar-brand {
    color: rgba(0, 0, 0, .9);
  }
  
  .navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
  }
  
  @media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
      display: none;
    }
  }
  
  .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border-color: rgba(0, 0, 0, .1);
  }
  
  .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
  }
  
  .navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .collapse:not(.show) {
    display: none;
  }
  
  @media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
      flex-basis: auto;
    }
  }
  
  .navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
  }
  
  .ml-auto,
  .mx-auto {
    margin-left: auto !important;
  }
  
  @media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
      -ms-flex-direction: row;
      flex-direction: row;
    }
  }
  
  .nav-link {
    display: block;
    padding: .5rem 1rem;
  }
  
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }
  
  @media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: .5rem;
      padding-left: .5rem;
    }
  }
  
  .nav-link:focus,
  .nav-link:hover {
    text-decoration: none;
  }
  
  .navbar-brand:focus,
  .navbar-brand:hover {
    text-decoration: none;
  }
  
  [role=button] {
    cursor: pointer;
  }
  
  .col,
  .col-1,
  .col-10,
  .col-11,
  .col-12,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-auto,
  .col-lg,
  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-auto,
  .col-md,
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-auto,
  .col-sm,
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-auto,
  .col-xl,
  .col-xl-1,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  @media (min-width: 576px) {
    .col-sm-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
  }
    
  }
  
  @media (min-width: 768px) {
    .col-md-6 {
      flex: 0 0 50%;
      width: 50%;
    }
  
  }
  
  @media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
  
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
  }

  @media (min-width: 1200px) {
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-2 {
      flex: 0 0 auto;
      width: 16.66666667%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}
}
  
  img {
    max-width: 100%;
    vertical-align: middle;
    border-style: none;
  }
  
  .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
  }
  
  .page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
  }
  
  .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
  }
  
  .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
  }
  
  .page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
  }
  
  .form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
  }
  
  .form-row>.col,
  .form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
  }
  
  .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }
  
  .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
  }
  
  .input-group-append,
  .input-group-prepend {
    display: -ms-flexbox;
    display: flex;
  }
  
  .input-group-append {
    margin-left: -1px;
  }
  
  button {
    border-radius: 0
  }
  
  button:focus:not(:focus-visible) {
    outline: 0
  }
  
  button,
  input,
  optgroup,
  select,
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
  }
  
  button, input {
    overflow: visible;
  }
  
  button,
  select {
    text-transform: none
  }
  
  [type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
  }
  
  [type=button],
  [type=reset],
  [type=submit],
  button {
    -webkit-appearance: button;
  }
  
  [type=button]:not(:disabled),
  [type=reset]:not(:disabled),
  [type=submit]:not(:disabled),
  button:not(:disabled) {
    cursor: pointer;
  }
  
  figure {
    margin: 0 0 1rem;
  }
  
  .list-unstyled {
    padding-left: 0;
    list-style: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 0;
    margin-bottom: .5rem;
  }
  
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: .5rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group>.form-control, .input-group>.form-floating, .input-group>.form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}



























.main-header {
  left: 0;
  margin: auto;
  position: sticky !important;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14901960784313725);
  background: var(--primary-color) !important;
  transition: .5s !important;
  z-index: 922;
  -webkit-animation: 300ms running fadeInDown;
  animation: 500ms running fadeInUp;
  animation-name: slideInDown;
}

.container-fluid{
  padding: 0;
}

@media (min-width:992px) {
  .container-fluid{
    max-width: 1140px;
  }
}

.main-header__inner {
  display: flex;
  align-items: center;
  position: relative;
}

a {
  color: inherit;
  transition: all 400ms ease;
}

a, a:hover, a:focus, a:visited {
  text-decoration: none;
}

.main-header__logo a{
  color: #ffffff;
  font-size: 25px;
  padding-right: 30px;
  font-weight: bold;
}

.main-menu{
  margin-left: 25px;
}

.main-menu .main-menu__list, .main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list, .main-menu .main-menu__list ul {
      display: flex;
  }

  .main-menu .main-menu__list span{
    display: none;
  }
}

.main-menu .main-menu__list li {
  position: relative;
  margin: 0 20px;
}

.main-menu .main-menu__list>li{
  margin-left: 0;
}

.main-menu .main-menu__list li:last-child{
  margin-right: 0;
}

.main-menu .main-menu__list>li>a {
  padding: 25px 0;
  display: flex;
  color: #ffffff;
  align-items: center;
  text-transform: capitalize;
  letter-spacing: 0;
  position: relative;
  font-size: 16px;
  transition: all 500ms ease;
}
.main-menu .main-menu__list>li>a:before {
  position: absolute;
  content: "";
  left: -13px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #007eff;
  opacity: 0;
  transition: .5s;
}
.main-menu .main-menu__list>li>a:hover:before {
  opacity: 1;
}
.search-box-btn i {
  display: inline-block;
  text-align: center;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: .5s;
  background: #d7e8fc;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: rgba(215, 231, 251, 0);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.main-header__right {
  margin-left: auto;
}

.link_btn{
  position: relative;
}

.link_btn a{
  font-size: 15px;
  padding: 14px 30px;
  font-weight: 500;
  color: #fff;
  background: #002570;
  text-transform: uppercase;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: .5s;
  margin: 0 9px 0 14px;
  background: var(--primary-color);
}
.mediic-hover-btn {
  background-color: #007eff;
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  width: 25%;
  z-index: -1;
}
.hover-btn {
  left: 0;
  -webkit-transition-delay: .105s;
  transition-delay: .105s;
  border-radius: 30px 0 0 30px;
}
.hover-btn2 {
  left: 25%;
  -webkit-transition-delay: .105s;
  transition-delay: .105s;
}
.hover-btn3 {
  left: 50%;
  -webkit-transition-delay: .105s;
  transition-delay: .105s;
}
.hover-btn4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-radius: 0 30px 30px 0;
}
.link_btn a:hover .mediic-hover-btn {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}


.link_btn a span{
  position: relative;
  padding-right: 25px;
}

.link_btn a span:before {
  position: absolute;
  content: '\e624';
  font-family: 'iconfont';
  font-size: 17px;
  top: -2px;
  right: -3px;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}

@media (min-width: 1200px) {
  .mobile-nav__btn {
      display: none;
  }
}

.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.blog-one {
  padding: 60px 0 120px;
  position: relative;
}

.blog-card__image {
  position: relative;
  overflow: hidden;
}

.blog-card {
  position: relative;
  margin-bottom: 16px;
  padding: 25px 25px 35px;
  background-color: rgba(243, 248, 253, 0.30196078431372547);
  border: 2px solid #fff;
  margin-bottom: 30px;
  border-radius: 15px;
}

.blog-card .blog-card__image a {
  display: block;
  position: relative;
}

.blog-card__image img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
  border-radius: 15px;
}

.blog-card__image .link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


.blog-card__image .link a i {
  font-size: 20px;
  position: relative;
  display: inline-block;
  transform: rotate(45deg);
}

.blog-card:hover .blog-card__image img {

}

.blog-card__content {
  position: relative;
  display: block;
  padding: 20px 0 0 0;
}

.news-block_two-title {
  position: absolute;
    left: 30px;
    top: -36px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #1f1f1f;
    padding: 13px 20px;
    z-index: 1;
}

.news-block_two-title::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(rgba(255, 228, 130, 1), rgba(255, 143, 109, 1));
}

.news-block_two-title::after{
  position: absolute;
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 1px;
  top: 1px;
  background: #fff;
  z-index: -1;
}

.blog-card__meta {
  position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.blog-card__meta li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 26px;
  padding-left: 24px;
  margin-right: 40px;
  color: var(--primary-color);
  display: inline-block;
  z-index: 1;
}

.blog-card__meta li:last-child{
  margin-right: 0;
}

.blog-card__meta li a {
  color: inherit;
}

.blog-card__meta li i{
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
  position: relative;
    font-weight: 700;
    color: #1f1f1f;
    margin: 0;
    transition: all 500ms ease;
  color: #002570;
}

.blog-card__title {
  display: block;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 14px;
  color: #002570;
}

.blog-card__title a {
  position: relative;
  display: inline-block;
  color: #002570;
  font-weight: 800;
}

.blog-card__title a:hover {
  color: var(--secondary-color);
}
.mediic-hover-box {
  background-color: #007eff;
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  width: 25%;
  z-index: -1;
}
.hover-bx {
  left: 0;
  -webkit-transition-delay: .105s;
  transition-delay: .105s;
  border-radius: 20px 0 0 20px;
}
.hover-bx2 {
  left: 25%;
  -webkit-transition-delay: .105s;
  transition-delay: .105s;
}
.hover-bx3 {
  left: 50%;
  -webkit-transition-delay: .105s;
  transition-delay: .105s;
}
.hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-radius: 0 20px 20px 0;
}
.mediic-hover-box {
  background-color: rgba(0, 17, 112, 0.3);
  z-index: 1;
}
.blog-card:hover .mediic-hover-box {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}


.category-list{
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
}

.category-list li {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  margin-right: 10px;
}

.category-list li:before {
  position: absolute;
  content: '';
  background: #DDD;
  width: 6px;
  height: 6px;
  left: 0;
  top: 10px;
  border-radius: 50%;
}

.category-list li a {
  display: inline-block;
  font-size: 14px;
  line-height: 26px;
  color: #1f1f1f;
}

.category-list li a:hover {
  color: #ff8f6d;
}

.post-pagination {
  margin-top: 30px;
  padding: 0;
  text-align: center;
}

.post-pagination li{
  position: relative;
    display: inline-block;
    margin: 0 2px;
}

.post-pagination a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: #FFF9F7;
  text-align: center;
  color: #656565;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

.post-pagination a:hover,.post-pagination a.current {
  color: #007eff;
  background: #002570;
}

.sidebar {
  position: relative;
}

.sidebar__single {
  padding: 20px 35px 24px;
  border-radius: 20px;
  background-color: rgba(243, 248, 253, 0.30196078431372547);
  border: 2px solid #fff;
  margin-bottom: 30px;
}

.sidebar__single:last-child{
  margin-bottom: 0;
}

.sidebar__search {
  position: relative;
}

.sidebar .sidebar__search input[type="text"] {
  padding: 10px 30px;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.30196078431372547);
  border: 2px solid #fff;
}


.sidebar__search button[type=submit] {
  height: 50px;
  width: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  position: absolute;
  right: 8px;
  top: 5px;
}

.sidebar__title {
  position: relative;
    display: block;
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 26px;
}
.sidebar__title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background: #0c5adb;
  transition: .5s;
}

.sidebar__categories li {
  padding: 13px 24px 13px;
  height: 56px;
  display: block;
  list-style: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.30196078431372547);
  border: 2px solid #fff;
  margin: 0 0 15px;
  position: relative;
  z-index: 1;
  transition: .5s;
}

.sidebar__categories li a {
  font-size: 15px;
  color: #65677a;
  transition: .5s;
}
.sidebar__categories li a i {
  padding: 0 12px 0 0;
  font-size: 17px;
  display: inline-block;
  color: var(--secondary-color);
  transition: .5s;
}
.sidebar__categories li:before {
  position: absolute;
  content: "";
  z-index: -1;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: .5s;
  border-radius: 5px;
}
.sidebar__categories li:hover:before {
  width: 100%;
  left: 0;
}
.sidebar__categories li:hover a {
  color: #fff;
}
.sidebar__categories li:hover a i{
  color: #fff;
}
.mediic-category-items{
  margin-bottom: 20px;
}
.category-content h4 {
  margin: 0;
  font-size: 18px;
}
.category-content h4 a {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  transition: .5s;
}
.category-content h4 a:hover {
  color: var(--secondary-color);
}
.category-content h6 {
  font-size: 15px;
  font-weight: 400;
  margin: 9px 0 0;
}


.sidebar__posts {
  margin-bottom: 0;
}

.sidebar__posts__item:not(:last-of-type) {
  position: relative;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.10);
}

.sidebar__posts__title {
  position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
}

.sidebar__posts__title a {
  display: inline-block;
  color: #1f1f1f;
  font-weight: 700;
  transition: all 300ms ease;
}

.sidebar__posts__title a:hover {
  color: #ff8f6d;
}

.main-footer {
  position: relative;
  background-color: var(--primary-color);
}

.main-footer__top {
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget__logo {
  display: inline-flex;
  font-size: 25px;
  color: #fff;
  margin-bottom: 17px;
}
.company-info-desc p {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  line-height: 30px;
}

.footer-widget__social{
  position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.footer-widget__social a{
  position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 49px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.40);
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.footer-widget__social a::before{
  position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transform: scale(0, 0);
    transition: all 500ms ease;
    background: var(--secondary-color);
}

.footer-widget__social a:hover{
  color: #fff;
}

.footer-widget__social a:hover::before{
  transform: scale(1, 1);
}

.footer-widget__title {
  position: relative;
    margin-bottom: 17px;
    color: #fff;
    text-transform: capitalize;
    font-size: 24px;
  line-height: 26px;
}

.footer-widget__links{
  font-size: 17px;
}

.footer-widget__links li {
  display: block;
  list-style: none;
  margin-bottom: 16px;
}

.footer-widget__links li a {
  font-weight: 500;
  color: #fff;
  display: inline-block;
  transition: .5s;
}

.footer-widget__links li a:hover{
  color: var(--secondary-color);
}


.main-footer__bottom__inner {
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.main-footer__copyright {
  margin: 0;
  color: #FFF;
  text-align: center;
}

.main-footer__copyright a{
  color: var(--secondary-color);
}

.blog-details__content {
  position: relative;
}

.blog-details__image {
  position: relative;
    overflow: hidden;
}

.blog-details__image img {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.blog-details__top-meta {
  position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 0;
}

.blog-details__top-meta li {
  position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 26px;
    margin-right: 40px;
}

.blog-details__top-meta li a {
  color: inherit;
}

.blog-details__top-meta li i {
  margin-right: 10px;
}

.blog-details__title {
  position: relative;
    display: block;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 13px;
  padding: 25px 0 21px;
}

.blog-details__text {
  position: relative;
  margin-bottom: 20px;
}

.comment-form-area {
  margin-top: 40px;
}

@media (min-width: 1200px) {
  .comment-form-area {
      margin-top: 55px;
  }
}

.group-title {
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.group-title h2{
  font-size: 2rem;
  line-height: 40px;
}

.default-form .form-group {
  position: relative;
  margin-bottom: 24px;
}

.default-form .form-group label {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 13px;
}

.default-form .form-group input[type='text'], .default-form .form-group input[type='email'], .default-form .form-group textarea {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  padding: 0 20px;
  outline: 0;
  display: inline-block;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid rgba(0, 37, 112, 0.5);
  font-weight: 500;
}

.default-form .form-group input:focus, .default-form .form-group textarea:focus {
  border-color: #007eff !important;
}

.default-form .form-group textarea {
  height: 92px;
  resize: none;
}

.default-form p {
  margin-bottom: 45px;
}

.default-form .link_btn{
  background: transparent;
}

.default-form .link_btn {
  padding: 16px 40px;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  border-radius: 32px;
  position: relative;
  z-index: 1;
  transition: .5s;
  overflow: hidden;
  border: 1px solid #007eff;
  background-color: var(--primary-color);
}
.default-form .link_btn:after {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  color: #fff;
  position: absolute;
  content: attr(data-text);
  cursor: pointer;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #007eff;
  background: url(../img/mask-btn2.png);
  mask: url(../img/mask-btn2.png);
  -webkit-mask-size: 2300% 100%;
  mask-size: 2300% 100%;
  animation: mask_animation_2 .7s steps(22) forwards;
  z-index: -1;
}
.default-form .link_btn:hover:after {
  animation: mask_animation .7s steps(22) forwards;
}
@keyframes mask_animation {
  from {
    -webkit-mask-position: 0;
    mask-position: 0
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0
  }
}
@keyframes mask_animation_2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0
  }

  to {
    -webkit-mask-position: 0;
    mask-position: 0
  }
}

@media (max-width:992px) {
  .main-header__inner{
    padding: 10px 20px;
  }

  .main-header__logo a{
    white-space: nowrap;
  }

  .main-header__nav{
    margin: 0;
  }

  .blog-one{
    padding: 20px 0 60px;
  }

  .post-pagination{
    margin-bottom: 30px;
  }

  .main-menu .main-menu__list{
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    padding: 80px 0;
    transform: translateX(120%);
    transition: all .4s ease-in-out;
    opacity: 0;
  }

  .main-menu .main-menu__list.show{
    transform: translateX(0);
    opacity: 1;
  }

  .main-menu .main-menu__list span{
    font-size: 20px;
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    color: #000;
  }

  .main-menu .main-menu__list>li{
    border-bottom: 1px solid rgba(0,0,0,0.5);
    padding: 0;
    margin: 0;
  }

  .main-menu .main-menu__list>li>a{
    color: #000;
    line-height: 24px;
    padding: 12px 20px;
    font-size: 16px;
    text-transform: capitalize;
  }

  .main-menu .main-menu__list>li+li{
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .main-header__right .link_btn{
    display: none;
  }

  .blog-card__title {
    font-size: 20px;
    line-height: 30px;
    margin-top: 10px;
  }

  .comment-form-area{
    margin-bottom: 40px;
  }

  .blog-details__title{
    font-size: 25px;
    line-height: 35px;
  }
}

@media (min-width:1024px) {
  .phoneCont{
    display: none !important;
  }
}

.positionFixed {
  bottom: 0px;
  left: 50%;
  position: fixed;
  transform: translate(-50%, 0%);
  z-index: 999;
  width: 100%;
  background-color: #e4e4e4;
  display: flex;
  justify-content: center;
}

.ad-div {
  margin-bottom: 20px;
  width: 100%;
  min-height: 250px;
  clear: both;
}

.t_de {
  clear: both;
  height: 0.2rem;
  width: 100%;
  max-width: 100%;
  line-height: 0.3rem;
  font-size: 0.6rem;
  padding: 0.5rem 0 1rem 0;
  box-sizing: border-box;
  color: #707070;
  text-align: center;
}

.grecaptcha-badge {
  visibility: hidden;
}

.post_tag_name {
  font-size: 25px;
  line-height: 2;
}

nav[aria-label="breadcrumb"] {
  margin-bottom: 20px;
}

nav ol.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ol.breadcrumb li {
  display: inline;
  word-break: break-all;
}