/*-------------------------------
    Responsive CSS
-------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Rotate Start */
/* Rotate End */
/* Move Horizontal Forward & Backward */
/* Rotate Full 360 */
/* Frame Two Animation */
/* Shine Animation */
/* Bounce Animation */
.bounce {
  -moz-animation: bounce 1500ms infinite ease-in-out;
  -webkit-animation: bounce 1500ms infinite ease-in-out;
  animation: bounce 1500ms infinite ease-in-out;
}

/* Move Horizontal Forward Animation */
.move-horizontal-forward {
  -webkit-animation: move-horizontal-forward 3000ms infinite ease-in-out;
  animation: move-horizontal-forward 3000ms infinite ease-in-out;
}

/* Move Horizontal Backward Animation */
.move-horizontal-backward {
  -webkit-animation: move-horizontal-backward 3000ms infinite ease-in-out;
  animation: move-horizontal-backward 3000ms infinite ease-in-out;
}

/* Move Vertical Up Animation */
.move-vertical-up {
  -moz-animation: move-vertical-up 3000ms infinite ease-in-out;
  -webkit-animation: move-vertical-up 3000ms infinite ease-in-out;
  animation: move-vertical-up 3000ms infinite ease-in-out;
}

/* Move Vertical Down Animation */
.move-vertical-down {
  -moz-animation: move-vertical-down 3000ms infinite ease-in-out;
  -webkit-animation: move-vertical-down 3000ms infinite ease-in-out;
  animation: move-vertical-down 3000ms infinite ease-in-out;
}

