.dz-card {
    position: relative;
  }
  
  .dz-card .dz-info {
    padding: 30px;
    position: relative;
  }
  
  .dz-card .dz-title {
    margin-bottom: 15px;
    word-break: break-word;
    text-transform: uppercase;
  }
  
  @media only screen and (max-width: 575px) {
    .dz-card .dz-title {
      margin-bottom: 15px;
    }
  }
  
  .dz-card.blog-half {
    display: flex;
    margin-bottom: 30px;
  }
  
  .dz-card.blog-half .dz-info {
    padding: 30px;
    position: relative;
    flex: 1;
  }
  
  .dz-card.blog-half .dz-media {
    margin-bottom: 0;
    max-width: 300px;
    min-width: 300px;
  }
  
  .dz-card.blog-half .dz-media img {
    height: 100%;
    object-fit: cover;
    min-height: 235px;
  }
  
  @media only screen and (max-width: 575px) {
    .dz-card.blog-half .dz-media img {
      min-height: auto;
    }
  }
  
  .dz-card.blog-half.post-video .post-video-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .dz-card.blog-half .swiper-container {
    height: 100%;
  }
  
  @media only screen and (max-width: 767px) {
    .dz-card.blog-half {
      display: block;
    }
  
    .dz-card.blog-half .dz-media {
      max-width: 100%;
      min-width: 100%;
    }
  }
  
  .dz-media.height-sm {
    height: 220px;
  }
  
  .dz-media.height-sm img {
    height: 100%;
    object-fit: cover;
  }
  
  .dz-media.height-md {
    height: 265px;
  }
  
  .dz-media.height-md img {
    height: 100%;
    object-fit: cover;
  }
  
  @media only screen and (max-width: 1199px) {
    .dz-media.height-md {
      height: 220px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .dz-media.height-md {
      height: 200px;
    }
  }
  
  .dz-media.height-lg {
    height: 350px;
  }
  
  @media only screen and (max-width: 1199px) {
    .dz-media.height-lg {
      height: 300px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .dz-media.height-lg {
      height: 220px;
    }
  
    .dz-media.height-lg img {
      height: 100%;
      object-fit: cover;
    }
  }
  
  .dz-meta {
    margin-bottom: 10px;
  }
  
  .dz-meta ul {
    margin: 0;
    padding: 0;
  }
  
  .dz-meta ul li {
    display: inline-block;
    color: #777;
    margin-right: 20px;
  }
  
  .dz-meta ul li:last-child {
    margin-right: 0;
  }
  
  .dz-meta ul li i {
    margin-right: 5px;
    color: var(--primary);
  }
  
  .dz-meta ul li a {
    color: #777;
  }
  
  .dz-badge {
    background-color: var(--primary);
    color: #fff;
    border-radius: 3px;
    padding: 6px 15px;
    font-size: 15px;
  }
  
  .dz-badge:hover {
    color: white;
  }
  
  .post-video .post-video-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--primary);
    font-size: 30px;
    margin: 0 auto;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.5);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
  }
  
  @media only screen and (max-width: 575px) {
    .post-video .post-video-icon {
      height: 50px;
      width: 50px;
      line-height: 50px;
      font-size: 14px;
    }
  }
  
  .post-video .post-video-icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 1px solid #fff;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 100%;
    animation: animationSignal1;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    -webkit-animation: animationSignal1;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
    z-index: -1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -moz-transition: all 0.5;
    -o-transition: all 0.5;
    -webkit-transition: all 0.5;
    -ms-transition: all 0.5;
    transition: all 0.5;
  }
  
  .post-video .post-video-icon:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 1px solid #fff;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    animation: animationSignal2;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    -webkit-animation: animationSignal2;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
    z-index: -1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -moz-transition: all 0.5;
    -o-transition: all 0.5;
    -webkit-transition: all 0.5;
    -ms-transition: all 0.5;
    transition: all 0.5;
  }
  
  .dz-card.style-1 {
    background: #fff;
    padding: 25px;
    border-radius: var(--border-radius-base);
    margin-top: 25px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  }
  
  @media only screen and (max-width: 575px) {
    .dz-card.style-1 {
      padding: 20px;
    }
  }
  
  
  
  
  .dz-card.style-1 .dz-media {
    margin-top: -45px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  .dz-card.style-1 .dz-media .date a {
    color: #fff;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--body-color);
    backdrop-filter: blur(7.5px);
    opacity: 0.8;
  }
  
  .dz-card.style-1 .dz-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
  }
  
  .dz-card.style-1:hover .dz-media::before {
    left: 100%;
    right: 0;
  }
  
  .dz-card.style-1 .dz-info {
    padding: 0;
  }
  
  .dz-card.style-1 .dz-info.shadow {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  
  .dz-card.style-1 .dz-title {
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
  }
  
  .dz-card.style-1 p {
    font-weight: 400;
    margin-bottom: 22px;
  }
  
  .dz-card.style-1 .dz-meta ul li i {
    font-size: 13px;
    color: var(--primary);
    top: 0;
  }
  
  @media only screen and (max-width: 575px) {
    .dz-card.style-1 .dz-meta ul li i {
      font-size: 11px;
    }
  }
  
  .dz-card.style-1.blog-half {
    padding: 0;
    margin-top: 0;
  }
  
  .dz-card.style-1.blog-half .dz-info {
    padding: 30px;
  }
  
  @media only screen and (max-width: 767px) {
    .dz-card.style-1.blog-half .dz-info {
      border-radius: 0 0 6px 6px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .dz-card.style-1.blog-half .dz-info {
      padding: 20px;
    }
  }
  
  .dz-card.style-1.blog-half .dz-media {
    margin-bottom: 0;
    margin-top: 0;
    border-radius: var(--border-radius-base) 0 0 var(--border-radius-base);
  }
  
  @media only screen and (max-width: 767px) {
    .dz-card.style-1.blog-half .dz-media {
      border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
    }
  }
  
  .dz-card.style-2 {
    background: #fff;
    padding: 30px;
    padding-bottom: 20px;
    border-radius: var(--border-radius-base);
  }
  
  .dz-card.style-2 .dz-info {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .dz-card.style-2 .dz-info .bottom-contact {
    display: flex;
    align-items: center;
  }
  
  .dz-card.style-2 .dz-info .bottom-contact .dz-media {
    width: 55px;
    height: 55px;
    margin-right: 15px;
    border-radius: 50%;
  }
  
  .dz-card.style-2 .dz-info .bottom-contact .dz-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .dz-card.style-2 .dz-info .bottom-contact .dz-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
  }
  
  .dz-card.style-2 .dz-info .bottom-contact .text {
    margin-bottom: 0;
    color: var(--primary);
  }
  
  .dz-card.style-2 .dz-info svg {
    opacity: 0.2;
    width: 80px;
  }
  
  @media only screen and (max-width: 575px) {
    .dz-card.style-2 .dz-info svg {
      width: 50px;
    }
  }
  
  .dz-card.style-2 .dz-text p {
    font-size: 18px;
    color: var(--body-color);
    font-style: italic;
  }
  
  @media only screen and (max-width: 575px) {
    .dz-card.style-2 .dz-text p {
      font-size: 14px;
    }
  }
  
  .swiper-container .dz-card.style-1 {
    margin: 15px;
  }
  
  .pricing-wrapper {
    padding: 40px;
    box-shadow: 0px 0px 25px rgba(56, 152, 226, 0.3);
    position: relative;
    transition: 0.5s;
    z-index: 1;
  }
  
  @media only screen and (max-width: 575px) {
    .pricing-wrapper {
      padding: 30px;
    }
  }
  
  .pricing-wrapper .pricing-inner .Package-title .title {
    color: var(--primary);
    margin-bottom: 0;
  }
  
  .pricing-wrapper .pricing-inner .Package-price {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    color: var(--body-color);
  }
  
  .pricing-wrapper .pricing-inner .Package-price span {
    font-size: 38px;
    font-weight: 600;
    display: block;
    padding-right: 15px;
  }
  
  .pricing-wrapper .pricing-inner .Package-price p {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 600;
  }
  
  .pricing-wrapper .pricing-inner .Package-list ul {
    list-style: none;
    margin-bottom: 50px;
  }
  
  .pricing-wrapper .pricing-inner .Package-list ul li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  .pricing-wrapper .pricing-inner .Package-list ul li i {
    color: var(--primary);
    font-size: 20px;
    margin-right: 5px;
    width: 25px;
  }
  
  .pricing-wrapper .pricing-inner .Package-list ul .disable {
    color: #aaaaaa;
  }
  
  .pricing-wrapper .pricing-inner .Package-list ul .disable i {
    color: #aaa;
  }
  
  .pricing-wrapper:hover {
    transform: translateY(-10px);
  }
  
  .dz-img-overlay1,
  .dz-img-overlay2,
  .dz-img-overlay3,
  .dz-img-overlay4,
  .dz-img-overlay5,
  .dz-img-overlay6,
  .dz-img-overlay7,
  .dz-img-overlay8,
  .dz-img-overlay9,
  .dz-img-overlay11,
  .dz-img-overlay12 {
    position: relative;
  }
  
  .dz-img-overlay1:before,
  .dz-img-overlay1:after,
  .dz-img-overlay2:before,
  .dz-img-overlay2:after,
  .dz-img-overlay3:before,
  .dz-img-overlay3:after,
  .dz-img-overlay4:before,
  .dz-img-overlay4:after,
  .dz-img-overlay5:before,
  .dz-img-overlay5:after,
  .dz-img-overlay6:before,
  .dz-img-overlay6:after,
  .dz-img-overlay7:before,
  .dz-img-overlay7:after,
  .dz-img-overlay8:before,
  .dz-img-overlay8:after,
  .dz-img-overlay9:before,
  .dz-img-overlay9:after,
  .dz-img-overlay11:before,
  .dz-img-overlay11:after,
  .dz-img-overlay12:before,
  .dz-img-overlay12:after {
    content: "";
    background: #282d32;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0.4;
    z-index: 1;
    -webkit-transition: all 0.8s linear;
    -moz-transition: all 0.8s linear;
    -ms-transition: all 0.8s linear;
    -o-transition: all 0.8s linear;
    transition: all 0.8s linear;
  }
  
  .dz-img-overlay1.overlay-primary,
  .dz-img-overlay2.overlay-primary,
  .dz-img-overlay3.overlay-primary,
  .dz-img-overlay4.overlay-primary,
  .dz-img-overlay5.overlay-primary,
  .dz-img-overlay6.overlay-primary,
  .dz-img-overlay7.overlay-primary,
  .dz-img-overlay8.overlay-primary,
  .dz-img-overlay9.overlay-primary,
  .dz-img-overlay11.overlay-primary,
  .dz-img-overlay12.overlay-primary {
    background: var(--primary);
  }
  
  .dz-box:hover .dz-img-overlay1:before {
    opacity: 0.7;
  }
  
  .dz-box:hover .dz-img-overlay2:before {
    opacity: 0.9;
  }
  
  .dz-box:hover .dz-img-overlay3:before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  
  .dz-box:hover .dz-img-overlay4:before {
    width: 100%;
    left: 0;
  }
  
  .dz-box:hover .dz-img-overlay5:before {
    height: 100%;
    top: 0;
  }
  
  .dz-box:hover .dz-img-overlay6:before {
    height: 100%;
  }
  
  .dz-box:hover .dz-img-overlay7:before,
  .dz-box:hover .dz-img-overlay7:after {
    width: 50%;
  }
  
  .dz-box:hover .dz-img-overlay8:before,
  .dz-box:hover .dz-img-overlay8:after {
    width: 100%;
    opacity: 0.3;
  }
  
  .dz-box:hover .dz-img-overlay9:before,
  .dz-box:hover .dz-img-overlay9:after {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }
  
  .dz-img-overlay1:before {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  
  .dz-img-overlay1:hover:before {
    opacity: 0.5;
  }
  
  .dz-img-overlay2:before {
    width: 100%;
    height: 100%;
    opacity: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  }
  
  .dz-img-overlay2:before:hover:before {
    opacity: 0.9;
  }
  
  .dz-img-overlay3:before {
    left: 50%;
    top: 50%;
  }
  
  .dz-img-overlay3:hover:before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  
  .dz-img-overlay4:before {
    left: 50%;
    top: 0;
    height: 100%;
  }
  
  .dz-img-overlay4:hover:before {
    width: 100%;
    left: 0;
  }
  
  .dz-img-overlay5:before {
    left: 0;
    top: 50%;
    width: 100%;
  }
  
  .dz-img-overlay5:hover:before {
    height: 100%;
    top: 0;
  }
  
  .dz-img-overlay6:before {
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
  }
  
  .dz-img-overlay6:hover:before {
    height: 100%;
  }
  
  .dz-img-overlay7:before,
  .dz-img-overlay7:after {
    height: 100%;
  }
  
  .dz-img-overlay7:after {
    left: auto;
    right: 0;
  }
  
  .dz-img-overlay7:hover:before,
  .dz-img-overlay7:hover:after {
    width: 50%;
  }
  
  .dz-img-overlay8:before,
  .dz-img-overlay8:after {
    height: 100%;
  }
  
  .dz-img-overlay8:after {
    left: auto;
    right: 0;
  }
  
  .dz-img-overlay8:hover:before,
  .dz-img-overlay8:hover:after {
    width: 100%;
    opacity: 0.3;
  }
  
  .dz-img-overlay9:before:before,
  .dz-img-overlay9:before:after,
  .dz-img-overlay9:after:before,
  .dz-img-overlay9:after:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
  }
  
  .dz-img-overlay9:before:hover:before,
  .dz-img-overlay9:before:hover:after,
  .dz-img-overlay9:after:hover:before,
  .dz-img-overlay9:after:hover:after {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }
  
  /*  */
  .overlay-black-light,
  .overlay-black-middle,
  .overlay-black-dark,
  .overlay-gradient-light,
  .overlay-gradient-middle,
  .overlay-gradient-dark,
  .overlay-white-light,
  .overlay-white-middle,
  .overlay-white-dark,
  .overlay-primary-light,
  .overlay-primary-middle,
  .overlay-primary-dark,
  .overlay-primary {
    position: relative;
  }
  
  .overlay-black-light:before,
  .overlay-black-middle:before,
  .overlay-black-dark:before,
  .overlay-gradient-light:before,
  .overlay-gradient-middle:before,
  .overlay-gradient-dark:before,
  .overlay-white-light:before,
  .overlay-white-middle:before,
  .overlay-white-dark:before,
  .overlay-primary-light:before,
  .overlay-primary-middle:before,
  .overlay-primary-dark:before,
  .overlay-primary:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  
  .overlay-black-light .container,
  .overlay-black-light .container-fluid,
  .overlay-black-light .container-sm,
  .overlay-black-light .container-md,
  .overlay-black-light .container-lg,
  .overlay-black-light .container-xl,
  .overlay-black-middle .container,
  .overlay-black-middle .container-fluid,
  .overlay-black-middle .container-sm,
  .overlay-black-middle .container-md,
  .overlay-black-middle .container-lg,
  .overlay-black-middle .container-xl,
  .overlay-black-dark .container,
  .overlay-black-dark .container-fluid,
  .overlay-black-dark .container-sm,
  .overlay-black-dark .container-md,
  .overlay-black-dark .container-lg,
  .overlay-black-dark .container-xl,
  .overlay-gradient-light .container,
  .overlay-gradient-light .container-fluid,
  .overlay-gradient-light .container-sm,
  .overlay-gradient-light .container-md,
  .overlay-gradient-light .container-lg,
  .overlay-gradient-light .container-xl,
  .overlay-gradient-middle .container,
  .overlay-gradient-middle .container-fluid,
  .overlay-gradient-middle .container-sm,
  .overlay-gradient-middle .container-md,
  .overlay-gradient-middle .container-lg,
  .overlay-gradient-middle .container-xl,
  .overlay-gradient-dark .container,
  .overlay-gradient-dark .container-fluid,
  .overlay-gradient-dark .container-sm,
  .overlay-gradient-dark .container-md,
  .overlay-gradient-dark .container-lg,
  .overlay-gradient-dark .container-xl,
  .overlay-white-light .container,
  .overlay-white-light .container-fluid,
  .overlay-white-light .container-sm,
  .overlay-white-light .container-md,
  .overlay-white-light .container-lg,
  .overlay-white-light .container-xl,
  .overlay-white-middle .container,
  .overlay-white-middle .container-fluid,
  .overlay-white-middle .container-sm,
  .overlay-white-middle .container-md,
  .overlay-white-middle .container-lg,
  .overlay-white-middle .container-xl,
  .overlay-white-dark .container,
  .overlay-white-dark .container-fluid,
  .overlay-white-dark .container-sm,
  .overlay-white-dark .container-md,
  .overlay-white-dark .container-lg,
  .overlay-white-dark .container-xl,
  .overlay-primary-light .container,
  .overlay-primary-light .container-fluid,
  .overlay-primary-light .container-sm,
  .overlay-primary-light .container-md,
  .overlay-primary-light .container-lg,
  .overlay-primary-light .container-xl,
  .overlay-primary-middle .container,
  .overlay-primary-middle .container-fluid,
  .overlay-primary-middle .container-sm,
  .overlay-primary-middle .container-md,
  .overlay-primary-middle .container-lg,
  .overlay-primary-middle .container-xl,
  .overlay-primary-dark .container,
  .overlay-primary-dark .container-fluid,
  .overlay-primary-dark .container-sm,
  .overlay-primary-dark .container-md,
  .overlay-primary-dark .container-lg,
  .overlay-primary-dark .container-xl,
  .overlay-primary .container,
  .overlay-primary .container-fluid,
  .overlay-primary .container-sm,
  .overlay-primary .container-md,
  .overlay-primary .container-lg,
  .overlay-primary .container-xl {
    position: relative;
    z-index: 1;
  }
  
  .overlay-black-light:before,
  .overlay-black-middle:before,
  .overlay-black-dark:before {
    background: #320f00;
  }
  
  .overlay-gradient-light:before,
  .overlay-gradient-middle:before,
  .overlay-gradient-dark:before {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  }
  
  .overlay-white-light:before,
  .overlay-white-middle:before,
  .overlay-white-dark:before {
    background: #FFF;
  }
  
  .overlay-primary-light:before,
  .overlay-primary-middle:before,
  .overlay-primary-dark:before,
  .overlay-primary:before {
    background: var(--primary);
  }
  
  .overlay-primary-light:before,
  .overlay-white-light:before,
  .overlay-gradient-light:before,
  .overlay-black-light:before {
    opacity: 0.3;
  }
  
  .overlay-primary-middle:before,
  .overlay-white-middle:before,
  .overlay-gradient-middle:before,
  .overlay-black-middle:before {
    opacity: 0.7;
  }
  
  .overlay-primary-dark:before,
  .overlay-white-dark:before,
  .overlay-gradient-dark:before,
  .overlay-black-dark:before {
    opacity: 0.9;
  }
  
  .overlay-bx {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
  }
  
  .overlay-bx .align-b {
    height: auto;
    left: 0;
    list-style: outside none none;
    margin: 0;
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    transform: translate(0);
    -o-transform: translate(0);
    -moz-transform: translate(0);
    -webkit-transform: translate(0);
  }
  
  .overlay-bx .align-m {
    height: auto;
    left: 50%;
    list-style: outside none none;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 10px;
  }
  
  .overlay-icon {
    height: auto;
    left: 50%;
    list-style: outside none none;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 10px;
  }
  
  .overlay-icon a {
    display: inline-block;
    padding: 0;
    margin: 0 2px;
  }
  
  .overlay-icon a i {
    background-color: #FFF;
  }
  
  .overlay-bx:hover a>i,
  .dz-media:hover .overlay-bx a>i,
  .dz-box-bx:hover .overlay-bx a>i {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
  }
  
  .overlay-bx:hover,
  .dz-media:hover .overlay-bx,
  .dz-box:hover .overlay-bx,
  .ow-img:hover .overlay-bx,
  .ow-portfolio-img:hover .overlay-bx {
    opacity: 1;
    visibility: visible;
  }
  
  .gallery-box-1 .overlay-bx .overlay-icon span i,
  .gallery-box-1 .overlay-bx .overlay-icon a i {
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .gallery-box-1 .overlay-bx .icon-bx-xs {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  
  .img-overlay-gradients {
    position: relative;
  }
  
  .img-overlay-gradients:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
  }
  
  .img-overlay-gradients.gradients-secondary:before {
    background: -moz-linear-gradient(bottom, transparent 0%, #090915 100%);
    background: -webkit-linear-gradient(bottom, transparent 0%, #090915 100%);
    background: linear-gradient(to bottom, transparent 0%, #090915 100%);
  }
  
  .img-overlay-gradients.gradients-primary:before {
    background: -moz-linear-gradient(bottom, transparent 0%, var(--primary) 100%);
    background: -webkit-linear-gradient(bottom, transparent 0%, var(--primary) 100%);
    background: linear-gradient(to bottom, transparent 0%, var(--primary) 100%);
  }
  
  .overlay-shine .dz-media {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-base);
  }
  
  .overlay-shine .dz-media:before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  }
  
  .overlay-shine .dz-media img {
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
  }
  
  .overlay-shine:hover .dz-media:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
  }
  
  @-webkit-keyframes shine {
    100% {
      left: 125%;
    }
  }
  
  @keyframes shine {
    100% {
      left: 125%;
    }
  }
  
  p {
    font-size: 16px;
  }
  
  .page-content {
    background-color: #fff !important;
  }
  
  .page-wraper {
    background-color: #fff !important;
  }
  
  .main-bnr {
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 50px;
    z-index: 1;
    background: var(--primary);
    background-blend-mode: luminosity;
  }
  
  @media only screen and (max-width: 575px) {
    .main-bnr .text {
      font-size: 14px;
    }
  }
  
  .main-bnr:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    transform: rotate(21.6deg) translate(130px, -90px);
    height: calc(150vh + 300px);
    width: calc(60vh + 160px);
    z-index: -1;
  }
  
  @media only screen and (max-width: 1280px) {
    .main-bnr:after {
      width: calc(45vh + 160px);
    }
  }
  
  @media only screen and (max-width: 991px) {
    .main-bnr:after {
      height: calc(200vh + 300px);
      width: calc(35vh + 200px);
      transform: rotate(21.6deg) translate(183px, -90px);
    }
  }
  
  @media only screen and (max-width: 767px) {
    .main-bnr:after {
      width: calc(15vh + 200px);
    }
  }
  
  @media only screen and (max-width: 575px) {
    .main-bnr:after {
      width: calc(15vh + 200px);
    }
  }
  
  @media only screen and (max-width: 991px) {
    .main-bnr {
      height: auto !important;
      padding-top: 135px;
    }
  }
  
  .main-bnr .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 230px;
    height: 300px;
  }
  
  @media only screen and (max-width: 1680px) {
    .main-bnr .shape1 {
      width: 120px;
      height: 140px;
    }
  }
  
  @media only screen and (max-width: 1280px) {
    .main-bnr .shape1 {
      display: none;
    }
  }
  
  .main-bnr .shape2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 500px;
  }
  
  @media only screen and (max-width: 1680px) {
    .main-bnr .shape2 {
      width: 200px;
      height: 400px;
    }
  }
  
  @media only screen and (max-width: 1600px) {
    .main-bnr .shape2 {
      right: -20px;
    }
  }
  
  @media only screen and (max-width: 1680px) {
    .main-bnr .shape2 {
      width: 150px;
      height: 250px;
    }
  }
  
  .main-bnr .container,
  .main-bnr .container-fluid,
  .main-bnr .container-sm,
  .main-bnr .container-md,
  .main-bnr .container-lg,
  .main-bnr .container-xl {
    position: relative;
    z-index: 3;
  }
  
  .main-bnr .sub-title {
    font-weight: 500;
    font-size: 18px;
    color: var(--primary);
  }
  
  .main-bnr h1,
  .main-bnr .h1 {
    font-size: 65px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .main-bnr h1 .text-line,
  .main-bnr .h1 .text-line {
    position: relative;
  }
  
  .main-bnr h1 .text-line:after,
  .main-bnr .h1 .text-line:after {
    content: "";
    top: 75px;
    z-index: -1;
    right: 5px;
    height: 34px;
    width: 380px;
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left top;
    background-image: url(../../../../error_404.html);
  }
  
  .main-bnr .text {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 575px;
    margin-bottom: 5px;
  }
  
  @media only screen and (max-width: 1191px) {
    .main-bnr .text {
      font-size: 16px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .main-bnr .text {
      font-size: 15px;
      margin-bottom: 10px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .main-bnr .text {
      width: 100%;
    }
  }
  
  @media only screen and (max-width: 1280px) {
    .main-bnr {
      height: 700px;
    }
  
    .main-bnr h1,
    .main-bnr .h1 {
      font-size: 50px;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .main-bnr {
      height: 600px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .main-bnr {
      height: 820px;
    }
  
    .main-bnr h1,
    .main-bnr .h1 {
      font-size: 45px;
    }
  }
  
  @media only screen and (max-width: 767px) {
  
    .main-bnr h1,
    .main-bnr .h1 {
      font-size: 36px;
      margin-bottom: 5px;
    }
  }
  
  .main-bnr .bottom-contact span {
    color: var(--title);
  }
  
  .main-bnr .bottom-contact a {
    color: #7F93B6;
    font-size: 16px;
    font-weight: 400;
    margin-right: 2px;
  }
  
  .caart-box .caart-box-1 {
    padding: 0px 30px;
  }
  
  @keyframes shake {
    0% {
      transform: translate(1px, 1px) rotate(0deg);
    }
  
    10% {
      transform: translate(-1px, -2px) rotate(-1deg);
    }
  
    20% {
      transform: translate(-3px, 0px) rotate(1deg);
    }
  
    30% {
      transform: translate(3px, 2px) rotate(0deg);
    }
  
    40% {
      transform: translate(1px, -1px) rotate(1deg);
    }
  
    50% {
      transform: translate(-1px, 2px) rotate(-1deg);
    }
  
    60% {
      transform: translate(-3px, 1px) rotate(0deg);
    }
  
    70% {
      transform: translate(3px, 1px) rotate(-1deg);
    }
  
    70% {
      transform: translate(3px, 1px) rotate(-1deg);
    }
  
    80% {
      transform: translate(-1px, -1px) rotate(1deg);
    }
  
    90% {
      transform: translate(1px, 2px) rotate(0deg);
    }
  
    100% {
      transform: translate(1px, -2px) rotate(-1deg);
    }
  }
  
  /* @keyframes upToDown{
      49% {
          -webkit-transform: translateY(100%);
          transform: translateY(100%);
      }
      50% {
          opacity: 0;
          -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
      }
      51% {
          opacity: 1;
      }
  } */
  .dz-bnr-inr .shape1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 200px;
    height: auto;
  }
  
  @media only screen and (max-width: 1480px) {
    .dz-bnr-inr .shape1 {
      width: 150px;
      height: auto;
    }
  }
  
  @media only screen and (max-width: 1191px) {
    .dz-bnr-inr .shape1 {
      width: 150px;
      height: auto;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .dz-bnr-inr .shape1 {
      width: 100px;
      height: auto;
    }
  }
  
  .dz-bnr-inr .shape2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
  }
  
  @media only screen and (max-width: 1480px) {
    .dz-bnr-inr .shape2 {
      width: 120px;
    }
  }
  
  @media only screen and (max-width: 1191px) {
    .dz-bnr-inr .shape2 {
      width: 85px;
    }
  }
  
  
  
  .banner-media {
    position: relative;
    padding-top: 60px;
    height: 40vmax;
  }
  
  @media only screen and (max-width: 575px) {
    .dz-bnr-inr .shape2 {
      width: 70px;
    }
  
    .banner-media {
      height: 45vmax;
    }
  
  }
  
  .banner-media img {
    object-fit: cover;
    z-index: -5;
  }
  
  @media only screen and (max-width: 1680px) {
    .banner-media {
      margin-right: -60px;
    }
  }
  
  @media only screen and (max-width: 1480px) {
    .banner-media {
      margin-right: -0px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .banner-media {
      padding-top: 20px;
    }
  }
  
  .bnr-blocks li {
    position: absolute;
    animation: floatRightToLeft 8s ease-in-out infinite;
  }
  
  
  @keyframes floatRightToLeft {
  
    0%,
    100% {
      transform: translateX(20%);
    }
  
    50% {
      transform: translateX(0);
    }
  }
  
  #top-bottom-ani {
    animation: floatTopToBottom 8s ease-in-out infinite;
  }
  
  @keyframes floatTopToBottom {
  
    0%,
    100% {
      transform: translatey(20%);
    }
  
    50% {
      transform: translatey(0);
    }
  }
  
  
  
  .bnr-blocks li:nth-child(1) {
    top: 13%;
    left: 30%;
  }
  
  .bnr-blocks li:nth-child(1) span {
    color: black;
  }
  
  .bnr-blocks li:nth-child(2) {
    top: 45%;
    left: -20px;
  }
  
  .bnr-blocks li:nth-child(2) span {
    color: black;
  }
  
  @media only screen and (max-width: 1280px) {
    .bnr-blocks li:nth-child(2) {
      top: 60%;
      right: 10px;
    }
  }
  
  .bnr-blocks li:nth-child(3) {
    bottom: 8%;
    right: 25%;
  }
  
  .bnr-blocks li:nth-child(3) span {
    color: white;
  }
  
  .bnr-blocks li:nth-child(4) {
    bottom: 50%;
    right: -10%;
  }
  
  .bnr-blocks li:nth-child(4) span {
    color: white;
  }
  
  .bnr-blocks li:nth-child(5) {
    bottom: 50%;
    left: 0;
  }
  
  @media only screen and (max-width: 767px) {
    .bnr-blocks li:nth-child(3) {
      left: 10px;
    }
  }
  
  @media only screen and (max-width: 900px) {
    .bnr-blocks li:nth-child(1) {
      top: -2%;
      right: 0;
    }
  
    .bnr-blocks li:nth-child(2) {
      top: 30%;
      right: -5%;
      display: flex;
      justify-content: flex-end;
    }
  
    .bnr-blocks li:nth-child(3) {
      bottom: 0;
      left: 0;
    }
  
    .bnr-blocks li:nth-child(4) {
      bottom: 40%;
      left: 0;
    }
  
    .bnr-blocks li:nth-child(4) span {
      color: black;
    }
  
    .bnr-blocks li:nth-child(3) span {
      color: black;
    }
  
    .top-bottom-ani {
      display: none;
    }
  }
  
  .bnr-block {
    padding: 18px 20px;
    background: var(--rgba-primary-1);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    width: fit-content;
    display: flex;
    align-items: center;
    backdrop-filter: blur(7.5px);
  }
  
  .bnr-block i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    /* background: var(--primary); */
    background-color: green;
    color: #fff;
    border-radius: 6px;
    margin-right: 15px;
  }
  
  .bnr-block .block-text {
    font-size: 14px;
    font-weight: 500;
    color: #142238;
    line-height: 1.2;
  }
  
  .bnr-block-pics {
    font-weight: 500;
    font-size: 16px;
    color: #142238;
    padding: 18px 20px;
    background: var(--rgba-primary-1);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-base);
    backdrop-filter: blur(7.5px);
  }
  
  .bnr-block-pics .twm-pics {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
  }
  
  .bnr-block-pics .twm-pics span {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    margin-left: -15px;
  }
  
  .bnr-block-pics .twm-pics span img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  
  @-webkit-keyframes dZwobble {
    0% {
      -webkit-transform: rotate(-1deg) translate(-5px, -5px);
      transform: rotate(-1deg) translate(-5px, -5px);
    }
  
    50% {
      -webkit-transform: rotate(1deg) translate(5px, 5px);
      transform: rotate(1deg) translate(5px, 5px);
    }
  
    100% {
      -webkit-transform: rotate(-1deg) translate(-5px, -5px);
      transform: rotate(-1deg) translate(-5px, -5px);
    }
  }
  
  @-webkit-keyframes aniBnrShape2 {
    100% {
      -webkit-transform: rotateY(360deg);
      transform: rotateY(360deg);
    }
  }
  
  @-webkit-keyframes aniBnrShape3 {
    100% {
      -webkit-transform: rotateX(-360deg);
      transform: rotateX(-360deg);
    }
  }
  
  @-webkit-keyframes aniBnrShape4 {
    0% {
      -webkit-transform: rotate(0) translate(2px, 2px) scale(1);
      transform: rotate(0) translate(2px, 2px) scale(1);
    }
  
    50% {
      -webkit-transform: rotate(50deg) translate(2px, 2px) scale(1.2);
      transform: rotate(50deg) translate(2px, 2px) scale(1.2);
    }
  
    100% {
      -webkit-transform: rotate(0) translate(2px, 2px) scale(1);
      transform: rotate(0) translate(2px, 2px) scale(1);
    }
  }
  
  @-webkit-keyframes aniBnrShape5 {
    0% {
      -webkit-transform: skewY(0);
      transform: skewY(0);
    }
  
    50% {
      -webkit-transform: skewY(20deg);
      transform: skewY(20deg);
    }
  
    100% {
      -webkit-transform: skewY(0);
      transform: skewY(0);
    }
  }
  
  @-webkit-keyframes aniBnrShape7 {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @-webkit-keyframes aniBnrMedia {
    0% {
      -webkit-transform: rotate(1deg) translate(2px, 2px);
      transform: rotate(1deg) translate(2px, 2px);
    }
  
    50% {
      -webkit-transform: rotate(-1deg) translate(-2px, -2px);
      transform: rotate(-1deg) translate(-2px, -2px);
    }
  
    100% {
      -webkit-transform: rotate(1deg) translate(2px, 2px);
      transform: rotate(1deg) translate(2px, 2px);
    }
  }
  
  .contact-wrapper .form-wrapper-box {
    margin-bottom: -180px;
    margin-top: 0;
  }
  
  .contact-wrapper .section-head {
    margin-bottom: 40px;
  }
  
  .contact-wrapper .section-head .title {
    margin-bottom: 12px;
  }
  
  .contact-wrapper .section-head p {
    font-size: 18px;
    line-height: 1.6;
  }
  
  @media only screen and (max-width: 575px) {
    .contact-wrapper .section-head {
      margin-bottom: 30px;
    }
  
    .contact-wrapper .section-head p {
      font-size: 16px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .contact-wrapper .form-wrapper-box {
      margin-bottom: 0;
    }
  }
  
  .form-wrapper-box {
    border-radius: 20px;
    box-shadow: 0px 25px 50px rgba(9, 9, 21, 0.1);
    padding: 50px;
    background-color: #fff;
  }
  
  @media only screen and (max-width: 1480px) {
    .form-wrapper-box {
      padding: 40px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .form-wrapper-box {
      padding: 30px;
    }
  }
  
  .form-wrapper-box .section-head {
    margin-bottom: 30px;
  }
  
  .form-wrapper-box .section-head .title {
    margin-bottom: 5px;
  }
  
  .form-wrapper-box .section-head p {
    font-weight: 400;
    font-size: 20px;
    color: #444444;
  }
  
  @media only screen and (max-width: 1480px) {
    .form-wrapper-box .section-head p {
      font-size: 18px;
    }
  }
  
  @media only screen and (max-width: 1280px) {
    .form-wrapper-box .section-head p {
      font-size: 16px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .form-wrapper-box .section-head {
      margin-bottom: 25px;
    }
  }
  
  .form-wrapper-box .form-control,
  .form-wrapper-box .wp-block-categories-dropdown select,
  .wp-block-categories-dropdown .form-wrapper-box select,
  .form-wrapper-box .wp-block-archives-dropdown select,
  .wp-block-archives-dropdown .form-wrapper-box select,
  .form-wrapper-box .comment-respond .comment-form p.comment-form-author input,
  .comment-respond .comment-form p.comment-form-author .form-wrapper-box input,
  .form-wrapper-box .comment-respond .comment-form p.comment-form-email input,
  .comment-respond .comment-form p.comment-form-email .form-wrapper-box input,
  .form-wrapper-box .comment-respond .comment-form p.comment-form-url input,
  .comment-respond .comment-form p.comment-form-url .form-wrapper-box input,
  .form-wrapper-box .comment-respond .comment-form p textarea,
  .comment-respond .comment-form p .form-wrapper-box textarea {
    background-color: transparent;
    z-index: 0 !important;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
  }
  
  .form-wrapper-box textarea.form-control,
  .form-wrapper-box .comment-respond .comment-form p textarea,
  .comment-respond .comment-form p .form-wrapper-box textarea {
    height: 150px;
    padding: 20px 20px;
  }
  
  .form-wrapper-box .input-group {
    margin-bottom: 30px;
  }
  
  @media only screen and (max-width: 575px) {
    .form-wrapper-box .input-group {
      margin-bottom: 20px;
    }
  }
  
  .form-wrapper-box .input-area {
    position: relative;
  }
  
  .form-wrapper-box .input-area label {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    top: 15px;
    left: 15px;
    color: #555555;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    background-color: #fff;
    display: block;
    padding: 0 10px;
  }
  
  @media only screen and (max-width: 1280px) {
    .form-wrapper-box .input-area label {
      font-size: 14px;
    }
  }
  
  .form-wrapper-box .input-area.focused label {
    position: absolute;
    font-size: 13px;
    top: -8px;
    color: #4885ED;
    z-index: 2;
  }
  
  @media only screen and (max-width: 575px) {
    .form-wrapper-box .input-area label {
      top: 12px;
    }
  }
  
  .dz-media.style-1 {
    overflow: visible;
  }
  
  .dz-media.style-1 img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-base);
  }
  
  .dz-media.style-1 .text {
    background: var(--primary);
    text-align: center;
    position: absolute;
    bottom: 65px;
    left: -40px;
    padding: 18px 34px;
    border-radius: var(--border-radius-base);
    font-size: 18px;
    font-weight: 500;
    color: #F4FAFF;
    animation: dZwobble2 4s infinite;
  }
  
  @media only screen and (max-width: 1280px) {
    .dz-media.style-1 .text {
      left: 0px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .dz-media.style-1 .text {
      display: none;
    }
  }
  
  .dz-contant.style-1 {
    padding-left: 60px;
  }
  
  @media only screen and (max-width: 1280px) {
    .dz-contant.style-1 {
      padding-left: 40px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .dz-contant.style-1 {
      padding-left: 0;
    }
  }
  
  @keyframes dZwobble2 {
    0% {
      transform: rotate(-1deg) translate(-5px, -5px);
    }
  
    50% {
      transform: rotate(1deg) translate(5px, 5px);
    }
  
    100% {
      transform: rotate(-1deg) translate(-5px, -5px);
    }
  }
  
  .num-pagination.style-1 .btn-next,
  .num-pagination.style-1 .btn-prev {
    background: var(--rgba-primary-1);
    padding: 15px 20px;
    border-radius: 6px;
    position: absolute;
    top: 60%;
    transition: 0.5s;
    z-index: 99;
  }
  
  .num-pagination.style-1 .btn-next i,
  .num-pagination.style-1 .btn-prev i {
    color: var(--primary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .num-pagination.style-1 .btn-prev {
    left: 12%;
  }
  
  @media only screen and (max-width: 1600px) {
    .num-pagination.style-1 .btn-prev {
      left: 5%;
    }
  }
  
  @media only screen and (max-width: 1280px) {
    .num-pagination.style-1 .btn-prev {
      left: 0%;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .num-pagination.style-1 .btn-prev {
      left: 3%;
    }
  }
  
  .num-pagination.style-1 .btn-prev:hover {
    background: var(--primary);
    transform: translateX(-10px);
  }
  
  .num-pagination.style-1 .btn-prev:hover i {
    color: #fff;
  }
  
  .num-pagination.style-1 .btn-next {
    right: 12%;
  }
  
  @media only screen and (max-width: 1600px) {
    .num-pagination.style-1 .btn-next {
      right: 5%;
    }
  }
  
  @media only screen and (max-width: 1280px) {
    .num-pagination.style-1 .btn-next {
      right: 0%;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .num-pagination.style-1 .btn-next {
      right: 3%;
    }
  }
  
  .num-pagination.style-1 .btn-next:hover {
    background: var(--primary);
    transform: translateX(10px);
  }
  
  .num-pagination.style-1 .btn-next:hover i {
    color: #fff;
  }
  
  @media only screen and (max-width: 575px) {
    .num-pagination {
      display: none;
    }
  }
  
  .center-line {
    position: relative;
    z-index: 1;
  }
  
  @media only screen and (max-width: 575px) {
    .center-line {
      margin: 0 -5px 10px;
    }
  }
  
  .center-line:after {
    content: '';
    position: absolute;
    top: 23%;
    left: 50%;
    height: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  @media only screen and (max-width: 575px) {
    .center-line:after {
      display: none;
    }
  }
  
  .bnr-search-bar {
    background: #fff;
    padding: 10px 20px;
    border-radius: var(--border-radius-base);
    box-shadow: 0px 10px 60px rgba(28, 65, 128, 0.25);
    margin-bottom: 20px;
    margin-right: 40px;
  }
  
  @media only screen and (max-width: 1280px) {
    .bnr-search-bar {
      padding: 5px 10px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .bnr-search-bar {
      margin-right: 0;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .bnr-search-bar {
      padding: 10px;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .bnr-search-bar {
      margin-right: 0px;
    }
  }
  
  .bnr-search-bar .search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
  }
  
  @media only screen and (max-width: 575px) {
    .bnr-search-bar .search-bar {
      margin-left: 0;
      justify-content: unset;
    }
  }
  
  .bnr-search-bar .search-bar span i {
    color: var(--primary);
  }
  
  .bnr-search-bar .search-bar .icon-content input {
    border: 0;
    background: #fff;
    padding: 0;
    box-shadow: none;
    color: var(--primary);
    font-size: 16px;
  }
  
  .bnr-search-bar .search-bar .icon-content input::placeholder {
    color: #7F93B6;
    font-size: 16px;
  }
  
  .bnr-search-bar .btn {
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
  }
  
  .overlay-box.style-1 {
    position: relative;
    overflow: hidden;
    padding: 20px 30px;
    min-height: 280px;
    border-radius: var(--border-radius-base);
  }
  
  @media only screen and (max-width: 575px) {
    .overlay-box.style-1 {
      min-height: 200px;
    }
  }
  
  .overlay-box.style-1 .contant-box {
    height: 100%;
  }
  
  .overlay-box.style-1 .contant-box .crypto-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .overlay-box.style-1 .contant-box .crypto-info h5,
  .overlay-box.style-1 .contant-box .crypto-info .h5 {
    font-weight: 600;
    font-size: 28px;
    color: #F68E00;
    margin-bottom: 0;
  }
  
  .overlay-box.style-1 .contant-box .crypto-info h5.text-purple,
  .overlay-box.style-1 .contant-box .crypto-info .text-purple.h5 {
    color: #6670FF;
  }
  
  .overlay-box.style-1 .contant-box .crypto-info .text {
    color: #553810;
    font-size: 14px;
    font-weight: 400;
  }
  
  .overlay-box.style-1 .contant-box .crypto-media {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(40px, 30px) rotate(16.9deg);
  }
  
  @media only screen and (max-width: 575px) {
    .overlay-box.style-1 .contant-box .crypto-media {
      width: 35%;
    }
  }
  
  .overlay-box.style-1 .contant-box .btn-link {
    position: absolute;
    bottom: 25px;
    left: 30px;
    color: #553810;
    font-size: 15px;
    font-weight: 400;
  }
  
  .overlay-box.style-2 {
    position: relative;
    padding: 20px 30px;
    min-height: 280px;
    border-radius: var(--border-radius-base);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .overlay-box.style-2 .title {
    font-weight: 600;
    font-size: 45px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  @media only screen and (max-width: 767px) {
    .overlay-box.style-2 .title {
      font-size: 38px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .overlay-box.style-2 .title {
      font-size: 32px;
    }
  }
  
  .overlay-box.style-2 .btn-link {
    position: absolute;
    bottom: 25px;
    left: 30px;
    font-weight: 400;
    font-size: 15px;
    color: #553810;
  }
  
  .overlay-box.style-2 .btn-link i {
    margin-left: 7px;
  }
  
  .overlay-box.style-2 .btn-link.lg {
    position: unset;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
  }
  
  .overlay-box.style-2 .btn-link.lg i {
    margin-left: 15px;
  }
  
  .bg-light-yellow {
    background: #FFF7D7;
  }
  
  .bg-light-purple {
    background: #F1F2FE;
  }
  
  .widget-box.style-1 {
    display: flex;
    padding: 10px;
    border-radius: 13px;
    align-items: center;
  }
  
  .widget-box.style-1 .dz-media {
    height: 90px;
    margin-right: 15px;
    min-width: 90px;
    position: relative;
  }
  
  .widget-box.style-1 .dz-media img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-base);
  }
  
  .widget-box.style-1 .dz-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
  }
  
  .widget-box.style-1 .dz-info .date a {
    font-weight: 600;
    font-size: 12px;
    background: var(--primary);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
  }
  
  .widget-box.style-1 .dz-info .title {
    font-weight: 600;
    color: #523325;
    margin-top: 10px;
    margin-bottom: 0;
  }
  
  .widget-box.style-1:hover .dz-media::before {
    left: 100%;
    right: 0;
  }
  
  .crypto-wrapper {
    margin-top: -62px;
  }
  
  @media only screen and (max-width: 1280px) {
    .crypto-wrapper {
      margin-top: -42px;
    }
  }
  
  .bg-clr-sky {
    background: #4885ED;
  }
  
  .bg-clr-sky .count {
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: #4885ED;
  }
  
  .bg-clr-pink {
    background: #DB77C4;
  }
  
  .bg-clr-pink .count {
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: #DB77C4;
  }
  
  .bg-clr-green {
    background: #74B24E;
  }
  
  .bg-clr-green .count {
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: #74B24E;
  }
  
  .footer-action {
    padding: 45px 70px;
    border-radius: 8px;
    background: var(--primary);
    margin-bottom: -9%;
  }
  
  @media only screen and (max-width: 991px) {
    .footer-action {
      padding: 30px 20px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .footer-action {
      margin-bottom: 40px;
    }
  }
  
  .footer-action .inner-content .title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
  }
  
  @media only screen and (max-width: 767px) {
    .footer-action .inner-content .title {
      font-size: 30px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .footer-action .inner-content .title {
      font-size: 24px;
    }
  }
  
  .call-to-action .title {
    font-size: 55px;
  }
  
  @media only screen and (max-width: 1480px) {
    .call-to-action .title {
      font-size: 52px;
    }
  }
  
  @media only screen and (max-width: 1280px) {
    .call-to-action .title {
      font-size: 42px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .call-to-action .title {
      font-size: 24px;
    }
  }
  
  .clients-logo .logo-main {
    opacity: 0.2;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
  }
  
  .clients-logo .logo-main:hover {
    opacity: 1;
  }
  
  .dz-meta .post-author img {
    border: 2px solid #fff;
    border-radius: 100%;
    width: 50px;
  }
  
  .info-box.style-1 {
    color: #fff !important;
    padding: 45px;
    background: var(--primary);
    border-radius: var(--border-radius-base);
  }
  
  @media only screen and (max-width: 1280px) {
    .info-box.style-1 {
      padding: 30px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .info-box.style-1 {
      padding: 20px;
    }
  }
  
  .info-box .widget {
    margin-bottom: 30px !important;
  }
  
  .info-box .widget ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 80%;
    padding: 20px 0;
  }
  
  @media only screen and (max-width: 575px) {
    .info-box .widget ul li {
      padding: 10px 0;
      margin-bottom: 0;
    }
  }
  
  .info-box .widget ul li p {
    color: #fff;
    opacity: 0.6;
    margin-bottom: 5px;
  }
  
  .info-box .widget ul li h6,
  .info-box .widget ul li .h6 {
    font-size: 16px;
    font-weight: 500;
  }
  
  .dz-social.style-1 .social-icon {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .dz-social.style-1 .social-icon li {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .dz-social.style-1 .social-icon li a {
    color: #fff;
    text-align: center;
    color: #fff;
    text-align: center;
    line-height: 40px;
  }
  
  .dz-social.style-1 .social-icon li:after {
    content: "";
    position: absolute;
    height: 40px;
    width: 0;
    background-color: var(--secondary);
    left: 0px;
    top: 0;
    z-index: -1;
    border-radius: var(--border-radius-base);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -1;
  }
  
  .dz-social.style-1 .social-icon li:hover:after {
    width: 100%;
  }
  
  .form-wrapper.style-1 {
    padding-left: 30px;
  }
  
  @media only screen and (max-width: 991px) {
    .form-wrapper.style-1 {
      padding-left: 0;
    }
  }
  
  .content-inner.style-1 {
    padding: 85px 0 0 0 !important;
  }
  
  .dz-meta {
    margin-bottom: 10px;
  }
  
  .dz-meta ul {
    margin: 0;
    padding: 0;
  }
  
  .dz-meta ul li {
    display: inline-block;
    position: relative;
    font-size: 15px;
    margin-right: 25px;
    margin-left: 5px;
  }
  
  @media only screen and (max-width: 991px) {
    .dz-meta ul li {
      font-size: 13px;
    }
  }
  
  .dz-meta ul li:after {
    content: "";
    height: 6px;
    width: 6px;
    background-color: var(--primary);
    position: absolute;
    top: 50%;
    right: -20px;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  
  @media only screen and (max-width: 575px) {
    .dz-meta ul li:after {
      height: 4px;
      width: 4px;
      right: -9px;
    }
  }
  
  .dz-meta ul li:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  
  .dz-meta ul li:last-child:after {
    content: none;
  }
  
  .dz-meta ul li i {
    font-size: 16px;
    margin-right: 2px;
    color: var(--primary);
    transform: scale(1.3);
    position: relative;
    top: 2px;
    padding-right: 0.2rem;
  }
  
  .dz-meta ul li a {
    color: inherit;
  }
  
  @media only screen and (max-width: 575px) {
    .dz-meta ul li {
      margin-right: 15px;
      padding-right: 5px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .dz-meta ul .post-author img {
      display: none;
    }
  }
  
  button.btn.btn-primary.style-2.two {
    display: none;
    border-radius: 0 6px 6px 0 !important;
  }
  
  @media only screen and (max-width: 767px) {
    button.btn.btn-primary.style-2.two {
      display: unset !important;
    }
  }
  
  @media only screen and (max-width: 767px) {
    button.btn.btn-primary.style-2 {
      display: none;
    }
  }
  
  .contant-box.style-1 {
    display: flex;
    align-items: center;
  }
  
  @media only screen and (max-width: 575px) {
    .contant-box.style-1 {
      display: unset;
    }
  }
  
  .contant-box.style-2 {
    padding: 25px 14px;
    border-radius: var(--border-radius-base);
  }
  
  @media only screen and (max-width: 1280px) {
    .contant-box.style-2 {
      padding: 20px 14px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .contant-box.style-2 {
      padding: 10px;
    }
  }
  
  .blog-single {
    /* margin-bottom: 3.125rem; */
  }
  
  .blog-single .dz-post-meta {
    margin-bottom: 1.25rem;
  }
  
  .blog-single .dz-post-text {
    padding-bottom: 5px;
  }
  
  .blog-single .dz-post-text:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
  }
  
  .blog-single .dz-post-tags {
    margin-top: 1.25rem;
  }
  
  .blog-single .dz-post-media {
    border-radius: 0.25rem;
  }
  
  .blog-single.dz-card .post-tags {
    margin-bottom: 0;
  }
  
  .blog-single .dz-media img,
  .blog-single .dz-post-media img {
    border-radius: var(--border-radius-base);
  }
  
  .blog-single .dz-title {
    font-size: 36px;
  }
  
  @media only screen and (max-width: 767px) {
    .blog-single .dz-title {
      font-size: 28px;
    }
  }
  
  @media only screen and (max-width: 575px) {
    .blog-single .dz-title {
      font-size: 24px;
    }
  }
  
  .blog-single.style-1 .dz-title {
    margin: 10px 0;
    font-weight: 700;
  }
  
  .blog-single.style-1 .btn-link {
    color: black;
    font-weight: 600;
    font-size: 15px;
  }
  
  .blog-single.style-1 .dz-media img {
    border-radius: var(--border-radius-base);
  }
  
  .blog-single.style-1 .dz-media .dz-badge-list {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  
  .blog-single.style-1 .dz-media .dz-badge {
    background-color: var(--primary);
    color: #fff;
    border-radius: var(--border-radius-base);
    padding: 8px 15px;
    font-size: 12px;
    text-transform: uppercase;
  }
  
  .blog-single.style-1:hover .dz-media {
    border-color: var(--primary);
  }
  
  .blog-single.style-1:hover .btn-link {
    color: var(--primary);
  }
  
  .dz-post-text a {
    text-decoration: underline;
    box-shadow: inset 0 -10px 0 var(--rgba-primary-1);
  }
  
  .dz-post-text .widget_archive li a,
  .dz-post-text .wp-block-latest-posts li a,
  .dz-post-text .wp-block-categories-list li a,
  .dz-post-text .wp-block-archives-list li a,
  .dz-post-text .widget_categories li a,
  .dz-post-text blockquote a,
  .dz-post-text .wp-block-button__link {
    box-shadow: none;
    text-decoration: none;
  }
  
  .post-header {
    position: relative;
    overflow: hidden;
  }
  
  @media only screen and (max-width: 575px) {
    .post-header {
      margin-bottom: 1.25rem;
    }
  }
  
  .post-header .dz-media img {
    min-height: 250px;
    object-fit: cover;
  }
  
  .post-header .dz-info {
    position: absolute;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.6) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.6) 100%);
    position: absolute;
    bottom: 0;
    text-align: center;
    padding: 100px 30px 30px 30px !important;
    width: 100%;
  }
  
  @media only screen and (max-width: 575px) {
    .post-header .dz-info {
      padding: 40px 15px 15px 15px !important;
    }
  }
  
  .post-header .dz-info .dz-title {
    color: #fff;
  }
  
  @media only screen and (max-width: 575px) {
    .post-header .dz-info .dz-title {
      font-size: 1.125rem;
    }
  }
  
  .post-header .dz-info .dz-meta>ul {
    justify-content: center;
  }
  
  .post-header .dz-info .dz-meta>ul>li {
    color: #fff;
  }
  
  .post-link-in {
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
  }
  
  .post-link-in:hover {
    background: var(--primary);
    color: #fff;
  }
  
  .side-bar {
    padding-bottom: 1px;
  }
  
  @media only screen and (max-width: 991px) {
    .side-bar {
      padding-left: 0;
      padding-right: 0;
    }
  }
  
  .side-bar.left {
    padding-left: 0;
    padding-right: 20px;
  }
  
  @media only screen and (max-width: 991px) {
    .side-bar.left {
      padding-right: 0;
      padding-left: 0;
    }
  }
  
  .alignnone {
    margin: 0.3125rem 0 1.563rem 0;
  }
  
  .alignnoneimg,
  .alignnone.wp-caption,
  .alignnone.is-resized {
    margin: 0.3125rem 0 1.563rem 0;
  }
  
  .aligncenter {
    display: block;
    margin: 0.3125rem auto 0.938rem;
    text-align: center;
  }
  
  .aligncenterimg,
  .aligncenter.wp-caption,
  .aligncenter.is-resized {
    display: block;
    margin: 0.3125rem auto 0.938rem;
    text-align: center;
  }
  
  .alignright {
    float: right;
    margin: 0.3125rem 0 1.563rem 1.563rem;
  }
  
  .alignrightimg,
  .alignright.wp-caption,
  .alignright.is-resized {
    margin: 0.3125rem 0 1.563rem 1.563rem;
    float: right;
  }
  
  .alignleft {
    float: left;
    margin: 0.3125rem 1.563rem 1.563rem 0;
  }
  
  .alignleftimg,
  .alignleft.wp-caption,
  .alignleft.is-resized {
    margin: 0.3125rem 1.563rem 1.563rem 0;
    float: left;
  }
  
  .wp-caption {
    max-width: 100%;
    text-align: center;
  }
  
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0;
  }
  
  .wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
  }
  
  .wp-caption p.wp-caption-text {
    font-size: 0.813rem;
    line-height: 1.125rem;
    margin: 0;
    padding: 0.625rem 0;
    text-align: left;
  }
  
  .wp-block-quote.is-large,
  .wp-block-quote.is-style-large,
  blockquote.wp-block-quote,
  blockquote.wp-block-pullquote,
  blockquote.wp-block-pullquote.alignright,
  blockquote.wp-block-pullquote.alignleft,
  blockquote {
    padding: 1.25rem 2rem 1.25rem 3rem;
    font-size: 0.938rem;
    color: var(--title);
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.875rem;
    position: relative;
    clear: both;
    font-weight: 700;
    z-index: 1;
    border: 0;
  }
  
  @media only screen and (max-width: 991px) {
  
    .wp-block-quote.is-large,
    .wp-block-quote.is-style-large,
    blockquote.wp-block-quote,
    blockquote.wp-block-pullquote,
    blockquote.wp-block-pullquote.alignright,
    blockquote.wp-block-pullquote.alignleft,
    blockquote {
      padding: 1.25rem 1.25rem 0.938rem 1.25rem;
      font-size: 0.813rem;
    }
  }
  
  .wp-block-quote.is-large cite,
  .wp-block-quote.is-style-large cite,
  blockquote.wp-block-quote cite,
  blockquote.wp-block-pullquote cite,
  blockquote.wp-block-pullquote.alignright cite,
  blockquote.wp-block-pullquote.alignleft cite,
  blockquote cite {
    font-style: normal;
    position: relative;
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    padding-left: 60px;
    font-family: var(--font-family-title);
  }
  
  .wp-block-quote.is-large cite:before,
  .wp-block-quote.is-style-large cite:before,
  blockquote.wp-block-quote cite:before,
  blockquote.wp-block-pullquote cite:before,
  blockquote.wp-block-pullquote.alignright cite:before,
  blockquote.wp-block-pullquote.alignleft cite:before,
  blockquote cite:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 0.1px;
    top: 50%;
    transform: translateY(50%);
    left: 0;
    background: var(--primary);
  }
  
  .wp-block-quote.is-large b,
  .wp-block-quote.is-large strong,
  .wp-block-quote.is-large .strong,
  .wp-block-quote.is-style-large b,
  .wp-block-quote.is-style-large strong,
  .wp-block-quote.is-style-large .strong,
  blockquote.wp-block-quote b,
  blockquote.wp-block-quote strong,
  blockquote.wp-block-quote .strong,
  blockquote.wp-block-pullquote b,
  blockquote.wp-block-pullquote strong,
  blockquote.wp-block-pullquote .strong,
  blockquote.wp-block-pullquote.alignright b,
  blockquote.wp-block-pullquote.alignright strong,
  blockquote.wp-block-pullquote.alignright .strong,
  blockquote.wp-block-pullquote.alignleft b,
  blockquote.wp-block-pullquote.alignleft strong,
  blockquote.wp-block-pullquote.alignleft .strong,
  blockquote b,
  blockquote strong,
  blockquote .strong {
    color: inherit;
  }
  
  .wp-block-quote.is-large.wp-block-pullquote.alignleft,
  .wp-block-quote.is-style-large.wp-block-pullquote.alignleft,
  blockquote.wp-block-quote.wp-block-pullquote.alignleft,
  blockquote.wp-block-pullquote.wp-block-pullquote.alignleft,
  blockquote.wp-block-pullquote.alignright.wp-block-pullquote.alignleft,
  blockquote.wp-block-pullquote.alignleft.wp-block-pullquote.alignleft,
  blockquote.wp-block-pullquote.alignleft {
    margin: 0rem 1.563rem 1.563rem 0rem;
  }
  
  .wp-block-quote.is-large.wp-block-pullquote.alignright,
  .wp-block-quote.is-style-large.wp-block-pullquote.alignright,
  blockquote.wp-block-quote.wp-block-pullquote.alignright,
  blockquote.wp-block-pullquote.wp-block-pullquote.alignright,
  blockquote.wp-block-pullquote.alignright.wp-block-pullquote.alignright,
  blockquote.wp-block-pullquote.alignleft.wp-block-pullquote.alignright,
  blockquote.wp-block-pullquote.alignright {
    margin: 0rem 0 1.563rem 1.563rem;
  }
  
  .wp-block-quote.is-large.style-1,
  .wp-block-quote.is-style-large.style-1,
  blockquote.wp-block-quote.style-1,
  blockquote.wp-block-pullquote.style-1,
  blockquote.wp-block-pullquote.alignright.style-1,
  blockquote.wp-block-pullquote.alignleft.style-1,
  blockquote.style-1 {
    background: #f3f4f8;
    border-radius: var(--border-radius-base);
    color: var(--primary);
    padding: 25px 40px;
    overflow: hidden;
  }
  
  @media only screen and (max-width: 575px) {
  
    .wp-block-quote.is-large.style-1,
    .wp-block-quote.is-style-large.style-1,
    blockquote.wp-block-quote.style-1,
    blockquote.wp-block-pullquote.style-1,
    blockquote.wp-block-pullquote.alignright.style-1,
    blockquote.wp-block-pullquote.alignleft.style-1,
    blockquote.style-1 {
      padding: 25px 30px;
    }
  }
  
  .wp-block-quote.is-large.style-1:after,
  .wp-block-quote.is-style-large.style-1:after,
  blockquote.wp-block-quote.style-1:after,
  blockquote.wp-block-pullquote.style-1:after,
  blockquote.wp-block-pullquote.alignright.style-1:after,
  blockquote.wp-block-pullquote.alignleft.style-1:after,
  blockquote.style-1:after {
    content: "";
    width: 8px;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary);
    position: absolute;
  }
  
  @media only screen and (max-width: 767px) {
  
    .wp-block-quote.is-large.style-1:after,
    .wp-block-quote.is-style-large.style-1:after,
    blockquote.wp-block-quote.style-1:after,
    blockquote.wp-block-pullquote.style-1:after,
    blockquote.wp-block-pullquote.alignright.style-1:after,
    blockquote.wp-block-pullquote.alignleft.style-1:after,
    blockquote.style-1:after {
      width: 5px;
    }
  }
  
  .wp-block-quote.is-large.style-1:before,
  .wp-block-quote.is-style-large.style-1:before,
  blockquote.wp-block-quote.style-1:before,
  blockquote.wp-block-pullquote.style-1:before,
  blockquote.wp-block-pullquote.alignright.style-1:before,
  blockquote.wp-block-pullquote.alignleft.style-1:before,
  blockquote.style-1:before {
    position: absolute;
    content: "\f10e";
    font-family: 'Font Awesome 6 Free';
    color: var(--primary);
    bottom: 15px;
    right: 25px;
    line-height: 1;
    font-weight: 900;
    opacity: 0.2;
    font-size: 60px;
  }
  
  @media only screen and (max-width: 767px) {
  
    .wp-block-quote.is-large.style-1:before,
    .wp-block-quote.is-style-large.style-1:before,
    blockquote.wp-block-quote.style-1:before,
    blockquote.wp-block-pullquote.style-1:before,
    blockquote.wp-block-pullquote.alignright.style-1:before,
    blockquote.wp-block-pullquote.alignleft.style-1:before,
    blockquote.style-1:before {
      font-size: 45px;
      bottom: 20px;
      right: 20px;
    }
  }
  
  blockquote.wp-block-pullquote:not(.is-style-solid-color) {
    background: #5608e0;
  }
  
  .wp-caption-text {
    font-size: 0.875rem;
    line-height: 1.3;
  }
  
  .dz-card.blog-single .dz-post-text blockquote p,
  .dz-page-text blockquote p,
  blockquote p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--title);
    margin-bottom: 1rem;
    font-weight: 600;
    font-style: italic;
  }
  
  .dz-card.blog-single .dz-post-text blockquote p cite,
  .dz-page-text blockquote p cite,
  blockquote p cite {
    margin-top: 20px;
  }
  
  @media only screen and (max-width: 991px) {
  
    .dz-card.blog-single .dz-post-text blockquote p,
    .dz-page-text blockquote p,
    blockquote p {
      font-size: 1.125rem;
    }
  }
  
  @media only screen and (max-width: 575px) {
  
    .dz-card.blog-single .dz-post-text blockquote p,
    .dz-page-text blockquote p,
    blockquote p {
      font-size: 1rem;
    }
  }
  
  .dz-page-text {
    padding-bottom: 30px !important;
  }
  
  .size-auto,
  .size-full,
  .size-large,
  .size-medium,
  .size-thumbnail {
    max-width: 100%;
    height: auto;
  }
  
  .min-container,
  .dz-page-text,
  .dz-page-text+#comment-list,
  .dz-page-text+#comment-list+.paginate-links {
    max-width: 51.875rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.938rem;
    padding-right: 0.938rem;
  }
  
  .dz-card.blog-single.sidebar+#comment-list {
    padding: 0;
    max-width: 100%;
  }
  
  .max-container {
    max-width: 93.75rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3.4375rem;
    padding-right: 3.4375rem;
  }
  
  .dz-page-text+#comment-list+.paginate-links,
  .dz-page-text+#comment-list,
  .dz-page-text {
    padding: 0;
  }
  
  .dz-page-text.sidebar {
    width: 100%;
    padding: 0;
    max-width: 100%;
  }
  
  .dz-page-text>ol,
  .dz-page-text>ul,
  .dz-page-text>.wp-block-gallery,
  .dz-card.blog-single .dz-post-text>.wp-block-gallery,
  .dz-card.blog-single .dz-post-text>ol,
  .dz-card.blog-single .dz-post-text>ul {
    list-style: none;
    margin-bottom: 1.875rem;
  }
  
  .dz-page-text>ol,
  .dz-page-text>ul,
  .dz-card.blog-single .dz-post-text>ol,
  .dz-card.blog-single .dz-post-text>ul,
  .dz-card.blog-single .dz-post-text.text>ol,
  .dz-card.blog-single .dz-post-text.text>ul {
    padding-left: 1.25rem;
  }
  
  .dz-page-text>ol ol,
  .dz-page-text>ol ul,
  .dz-page-text>ul ol,
  .dz-page-text>ul ul,
  .dz-card.blog-single .dz-post-text>ol ol,
  .dz-card.blog-single .dz-post-text>ol ul,
  .dz-card.blog-single .dz-post-text>ul ol,
  .dz-card.blog-single .dz-post-text>ul ul,
  .dz-card.blog-single .dz-post-text.text>ol ol,
  .dz-card.blog-single .dz-post-text.text>ol ul,
  .dz-card.blog-single .dz-post-text.text>ul ol,
  .dz-card.blog-single .dz-post-text.text>ul ul {
    padding-left: 1.563rem;
  }
  
  .dz-page-text>ol li,
  .dz-page-text>ul li,
  .dz-card.blog-single .dz-post-text>ol li,
  .dz-card.blog-single .dz-post-text>ul li,
  .dz-card.blog-single .dz-post-text>ol li,
  .dz-card.blog-single .dz-post-text>ul li,
  .dz-card.blog-single .dz-post-text.text>ol li,
  .dz-card.blog-single .dz-post-text.text>ul li {
    padding: 0.5rem 0.5rem;
    position: relative;
    list-style: inherit;
  }
  
  .dz-page-text>.wp-block-gallery,
  .dz-card.blog-single .dz-post-text>.wp-block-gallery,
  .dz-card.blog-single .dz-post-text.text>.wp-block-gallery {
    padding: 0;
    list-style: none;
  }
  
  .dz-page-text>.wp-block-gallery li,
  .dz-card.blog-single .dz-post-text>.wp-block-gallery li,
  .dz-card.blog-single .dz-post-text.text>.wp-block-gallery li {
    padding: 0;
    list-style: none;
    margin: 0.25rem;
  }
  
  .dz-page-text>.wp-block-gallery li:before,
  .dz-card.blog-single .dz-post-text>.wp-block-gallery li:before,
  .dz-card.blog-single .dz-post-text.text>.wp-block-gallery li:before {
    content: none;
  }
  
  .wp-block-gallery .blocks-gallery-image,
  .wp-block-gallery .blocks-gallery-item {
    margin: 0 0.5rem 0.5rem 0;
  }
  
  .wp-block-gallery.columns-4 .blocks-gallery-image,
  .wp-block-gallery.columns-4 .blocks-gallery-item,
  .wp-block-gallery.columns-3 .blocks-gallery-image,
  .wp-block-gallery.columns-3 .blocks-gallery-item {
    margin-right: 0.5rem;
  }
  
  .content-spacious-full .wp-block-gallery {
    margin-left: calc(-12.5rem - (0.313rem/2));
    margin-right: calc(-12.5rem - (0.313rem/2));
    width: calc(100% + 25rem + 0.313rem);
    max-width: initial;
  }
  
  .alignfull,
  .alignwide {
    margin-left: calc(-6.25rem - (0.313rem/2));
    margin-right: calc(-6.25rem - (0.313rem/2));
    width: calc(100% + 12.5rem + 0.313rem);
    max-width: initial;
  }
  
  .alignfull,
  .alignfullwide {
    margin-left: calc(50% - 50vw - (var(--content-share-ml, 0px)/2));
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  .dz-page-text h1,
  .dz-page-text .h1,
  .dz-post-text h1,
  .dz-post-text .h1,
  .thm-unit-test .dz-post-text h1,
  .thm-unit-test .dz-post-text .h1 {
    margin-bottom: 1rem;
  }
  
  .dz-page-text h2,
  .dz-page-text .h2,
  .dz-post-text h2,
  .dz-post-text .h2,
  .thm-unit-test .dz-post-text h2,
  .thm-unit-test .dz-post-text .h2 {
    margin-bottom: 1rem;
  }
  
  .dz-page-text h3,
  .dz-page-text .h3,
  .dz-post-text h3,
  .dz-post-text .h3,
  .thm-unit-test .dz-post-text h3,
  .thm-unit-test .dz-post-text .h3 {
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .dz-page-text h4,
  .dz-page-text .h4,
  .dz-page-text .comment-reply-title,
  .dz-page-text .wp-block-search .wp-block-search__label,
  .wp-block-search .dz-page-text .wp-block-search__label,
  .dz-post-text h4,
  .dz-post-text .h4,
  .dz-post-text .comment-reply-title,
  .dz-post-text .wp-block-search .wp-block-search__label,
  .wp-block-search .dz-post-text .wp-block-search__label,
  .thm-unit-test .dz-post-text h4,
  .thm-unit-test .dz-post-text .h4,
  .thm-unit-test .dz-post-text .comment-reply-title,
  .thm-unit-test .dz-post-text .wp-block-search .wp-block-search__label,
  .wp-block-search .thm-unit-test .dz-post-text .wp-block-search__label {
    margin-bottom: 0.75rem;
    font-weight: 600;
  }
  
  .dz-page-text h5,
  .dz-page-text .h5,
  .dz-post-text h5,
  .dz-post-text .h5,
  .thm-unit-test .dz-post-text h5,
  .thm-unit-test .dz-post-text .h5 {
    margin-bottom: 0.75rem;
  }
  
  .dz-page-text h6,
  .dz-page-text .h6,
  .dz-post-text h6,
  .dz-post-text .h6,
  .thm-unit-test .dz-post-text h6,
  .thm-unit-test .dz-post-text .h6 {
    margin-bottom: 0.625rem;
  }
  
  .wp-block-code,
  pre.wp-block-code,
  pre {
    margin: 0 0 1.563rem;
    padding: 1.25rem;
    color: #fff;
    background-color: #212326;
    white-space: pre;
    font-size: 0.938rem;
    border-radius: 0.1875rem;
  }
  
  .dz-page-text,
  .dz-page-text ul li,
  .dz-page-text ol li,
  .dz-card.blog-single .dz-post-text,
  .dz-card.blog-single .dz-post-text ul li,
  .dz-card.blog-single .dz-post-text ol li,
  .dz-card.blog-single .dz-card.blog-single .dz-post-text p:not(.has-text-color):not(.has-text-align-center):not(.has-text-align-left):not(.has-text-align-right) {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .wp-block-cover,
  .wp-block-cover-image {
    color: #fff;
  }
  
  .wp-block-cover p:last-child,
  .wp-block-cover-image p:last-child {
    margin-bottom: 0;
  }
  
  .wp-block-quote.has-text-align-right {
    border-right: 0;
  }
  
  .dz-page-text ul li,
  .dz-page-text ol li,
  .dz-card.blog-single .dz-post-text ul li,
  .dz-card.blog-single .dz-post-text ol li {
    position: relative;
  }
  
  .dz-page-text ul>li:before,
  .dz-page-text ol>li:before,
  .dz-card.blog-single .dz-post-text ul>li:before,
  .dz-card.blog-single .dz-post-text ol>li:before {
    content: "";
    display: inline-block;
    width: 0.375rem;
    height: 0.375rem;
    background: #212529;
    left: -0.938rem;
    position: absolute;
    top: 1.1rem;
    border-radius: 4px;
  }
  
  .dz-page-text ul>li li:before,
  .dz-page-text ol>li li:before,
  .dz-card.blog-single .dz-post-text ul>li li:before,
  .dz-card.blog-single .dz-post-text ol>li li:before {
    content: none;
  }
  
  
  
  
  
  
  
  .dz-page-text p,
  .dz-card.blog-single .dz-post-text p {
    margin-bottom: 1.65rem;
  }
  
  .paginate-links {
    display: flex;
    align-items: center;
    margin: 1.5rem 0 4rem 0;
  }
  
  .paginate-links a,
  .paginate-links>span {
    margin: 0 0 0 0.625rem;
    position: relative;
    border: 0rem solid #6cc000;
    color: #1f2471;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    text-transform: capitalize;
    transition: all 500ms ease 0s;
    background: #E0E0E0;
    border-radius: 0.1875rem;
  }
  
  .wp-block-columns {
    margin-bottom: 0;
  }
  
  .wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
  }
  
  .wp-block-gallery .blocks-gallery-image,
  .wp-block-gallery .blocks-gallery-item {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    margin: 0 1rem 1rem 0;
    position: relative;
  }
  
  .wp-block-gallery .blocks-gallery-image figure,
  .wp-block-gallery .blocks-gallery-item figure {
    height: 100%;
    margin: 0;
  }
  
  @supports (position: -webkit-sticky) or (position: sticky) {
  
    .wp-block-gallery .blocks-gallery-image figure,
    .wp-block-gallery .blocks-gallery-item figure {
      align-items: flex-end;
      display: flex;
      justify-content: flex-start;
    }
  }
  
  .wp-block-gallery .blocks-gallery-image img,
  .wp-block-gallery .blocks-gallery-item img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
  }
  
  @supports (position: -webkit-sticky) or (position: sticky) {
  
    .wp-block-gallery .blocks-gallery-image img,
    .wp-block-gallery .blocks-gallery-item img {
      width: auto;
    }
  }
  
  .wp-block-gallery .blocks-gallery-image figcaption,
  .wp-block-gallery .blocks-gallery-item figcaption {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 60%, transparent);
    bottom: 0;
    color: #fff;
    font-size: 0.813rem;
    max-height: 100%;
    overflow: auto;
    padding: 2.5rem 0.625rem 0.3125rem;
    position: absolute;
    text-align: center;
    width: 100%;
  }
  
  .wp-block-gallery .blocks-gallery-image figcaption img,
  .wp-block-gallery .blocks-gallery-item figcaption img {
    display: inline;
  }
  
  .wp-block-gallery.is-cropped .blocks-gallery-image a,
  .wp-block-gallery.is-cropped .blocks-gallery-image img,
  .wp-block-gallery.is-cropped .blocks-gallery-item a,
  .wp-block-gallery.is-cropped .blocks-gallery-item img {
    width: 100%;
  }
  
  @supports (position: -webkit-sticky) or (position: sticky) {
  
    .wp-block-gallery.is-cropped .blocks-gallery-image a,
    .wp-block-gallery.is-cropped .blocks-gallery-image img,
    .wp-block-gallery.is-cropped .blocks-gallery-item a,
    .wp-block-gallery.is-cropped .blocks-gallery-item img {
      -o-object-fit: cover;
      flex: 1;
      height: 100%;
      object-fit: cover;
    }
  }
  
  .wp-block-gallery .blocks-gallery-image,
  .wp-block-gallery .blocks-gallery-item {
    width: calc(50% - 0.5rem);
  }
  
  .wp-block-gallery .blocks-gallery-image:nth-of-type(2n),
  .wp-block-gallery .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
  }
  
  .wp-block-gallery.columns-1 .blocks-gallery-image,
  .wp-block-gallery.columns-1 .blocks-gallery-item {
    margin-right: 0;
    width: 100%;
  }
  
  @media only screen and (max-width: 64rem) {
    .alignwide {
      margin-left: 0;
      margin-right: 0;
      width: 100% !important;
      max-width: 100% !important;
    }
  
    .alignwide .alignleft img {
      width: 100%;
    }
  
    .alignwide .alignleft {
      margin: 0.3125rem 0rem 1.563rem 0;
      float: none;
    }
  }
  
  @media (min-width: 37.5rem) {
  
    .wp-block-gallery.columns-3 .blocks-gallery-image,
    .wp-block-gallery.columns-3 .blocks-gallery-item {
      margin-right: 1rem;
      width: calc(33.33333% - 0.666rem);
    }
  
    .wp-block-gallery.columns-4 .blocks-gallery-image,
    .wp-block-gallery.columns-4 .blocks-gallery-item {
      margin-right: 1rem;
      width: calc(25% - 0.75rem);
    }
  
    .wp-block-gallery.columns-5 .blocks-gallery-image,
    .wp-block-gallery.columns-5 .blocks-gallery-item {
      margin-right: 1rem;
      width: calc(20% - 0.8rem);
    }
  
    .wp-block-gallery.columns-6 .blocks-gallery-image,
    .wp-block-gallery.columns-6 .blocks-gallery-item {
      margin-right: 1rem;
      width: calc(16.66667% - 0.833rem);
    }
  
    .wp-block-gallery.columns-7 .blocks-gallery-image,
    .wp-block-gallery.columns-7 .blocks-gallery-item {
      margin-right: 1rem;
      width: calc(14.28571% - 0.857rem);
    }
  
    .wp-block-gallery.columns-8 .blocks-gallery-image,
    .wp-block-gallery.columns-8 .blocks-gallery-item {
      margin-right: 1rem;
      width: calc(12.5% - 0.875rem);
    }
  
    .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
    .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),
    .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),
    .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
    .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),
    .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
    .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),
    .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
    .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),
    .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
    .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),
    .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
    .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),
    .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
    .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n) {
      margin-right: 0;
    }
  }
  
  .wp-block-gallery .blocks-gallery-image:last-child,
  .wp-block-gallery .blocks-gallery-item:last-child {
    margin-right: 0;
  }
  
  .wp-block-gallery .blocks-gallery-item.has-add-item-button {
    width: 100%;
  }
  
  .wp-block-image.alignfullwide img {
    border-radius: 0;
  }
  
  .wp-block-image img {
    border-radius: 0.625rem;
  }
  
  .wp-block-cover,
  .wp-block-cover-image,
  .wp-block-embed,
  .wp-block-image {
    margin-bottom: 1.875rem;
    margin-top: 1.875rem;
  }
  
  .wp-block-gallery.alignleft,
  .wp-block-gallery.alignright {
    max-width: 19.0625rem;
    width: 100%;
  }
  
  .wp-block-gallery.aligncenter,
  .wp-block-gallery.alignleft,
  .wp-block-gallery.alignright {
    display: flex;
  }
  
  .wp-block-gallery.aligncenter .blocks-gallery-item figure {
    justify-content: center;
  }
  
  .dz-page-text.sidebar .alignfull,
  .dz-page-text.sidebar .alignfullwide,
  .dz-page-text.sidebar .alignwide,
  .dz-page-text.sidebar .wp-block-gallery,
  .blog-single.dz-card.sidebar .alignfullwide,
  .blog-single.dz-card.sidebar .alignwide,
  .blog-single.dz-card.sidebar .dz-post-text .wp-block-gallery {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: initial;
  }
  
  .blog-overlap {
    background: #fff;
    margin-top: -8.75rem;
    padding: 1.25rem 1.25rem 0;
    border-radius: 0.25rem 0.25rem 0rem 0rem;
  }
  
  .blog-single.dz-card.sidebar {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  
  .dz-post-text table,
  .dz-page-text table,
  .wp-block-table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    font-size: 1rem;
    margin-bottom: 1.875rem;
  }
  
  .wp-block-image figcaption,
  .dz-post-text figcaption,
  .dz-page-text figcaption {
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    margin-top: 0.625rem;
  }
  
  .dz-post-text table tbody tr:nth-of-type(odd),
  .dz-page-text table tbody tr:nth-of-type(odd),
  .wp-block-table tbody tr:nth-of-type(odd) {
    background-color: #fafafa;
  }
  
  .dz-post-text td,
  .dz-post-text th,
  .dz-page-text td,
  .dz-page-text th,
  .wp-block-table td,
  .wp-block-table th {
    padding: 0.625rem 0.938rem;
    border: 0.0625rem solid #e4e4e4;
    border-right: 0;
    border-left: 0;
  }
  
  .wp-block-media-text {
    margin-bottom: 30px;
  }
  
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0 1.875rem;
  }
  
  .wp-block-column ol li:before,
  .wp-block-column ul li:before {
    content: none !important;
  }
  
  .wp-block-pullquote {
    padding: 1em 0;
    border-top: 0;
    border-bottom: 0;
  }
  
  .wp-block-pullquote cite {
    color: #fff;
  }
  
  .wp-block-pullquote.alignright,
  .wp-block-pullquote.alignleft {
    padding: 0;
    border-top: 0;
    border-bottom: 0;
  }
  
  .wp-block-pullquote.alignright blockquote,
  .wp-block-pullquote.alignleft blockquote {
    margin: 0;
  }
  
  .dz-post-text .wp-block-cover-image-text,
  .dz-post-text .wp-block-cover-text,
  .dz-post-text section.wp-block-cover-image h2,
  .dz-post-text section.wp-block-cover-image .h2,
  .dz-page-text .wp-block-cover-image-text,
  .dz-page-text .wp-block-cover-text,
  .dz-page-text section.wp-block-cover-image h2,
  .dz-page-text section.wp-block-cover-image .h2 {
    color: #fff;
  }
  
  .dz-post-text .bootstrap-select .dropdown-menu li a,
  .dz-page-text .bootstrap-select .dropdown-menu li a {
    box-shadow: none;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
  }
  
  .dz-post-text .wp-block-calendar a {
    box-shadow: none !important;
    text-decoration: unset;
  }
  
  .wp-block-search,
  .wp-block-archives,
  .wp-block-latest-posts,
  .wp-block-latest-comments,
  .wp-block-categories,
  .wp-block-calendar {
    margin-bottom: 2.5rem;
  }
  
  .admin-bar .is-fixed .main-bar {
    top: 1.875rem;
  }
  
  .wp-block-quote.is-style-large cite:before {
    display: none;
  }
  
  .post-password-form label {
    font-size: 1rem;
  }
  
  .post-password-form input[type="submit"] {
    padding: 0.625rem 1.563rem;
    background-color: var(--primary);
    border: none;
    height: 2.8125rem;
    font-weight: 600;
    font-size: 0.875rem;
    outline: none;
  }
  
  .post-password-form input[type="submit"]:hover {
    background-color: var(--primary);
  }
  
  .post-password-form input[type="password"] {
    height: 2.8125rem;
    border: 0.0625rem solid #ced4da;
  }
  
  .wp-block-search .wp-block-search__button {
    background: var(--primary);
    border: 0;
    color: #fff;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.625rem 1.563rem;
    -webkit-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
  }
  
  .wp-block-search .wp-block-search__input {
    border: 0.0625rem solid #e1e6eb;
    height: 2.8125rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    outline: none;
  }
  
  .wp-block-tag-cloud a {
    padding: 0.5rem 0.625rem;
    background: var(--primary);
    font-size: 0.75rem;
    display: inline-block;
    margin: 0 0 0.3125rem;
    color: #fff;
    font-weight: 600;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    text-decoration: none;
    box-shadow: none;
  }
  
  .wp-block-tag-cloud a:hover {
    background: var(--primary-hover);
  }
  
  .wp-block-latest-comments {
    padding: 0 !important;
  }
  
  .wp-block-latest-comments .avatar {
    width: 3.4375rem;
    height: 3.4375rem;
    border-radius: 3.4375rem;
  }
  
  .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
    margin-left: 4.375rem;
  }
  
  .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
    color: var(--title);
    font-family: 'Poppins', sans-serif;
    font-size: 1.063rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 0.625rem;
  }
  
  .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a {
    color: var(--title);
    box-shadow: none;
    text-decoration: none;
  }
  
  .wp-block-latest-comments img+article .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
    margin-left: 4.375rem;
  }
  
  .wp-block-latest-comments .wp-block-latest-comments__comment-meta time {
    display: block;
    width: 100%;
    color: #9fa1a4;
    font-size: 0.813rem;
    font-weight: 400;
  }
  
  .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.625rem !important;
  }
  
  .wp-block-latest-comments li {
    padding: 0 !important;
    border-bottom: 0.0625rem solid #eee;
    padding-bottom: 0.625rem !important;
  }
  
  .wp-block-latest-comments li:before {
    content: none !important;
  }
  
  .wp-block-latest-comments__comment-avatar {
    width: 3.4375rem;
    height: 3.4375rem;
    border-radius: 3.4375rem;
  }
  
  .comment-content.dz-page-text {
    max-width: 100%;
  }
  
  .wp-block-rss {
    padding: 0 !important;
  }
  
  .wp-block-rss .wp-block-rss__item {
    padding: 0.3125rem 0 !important;
    border-bottom: 0.0625rem solid #eee;
  }
  
  .wp-block-rss .wp-block-rss__item:before {
    content: none !important;
  }
  
  .wp-block-rss .wp-block-rss__item a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    box-shadow: unset !important;
    font-weight: 600;
    color: var(--title);
    text-decoration: none;
  }
  
  @media only screen and (max-width: 75rem) {
  
    .dz-page-text .wp-block-gallery,
    .dz-card.blog-single .dz-post-text .wp-block-gallery {
      margin-left: calc(-6.25rem - (0.625rem/2));
      margin-right: calc(-6.25rem - (0.625rem/2));
      width: calc(100% + 12.5rem + 0.625rem);
    }
  }
  
  @media only screen and (max-width: 61.9375rem) {
    .admin-bar .mo-left .header-nav {
      top: 1.875rem;
      height: calc(100vh - 1.875rem) !important;
    }
  
    .dz-page-text .wp-block-gallery,
    .dz-card.blog-single .dz-post-text .wp-block-gallery {
      margin-left: 0;
      margin-right: 0;
      width: 100%;
    }
  
    .dz-page-text,
    .dz-page-text ul li,
    .dz-page-text ol li,
    .dz-page-text p,
    .dz-card.blog-single .dz-post-text,
    .dz-card.blog-single .dz-post-text ul li,
    .dz-card.blog-single .dz-post-text ol li,
    .dz-card.blog-single .dz-post-text p {
      font-size: 1rem;
    }
  }
  
  @media only screen and (max-width: 48.875rem) {
    .admin-bar .is-fixed .main-bar {
      top: 2.8125rem;
    }
  
    .admin-bar .mo-left .header-nav {
      top: 2.8125rem;
      height: calc(100vh - 2.812rem) !important;
    }
  
    .wp-block-media-text {
      display: block;
    }
  
    .wp-block-media-text .wp-block-media-text__media {
      margin-bottom: 0.938rem;
    }
  
    .wp-block-media-text .wp-block-media-text__content {
      padding: 0;
    }
  }
  
  @media only screen and (max-width: 37.5rem) {
    .admin-bar .is-fixed .main-bar {
      top: 0;
    }
  
    .admin-bar .mo-left .header-nav {
      top: 2.8125rem;
      height: calc(100vh - 2.812rem) !important;
    }
  
    .admin-bar .mo-left .is-fixed .header-nav {
      top: 0;
      height: 100vh !important;
    }
  }
  
  .post-footer {
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.938rem 0 0;
  }
  
  .post-footer .dz-meta .tag-list {
    padding-bottom: 0;
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: none;
    text-transform: capitalize;
    display: inline;
  }
  
  .post-footer .dz-meta ul li {
    margin-right: 0.3125rem;
    padding: 0;
    display: inline-block;
    color: #333333;
    font-weight: 500;
    font-size: 0.938rem;
    font-style: italic;
  }
  
  .post-footer .post-tag a {
    text-transform: capitalize;
    font-size: 0.938rem;
    color: #999;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 0.875rem;
    font-weight: 500;
  }
  
  .share-post li {
    display: inline-block;
  }
  
  .share-post a {
    width: 2.1875rem;
    height: 2.1875rem;
    border-radius: 2.1875rem;
    border: 0.0625rem solid #eee;
    display: block;
    text-align: center;
    line-height: 2.0625rem;
    color: #212529;
  }
  
  .extra-blog {
    margin-bottom: 30px;
  }
  
  @media only screen and (max-width: 575px) {
    .comment-respond.style-1 .comment-reply-title {
      margin-bottom: 20px;
    }
  }
  
  .default-form.comment-respond .comment-reply-title,
  .comments-area .comments-title,
  .extra-blog .blog-title {
    font-size: 23px;
    font-weight: 800;
  }
  
  .comments-area .comment-list {
    margin-bottom: 60px;
    padding: 0;
  }
  
  @media only screen and (max-width: 767px) {
    .comments-area .comment-list {
      margin-bottom: 40px;
    }
  }
  
  .comments-area .comment-list .default-form {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }
  
  .comments-area .comment-list .default-form small,
  .comments-area .comment-list .default-form .small {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
  }
  
  .comments-area .comment-list .default-form small a,