/* Waving Start Animation */
.waving-start {
  -webkit-animation: waving-start 7s infinite linear;
  animation: waving-start 7s infinite linear;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Waving End Animation */
.waving-end {
  -webkit-animation: waving-end 7s infinite linear;
  animation: waving-end 7s infinite linear;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Rotate Animation */
.rotate {
  -webkit-animation: rotation 20s infinite linear;
  animation: rotation 20s infinite linear;
}

/* Animation Frames Two Animation */
.animationFramesTwo {
  -moz-animation: animationFramesTwo 15000ms infinite ease-in-out;
  -webkit-animation: animationFramesTwo 15000ms infinite ease-in-out;
  animation: animationFramesTwo 15000ms infinite ease-in-out;
}

/* Slide Up Animation */
.slide_up {
  -moz-animation: slide_up 3000ms infinite ease-in-out;
  -webkit-animation: slide_up 3000ms infinite ease-in-out;
  animation: slide_up 3000ms infinite ease-in-out;
}

/* Slide Down Animation */
.slide_down {
  -moz-animation: slide_down 3000ms infinite ease-in-out;
  -webkit-animation: slide_down 3000ms infinite ease-in-out;
  animation: slide_down 3000ms infinite ease-in-out;
}

/* FadeIn Down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* FadeIn Up Animation */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* Shine Animation */
.shine {
  -moz-animation: shine 3000ms infinite ease-in-out;
  -webkit-animation: shine 3000ms infinite ease-in-out;
  animation: shine 3000ms infinite ease-in-out;
}

/* Bounce Keyframes */
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
}
/* Move Horizontal Forward Keyframes */
@-webkit-keyframes move-horizontal-forward {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes move-horizontal-forward {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* Move Horizontal Backward Keyframes */
@-webkit-keyframes move-horizontal-backward {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes move-horizontal-backward {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* Move Vertical Up Keyframes */
@-webkit-keyframes move-vertical-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes move-vertical-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
/* Move Vertical Down Keyframes */
@-webkit-keyframes move-vertical-down {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes move-vertical-down {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
/* Waving start Keyframes */
@-webkit-keyframes waving-start {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes waving-start {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/* Waving End Keyframes */
@-webkit-keyframes waving-end {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes waving-end {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/* Rotation Keyframes */
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Animation Frames Two Keyframes */
@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
/* Slide Up Keyframes */
@-webkit-keyframes slide_up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slide_up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/* Slide Down Keyframes */
@-webkit-keyframes slide_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slide_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
/* FadeIn Down Keyframes */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* FadeIn Up Keyframes */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* Shine Keyframes */
@-webkit-keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 125%;
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 125%;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus,
button:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

a,
button,
input[type=submit] {
  cursor: pointer;
}

section {
  overflow-x: hidden;
}

.grecaptcha-badge {
  z-index: 99999;
}

body.digital .block-traditional {
  display: none;
}
body.digital .block-digital {
  display: flex;
}

body.traditional .block-traditional {
  display: flex;
}
body.traditional .block-digital {
  display: none;
}

body.digital.force-digital .block-traditional,
body.traditional.force-digital .block-traditional {
  display: none;
}
body.digital.force-digital .block-digital,
body.traditional.force-digital .block-digital {
  display: flex;
}

body.digital.force-traditional .block-traditional,
body.traditional.force-traditional .block-traditional {
  display: flex;
}
body.digital.force-traditional .block-digital,
body.traditional.force-traditional .block-digital {
  display: none;
}

:root {
  --section-space-sm: 48px;
  --section-space-md: 64px;
  --section-space-lg: 80px;
}

main > section:not(.hero-wrap):not(.no-page-hero):not(.landing-page) {
  padding-block: var(--section-space-sm);
}
main > section:not(.hero-wrap):last-of-type {
  padding-block: var(--section-space-sm) var(--section-space-md);
}
main > section.hero-wrap + section:not(.no-page-hero):not(.landing-page) {
  padding-block: 0px var(--section-space-sm) !important;
}
main > section.no-page-hero {
  margin-top: 60px;
  padding-block-start: 64px !important;
}
main > section.landing-page {
  padding-block: var(--section-space-sm) var(--section-space-md) !important;
}
@media (min-width: 768px) {
  main > section:not(.hero-wrap):not(.no-page-hero):not(.landing-page) {
    padding-block: var(--section-space-md);
  }
  main > section:not(.hero-wrap):last-of-type {
    padding-block: var(--section-space-md) var(--section-space-lg);
  }
  main > section.hero-wrap + section:not(.no-page-hero):not(.landing-page) {
    padding-block: 0px var(--section-space-md) !important;
  }
  main > section.no-page-hero {
    margin-top: 120px;
    padding-block-start: 80px !important;
  }
  main > section.landing-page {
    padding-block: var(--section-space-md) var(--section-space-md) !important;
  }
}
@media (min-width: 992px) {
  main > section.no-page-hero {
    margin-top: 132px;
  }
  main > section.landing-page {
    padding-block: var(--section-space-lg) var(--section-space-lg) !important;
  }
}

/*
section.no-page-hero {
    margin-top: 64px;
    @media only screen and (min-width: 768px) {
        margin-top: 80px;
    }
}*/
body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: rgb(28.8, 20.7, 72.9);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #201751;
}

p, p.lead {
  color: rgb(28.8, 20.7, 72.9);
  line-height: 1.7;
}

.text-body-secondary, .text-muted {
  color: rgb(143.5, 139, 168) !important;
}

.disabled {
  color: rgb(165.8, 162.2, 185.4);
}

a, a.link-primary {
  color: rgb(98.9, 92.6, 133.2);
}
a:hover, a:focus, a.link-primary:hover, a.link-primary:focus {
  color: #201751;
}

a.link-secondary {
  color: rgb(98.9, 92.6, 133.2);
}
a.link-secondary:hover, a.link-secondary:focus {
  color: #201751;
}
a.link-secondary:visited {
  opacity: 0.85;
}

.link-primary-alt {
  color: rgb(98.9, 92.6, 133.2);
}
.link-primary-alt:hover {
  color: #61C01A;
}

.link-secondary-alt {
  color: rgb(144.4, 210.9, 94.7);
}
.link-secondary-alt:hover {
  color: #201751;
}

article {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.7;
  font-size: 16px;
  color: #201751;
}
@media only screen and (min-width: 768px) {
  article {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
article.no-border-bottom {
  border-bottom: none;
}
article.no-bottom-spacing {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
@media only screen and (min-width: 768px) {
  article.content-valign-center {
    padding-bottom: 0px;
    margin-block: auto;
  }
}
article .article-header {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-bottom: 16px;
}
article .article-header span {
  color: #61C01A;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}
article .article-header h1, article .article-header h2, article .article-header h3, article .article-header h4, article .article-header h5, article .article-header h6 {
  color: #201751;
  margin-bottom: 0px;
  font-weight: 700;
  line-height: 1.2;
}
article .article-header h1 {
  font-size: 60px;
}
article .article-header h2 {
  font-size: 44px;
}
article .article-header h3 {
  font-size: 32px;
}
article .article-header h4 {
  font-size: 24px;
}
article .article-header h5 {
  font-size: 20px;
}
article .article-header h6 {
  font-size: 16px;
}
article p {
  margin-block: 0px 16px;
}
article strong, article b {
  color: #201751;
}
article em, article i {
  font-style: italic;
  color: #61C01A;
}
article a {
  color: rgb(144.4, 210.9, 94.7);
  text-decoration: underline;
  word-break: break-word;
}
article a:hover {
  color: #61C01A;
}
article img {
  border-radius: 8px;
  margin: 8px;
  max-width: 100%;
  height: auto;
  display: block;
}
article h1, article h2, article h3, article h4, article h5, article h6 {
  color: #201751;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
}
article h1::first-letter, article h2::first-letter, article h3::first-letter, article h4::first-letter, article h5::first-letter, article h6::first-letter {
  text-transform: capitalize;
}
article h1 {
  font-size: 30px;
}
article h2 {
  font-size: 28px;
}
article h3 {
  font-size: 26px;
}
article h4 {
  font-size: 24px;
}
article h5 {
  font-size: 22px;
}
article h6 {
  font-size: 20px;
}
article blockquote {
  border-inline-start: 4px solid #61C01A;
  padding-block: 8px;
  padding-inline: 16px;
  margin: 16px 0;
  color: rgba(32, 23, 81, 0.8);
  font-style: italic;
  background: rgba(32, 23, 81, 0.05);
}
article ol, article ul {
  margin-block: 12px 16px;
  padding-inline-start: 20px;
}
article ol li, article ul li {
  font-size: 16px;
  color: #201751;
  margin-bottom: 8px;
  line-height: 1.6;
}
article ul {
  list-style: none;
}
article ul li {
  display: flex;
  align-items: center;
}
article ul li:before {
  display: inline-flex;
  align-self: baseline;
  transform: rotateY(0deg) scale(1);
  font-family: "remixicon" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eb88";
  color: #61C01A;
  font-size: 16px;
  line-height: 1;
  margin-inline-end: 8px;
  padding-top: 5px;
}
article.ul-style-2 ul li {
  display: flex;
  align-items: center;
}
article.ul-style-2 ul li:before {
  display: inline-flex;
  flex: 0 0 30px;
  align-self: baseline;
  justify-content: center;
  align-items: center;
  transform: rotateY(0deg) scale(1);
  font-family: flaticon !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f114";
  color: #61C01A;
  font-size: 13px;
  line-height: 1;
  margin-inline-end: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(97, 192, 26, 0.1);
  padding-top: 0px;
}
article.list-padding-start-0 ol, article.list-padding-start-0 ul {
  padding-inline-start: 0px;
}
article table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 16px;
}
article table th, article table td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
}
article table th {
  background: rgba(32, 23, 81, 0.1);
  color: #201751;
}
@media only screen and (max-width: 767.98px) {
  article {
    font-size: 14px;
  }
  article .article-header span {
    font-size: 16px;
  }
  article .article-header h1 {
    font-size: 30px;
  }
  article .article-header h2 {
    font-size: 24px;
  }
  article .article-header h3 {
    font-size: 22px;
  }
  article .article-header h4 {
    font-size: 20px;
  }
  article .article-header h5 {
    font-size: 18px;
  }
  article .article-header h6 {
    font-size: 16px;
  }
  article p {
    font-size: 14px;
  }
  article strong, article b {
    font-size: 14px;
  }
  article em, article i {
    font-size: 14px;
  }
  article a {
    font-size: 14px;
  }
  article h1 {
    font-size: 28px;
  }
  article h2 {
    font-size: 24px;
  }
  article h3 {
    font-size: 22px;
  }
  article h4 {
    font-size: 20px;
  }
  article h5 {
    font-size: 18px;
  }
  article h6 {
    font-size: 16px;
  }
  article blockquote {
    font-size: 14px;
  }
  article ol, article ul {
    margin-block: 8px 12px;
    padding-inline-start: 16px;
  }
  article ol li, article ul li {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.4;
  }
  article ul li:before {
    font-size: 14px;
    padding-top: 3px;
  }
  article.ul-style-2 ul li:before {
    flex: 0 0 24px;
    font-size: 10px;
    width: 24px;
    height: 24px;
  }
  article table th {
    font-size: 16px;
  }
  article table td {
    font-size: 14px;
  }
}

.content-wrap .content-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.content-wrap .content-header.start {
  align-items: start;
}
.content-wrap .content-header.end {
  align-items: end;
}
.content-wrap .content-header span {
  color: #61C01A;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: capitalize;
}
.content-wrap .content-header h1, .content-wrap .content-header h2, .content-wrap .content-header h3, .content-wrap .content-header h4, .content-wrap .content-header h5, .content-wrap .content-header h6 {
  color: #201751;
  margin-bottom: 16px;
  font-weight: 600;
}
.content-wrap .content-header h1::first-letter, .content-wrap .content-header h2::first-letter, .content-wrap .content-header h3::first-letter, .content-wrap .content-header h4::first-letter, .content-wrap .content-header h5::first-letter, .content-wrap .content-header h6::first-letter {
  text-transform: capitalize;
}
.content-wrap .content-header h1 {
  font-size: 60px;
}
.content-wrap .content-header h2 {
  font-size: 44px;
}
.content-wrap .content-header h3 {
  font-size: 32px;
}
.content-wrap .content-header h4 {
  font-size: 24px;
}
.content-wrap .content-header h5 {
  font-size: 20px;
}
.content-wrap .content-header h6 {
  font-size: 16px;
}
@media only screen and (max-width: 767.98px) {
  .content-wrap .content-header span {
    font-size: 16px;
  }
  .content-wrap .content-header h1 {
    font-size: 30px;
  }
  .content-wrap .content-header h2 {
    font-size: 24px;
  }
  .content-wrap .content-header h3 {
    font-size: 22px;
  }
  .content-wrap .content-header h4 {
    font-size: 20px;
  }
  .content-wrap .content-header h5 {
    font-size: 18px;
  }
  .content-wrap .content-header h6 {
    font-size: 16px;
  }
}
.content-wrap .content-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.content-wrap .content-text article,
.content-wrap .content-text .content-img,
.content-wrap .content-text .ratio {
  width: 100%;
}
.content-wrap .content-text article {
  order: 1;
}
.content-wrap .content-text .content-img {
  order: 2;
}
.content-wrap .content-text .ratio {
  order: 3;
}
.content-wrap .content-text.flip-order article {
  order: 2;
}
.content-wrap .content-text.flip-order .content-img {
  order: 1;
}
@media (min-width: 992px) {
  .content-wrap .content-text:has(.content-img) {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
  .content-wrap .content-text:has(.content-img) article {
    order: 1;
  }
  .content-wrap .content-text:has(.content-img) .content-img {
    order: 2;
  }
  .content-wrap .content-text.flip-order:has(.content-img) article {
    order: 2;
  }
  .content-wrap .content-text.flip-order:has(.content-img) .content-img {
    order: 1;
  }
}
.content-wrap .content-text .ratio {
  grid-column: 1/-1;
  order: 3;
  width: 100%;
  overflow: hidden;
  margin-top: 24px;
}
.content-wrap .content-text .ratio iframe {
  border: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.content-wrap .content-text .content-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.content-wrap .content-text .content-img.background-img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.content-wrap .content-text .content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.content-wrap .content-text .content-img img.bounce {
  margin-block: 8px;
  height: auto;
}
.content-wrap .content-text .content-img.fill-image img {
  object-fit: fill;
}
.content-wrap .content-text .content-img.contain-image img {
  object-fit: contain;
}
.content-wrap .content-text .content-img.border-radius-0 {
  border-radius: 0px;
}
.content-wrap .content-text .content-img.aspect-ratio-1 {
  aspect-ratio: 1/1;
}
.content-wrap .content-text .content-img.aspect-ratio-16 {
  aspect-ratio: 16/9;
}
.content-wrap.mb-all-0 .content-header {
  margin-bottom: 0px;
}
.content-wrap.mb-all-0 .content-header span, .content-wrap.mb-all-0 .content-header h1, .content-wrap.mb-all-0 .content-header h2, .content-wrap.mb-all-0 .content-header h3, .content-wrap.mb-all-0 .content-header h4, .content-wrap.mb-all-0 .content-header h5, .content-wrap.mb-all-0 .content-header h6 {
  margin-bottom: 0px;
}
.content-wrap.mb-all-0 .content-text {
  margin-bottom: 0px;
}
.content-wrap.mb-title-0 .content-header {
  margin-bottom: 0px;
}
.content-wrap.mb-title-0 .content-header span, .content-wrap.mb-title-0 .content-header h1, .content-wrap.mb-title-0 .content-header h2, .content-wrap.mb-title-0 .content-header h3, .content-wrap.mb-title-0 .content-header h4, .content-wrap.mb-title-0 .content-header h5, .content-wrap.mb-title-0 .content-header h6 {
  margin-bottom: 0px;
}
.content-wrap.mb-content-0 .content-text {
  margin-bottom: 0px;
}
.content-wrap .app-btns a {
  display: inline-block;
  margin-top: 8px;
}
.content-wrap .app-btns a:first-child {
  margin-inline-end: 12px;
}
.content-wrap .app-btns a img {
  display: inline-block;
  margin: 0px;
  width: 140px;
  height: auto;
}
@media only screen and (min-width: 576px) {
  .content-wrap .app-btns a img {
    width: 160px;
  }
}
@media only screen and (min-width: 992px) {
  .content-wrap .app-btns a img {
    width: 177px;
  }
}

a {
  color: #000;
  text-transform: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover,
a :focus {
  text-decoration: none;
  box-shadow: none;
  color: #000;
}

a:focus {
  outline: 0 solid;
}

img {
  max-width: 100%;
  height: auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/down-arrow.png);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 94% 50%;
}

.z-0 {
  z-index: 0;
  position: relative;
}

.help-block {
  color: #E31C25;
}

.list-style {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-style li {
  list-style: none;
}

.page-wrapper {
  overflow-x: hidden;
}

/* Padding Top */
.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-200 {
  padding-top: 200px;
}

/* Padding Bottom */
.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-130 {
  padding-bottom: 130px;
}

/* Padding Y-Axis */
.ptb-10 {
  padding-bottom: 10px;
  padding-bottom: 10px;
}

.ptb-20 {
  padding-bottom: 20px;
  padding-bottom: 20px;
}

.ptb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ptb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.ptb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ptb-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Margin Top */
.mt-0 {
  margin-top: 0px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

/* Margin Bottom */
.mb-0 {
  margin-bottom: 0px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 24px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

/* Margin Y-Axis */
.mtb-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.bg-transparent {
  background-color: transparent;
}

.bg-black {
  background-color: #000;
}

.bg-white {
  background-color: #FFF;
}

.bg-athens {
  background-color: #F3F4F6;
}

.bg-albastor {
  background-color: #f9f9f9;
}

.bg-rock {
  background-color: #2b0d61;
}

.bg-spring {
  background-color: #F2FBFA;
}

.bg-stratos {
  background-color: #010647;
}

.bg-rhino {
  background-color: #282B58;
}

.bg-squeeze {
  background-color: #EDF9F9;
}

.bg-primary {
  background-color: #201751 !important;
}

.bg-secondary {
  background-color: #61C01A !important;
}

.bg-f {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
}

/*
.bg-alco{
    background-color: $clr_alco;
}
*/
.op-1 {
  opacity: 0.1;
}

.op-2 {
  opacity: 0.2;
}

.op-3 {
  opacity: 0.3;
}

.op-4 {
  opacity: 0.4;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-75 {
  opacity: 0.75;
}

.op-8 {
  opacity: 0.8;
}

.op-85 {
  opacity: 0.85;
}

.op-9 {
  opacity: 0.9;
}

.op-95 {
  opacity: 0.95;
}

.op-10 {
  opacity: 1;
}

.body_overlay {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.body_overlay.open {
  visibility: visible;
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pos-rel {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 575.98px) {
  .xs-center {
    text-align: center;
  }
  .xs-none {
    display: none !important;
  }
  .smt-15 {
    margin-top: 15px !important;
  }
  .breadcrumb-wrap {
    padding: 52px 0 24px;
  }
  .breadcrumb-wrap .breadcrumb-title {
    font-size: 24px;
  }
  .breadcrumb-wrap .breadcrumb-title h2 {
    margin-bottom: 8px;
  }
  .breadcrumb-wrap .breadcrumb-title .breadcrumb-menu li {
    font-size: 14px;
  }
  .breadcrumb-wrap .breadcrumb-title .breadcrumb-menu li a {
    font-size: 14px;
  }
  .page-nav.mt-120 {
    margin-top: 10px !important;
  }
  .page-nav li a {
    width: 36px;
    height: 36px;
    font-size: 16px;
    line-height: 36px;
  }
  .page-nav li a i {
    font-size: 13px;
    line-height: 36px;
    top: 0;
  }
  .hero-wrap.style3 .hero-img-wrap::after {
    inset-inline-end: -10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .container-fluid {
    max-width: 540px;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  p, input, textarea {
    font-size: 14px;
  }
  .btn {
    font-size: 14px;
  }
  .sm-center {
    text-align: center !important;
  }
  .mb-50 {
    margin-bottom: 30px !important;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pb-50 {
    padding-bottom: 0px;
  }
  .pb-60 {
    padding-bottom: 15px;
  }
  .pb-100 {
    padding-bottom: 40px;
  }
  .mt-100 {
    margin-top: 40px !important;
  }
  .mb-100 {
    margin-bottom: 40px !important;
  }
  .mtb-100 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .ptb-100 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pt-70 {
    padding-top: 20px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  .pb-75 {
    padding-bottom: 25px;
  }
  .pb-50 {
    padding-bottom: 0px;
  }
  .pt-75 {
    padding-top: 25px;
  }
  .mb-40 {
    margin-bottom: 24px !important;
  }
  .section-title.mb-50,
  .content-title.mb-50 {
    margin-bottom: 30px !important;
  }
  .section-title.mb-40 {
    margin-bottom: 20px !important;
  }
  .link, .btn {
    font-size: 14px;
  }
  .btn {
    padding: 11px 25px 12px;
  }
  .back-to-top {
    font-size: 20px;
    width: 35px;
    height: 35px;
    line-height: 32px;
    inset-inline-end: 10px;
  }
  .back-to-top i {
    font-size: 18px;
  }
  .section-title.style2 span, .section-title.style3 span,
  .content-title.style2 span,
  .content-title.style3 span {
    font-size: 12px;
  }
  .section-title.style1 span,
  .content-title.style1 span {
    font-size: 16px;
  }
  .section-title h2,
  .content-title h2 {
    font-size: 24px;
    line-height: 1.5;
  }
  .breadcrumb-title {
    padding-bottom: 32px;
  }
  .breadcrumb-title h2 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .breadcrumb-title .breadcrumb-menu li {
    font-size: 14px;
  }
  .breadcrumb-title .breadcrumb-menu li:after {
    font-size: 16px;
  }
  .breadcrumb-title .breadcrumb-menu li a {
    font-size: 14px;
  }
  .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }
  .owl-carousel .owl-nav button.owl-prev i, .owl-carousel .owl-nav button.owl-next i {
    font-size: 14px;
  }
  .testimonial-card.style1 .client-info h3,
  .blog-card .blog-info h3 {
    font-size: 20px;
  }
  .blog-card .blog-info a.link {
    font-size: 14px;
  }
  .hero-wrap {
    margin-top: 54px;
  }
  .hero-wrap .hero-content span {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .hero-wrap .hero-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .hero-wrap .hero-content p {
    padding-inline-end: 10px;
    margin-bottom: 15px;
  }
  .hero-wrap .hero-content .hero-btn .btn {
    padding: 11px 20px 11px;
  }
  .hero-wrap .hero-content .hero-btn .btn:first-child {
    margin-inline-end: 10px;
  }
  .hero-wrap.style1 .hero-slide-item {
    padding: 60px 0 0;
  }
  .hero-wrap.style1 .hero-content {
    padding-bottom: 35px;
  }
  .hero-wrap.style1 .hero-content h1 {
    font-size: 24px;
  }
  .hero-wrap.style3 .hero-slide-item {
    padding: 50px 0 120px;
  }
  .hero-wrap.style3 .hero-content {
    margin-bottom: 36px;
  }
  .hero-wrap.style3 .hero-content h1 {
    font-size: 26px;
  }
  .hero-wrap.style3 .hero-content p {
    padding-inline-end: 10px;
  }
  .hero-wrap.style3 .hero-content .hero-btn .play-video .play-btn {
    width: 48px;
    height: 48px;
  }
  .hero-slider-one.owl-carousel .owl-dots {
    top: auto;
    bottom: 64px;
    inset-inline-start: 50%;
    inset-inline-end: auto;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .hero-slider-one.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 25px;
  }
  .hero-slider-one.owl-carousel .owl-dots .owl-dot span:before {
    position: absolute;
    top: 50%;
    inset-inline-start: 41px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 24px;
    height: 1px;
  }
  .hero-slider-one.owl-carousel .owl-dots .owl-dot.active span:after {
    width: 5px;
    height: 5px;
  }
  .block-wrap .block-header {
    margin-bottom: 20px;
  }
  .block-wrap .block-sub-header {
    margin-bottom: 6px;
  }
  .block-wrap .block-text p {
    margin-bottom: 6px;
  }
  .block-wrap .block-text ul {
    margin-bottom: 24px;
  }
  .block-wrap .block-text ul li {
    font-size: 14px;
  }
  .cta-wrap .cta-btn a {
    padding: 11px 15px 12px;
  }
  .cta-wrap .cta-btn a:first-child {
    margin-inline-end: 10px;
  }
  .counter-card-wrap {
    padding: 20px 0 5px;
  }
  .counter-card-wrap .counter-card {
    width: 50%;
    padding: 0 5px 15px;
  }
  .counter-card-wrap .counter-card:before {
    top: -20px;
  }
  .counter-card-wrap .counter-card:nth-child(1):after {
    top: 0;
  }
  .counter-card-wrap .counter-card:nth-child(2):after, .counter-card-wrap .counter-card:nth-child(2):before {
    display: none;
  }
  .counter-card-wrap .counter-card:nth-child(3):before {
    bottom: -5px;
    top: auto;
    background: linear-gradient(360deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.01) 75%);
  }
  .counter-card-wrap .counter-card:nth-child(3):after {
    bottom: 20px;
    top: auto;
    inset-inline-end: -4px;
  }
  .counter-card-wrap .counter-card .counter-text .counter-num {
    font-size: 24px;
  }
  .counter-card-wrap .counter-card .counter-text p {
    font-size: 13px;
  }
  .testimonial-card-thumb {
    border-color: #00A9A4;
    margin: 25px auto 10px;
    padding: 20px;
  }
  .testimonial-card.style1 {
    padding: 20px;
  }
  .testimonial-card.style1 .client-quote {
    margin-bottom: 15px;
  }
  .testimonial-card.style3 {
    margin-bottom: 0;
  }
  .testimonial-card.style3 .client-quote {
    max-width: 100%;
  }
  .testimonial-slider-three.owl-carousel .owl-nav {
    margin-top: 20px;
  }
  .testimonial-slider-three.owl-carousel .owl-nav button.owl-prev, .testimonial-slider-three.owl-carousel .owl-nav button.owl-next {
    position: relative;
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .testimonial-slider-three.owl-carousel .owl-nav button.owl-prev i, .testimonial-slider-three.owl-carousel .owl-nav button.owl-next i {
    font-size: 11px;
    top: 0;
  }
  .testimonial-slider-three.owl-carousel .owl-nav button.owl-prev {
    inset-inline-start: calc(50% - 25px);
  }
  .testimonial-slider-three.owl-carousel .owl-nav button.owl-next {
    inset-inline-start: calc(50% + 0px);
    inset-inline-end: auto;
  }
  .blog-card.style1 .blog-info {
    padding: 18px 20px 18px;
  }
  .account-form {
    padding: 20px;
  }
  .account-form .form-group {
    margin-bottom: 20px;
  }
  .account-form .form-group label {
    font-size: 14px;
  }
  .account-form .form-group input, .account-form .form-group textarea, .account-form .form-group select {
    height: 50px;
    font-size: 14px;
  }
  .accordion-item .accordion-header .accordion-button {
    padding-block: 15;
    padding-inline: 15px 55px;
  }
  .accordion-item .accordion-header .accordion-button span {
    min-width: 50px;
  }
  article h2, .service-desc h2, .terms-wrap h2, .project-desc h2,
  article h3, .service-desc h3, .terms-wrap h3, .project-desc h3 {
    margin-bottom: 10px;
  }
  article p, .service-desc p, .terms-wrap p, .project-desc p {
    margin-bottom: 15px;
  }
  article ol, .service-desc ol, .terms-wrap ol, .project-desc ol {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  article h1,
  .service-desc h1,
  .project-desc h1 {
    font-size: 24px;
  }
  article h2,
  .service-desc h2,
  .project-desc h2 {
    font-size: 22px;
  }
  article h3,
  .service-desc h3,
  .project-desc h3 {
    font-size: 20px;
  }
  article h4,
  .service-desc h4,
  .project-desc h4 {
    font-size: 18px;
  }
  article h5,
  .service-desc h5,
  .project-desc h5 {
    font-size: 17px;
  }
  article h6,
  .service-desc h6,
  .project-desc h6 {
    font-size: 16px;
  }
  article ol li,
  .service-desc ol li,
  .project-desc ol li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  article ol li:last-child,
  .service-desc ol li:last-child,
  .project-desc ol li:last-child {
    margin-bottom: 0;
  }
  article ul li,
  .service-desc ul li,
  .project-desc ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  article ul li:last-child,
  .service-desc ul li:last-child,
  .project-desc ul li:last-child {
    margin-bottom: 0;
  }
  .post-author .post-author-info h4 {
    font-size: 20px;
  }
  .post-metainfo {
    margin-bottom: 18px;
  }
  .post-metainfo li {
    padding-inline-start: 25px;
    margin-inline-end: 25px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .post-metainfo li i {
    font-size: 14px;
  }
  .post-img {
    margin: 0 0 24px;
    border-radius: 4px;
  }
  .author-info-wrap .author-info h6 {
    font-size: 15px;
  }
  .reply-btn {
    font-size: 14px;
  }
  .post-tag {
    margin-bottom: 15px;
  }
  .post-tag ul li a {
    font-size: 13px;
  }
  .post-author {
    padding: 20px;
  }
  .post-author .post-author-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
  }
  .post-author .post-author-info {
    width: 100%;
    margin-inline-start: 0;
    margin-top: 20px;
  }
  .comment-item-wrap .comment-item {
    margin-bottom: 15px;
  }
  .comment-item-wrap .comment-item.reply {
    margin-inline-start: 25px;
  }
  .comment-item-wrap .comment-item .comment-author-img {
    width: 55px;
    height: 55px;
  }
  .comment-item-wrap .comment-item .comment-author-wrap {
    width: 100%;
    margin-inline-start: 0;
    margin-top: 20px;
  }
  .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name h5 {
    font-size: 18px;
    display: block;
  }
  .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date {
    display: block;
    margin-inline-start: 0;
    margin-top: 12px;
    font-size: 14px;
  }
  .comment-item-wrap .comment-item .comment-author-wrap .comment-text {
    margin-bottom: 8px;
  }
  .comment-item-wrap .reply-btn {
    margin-top: 10px;
  }
  .comment-form-wrap .comment-form .form-group {
    margin-bottom: 15px;
  }
  .comment-form-wrap .comment-form .form-group label {
    font-size: 14px;
  }
  .comment-form-wrap .comment-form .form-group input {
    height: 54px;
  }
  .sidebar .sidebar-widget {
    padding: 20px;
  }
  .sidebar .sidebar-widget h4 {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .category-box ul li:first-child a i {
    top: 6px;
  }
  .category-box ul li a {
    font-size: 14px;
    padding-inline-end: 0;
  }
  .category-box ul li a i {
    top: 14px;
  }
  .category-box ul li a span {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .pp-post-item .pp-post-info h6 {
    font-size: 15px;
  }
  .tag-list ul li {
    margin-block: 9px 0;
    margin-inline: 0 6px;
  }
  /*
   .sign-up-form-wrap {
       padding: 30px 20px 20px;
      .sign-in-header {
          h3 {
              font-size: 20px;
          }
      }
      .sign-up-body{
          .form-group{
              margin-bottom: 10px;
              label{
                  font-size: 14px;
                  margin-bottom: 5px;
              }
               input {
               height: 50px;
               }
          }
          .checkbox{
              label{
                  font-size: 13px;
              }
          }
          .btn{
              padding: 12px;
          }
          .link{
              font-size: 13px;
          }
      }
   }
  */
  .error-content img {
    max-width: 280px;
  }
  .error-content p {
    margin: 0 auto 20px;
    max-width: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .container-fluid {
    max-width: 720px;
    padding-inline-start: 15px;
    padding-inline-end: 15px;
  }
  .pt-100 {
    padding-top: 70px;
  }
  .pb-100 {
    padding-bottom: 70px;
  }
  .mt-100 {
    margin-top: 70px !important;
  }
  .mb-100 {
    margin-bottom: 70px !important;
  }
  .mtb-100 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .pb-50 {
    padding-bottom: 20px;
  }
  .pb-60 {
    padding-bottom: 35px;
  }
  .mt-100 {
    margin-top: 70px !important;
  }
  .smb-25 {
    margin-bottom: 24px;
  }
  .smb-70 {
    margin-bottom: 70px !important;
  }
  .ptb-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .pt-70 {
    padding-top: 40px;
  }
  .pb-70 {
    padding-bottom: 40px;
  }
  .pb-75 {
    padding-bottom: 45px;
  }
  .pb-50 {
    padding-bottom: 20px;
  }
  .pt-75 {
    padding-top: 45px;
  }
  .breadcrumb-title h2,
  .section-title h2,
  .content-title h2 {
    font-size: 32px;
  }
  .breadcrumb-wrap .br-shape-three {
    top: 30px;
    inset-inline-start: 30%;
  }
  .breadcrumb-wrap .br-shape-four {
    top: 20px;
    inset-inline-start: 30px;
  }
  .hero-wrap {
    margin-top: 150px;
  }
  .hero-wrap .hero-content p {
    max-width: 100%;
  }
  .hero-wrap.style1 .hero-slide-item {
    padding: 60px 0 0;
  }
  .hero-wrap.style1 .hero-content {
    padding-bottom: 35px;
  }
  .hero-wrap.style1 .hero-content h1 {
    font-size: 38px;
  }
  .hero-wrap.style2 .hero-content h1 {
    font-size: 28px;
  }
  .hero-wrap.style3 .hero-content h1 {
    font-size: 28px;
  }
  .hero-wrap.style3 .hero-content p {
    max-width: 90%;
  }
  .hero-wrap.style3 .hero-img-wrap::after {
    inset-inline-end: -5px;
  }
  .counter-card-wrap .counter-card {
    padding: 25px 5px 30px;
  }
  .counter-card-wrap .counter-card .counter-text .counter-num {
    font-size: 32px;
  }
  .counter-card-wrap .counter-card .counter-text p {
    font-size: 14px;
  }
  .testimonial-card.style3 .client-quote {
    max-width: 85%;
  }
}
@media only screen and (max-width: 991.98px) {
  .page-wrapper {
    overflow-x: hidden !important;
  }
  .md-none {
    display: none !important;
  }
  .mt-60 {
    margin-top: 30px !important;
  }
  .md-center {
    text-align: center !important;
  }
  .block-wrap .block-img {
    margin-bottom: 32px;
  }
  .faq-wrap .faq-img-wrap {
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .breadcrumb-title h2,
  .section-title h2,
  .content-title h2 {
    font-size: 36px;
  }
  .breadcrumb-wrap {
    padding: 50px 0;
  }
  .hero-wrap {
    margin-top: 110px;
  }
  .hero-wrap .hero-content p {
    max-width: 85%;
  }
  .hero-wrap.style1 .hero-slide-item {
    padding: 60px 0 0;
  }
  .hero-wrap.style1 .container-fluid {
    padding-inline-start: calc((100% - 960px) / 2 + 10px);
    padding-inline-end: 50px;
  }
  .hero-wrap.style1 .hero-content {
    padding-bottom: 55px;
  }
  .hero-wrap.style1 .hero-content h1 {
    font-size: 38px;
  }
  .hero-wrap.style2 .hero-content h1 {
    font-size: 38px;
  }
  .hero-wrap.style3 .hero-content h1 {
    font-size: 38px;
  }
  .counter-card-wrap .counter-card {
    padding: 25px 30px 30px;
  }
  .counter-card-wrap .counter-card .counter-text .counter-num {
    font-size: 40px;
  }
  .counter-card-wrap .counter-card .counter-text p {
    font-size: 18px;
  }
  .testimonial-card.style3 .client-quote {
    max-width: 70%;
  }
  .app-btn a img {
    max-width: 150px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .lg-none {
    display: none !important;
  }
  .sidebar {
    margin: 50px 0 0;
  }
  .testimonial-slider-one.owl-carousel .owl-nav {
    margin-top: 5px;
    margin-bottom: 24px;
  }
  .testimonial-slider-one.owl-carousel .owl-nav button.owl-prev, .testimonial-slider-one.owl-carousel .owl-nav button.owl-next {
    position: relative;
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .testimonial-slider-one.owl-carousel .owl-nav button.owl-prev i, .testimonial-slider-one.owl-carousel .owl-nav button.owl-next i {
    font-size: 13px;
  }
  .testimonial-slider-one.owl-carousel .owl-nav button.owl-prev {
    inset-inline-start: calc(50% - 35px);
  }
  .testimonial-slider-one.owl-carousel .owl-nav button.owl-next {
    inset-inline-start: calc(50% + 0px);
    inset-inline-end: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .xl-none {
    display: none !important;
  }
  .mmt-45 {
    margin-top: -45px;
  }
  .hero-wrap .hero-content h1 {
    line-height: 1.4;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1280px) {
  .section-img.style2 {
    inset-inline-end: 10px;
    max-width: 60px;
  }
  .breadcrumb-wrap .section-img {
    max-width: 140px;
  }
  .hero-wrap.style1 .hero-content h1 {
    font-size: 49px !important;
  }
  .testimonial-slider-one.owl-carousel .owl-nav button.owl-prev, .testimonial-slider-one.owl-carousel .owl-nav button.owl-next {
    width: 35px;
    height: 35px;
  }
  .testimonial-slider-one.owl-carousel .owl-nav button.owl-prev i, .testimonial-slider-one.owl-carousel .owl-nav button.owl-next i {
    font-size: 14px;
  }
  .testimonial-slider-one.owl-carousel .owl-nav button.owl-prev {
    inset-inline-start: -40px;
  }
  .testimonial-slider-one.owl-carousel .owl-nav button.owl-next {
    inset-inline-end: -40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .breadcrumb-title h2,
  .section-title h2,
  .content-title h2 {
    font-size: 40px;
  }
  .block-wrap .block-text.big-padding p {
    padding-inline-end: 32px;
  }
  .hero-wrap.style1 .container-fluid {
    padding-inline-start: calc((100% - 1140px) / 2 + 15px);
    padding-inline-end: 60px;
  }
  .hero-wrap.style1 .hero-img-wrap {
    position: relative;
    z-index: 1;
    position: relative;
    bottom: -20px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599.98px) {
  .section-title h2,
  .content-title h2,
  .breadcrumb-title h2 {
    font-size: 44px;
  }
  .block-wrap .block-text.big-padding p {
    padding-inline-end: 50px;
  }
  .hero-wrap .hero-content p {
    max-width: 90%;
  }
  .hero-wrap.style1 .container-fluid {
    padding-inline-start: calc((100% - 1320px) / 2 + 15px);
    padding-inline-end: 50px;
  }
  .hero-wrap.style3 .hero-content h1 {
    font-size: 54px;
  }
  .testimonial-card.style3 .client-quote {
    max-width: 65%;
  }
}
@media only screen and (min-width: 1600px) {
  .breadcrumb-title h2,
  .section-title h2,
  .content-title h2 {
    font-size: 46px;
  }
  .breadcrumb-wrap .container {
    max-width: 1520px;
    margin: 0 auto;
  }
  .block-wrap .block-text.big-padding p {
    padding-inline-end: 60px;
  }
  .testimonial-card.style1 .client-info h3,
  .blog-card .blog-info h3 {
    font-size: 24px;
  }
  .blog-card .blog-info a.link {
    font-size: 16px;
  }
  .hero-wrap .container {
    max-width: 1520px;
  }
  .hero-wrap .hero-content h1 {
    line-height: 1.4;
  }
  .hero-wrap .hero-content p {
    max-width: 85%;
  }
  .hero-wrap.style1 .container-fluid {
    padding-inline-start: calc((100% - 1520px) / 2 + 15px);
    padding-inline-end: 100px;
  }
  .hero-wrap.style1 .hero-content h1 {
    font-size: 66px;
  }
  .hero-wrap.style2 .hero-content h1 {
    font-size: 70px;
  }
  .hero-wrap.style3 .hero-content h1 {
    font-size: 64px;
  }
  .hero-wrap.style3 .hero-img-wrap:after {
    inset-inline-end: 40px;
  }
  .testimonial-card.style3 .client-quote {
    max-width: 65%;
  }
}/*# sourceMappingURL=responsive.css.map */