
/*----- Why are you looking here stalker? -----*/

@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&family=Poppins:wght@300;400;500;600;800&display=swap');

:root {
	--primary-font: "Poppins", sans-serif;
	--alt-font: "Alan Sans", sans-serif;
	--bg-main: #6f42c1;
	--bg-footer: #000000;
	--btn-main: #B792FC;
	--btn-hover: #EE82EE;
	--btn-hover-2: #db479d;
	--btn-dark:  #7956BB;
	--color-main: #6e41b1;
	--color-pink: #EE82EE;
    --color-alt-pink: #db89ca;
	--color-purple: #8254f8;
	--color-sky: #6092DB;
	--color-violet: #B792FC;
    --color-grey: #19063D;
    --color-lite-grey: #E6E6ED;
    --color-med-grey: #757086;
}

html, body {width: 100%; height: 100%;}
body {overflow-x: hidden;}

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

::selection {color: #fff; background:#b59bff; -webkit-text-fill-color: #fff;}
::-moz-selection {color:#fff; background:#b59bff; -webkit-text-fill-color: #fff;}

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

.container, .container-fluid {
  position: relative;
  padding: 0 20px;
}

.position-middle {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
}

.position-top, .position-bottom {
  position: absolute;
  left: 0;
  width: 100%;
}

.position-top {
  top: 30px;
}

.position-bottom {
  bottom: 30px;
}

.container .position-top, .container .position-bottom, .container-fluid .position-top, .container-fluid .position-bottom {
  padding: 0 30px;
}

mark {
  background: #E6E6ED;
  color: #19063D;
  padding: 2px 4px;
}

iframe {
  width: 100%;
  border: 0;
}

pre {
  border: 1px solid rgba(18, 21, 24, 0.1);
  border-radius: 0.375em;
  padding: 6px 20px;
  color: #7C7C7C;
}

.bg-black pre,
[class*='bg-dark'] pre,
[class*='bg-gradient-'] pre,
[class*='bg-color-'] pre {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

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

blockquote {
  position: relative;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  padding-left: 44px;
  color: #ffffff;
}

@media (max-width: 767.98px) {
	blockquote {
		font-size: 1.125rem;
	}
}

blockquote.open-quote {
  position: relative;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  padding-left: 44px;
  color: #ffffff;
  border: none;
}

blockquote.open-quote cite {
  color: white;
}

@media (max-width: 767.98px) {
  blockquote.open-quote {
    font-size: 1.125rem;
  }
}

blockquote.open-quote::before {
  position: absolute;
  content: "\275D";
  top: 3px;
  left: 0;
  font-size: 58px;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
}

blockquote.open-quote .blockquote-footer {
  display: block;
  margin-top: 20px;
  font-size: 80%;
  opacity: 0.5;
}

blockquote.open-quote .blockquote-footer::before {
  display: inline-block;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #FFFFFF;
  margin: 0 10px 5px 0;
}


.quote {
  position: relative;
  padding-left: 44px;
  color: white;
  font-size: 1.25rem;
  line-height: 1.4;
}

.quote::before {
  content: "\275D";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 58px;
  transform: translateY(-15px);
}

.quote-author {
  margin-top: 20px;
  font-size: 80%;
  opacity: 0.8;
}

.quote-author::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #FFFFFF;
  opacity: 0.8;
  margin: 0 8px 5px 0;
}

@media (max-width: 767.98px) {
  .quote {
    font-size: 1rem; /* smaller quote text */
  }

  .quote-author {
    font-size: 80%; /* smaller author text */
  }
}

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

.card {border: 1px solid rgba(18, 21, 24, 0.1);}

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

/* Modal Wrapper */
.c-modal {
  z-index: 994;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  width: 100%;
  height: 100%;
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.c-modal.show {
  visibility: visible;
  opacity: 1;
}

/* Modal box style */
.c-modal-box {
  overflow-y: auto;
  position: relative;
  background: white;
	border-radius: 0.4rem;
  max-width: 500px;
  max-height: 90%;
}
@media (max-width: 580px) {
  .c-modal-box {
    max-width: 90%;
  }
}

/* Modal close button */
.c-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.6);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  -webkit-transition: ease-out 0.24s;
  transition: ease-out 0.24s;
}
.c-modal-close:hover {
  background: rgba(255,255,255,0.8);
}
.c-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 2px;
}
.c-modal-close span:before, 
.c-modal-close span:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  width: 16px;
  height: 2px;
}
.c-modal-close span:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-modal-close span:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

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

.popover {
  border: 0;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
}

.popover .arrow:before {
  border: 0;
}

.popover .popover-header {
  background: transparent;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 32px;
}

.popover .popover-body {
  padding: 20px;
}

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

.bg-image {
  position: relative;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
	background-color: #544C5A;
}

.bg-image.top {
  background-position: top center;
}

.bg-image.bg-fixed {
  background-attachment: fixed;
}

.bg-image .d-flex {
  flex-wrap: nowrap;
}

.bg-image .icon-circle {
  display: inline-block;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  color: white;
  background: #B792FC;
  text-align: center;
  margin-right: 10px;
}

@media (max-width: 991.98px) { }

@media (max-width: 767.98px) {
  .bg-image.bg-fixed {
    background-attachment: scroll;
  }
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
}

/* Input & textarea styling */
input.form-control,
textarea.form-control {
  background: transparent;
  width: 100%;
  border: 1px solid rgba(18, 21, 24, 0.24);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 15px 20px;
  font: 400 15px "Poppins", sans-serif;
  line-height: 1.4;
  color: #3F3B3B;
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

/* Focus state */
input.form-control:focus,
textarea.form-control:focus {
  border-color: rgba(176,119,213,0.26);
  box-shadow: 0 0 12px 0px rgba(176,119,213,0.4);
  outline: none;
}

/* Placeholder */
input.form-control::placeholder,
textarea.form-control::placeholder {
  color: #C8C4CF;
  opacity: 1;
}

/* Textarea specific */
textarea.form-control {
  height: 140px;
  resize: vertical;
}

/* Sidebar styling */
.contact-sidebar {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
}

/* Submit messages */
.submit-result span {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.submit-result .show-result {
  display: block;
  opacity: 1;
  margin-top: 20px;
}

.submit-result span#success {
  color: #237096;
  font-weight: 500;
  font-size: 1.1rem;
}

.submit-result span#error {
  color: #C62E75;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Submit button loading state */
button.loading {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  /* Stack sidebar below form on mobile */
  .contact-sidebar {
    margin-top: 2rem;
  }
  .contact-form form {
    max-width: 100%;  /* full width on mobile */
  }
}

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

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

img[class*='img-mask-avatar'] {
  border-radius: 50%;
}

img.img-mask-avatar-xs {
  min-width: 60px;
  width: 60px;
  height: 60px;
}

img.img-mask-avatar-sm {
  min-width: 80px;
  width: 80px;
  height: 80px;
}

img.img-mask-avatar-md {
  min-width: 100px;
  width: 100px;
  height: 100px;
}

img.img-mask-avatar-lg {
  min-width: 120px;
  width: 120px;
  height: 120px;
}

img.img-mask-avatar-xl {
  min-width: 140px;
  width: 140px;
  height: 140px;
}

img.img-mask-avatar-2xl {
  min-width: 160px;
  width: 160px;
  height: 160px;
}

img.img-mask-avatar-3xl {
  min-width: 180px;
  width: 180px;
  height: 180px;
}

.img-link-box {
  overflow: hidden;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.img-link-box a {
  display: block;
}

.img-link-box img {
  -webkit-transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-link-box:hover img, .img-link-box:focus img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

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

.aspect-ratio-2x1 {
  width: 100%;
  aspect-ratio: 1/0.5;
  object-fit: cover;
}

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

ul {margin: 0 0 -7px;}
ul li {margin: 0 0 7px;}
ul li ul, ul li ol {margin-top: 7px;}

ul[class*='list-'] {padding: 0;}

ul.list-unstyled li, ul.list-dash li {list-style-type: none;}

ul.list-dash li:before {content: '-'; padding-right: 7px;}
ul.list-dash li ul, ul.list-dash li ol {padding-left: 40px;}

ul[class*='list-inline'] li {display: inline-block;}

ul.list-inline {margin-right: -7px; margin-left: -7px;}
ul.list-inline li {padding: 0 7px;}

ul.list-inline-sm {margin-right: -3px; margin-left: -3px;}
ul.list-inline-sm li {padding: 0 3px;}

ul.list-inline-lg {margin-right: -14px; margin-left: -14px;}
ul.list-inline-lg li {padding: 0 14px;}

ul.list-inline-dot li:after {content: '•'; color: inherit;}
ul.list-inline-slash li:after {content: '/';}
ul.list-inline-dash li:after {content: '-';}

ul.list-inline-dot li:after, 
ul.list-inline-dash li:after, 
ul.list-inline-slash li:after {
	padding: 0 2px 0 4px;
}

ul.list-inline-dot li:last-child:after, 
ul.list-inline-dash li:last-child:after, 
ul.list-inline-slash li:last-child:after {
	content: '';
	padding: 0;
}

ul li span {
	font-weight: 600;
	margin-right: 8px;
}

ol {margin: 0 0 -7px;}
ol li {margin: 0 0 7px;}
ol li ul, ol li ol {margin-top: 7px;}

ol.list-ordered {list-style: none; counter-reset: custom-counter; padding-left: 0;}
ol.list-ordered li {position: relative; padding-left: 42px; counter-increment: custom-counter;}
ol.list-ordered li::before {content: counter(custom-counter);}
ol.list-ordered li ol {list-style: none; padding-left: 0;}

ol.list-ordered.style-2 li::before,
ol.list-ordered.style-3 li::before,
ol.list-ordered.style-4 li::before,
ol.list-ordered.style-5 li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
}

ol.list-ordered.style-2 li::before {background: #6e41b1; color: white;}
ol.list-ordered.style-3 li::before {background: rgba(18, 21, 24, 0.9); color: white;}
ol.list-ordered.style-4 li::before {border: 1px solid rgba(18, 21, 24, 0.2); color: rgba(18, 21, 24, 0.5);}
ol.list-ordered.style-5 li::before {border: 1px solid rgba(18, 21, 24, 0.9); color: black;}

@media (max-width: 991.98px) {
  ol {margin: 0 0 -5px;}
  ol li {margin: 0 0 5px;}
  ul {margin: 0 0 -5px;}
  ul li {margin: 0 0 5px;}
  ul li ul, ul li ol {margin-top: 5px;}
  ul.list-dash li:before {content: '-'; padding-right: 6px;}
  ul.list-dash li a:hover {padding-left: 2px;}
  ul.list-dash li ul, ul.list-dash li ol {padding-left: 30px;}
  ul.list-inline-lg {margin-right: -12px; margin-left: -12px;}
  ul.list-inline-lg li {padding: 0 12px;}
  ul.list-inline {margin-right: -6px; margin-left: -6px;}
  ul.list-inline li {padding: 0 6px;}
  ul.list-inline-sm {margin-right: -2px; margin-left: -2px;}
  ul.list-inline-sm li {padding: 0 2px;}
}

ul.pawprint {
        list-style: none;
        margin-left: 0;
        padding-left: 0;
    }

    ul.pawprint li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }

    ul.pawprint li::before {
        content: "\f1b0";
        font-family: "Font Awesome 7 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #5c4d90;
        transform: rotate(30deg);
        display: inline-block;
    }

    ul.pawprint li span {
		font-weight: 600;
        margin-right: 8px;
    }

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

body {
	font-family: var(--primary-font);
	font-weight: normal;
	font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
	color: #19063D;
	letter-spacing: 0;
}

p {
	margin: 0;
	margin-bottom: 1rem;
	line-height: 1.5;
}

strong, .strong {font-weight: 600;}

span.strong {
  font-weight: 500;
  margin-right: 15px;
  display: inline-block;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--alt-font);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -0.6px;
	color: #19063d;
}

.hero-title {
  font-family: var(--alt-font);
  font-size: 64px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin: 0;	
}

/*
.hero-logo img {
	width: auto;
	height: 200px;
	max-height: 200px;
	margin-bottom: 0;
}
*/
.hero-logo img {
	max-width: 293px; /* desktop size */
	width: 100%; /* stays responsive */
	height: auto;
}
@media (max-width: 575.98px) {
	.hero-logo img {
		max-width: 200px;
	}
}

.hero-caption {
  font-family: var(--primary-font);
  font-size: 21px;
  font-weight: 300;
  color: white;
	letter-spacing: 2px;
  margin-bottom: 0;
}

.heading {
  font-family: var(--alt-font);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.subheading {
  font-family: var(--alt-font);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.lead {
	font-size: 21px;
	text-wrap: pretty;
	line-height: 1.6;
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-caption {
    font-size: 16px;
  }
  .heading {
	font-size: 26px;
  }
  .subheading {
    font-size: 21px;
	}
  .lead {
    font-size: 18px;
  }
}

/* Base icon wrapper */
.paw-icon,
.dog-icon,
.comment-icon,
.bone-icon,
.food-icon,
.heart-icon,
.donate-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

/* Shared pseudo-element */
.paw-icon::before,
.dog-icon::before,
.comment-icon::before,
.bone-icon::before,
.food-icon::before,
.heart-icon::before,
.donate-icon::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 50%;
  color: white;
  background-color: #EE82EE;
}

/* Icon-specific glyphs and tweaks */
.paw-icon::before {
  content: "\f1b0";
  transform: rotate(30deg);
}

.dog-icon::before {
  content: "\f6d3";
}

.comment-icon::before {
  content: "\f4ad";
}

.donate-icon::before {
  content: "\f4c0";
}

.bone-icon::before {
  content: "\f5d7";
  transform: rotate(-30deg);
}

.food-icon::before {
  content: "\e2eb";
}

.heart-icon::before {
  content: "\f004";
}

.icon-sm::before {
  width: 32px !important;
  height: 32px !important;
  font-size: 16px !important;
}

@media (max-width: 767.98px) {
  .paw-icon::before,
  .dog-icon::before,
  .comment-icon::before,
  .bone-icon::before,
  .food-icon::before,
  .heart-icon::before,
  .donate-icon::before {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

.max-w-600 {max-width: 600px; margin-left: auto; margin-right: auto;}
.max-w-720 {max-width: 720px; margin-left: auto; margin-right: auto;}
.max-w-960 {max-width: 960px; margin-left: auto; margin-right: auto;}

.uppercase {letter-spacing: 1px; text-transform: uppercase;}

.font-small {font-size: 0.8rem;}
.font-large {font-size: 1.5rem;}

.fw-100 {font-weight: 100;}
.fw-200 {font-weight: 200;}
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-800 {font-weight: 800;}

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

i {display: inline-block;}
.icon-5xl i {font-size: 2.8em;}
.icon-4xl i {font-size: 2.4em;}
.icon-3xl i {font-size: 2.13em;}
.icon-2xl i {font-size: 1.86em;}
.icon-xl i {font-size: 1.6em;}
.icon-lg i {font-size: 1.33em; vertical-align: middle;}
.icon-sm i {font-size: 0.9em;}

.icon-flip {
    -webkit-transform: scale(-1);
    transform: scale(-1);
}
	
.icon-flipY {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}

.icon-flipX {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

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

.notice {
  color: #4C4556;
  background-color: #EAE6F0;
  border: 2px solid #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 8px 32px 0 rgba(137,120,151,0.20);
  box-shadow: 0 8px 32px 0 rgba(137,120,151,0.20);
}

.backdrop-violet {
  overflow: hidden;
  border-radius: 0.5em;
  box-shadow: 12px 12px 0 0 #C8A9EB;
  border: 1px solid white;
}

.backdrop-blue {
  overflow: hidden;
  border-radius: 0.5em;
  box-shadow: 12px 12px 0 0 #B1C9ED;
  border: 1px solid white;
}

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

.img-overlap {
  position: relative;
  z-index: 1;
}

.img-overlap .img-1 {
  position: relative;
  z-index: 2;
  transform: rotate(-4deg);
  max-width: 55%;
  top: -15px;
}

@media (min-width: 992px) {
  .img-overlap .img-1 {
    top: 80px;
  }
}

.img-overlap .img-2 {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(3deg);
  max-width: 55%;
  z-index: 1;
}

.img-overlap .img-3 {
  position: relative;
  z-index: 2;
  transform: rotate(-3deg);
  max-width: 55%;
  top: -15px;
}

@media (min-width: 992px) {
  .img-overlap .img-3 {
    top: 60px;
  }
}

.img-overlap .img-4 {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(5deg);
  max-width: 55%;
  z-index: 1;
}

.img-overlap .img-5 {
  position: relative;
  z-index: 2;
  transform: rotate(3deg);
  max-width: 55%;
  top: -15px;
}

@media (min-width: 992px) {
  .img-overlap .img-5 {
    top: 80px;
  }
}

.img-overlap .img-6 {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-6deg);
  max-width: 55%;
  z-index: 1;
}

.img-overlap img {
  border-radius: 18px;
  border: 8px solid #fff;
  box-shadow: 0 8px 34px rgba(22, 24, 26, 0.1);
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-overlap img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

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

.faq-accordion .accordion-item {
    position: relative;
    border: 1px solid #DFD8E7;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #F9F6FC;
    overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    background: transparent;
    color: #484553;
    padding: 20px 70px 20px 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed {
    background-color: #F9F6FC;
}

.faq-accordion .accordion-button::after {
    content: '\2b'; /* plus sign */
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: white; /* closed color */
    background: #6e41b1;
    border-radius: 50%;
    transition: transform 0.4s ease, content 0.4s ease, color 0.4s ease, background 0.4s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\2212'; /* minus sign */
    transform: translateY(-50%) rotate(180deg);
    color: white;
    background: #6e41b1;
}

.faq-accordion .accordion-item .accordion-body {
    padding: 20px 30px 30px;
    background-color: #F9F6FC;
}

.faq-accordion .accordion-item .accordion-body p {
    margin: 0;
}

@media only screen and (max-width: 1024px) {
    .faq-accordion .accordion-item {
        margin-bottom: 20px;
    }
    .faq-accordion .accordion-header .accordion-button {
        padding: 18px 55px 18px 20px;
    }
    .faq-accordion .accordion-button::after {
        right: 20px;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding: 18px 20px;
    }
}

@media only screen and (max-width: 991px) {
    .faq-accordion .accordion-header .accordion-button {
        font-size: 15px;
        padding: 15px 45px 15px 15px;
    }
    .faq-accordion .accordion-button::after {
        right: 15px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .faq-accordion .accordion-header .accordion-button {
        padding: 12px 45px 12px 15px;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding: 12px 15px;
    }
}

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

.box-backdrop {
  overflow: hidden;
  border-radius: 0.5em;
  border: 2px solid #121518;
  -webkit-box-shadow: 4px 4px 0 0 #121518;
  box-shadow: 4px 4px 0 0 #121518;
}

[class*="square-box"],
[class*="circle-box"] {
  display: inline-block;
  text-align: center;
}

[class*="square-box"] *,
[class*="circle-box"] * {
  margin: 0;
  vertical-align: middle;
}

.square-box-xs {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.square-box-xs * {
  line-height: 40px;
}

.square-box-sm {
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.square-box-sm * {
  line-height: 50px;
}

.square-box, .square-box-md {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.square-box *, .square-box-md * {
  line-height: 60px;
}

.square-box-lg {
  width: 70px;
  height: 70px;
  line-height: 70px;
}

.square-box-lg * {
  line-height: 70px;
}

.square-box-xl {
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.square-box-xl * {
  line-height: 80px;
}

[class*="circle-box"] {
  border-radius: 50%;
}

.circle-box-xs {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.circle-box-xs * {
  line-height: 40px;
}

.circle-box-sm {
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.circle-box-sm * {
  line-height: 50px;
}

.circle-box, .circle-box-md {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.circle-box *, .circle-box-md * {
  line-height: 60px;
}

.circle-box-lg {
  width: 70px;
  height: 70px;
  line-height: 70px;
}

.circle-box-lg * {
  line-height: 70px;
}

.circle-box-xl {
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.circle-box-xl * {
  line-height: 80px;
}

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

a {
  color: rgba(18, 21, 24, 0.9);
  text-decoration: none;
  transition: color .3s ease;
}

a:hover {
  color: #121518;
}

a:focus, a:active {
  box-shadow: none;
  outline: 0;
}

a.link-bg, a.link-alt-bg {
  display: inline-block;
  background-color: #EE82EE;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  line-height: 1;
  padding: 0.2rem 0.2rem 0.3rem;
  transform: rotate(-3deg) scale(1);
  transform-origin: center;	
  transition: transform 0.3s ease;
}

a.link-bg:hover, a.link-alt-bg:hover {
  color: white;
  transform: rotate(-3deg) scale(1.1);
}

a.link-alt-bg {
	transform: rotate(0) scale(1);
}


a.link-bg-2 {
  position: relative;
  z-index: 1;
  padding: 0 0.2rem 0.05rem;
  background: #EAE9F0;
  border-radius: 4px;
  color: #000;
  display: inline-block;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}

a.link-bg-2::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #D0CEDD;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  content: "";
  border-radius: 4px;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform;
}

a.link-bg-2:hover {
}

a.link-bg-2:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
  transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}

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

button {
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

.button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: var(--btn-main);
  border: 0;
  border-radius: 50px;
  padding: 12px 24px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.2px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transform-style: preserve-3d;
}

.button:not(.button-reveal):not(.button-contact) i {
  margin-right: 8px;
  font-size: 1.2rem;
  display: inline-block;
  transform: rotate(30deg);
  transition: 0.4s;
}

.button:hover {
  color: #ffffff;
  background-color: var(--btn-hover);;
  transform: translate3d(0px, -3px, 0.01px);
}

.button:hover i {
	color: white;
    transform: rotate(-30deg);
}

.button-blue {background: #0093E9;}
.button-blue {background-color: #499CD6;}
.button-blue:hover {background-color: #50AEF0;}

.button-dark {background-color: var(--btn-dark);}

.button-white {
  background: white;
  border: 0;
  color: #121518;
}

.button-white:hover, .button-white:focus {
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  color: #121518;
}

.button-white-2 {
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: white;
}

.button-white-2:hover, .button-white-2:focus {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.button-circle {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: white;
  background: var(--btn-dark);
  transition: 0.3s ease-out;
}

.button-circle i {
  line-height: 40px;
  color: inherit;
}

.button-circle:hover,
.button-circle:focus {
  transform: translateY(-3px);
  opacity: 0.9;
  background: var(--btn-hover);
  color: white;
}

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

.scrolltotop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  z-index: 992;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
}

.scrolltotop.scrolltotop-show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.scrolltotop .button-circle {
  color: #fff;
  border: 0 !important;
  background: #7956bb;
  opacity: 1;
}

.scrolltotop .button-circle:hover {
  background: #EE82EE;
}

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

.avatar-group {
  display: block;
  padding: 0;
  overflow: visible;
}

.avatar-group li {
  list-style-type: none;
  display: inline-block;
  margin-left: -12px;
  padding: 0;
}

.avatar-group li:first-child {
  margin-left: 0;
}

.avatar-group li img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.4);
  border: 3px solid white;
  transition: transform 0.3s ease-in-out;
  transform: scale(1);
	transform-origin: bottom center;
  position: relative;
}

.avatar-group li img:hover {
  transform: scale(1.5) translateY(-8px);
}

@media (max-width: 767.98px) {
	.avatar-group li img {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 575.98px) {
	.avatar-group li img {
	  width: 50px;
	  height: 50px;
	}
	.avatar-group li img:hover {
	  transform: scale(2) translateY(-8px);
	}
}

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

.feature-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  min-height: 50px;
  padding-left: 74px;
}

@media (max-width: 991.98px) {
  .feature-box {
    padding-left: 66px;
  }
}

.feature-box .feature-box-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.feature-box .feature-box-icon * {
  margin: 0;
  line-height: 50px;
  vertical-align: middle;
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.feature-box .feature-box-icon a {
  display: block;
}

.feature-box .feature-box-icon.middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.feature-box h1, .feature-box h2, .feature-box h3, .feature-box h4, .feature-box h5, .feature-box h6 {
  width: 100%;
}

.feature-box.feature-box-xl {
  min-height: 70px;
  padding-left: 94px;
}

@media (max-width: 991.98px) {
  .feature-box.feature-box-xl {
    padding-left: 86px;
  }
}

.feature-box.feature-box-xl .feature-box-icon {
  width: 70px;
  height: 70px;
}

.feature-box.feature-box-xl .feature-box-icon * {
  line-height: 70px;
}

.feature-box.feature-box-lg {
  min-height: 60px;
  padding-left: 84px;
}

@media (max-width: 991.98px) {
  .feature-box.feature-box-lg {
    padding-left: 80px;
  }
}

.feature-box.feature-box-lg .feature-box-icon {
  width: 60px;
  height: 60px;
}

.feature-box.feature-box-lg .feature-box-icon * {
  line-height: 60px;
}

.feature-box.feature-box-sm {
  min-height: 40px;
  padding-left: 64px;
}

@media (max-width: 991.98px) {
  .feature-box.feature-box-sm {
    padding-left: 56px;
  }
}

.feature-box.feature-box-sm .feature-box-icon {
  width: 40px;
  height: 40px;
}

.feature-box.feature-box-sm .feature-box-icon * {
  line-height: 40px;
}

.feature-box.feature-box-xs {
  min-height: 32px;
  padding-left: 54px;
}

@media (max-width: 991.98px) {
  .feature-box.feature-box-xs {
    padding-left: 48px;
  }
}

.feature-box.feature-box-xs .feature-box-icon {
  width: 32px;
  height: 32px;
}

.feature-box.feature-box-xs .feature-box-icon * {
  line-height: 32px;
}

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

.lightbox-image-box,
.lightbox-media-box {
  position: relative;
  overflow: hidden;
  display: block;
	border-radius: 20px;
}

/*
.lightbox-image-box[class*='border-radius'],
.lightbox-media-box[class*='border-radius'] {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lightbox-image-box:after,
.lightbox-media-box:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background: rgba(18,21,24,0.64);
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.lightbox-image-box img,
.lightbox-media-box img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
*/

.lightbox-image-box i,
.lightbox-media-box i {
	font-size: 28px;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(18, 21, 24, 0.6);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.lightbox-image-box.icon-xl i, .lightbox-image-box.icon-2xl i,
.lightbox-media-box.icon-xl i,
.lightbox-media-box.icon-2xl i {
  width: 70px;
  height: 70px;
  line-height: 70px;
}

.lightbox-image-box.icon-3xl i, .lightbox-image-box.icon-4xl i, .lightbox-image-box.icon-5xl i,
.lightbox-media-box.icon-3xl i,
.lightbox-media-box.icon-4xl i,
.lightbox-media-box.icon-5xl i {
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.lightbox-image-box:hover:after,
.lightbox-media-box:hover:after {
  opacity: 1;
}

/*
.lightbox-image-box:hover img,
.lightbox-media-box:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
*/

.lightbox-image-box:hover i,
.lightbox-media-box:hover i {
  -webkit-transform: translate(-50%, -50%) scale(1.04);
  transform: translate(-50%, -50%) scale(1.04);
}

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

.mfp-bg {
  background: black;
}

.mfp-container,
.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}

.mfp-container {
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
  padding: 0 20px;
}

.mfp-ready .mfp-container {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.mfp-ready.mfp-bg {
  opacity: 0.9;
}

.mfp-removing .mfp-container, .mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-removing .mfp-container {
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
}

button.mfp-close {
  display: block;
  top: -5px;
  opacity: 1;
  width: auto;
  height: auto;
  line-height: auto;
  font-size: 42px;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}

button.mfp-close:hover {
  top: -5px;
  opacity: 1;
  color: #fff;
}

.mfp-iframe-holder .mfp-close {top: -45px;}
.mfp-iframe-holder .mfp-close:hover {top: -45px;}
.mfp-close-btn-in .mfp-close {color: rgba(255, 255, 255, 0.7);}
.mfp-arrow {-webkit-transition: linear 0.1s; transition: linear 0.1s;}
.mfp-arrow-left:before {border-right: 0;}
.mfp-arrow-right:before {border-left: 0;}

@media (max-width: 575.98px) {
  button.mfp-arrow {
    background: rgba(18, 21, 24, 0.5);
    width: 70px;
    height: 70px;
    margin-top: -35px;
  }
  button.mfp-arrow:active {
    margin-top: -35px;
  }
  button.mfp-arrow-left {
    margin-left: 20px;
  }
  button.mfp-arrow-left:before, button.mfp-arrow-left:after {
    margin-top: 15px;
    margin-left: 20px;
  }
  button.mfp-arrow-right {
    margin-right: 20px;
  }
  button.mfp-arrow-right:before, button.mfp-arrow-right:after {
    margin-top: 15px;
    margin-left: 30px;
  }
}

.mfp-bottom-bar {margin-top: -30px;}
.mfp-bottom-bar .mfp-title {color: rgba(255, 255, 255, 0.7);}
.mfp-bottom-bar .mfp-counter {color: rgba(255, 255, 255, 0.6); font-size: 16px;}

.mfp-iframe-scaler iframe, .mfp-figure::after {
  -webkit-box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.3);
}




/* ======= Kenburns SlideShow style ======= */

#slideshowContainer {
    background-color: #151414;
}

.slideshow {
    z-index: 1;
    overflow: hidden;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.slideshow::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background: white;
}
.slideshow .caption h6 {
    font-family: var(--primary-font);
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
    font-size: 18px;
    display: flex;
    display: inline-flex;
    align-items: center;
}
.slideshow .caption h6 .icon {
    background-color: #EE82EE;
    margin-right: 10px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-align: center;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    display: flex;
	margin-bottom: 20px;
}
/*
.slideshow .caption h1 {
    position: relative;
    font-family: var(--alt-font);
    font-weight: 400;
    font-size: 48px;
	letter-spacing: -2px;
    color: white;
    line-height: 1.1em;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    margin-bottom: 20px;
}
.slideshow .caption p {
    position: relative;
    font-family: var(--primary-font);
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}
@media screen and (max-width: 991px) {
	.slideshow .caption h6 {
	  font-size: 15px;
	}  
	.slideshow .caption h1 {
        font-size: 38px;
    }
*/

.vegas-timer{height: 4px;}
.vegas-timer-progress {background:#fff;}


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

.photo-pile {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap; /* one row by default */
  gap: -30px; /* overlap horizontally */
  position: relative;
}

.bottom-row {
  display: flex;
  gap: -30px;
}

.stack-img {
  width: 150px;
  height: auto;
  border: 4px solid #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
}

.rotate-1 { transform: rotate(-10deg); z-index: 1; }
.rotate-2 { transform: rotate(6deg); z-index: 2; }
.rotate-3 { transform: rotate(-4deg); z-index: 3; }
.rotate-4 { transform: rotate(8deg); z-index: 4; }
.rotate-5 { transform: rotate(-6deg); z-index: 5; }

@media (max-width: 768px) {
  .photo-pile {
    flex-wrap: wrap; /* allow bottom row to drop */
    gap: -15px;
  }
  .stack-img { width: 90px; }
  .bottom-row {
    width: 100%;
    justify-content: center;
    gap: -15px;
    margin-top: -15px; /* slight vertical overlap */
  }
}




.photo-overlap {
  position: relative;
  width: 100%;
  height: auto;
}

.photo-overlap img {
  width: 70%;
  height: auto;
  position: absolute;
  object-fit: cover;
  transition: transform .25s ease;
}

.photo-overlap .back {
  top: 0;
  left: 0;
  z-index: 1;
}

.photo-overlap .front {
  top: 40px;
  left: 40px;
  z-index: 2;
  border: 5px solid #fff;
}
.photo-overlap:hover .front {
  transform: translateY(-3px);
}
/* Responsive tweak: stack on small screens */
@media (max-width: 576px) {
  .photo-overlap {
    display: flex;
    flex-direction: column;
    gap: .75rem;
  }
  .photo-overlap img {
    position: static;
    width: 100%;
  }
}



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

/* Scoped to the .donate section */
.donate .img-1 {
  transform: rotate(-3deg);
}

.donate .img-2 {
  transform: rotate(2deg);
}

.donate .img-3 {
  transform: rotate(-5deg);
}

.donate .img-4 {
  transform: rotate(4deg);
}

.donate .img-5 {
  transform: rotate(-2deg);
}

/* General styling for all images inside .donate */
.donate img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 5px solid #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: auto;
  display: block;
}

/* Slight hover effect for a touch of life */
.donate .col-4 img:hover {
  transform: scale(1.02) rotate(0deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

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

.splide__slide .help-bg {
  border-radius: 8px;
  overflow: hidden;
  background-color: #8b86a1;
  color: #ffffff;
  padding: 5px;
  text-align: center;
}

.splide__slide .help-bg img {
  border-radius: 6px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.splide__slide .help-bg p {
  padding: 0;
  text-align: center;
  margin: 0;
}

.splide__arrow {
  background-color: rgba(255, 255, 255, 0.7) !important;
  opacity: 1 !important;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.splide__arrow:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 1) !important;
}

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

.team-wrapper .team-box {
  text-align: center;
}

.team-wrapper .team-box .team-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-wrapper .team-box .team-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
  -webkit-transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-wrapper .team-box .team-img div {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(18, 21, 24, 0.4);
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.team-wrapper .team-box .team-img div ul {
  list-style-type: none;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%) scale(0.96);
  transform: translateY(-50%) scale(0.96);
  margin: 0 -7px;
  padding: 0 30px;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.team-wrapper .team-box .team-img div ul li {
  display: inline-block;
  margin: 0 7px;
}

.team-wrapper .team-box .team-img div ul li a:not([class^='button']) {
  color: white;
}

.team-wrapper .team-box .team-img div ul li a:not([class^='button']):hover {
  color: rgba(255, 255, 255, 0.7);
}

.team-wrapper .team-box .team-img:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-filter: blur(1.5px);
  filter: blur(1.5px);
}

.team-wrapper .team-box .team-img:hover div {
  opacity: 1;
}

.team-wrapper .team-box .team-img:hover div ul {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.team-wrapper .team-box span {
  color: #AAAAAA;
}

.team-wrapper.team-box-hover-2 .team-box .team-img div {
  top: auto;
  bottom: 16px;
  right: 16px;
  left: 16px;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  background: white;
  width: auto;
  height: auto;
  padding: 15px 20px;
}

.team-wrapper.team-box-hover-2 .team-box .team-img div ul {
  position: static;
  top: auto;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  padding: 0;
}

.team-wrapper.team-box-hover-2 .team-box .team-img div ul li a:not([class^='button']) {
  color: #7C7C7C;
}

.team-wrapper.team-box-hover-2 .team-box .team-img div ul li a:not([class^='button']):hover, .team-wrapper.team-box-hover-2 .team-box .team-img div ul li a:not([class^='button']):focus {
  color: #121518;
}

.team-wrapper.team-box-hover-2 .team-box .team-img:hover img {
  -webkit-filter: blur(0);
  filter: blur(0);
}

.team-wrapper.team-box-hover-2 .team-box .team-img:hover div {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.team-wrapper.team-box-hover-2 .team-box .team-img:hover div ul {
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

.team-wrapper[class*='border-radius'] .team-box .team-img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}

.team-wrapper.border-radius .team-box .team-img {
  border-radius: 0.4em;
}

.team-wrapper.border-radius-1 .team-box .team-img {
  border-radius: 1.0em;
}

.text-start .team-box {
  text-align: left;
}

.text-end .team-box {
  text-align: right;
}

.testimonial-box {
  max-width: 730px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
}

.testimonial-grid {
  overflow: hidden;
}

@media (min-width: 992px) {
  .testimonial-grid.column-2 .testimonial-grid-box {
    width: 50%;
  }
}

.testimonial-grid.column-1 .testimonial-grid-box {
  width: 100%;
  padding: 30px 0;
}

.testimonial-grid .testimonial-grid-box {
  position: relative;
  float: left;
  width: 33.3%;
  padding: 30px;
}

.testimonial-grid .testimonial-grid-box:before, .testimonial-grid .testimonial-grid-box:after {
  content: '';
  position: absolute;
}

.testimonial-grid .testimonial-grid-box:before {
  top: 0;
  left: -1px;
  height: 100%;
  border-left: 1px dashed rgba(18, 21, 24, 0.1);
}

.testimonial-grid .testimonial-grid-box:after {
  left: 0;
  bottom: -1px;
  width: 100%;
  border-bottom: 1px dashed rgba(18, 21, 24, 0.1);
}

.testimonial-grid .testimonial-grid-box .testimonial-img {
  float: left;
  margin-right: 20px;
}

.testimonial-grid .testimonial-grid-box .testimonial-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.testimonial-grid .testimonial-grid-box .testimonial-content {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .testimonial-grid .testimonial-grid-box {
    width: 50%;
  }
}

@media (max-width: 767.98px) {
  .testimonial-grid .testimonial-grid-box {
    width: 100%;
    padding: 30px 0;
  }
}

.testimonial-grid.border-style-solid {
  border: 0;
}

.testimonial-grid.border-style-solid .testimonial-grid-box:before {
  border-left-style: solid;
}

.testimonial-grid.border-style-solid .testimonial-grid-box:after {
  border-bottom-style: solid;
}

.testimonial-grid.border-style-dotted {
  border: 0;
}

.testimonial-grid.border-style-dotted .testimonial-grid-box:before {
  border-left-style: dotted;
}

.testimonial-grid.border-style-dotted .testimonial-grid-box:after {
  border-bottom-style: dotted;
}

.testimonial-grid.border-0 {
  margin: -15px;
}

.testimonial-grid.border-0 .testimonial-grid-box {
  padding: 15px;
}

.testimonial-grid.border-0 .testimonial-grid-box:before, .testimonial-grid.border-0 .testimonial-grid-box:after {
  border: 0;
}

@media (max-width: 767.98px) {
  .testimonial-grid.border-0 {
    margin: -15px 0;
  }
  .testimonial-grid.border-0 .testimonial-grid-box {
    padding: 15px 0;
  }
}

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

.timeline-wrapper {
  position: relative;
}

.timeline-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  background: #e2e6ea;
  width: 1px;
  height: 100%;
}

.timeline-wrapper .timeline .timeline-date {
  position: relative;
}

.timeline-wrapper .timeline .timeline-date:before {
  content: '';
  position: absolute;
  top: 31px;
  background: #e2e6ea;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.timeline-wrapper .timeline .timeline-date:after {
  content: '';
  position: absolute;
  top: 37px;
  background: #121518;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .timeline-wrapper {
    position: relative;
  }
  .timeline-wrapper:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .timeline-wrapper .timeline {
    position: relative;
  }
  .timeline-wrapper .timeline .timeline-date, .timeline-wrapper .timeline .timeline-content {
    width: 50%;
    padding: 30px;
  }
  .timeline-wrapper .timeline .timeline-date {
    position: absolute;
    top: 0;
    left: 0;
    text-align: right;
  }
  .timeline-wrapper .timeline .timeline-date:before {
    right: -10px;
  }
  .timeline-wrapper .timeline .timeline-date:after {
    right: -4px;
  }
  .timeline-wrapper .timeline .timeline-date h1, .timeline-wrapper .timeline .timeline-date h2, .timeline-wrapper .timeline .timeline-date h3, .timeline-wrapper .timeline .timeline-date h4, .timeline-wrapper .timeline .timeline-date h5, .timeline-wrapper .timeline .timeline-date h6 {
    position: relative;
    text-align: right;
  }
  .timeline-wrapper .timeline .timeline-content {
    margin-left: 50%;
  }
  .timeline-wrapper .timeline:nth-child(even) .timeline-date {
    left: 50%;
    text-align: left;
  }
  .timeline-wrapper .timeline:nth-child(even) .timeline-date:before {
    right: auto;
    left: -10px;
  }
  .timeline-wrapper .timeline:nth-child(even) .timeline-date:after {
    right: auto;
    left: -4px;
  }
  .timeline-wrapper .timeline:nth-child(even) .timeline-date h1, .timeline-wrapper .timeline:nth-child(even) .timeline-date h2, .timeline-wrapper .timeline:nth-child(even) .timeline-date h3, .timeline-wrapper .timeline:nth-child(even) .timeline-date h4, .timeline-wrapper .timeline:nth-child(even) .timeline-date h5, .timeline-wrapper .timeline:nth-child(even) .timeline-date h6 {
    text-align: left;
  }
  .timeline-wrapper .timeline:nth-child(even) .timeline-content {
    margin-left: 0;
    text-align: right;
  }
  .timeline-wrapper.timeline-left:before {
    left: 200px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .timeline-wrapper.timeline-left .timeline .timeline-date {
    width: 200px;
    padding: 30px 30px 0 0;
  }
  .timeline-wrapper.timeline-left .timeline .timeline-content {
    width: auto;
    margin: 0 0 0 200px;
    padding: 30px 0 0 30px;
    text-align: left;
  }
  .timeline-wrapper.timeline-left .timeline:nth-child(even) .timeline-date {
    left: auto;
    text-align: right;
  }
  .timeline-wrapper.timeline-left .timeline:nth-child(even) .timeline-date:before {
    right: -10px;
    left: auto;
  }
  .timeline-wrapper.timeline-left .timeline:nth-child(even) .timeline-date:after {
    right: -4px;
    left: auto;
  }
  .timeline-wrapper.timeline-left .timeline:nth-child(even) .timeline-date h1, .timeline-wrapper.timeline-left .timeline:nth-child(even) .timeline-date h2, .timeline-wrapper.timeline-left .timeline:nth-child(even) .timeline-date h3, .timeline-wrapper.timeline-left .timeline:nth-child(even) .timeline-date h4, .timeline-wrapper.timeline-left .timeline:nth-child(even) .timeline-date h5, .timeline-wrapper.timeline-left .timeline:nth-child(even) .timeline-date h6 {
    text-align: right;
  }
  .timeline-wrapper.timeline-left .timeline:last-child .timeline-date, .timeline-wrapper.timeline-left .timeline:last-child .timeline-content {
    padding-bottom: 30px;
  }
  .timeline-wrapper.timeline-right:before {
    right: 200px;
    left: auto;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .timeline-wrapper.timeline-right .timeline .timeline-date {
    right: 0;
    left: auto;
    width: 200px;
    padding: 30px 0 0 30px;
    text-align: left;
  }
  .timeline-wrapper.timeline-right .timeline .timeline-date:before {
    right: auto;
    left: -10px;
  }
  .timeline-wrapper.timeline-right .timeline .timeline-date:after {
    right: auto;
    left: -4px;
  }
  .timeline-wrapper.timeline-right .timeline .timeline-date h1, .timeline-wrapper.timeline-right .timeline .timeline-date h2, .timeline-wrapper.timeline-right .timeline .timeline-date h3, .timeline-wrapper.timeline-right .timeline .timeline-date h4, .timeline-wrapper.timeline-right .timeline .timeline-date h5, .timeline-wrapper.timeline-right .timeline .timeline-date h6 {
    text-align: left;
  }
  .timeline-wrapper.timeline-right .timeline .timeline-content {
    width: auto;
    margin: 0 200px 0 0;
    padding: 30px 30px 0 0;
    text-align: right;
  }
  .timeline-wrapper.timeline-right .timeline:nth-child(even) .timeline-date {
    left: auto;
    text-align: left;
  }
  .timeline-wrapper.timeline-right .timeline:nth-child(even) .timeline-date:before {
    left: -10px;
  }
  .timeline-wrapper.timeline-right .timeline:nth-child(even) .timeline-date:after {
    left: -4px;
  }
  .timeline-wrapper.timeline-right .timeline:nth-child(even) .timeline-date h1, .timeline-wrapper.timeline-right .timeline:nth-child(even) .timeline-date h2, .timeline-wrapper.timeline-right .timeline:nth-child(even) .timeline-date h3, .timeline-wrapper.timeline-right .timeline:nth-child(even) .timeline-date h4, .timeline-wrapper.timeline-right .timeline:nth-child(even) .timeline-date h5, .timeline-wrapper.timeline-right .timeline:nth-child(even) .timeline-date h6 {
    text-align: left;
  }
  .timeline-wrapper.timeline-right .timeline:last-child .timeline-date, .timeline-wrapper.timeline-right .timeline:last-child .timeline-content {
    padding-bottom: 30px;
  }
}

@media (max-width: 991.98px) {
  .timeline-wrapper {
    padding-left: 30px;
  }
  .timeline-wrapper:before {
    left: 0;
  }
  .timeline-wrapper .timeline {
    margin-bottom: 30px;
  }
  .timeline-wrapper .timeline:first-child {
    padding-top: 30px;
  }
  .timeline-wrapper .timeline:last-child {
    margin-bottom: 0;
    padding-bottom: 30px;
  }
  .timeline-wrapper .timeline .timeline-date:before {
    top: 1px;
    left: -40px;
  }
  .timeline-wrapper .timeline .timeline-date:after {
    top: 7px;
    left: -34px;
  }
}

@media (max-width: 575.98px) {
  .timeline-wrapper {
    padding-left: 20px;
  }
  .timeline-wrapper .timeline .timeline-date:before {
    left: -30px;
  }
  .timeline-wrapper .timeline .timeline-date:after {
    left: -24px;
  }
}

.blog-card-wrapper {
  position: relative;
  background-position: center center;
  background-attachment: scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.blog-card-wrapper * {
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.blog-card-wrapper .blog-card {
  background: white;
  border: 1px solid rgba(18, 21, 24, 0.1);
}

.blog-card-wrapper:hover {
  color: rgba(255, 255, 255, 0.7);
}

.blog-card-wrapper:hover h1, .blog-card-wrapper:hover h2, .blog-card-wrapper:hover h3, .blog-card-wrapper:hover h4, .blog-card-wrapper:hover h5, .blog-card-wrapper:hover h6 {
  color: white;
}

.blog-card-wrapper:hover a:not([class^='button']) {
  color: rgba(255, 255, 255, 0.8);
}

.blog-card-wrapper:hover a:not([class^='button']):hover, .blog-card-wrapper:hover a:not([class^='button']):focus {
  color: white;
}

.blog-card-wrapper:hover .blog-card {
  background: rgba(18, 21, 24, 0.6);
}

.blog-card-wrapper:hover .button-text-1,
.blog-card-wrapper:hover .button-text-2,
.blog-card-wrapper:hover .button-text-3 {
  color: rgba(255, 255, 255, 0.8);
}

.blog-card-wrapper:hover .button-text-1:hover,
.blog-card-wrapper:hover .button-text-2:hover,
.blog-card-wrapper:hover .button-text-3:hover {
  color: white;
}

.blog-card-wrapper:hover .button-text-1:before {
  background: rgba(255, 255, 255, 0.3);
}

.blog-card-wrapper:hover .button-text-1:after {
  background: white;
}

.blog-card-wrapper:hover .button-text-2:before {
  background: rgba(255, 255, 255, 0.4);
}

.blog-card-wrapper:hover .button-text-2:after {
  background: white;
}

.blog-card-wrapper:hover .button-text-3:before {
  background: rgba(255, 255, 255, 0.8);
}

.blog-card-wrapper:hover .button-text-3:hover:before {
  background: white;
}

@media (min-width: 992px) {
  .blog-card-wrapper .blog-card {
    padding: 36px 36px 36px 140px;
  }
  .blog-card-wrapper .blog-card .blog-card-date {
    position: absolute;
    top: 50%;
    left: 36px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .blog-card-wrapper .blog-card {
    padding: 24px;
  }
}

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

.gallery-wrapper .gallery-box .gallery-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-wrapper .gallery-box .gallery-img a {
  display: block;
}

.gallery-wrapper .gallery-box .gallery-img a img {
  width: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
  transform: scale(1);
  filter: brightness(1);
}

.gallery-wrapper .gallery-box .gallery-img a:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
  cursor: pointer;
}

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

.header {
  top: 0;
  z-index: 993;
  overflow: visible;
  background: white;
  width: 100%;
  height: 80px;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

.header.hide {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header .container, .header .container-fluid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
}

.header .header-logo {
  display: inline-block;
}

.header .header-logo .logo-light {
  display: none;
}

.header .header-logo * {
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.header .header-logo img {
  width: auto;
  height: 68px;
  max-height: 68px;
}

@media (max-width: 575.98px) {
	.header .header-logo img {
		height: 54px;
		max-height: 54px;
	}
}

.header .header-toggle {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: auto;
  cursor: pointer;
}

.header .header-toggle span {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #121518;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.header .header-toggle span:before,
.header .header-toggle span:after {
  content: '';
  position: absolute;
  left: 0;
  background: #121518;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.header .header-toggle span:before {
  top: -7px;
}

.header .header-toggle span:after {
  bottom: -7px;
}

.header .header-toggle.toggle-close span {
  background: transparent;
}

.header .header-toggle.toggle-close span:before {
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header .header-toggle.toggle-close span:after {
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header .header-menu {
  display: inline-block;
  font-size: 1rem;
  z-index: 995;
}

.header .header-menu .nav {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header .header-menu .nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header .header-menu .nav .nav-item {
  text-align: left;
}

.header .header-menu .nav .nav-item .nav-link {
  padding: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.2px;
  color: #121518;
}

.header .header-menu .nav .nav-item .nav-link:hover,
.header .header-menu .nav .nav-item .nav-link.active {
  color: #b792fc;
}

.header .header-menu .nav .nav-item .nav-dropdown-toggle {
  position: relative;
  display: inline-block;
}

.header .header-menu .nav .nav-item .nav-dropdown-toggle:after {
  content: '\f107';
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 0.8rem;
}

.header .header-menu .nav .nav-item .nav-dropdown {
  background: white;
}

.header .header-menu .nav .nav-item .nav-dropdown a:not([class^='button']) {
  color: rgba(18,21,24,0.75);
}

.header .header-menu .nav .nav-item .nav-dropdown a:not([class^='button']):hover,
.header .header-menu .nav .nav-item .nav-dropdown a:not([class^='button']):focus {
  color: #121518;
}

.header .header-social a:not([class^='button']) {
  font-size: 1.5rem;
  color: #6e41b1;
  display: inline-block;
  transition: color 0.3s ease-out, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .header-social a:not([class^='button']):hover,
.header .header-social a:not([class^='button']):focus {
  color: #EE82EE;
  transform: translateY(-3px);
}

.header .header-social ul.list-inline {margin-right: -3px; margin-left: -3px;}
.header .header-social ul.list-inline li {padding: 0 3px;}

.header.sticky-autohide {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 0 36px 0 rgba(22, 25, 28, 0.17);
  box-shadow: 0 0 36px 0 rgba(22, 25, 28, 0.17);
}

.header.transparent-dark,
.header.transparent-light {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header.transparent-dark:not(.sticky-autohide):not(.sticky),
.header.transparent-light:not(.sticky-autohide):not(.sticky) {
  position: absolute;
  top: 0;
  left: 0;
}

.header.transparent-light .header-logo .logo-dark {
  display: none;
}

.header.transparent-light .header-logo .logo-light {
  display: inline-block;
}

.header.transparent-light .header-toggle span {
  background: white;
}

.header.transparent-light .header-toggle span:before,
.header.transparent-light .header-toggle span:after {
  background: white;
}

.header.transparent-light .header-toggle.toggle-close span {
  background: transparent;
}

@media (min-width: 992px) {
  .header.transparent-light .header-menu .nav .nav-item .nav-link,
  .header.transparent-light .header-menu .nav .nav-item .nav-dropdown-toggle {
    color: white;
  }
  .header.transparent-light .header-menu .nav .nav-item .nav-link:hover,
  .header.transparent-light .header-menu .nav .nav-item .nav-link:focus,
  .header.transparent-light .header-menu .nav .nav-item .nav-link.active,
  .header.transparent-light .header-menu .nav .nav-item .nav-dropdown-toggle:hover,
  .header.transparent-light .header-menu .nav .nav-item .nav-dropdown-toggle:focus,
  .header.transparent-light .header-menu .nav .nav-item .nav-dropdown-toggle.active {
    color: #EE82EE;
  }
  .header.transparent-light .header-menu .nav .nav-item .nav-link:before {
    background: rgba(255, 255, 255, 0.15);
  }
}

.header.transparent-light .header-social a:not([class^='button']) {
  color: white;
}

.header.transparent-light .header-social a:not([class^='button']):hover,
.header.transparent-light .header-social a:not([class^='button']):focus {
  color: #EE82EE;
}

/* ==== DESKTOP MENU ==== */
@media (min-width: 992px) {
  .header .header-logo, .header .header-social {
    z-index: 996;
  }
  .header .header-menu {
    height: 80px;
  }
  .header:not(.left):not(.center) .header-menu {
    margin-left: auto;
  }
  .header.center .header-logo {
    margin-right: auto;
  }
  .header.center .header-menu .nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    text-align: center;
  }
  .header .header-menu .nav .nav-item {
    position: relative;
    display: inline-block;
    height: 100%;
    margin: 0 0 0 18px;
  }
  .header .header-menu .nav .nav-item:first-child {
    margin-left: 0;
  }
  .header .header-menu .nav .nav-item .nav-link {
    position: relative;
    display: inline-block;
    line-height: 80px;
  }
  .header .header-menu .nav .nav-item .nav-link:before {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    content: '';
    background: #eef2f6;
    height: 0;
    -webkit-transition: all 0.14s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.14s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .header .header-menu .nav .nav-item .nav-link.d-toggle {
    padding-right: 16px;
  }
  /*== Caret inherits color while dropdown is open ===*/
  .header .header-menu .nav .nav-item .nav-dropdown-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -2px;
    color: inherit;
  }
  .header .header-menu .nav .nav-item .nav-dropdown {
    position: absolute;
    top: 84px;
    left: 0;
    z-index: 995;
    visibility: hidden;
    opacity: 0;
    background: white;
    width: 240px;
    border-radius: 0.4em;
    box-shadow: 0 20px 20px 0 rgba(36,34,45,0.24);
    border-radius: 8px;
    padding: 20px 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  /* 4px mouse-bridge for dropdown gap */
  .header .header-menu .nav .nav-item .nav-dropdown:before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
  }
  .header .header-menu .nav .nav-item .nav-dropdown .nav-dropdown-item {
    position: relative;
    display: block;
    margin: 0;
    padding: 0 15px;
  }
  .header .header-menu .nav .nav-item .nav-dropdown .nav-dropdown-item .nav-dropdown-link {
    position: relative;
    display: block;
    border-radius: 0.4em;
    padding: 7px 15px;
    -webkit-transition: linear 0.2s;
    transition: linear 0.2s;
  }
  .header .header-menu .nav .nav-item .nav-dropdown .nav-dropdown-item .nav-dropdown-link:hover {
    background: rgba(183,146,252,0.4);
    padding-left: 20px;
  }
  /* Parent + caret highlighted while dropdown is open */
  .header .header-menu .nav .nav-item:hover > .nav-link,
  .header .header-menu .nav .nav-item:hover > .nav-link ~ .nav-dropdown-toggle,
  .header .header-menu .nav .nav-item .nav-dropdown:hover ~ .nav-link,
  .header .header-menu .nav .nav-item .nav-dropdown:hover ~ .nav-link ~ .nav-dropdown-toggle {
    color: #b792fc !important;
  }
  .header.transparent-light .header-menu .nav .nav-item:hover > .nav-link,
  .header.transparent-light .header-menu .nav .nav-item:hover > .nav-link ~ .nav-dropdown-toggle {
    color: #EE82EE !important;
  }
  .header .header-menu .nav .nav-item:hover .nav-dropdown {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .header .header-social {
    display: inline-block;
    margin-left: 30px;
  }
  .header .header-toggle {
    display: none;
  }
  .header:not(.center):not(.left) .header-menu .nav .nav-item:last-child .nav-dropdown {
    right: 0;
    left: auto;
  }
  .header:not(.center):not(.left) .container-fluid .header-menu .nav .nav-item .nav-dropdown {
    right: 0;
    left: auto;
  }
}

/*==== MOBILE MENU ====*/
@media (max-width: 991.98px) {
  .header { height: 70px; }
  .header .header-menu {
    position: fixed;
    top: 0;
    left: -100%;
    overflow-y: auto;
    background: #6e41b1;
    width: 300px;
    height: 100%;
    padding: 60px 30px 20px;
    -webkit-box-shadow: 0 0 20px 0 rgba(22, 25, 28, 0.4);
    box-shadow: 0 0 20px 0 rgba(22, 25, 28, 0.4);
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .header .header-menu.show { left: 0; }
  .header .header-menu .nav { width: 100%; margin: 0; padding: 0; }
  .header .header-menu .nav .nav-item {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    border-bottom: 1px solid #e2e6ea;
    padding: 12px 0;
  }
  .header .header-menu .nav .nav-item:last-child { border: 0; }
  .header .header-menu .nav .nav-item .nav-link {
    display: inline-block;
    width: auto;
    height: auto;
    color: #7C7C7C;
  }
  .header .header-menu .nav .nav-item .nav-link:hover,
  .header .header-menu .nav .nav-item .nav-link:focus,
  .header .header-menu .nav .nav-item .nav-link.active {
    color: #121518;
  }
  .header .header-menu .nav .nav-item .nav-dropdown-toggle {
    position: absolute;
    top: 13px;
    right: 0;
    width: 21px;
    height: 21px;
    text-align: right;
  }
  .header .header-menu .nav .nav-item .nav-dropdown-toggle.active {
    color: #121518;
  }
  .header .header-menu .nav .nav-item .nav-dropdown {
    display: none;
    background: white;
    padding: 8px 0 0 20px;
  }
  .header .header-menu .nav .nav-item .nav-dropdown.show { display: block; }
  .header .header-menu .nav .nav-item .nav-dropdown .nav-dropdown-item {
    position: relative;
    margin: 0 0 8px;
  }
  .header .header-menu .nav .nav-item .nav-dropdown .nav-dropdown-item:last-child {
    margin: 0;
  }
  .header .header-menu .nav .nav-item .nav-dropdown .nav-dropdown-item .nav-dropdown-link.active {
    color: #121518;
  }
  .header .header-social {
    position: absolute;
    top: 50%;
    right: 80px;
    left: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.header-placeholder { height: 80px; }

@media (max-width: 991.98px) {
  .header-placeholder { height: 70px; }
}

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

.filter ul {
  margin: 0 -5px;
  padding: 12px;
  display: inline-block;
  background-color: rgba(217,212,225,1.00);
  border-radius: 50px;
}

.filter ul li {
  display: inline-block;
  background-color: transparent;
  border-radius: 30px;
  margin: 0 2px;
  padding: 4px 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}

.filter ul li:hover {
  background-color: transparent;
  color: #2A252D;	
}

.filter ul li.active, .filter ul li.mixitup-control-active {
  background-color: white;
  color: #2A252D;	
}

[class*='bg-color'] .filter ul {
  background-color: rgba(171,135,236,1.00);
}

[class*='bg-color'] .filter ul li {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
}

[class*='bg-color'] .filter ul li:hover {
  background-color: rgba(135,88,207,1.00);
  color: white;
}

[class*='bg-color'] .filter ul li.active,
[class*='bg-color'] .filter ul li.mixitup-control-active {
  background-color: white;
  color: #6e41b1;
}

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

/*
[class^="hoverbox"] {
  overflow: hidden;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  display: inline-block;
}

[class^="hoverbox"] img {
  -webkit-transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hoverbox-1 {
	border-radius: 1rem;
	box-shadow: 3px 3px 6px 0 rgba(0,0,0,0.24);
}

.hoverbox-1:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  background: rgba(18, 21, 24, 0.68);
  width: 100%;
  height: 100%;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
}

.hoverbox-1:hover:before, .hoverbox-1:focus:before {
  visibility: visible;
  opacity: 1;
}

.hoverbox-1:hover img, .hoverbox-1:focus img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.hoverbox-1:hover .hover-content, .hoverbox-1:focus .hover-content {
  visibility: visible;
  opacity: 1;
}

.hoverbox-1 .hover-content {
  position: absolute;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
}

.hoverbox-1 .hover-content.center {
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  margin-top: 0;
  padding: 0 12px;
}

.hoverbox-1 .hover-content h1 {
	font-size: 1.313rem;
	font-weight: 400;
	color: white;
	text-align: center;
}
*/

/*-- BG expand from bottom of image upwards --*/
/*---

[class^="hoverbox"] {
  overflow: hidden;
  position: relative;
  transform: translate3d(0, 0, 0);
  display: inline-block;
}

[class^="hoverbox"] img {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hoverbox-1 {
  border-radius: 50%;
}

.hoverbox-1:before {
  content: '';
  position: absolute;
  top: 100%; 
  left: 0;
  z-index: 1;
  background: rgba(18, 21, 24, 0.68);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(138, 43, 226, 0.4));
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(95, 60, 148, 0.4));
	background: rgba(95, 60, 148, 0.6);
  width: 100%;
  height: 100%;
  transition: top 0.3s ease-out;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hoverbox-1:hover:before, .hoverbox-1:focus:before {
  top: 0; 
}

.hoverbox-1:hover img, .hoverbox-1:focus img {
  transform: scale(1.04);
}

.hoverbox-1:hover .hover-content, .hoverbox-1:focus .hover-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%); 
  transition-delay: 0.2s; 
}

.hoverbox-1 .hover-content {
  position: absolute;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  color: rgba(255, 255, 255, 0.7);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition-delay: 0.1s; 
  top: 100%; 
  width: 100%;
  transform: translateY(0);
}

.hoverbox-1 .hover-content.center {
  top: 50%; 
  right: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  padding: 0 12px;
  text-align: center;
}

.hoverbox-1 .hover-content .hover-heading {
  font-family: var(--alt-font);
  font-size: 1.625rem; 
  font-weight: 600;
  color: white;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.hoverbox-1 .hover-content .hover-heading span {
  display: block;
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 4px;
}

---*/


/*--------- BG EXPAND FROM CENTER 90% ----------*/

/*--
[class^="hoverbox"] {
  overflow: hidden;
  position: relative;
  transform: translate3d(0, 0, 0);
  display: inline-block;
}

.hoverbox-1 {
  border-radius: 20px;
}

.hoverbox-1:before {
  content: '';
  position: absolute;
  top: 4%; 
  left: 4%; 
  z-index: 1;
  background: rgba(0,0,0,0.4);
  width: 92%; 
  height: 92%; 
  transform: scaleX(0); 
  transform-origin: center; 
  transition: transform 0.3s ease-out;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hoverbox-1:hover:before {
  transform: scaleX(1); 
}

.hoverbox-1:hover .hover-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%); 
  transition-delay: 0.1s;
}

.hoverbox-1 .hover-content {
  position: absolute;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition-delay: 0.1s; 
  top: 100%; 
  width: 100%;
  transform: translateY(0);
}

.hoverbox-1 .hover-content.center {
  top: 50%; 
  right: 0;
  left: 0;
  margin-top: 0;
  padding: 0 12px;
  text-align: center;
}

.hoverbox-1 .hover-content .hover-heading {
  font-size: 1.5rem; 
  font-weight: 600;
  color: white;
  letter-spacing: -1px;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.hoverbox-1 .hover-content .hover-heading span {
  display: block;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 4px;
}

--*/

/*---------- BG EXPAND OUT CIRCLE ----------*/

.hoverbox-1 {
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 100%;
}

.hoverbox-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ab87ec;
}

.hoverbox-1:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  background: rgba(0,0,0,0.4);
  width: 92%;
  height: 92%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-out;
  border-radius: 50%;
  backdrop-filter: blur(6px);
}

@supports not (backdrop-filter: blur(6px)) {
  .hoverbox-1:before {
    background: rgba(0, 0, 0, 0.6);
  }
}

.hoverbox-1:hover:before {
  transform: translate(-50%, -50%) scale(1);
}

.hoverbox-1:hover .hover-content {
  opacity: 1;
  transition-delay: 0.15s;
}

.hoverbox-1 .hover-content {
  position: absolute;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 12px;
  text-align: center;
}

.hoverbox-1 .hover-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: -1px;
  line-height: 1.4;
}

.hoverbox-1 .hover-heading span {
  display: block;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 4px;
}

.dog-info {
  text-align: center;
  padding-top: 10px;
}

.dog-info h2 {
  font-family: var(--alt-font);
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dog-info p {
  font-size: 0.938rem;
  margin-bottom: 1rem;
}

.c-modal .dog-info {padding: 2rem;}
.c-modal .dog-info p {text-align: center;}
.c-modal-box ul {margin-bottom: 1rem;}
.c-modal-box ul li {font-size: 0.875rem; margin: 0;}

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

.masonry {margin: 0 -1em -2em;}
.masonry .masonry-item {margin-bottom: 2em; padding: 0 1em;}
.masonry.column-1 .masonry-item {width: 100%;}

@media (min-width: 768px) {
  .masonry.column-2 .masonry-item {width: 50%;}
}

@media (min-width: 768px) {
  .masonry.column-3 .masonry-item {width: 50%;}
}

@media (min-width: 992px) {
  .masonry.column-3 .masonry-item {width: 33.33%;}
}

@media (min-width: 576px) {
  .masonry.column-4 .masonry-item, .masonry.column-5 .masonry-item, .masonry.column-6 .masonry-item {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .masonry.column-4 .masonry-item, .masonry.column-5 .masonry-item, .masonry.column-6 .masonry-item {
    width: 33.33%;
  }
}

@media (min-width: 992px) {
  .masonry.column-4 .masonry-item, .masonry.column-5 .masonry-item, .masonry.column-6 .masonry-item {
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .masonry.column-5 .masonry-item {width: 20%;}
}

@media (min-width: 1200px) {
  .masonry.column-6 .masonry-item {width: 16.66%;}
}

.masonry.spacing-0 {margin: 0;}
.masonry.spacing-0 .masonry-item {margin: 0; padding: 0;}

.masonry.spacing-1 {margin: 0 -0.5em -1em;}
.masonry.spacing-1 .masonry-item {margin-bottom: 1em; padding: 0 0.5em;}

.masonry.spacing-2 {margin: 0 -1em -2em;}
.masonry.spacing-2 .masonry-item {margin-bottom: 2em; padding: 0 1em;}

.masonry.spacing-3 {margin: 0 -1.5em -3em;}
.masonry.spacing-3 .masonry-item {margin-bottom: 3em; padding: 0 1.5em;}

.masonry.spacing-4 {margin: 0 -2em -4em;}
.masonry.spacing-4 .masonry-item {margin-bottom: 4em; padding: 0 2em;}

.masonry.spacing-5 {margin: 0 -2.5em -5em;}
.masonry.spacing-5 .masonry-item {margin-bottom: 5em; padding: 0 2.5em;}

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

.portfolio-masonry .portfolio-item {width: 100%;}
.portfolio-masonry .portfolio-item {text-align: left;}

.portfolio-masonry.column-1 .portfolio-item {width: 100%;}

@media (min-width: 768px) {
  .portfolio-masonry.column-2 .portfolio-item {width: 50%;}
}

@media (min-width: 768px) {
  .portfolio-masonry.column-3 .portfolio-item {width: 50%;}
}

@media (min-width: 992px) {
  .portfolio-masonry.column-3 .portfolio-item {width: 33.33%;}
}

@media (min-width: 576px) {
  .portfolio-masonry.column-4 .portfolio-item, .portfolio-masonry.column-5 .portfolio-item, .portfolio-masonry.column-6 .portfolio-item {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .portfolio-masonry.column-4 .portfolio-item, .portfolio-masonry.column-5 .portfolio-item, .portfolio-masonry.column-6 .portfolio-item {
    width: 33.33%;
  }
}

@media (min-width: 992px) {
  .portfolio-masonry.column-4 .portfolio-item, .portfolio-masonry.column-5 .portfolio-item, .portfolio-masonry.column-6 .portfolio-item {
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .portfolio-masonry.column-5 .portfolio-item {width: 20%;}
}

@media (min-width: 1200px) {
  .portfolio-masonry.column-6 .portfolio-item {width: 16.66%;}
}

.portfolio-masonry.spacing-0 .portfolio-item {padding: 0;}
.portfolio-masonry.spacing-1 .portfolio-item {padding: 0.5em;}
.portfolio-masonry.spacing-2 .portfolio-item {padding: 1em;}
.portfolio-masonry.spacing-3 .portfolio-item {padding: 1.5em;}
.portfolio-masonry.spacing-4 .portfolio-item {padding: 2em;}
.portfolio-masonry.spacing-5 .portfolio-item {padding: 2.5em;}

.portfolio-masonry[class*='border-radius'] .portfolio-item .portfolio-box,
.portfolio-grid[class*='border-radius'] .portfolio-item .portfolio-box {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}

.portfolio-masonry.border-radius .portfolio-item .portfolio-box,
.portfolio-grid.border-radius .portfolio-item .portfolio-box {
  border-radius: 0.4em;
}

.portfolio-masonry.border-radius-1 .portfolio-item .portfolio-box,
.portfolio-grid.border-radius-1 .portfolio-item .portfolio-box {
  border-radius: 1.0em;
}

.text-center .portfolio-item {text-align: center;}
.text-end .portfolio-item {text-align: right;}

.container .portfolio-masonry.spacing-0 {margin: 0;}
.container .portfolio-masonry.spacing-1 {margin: -0.5em;}
.container .portfolio-masonry.spacing-2 {margin: -1em;}
.container .portfolio-masonry.spacing-3 {margin: -1.5em;}
.container .portfolio-masonry.spacing-4 {margin: -2em;}
.container .portfolio-masonry.spacing-5 {margin: -2.5em;}

.portfolio-item .portfolio-box {position: relative;}
.portfolio-item .portfolio-box .portfolio-img {position: relative; overflow: hidden;}

.portfolio-item .portfolio-box .portfolio-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
  -webkit-transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item .portfolio-box a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-item .portfolio-box:hover .portfolio-img img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-filter: blur(1.5px);
  filter: blur(1.5px);
}

.portfolio-grid:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title, .portfolio-masonry:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-image: linear-gradient(to top, rgba(18, 21, 24, 0.4), transparent);
  width: 100%;
  height: 100%;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.portfolio-grid:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title div, .portfolio-masonry:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title div {
  position: absolute;
  left: 30px;
  bottom: 30px;
}

.portfolio-grid:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title div *, .portfolio-masonry:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title div * {
  opacity: 0;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  margin-bottom: 0.5rem;
  color: white;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.portfolio-grid:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title div *:first-child, .portfolio-masonry:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title div *:first-child {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.portfolio-grid:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title div *:last-child, .portfolio-masonry:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title div *:last-child {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  margin-bottom: 0;
}

.portfolio-grid:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title div span, .portfolio-masonry:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box .portfolio-title div span {
  display: inline-block;
}

.portfolio-grid:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box:hover .portfolio-title, .portfolio-masonry:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box:hover .portfolio-title {
  opacity: 1;
}

.portfolio-grid:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box:hover .portfolio-title *, .portfolio-masonry:not(.hover-style-2):not(.hover-style-3) .portfolio-item .portfolio-box:hover .portfolio-title * {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.hover-style-2 .portfolio-item .portfolio-box .portfolio-title {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: rgba(18, 21, 24, 0.1);
  width: 100%;
  height: 100%;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.hover-style-2 .portfolio-item .portfolio-box .portfolio-title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-image: linear-gradient(to top, rgba(18, 21, 24, 0.3), transparent);
  width: 100%;
  height: 100%;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.hover-style-2 .portfolio-item .portfolio-box .portfolio-title div {
  position: absolute;
  top: 30px;
  left: 30px;
}

.hover-style-2 .portfolio-item .portfolio-box .portfolio-title div span {
  display: block;
}

.hover-style-2 .portfolio-item .portfolio-box .portfolio-title div * {
  margin-bottom: 0.5rem;
  color: white;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.hover-style-2 .portfolio-item .portfolio-box .portfolio-title i {
  position: absolute;
  right: 30px;
  bottom: 30px;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  opacity: 0;
  font-size: 1.2em;
  color: white;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.hover-style-2 .portfolio-item .portfolio-box:hover .portfolio-title:before {
  opacity: 1;
}

.hover-style-2 .portfolio-item .portfolio-box:hover .portfolio-title i {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.hover-style-3 .portfolio-item .portfolio-box .portfolio-title {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
}

.hover-style-3 .portfolio-item .portfolio-box .portfolio-title .portfolio-title-item {
  display: table;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  visibility: hidden;
  opacity: 0;
  background: white;
  margin-bottom: 0.25rem;
  padding: 0.6rem 1rem;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.hover-style-3 .portfolio-item .portfolio-box .portfolio-title .portfolio-title-item:last-child {
  margin-bottom: 0;
}

.hover-style-3 .portfolio-item .portfolio-box .portfolio-title .portfolio-title-item:nth-child(1) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.hover-style-3 .portfolio-item .portfolio-box .portfolio-title .portfolio-title-item:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.hover-style-3 .portfolio-item .portfolio-box .portfolio-title .portfolio-title-item:nth-child(3) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.hover-style-3 .portfolio-item .portfolio-box .portfolio-title .portfolio-title-item * {
  margin-bottom: 0;
  color: #121518;
}

@media (max-width: 991.98px) {
  .hover-style-3 .portfolio-item .portfolio-box .portfolio-title {
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }
}

.hover-style-3 .portfolio-item .portfolio-box:hover .portfolio-title .portfolio-title-item {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

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

.section-xs {padding: 60px 0;}
.section-xs.bg-image .container, .section-xs.bg-image .container-fluid {padding: 60px 0px;}

.section-sm {padding: 80px 0;}
.section-sm.bg-image .container, .section-sm.bg-image .container-fluid {padding: 80px 30px;}

.section, .section-md {padding: 100px 0;}
.section.bg-image .container, .section.bg-image .container-fluid,
.section-md.bg-image .container, .section-md.bg-image .container-fluid {padding: 100px 30px;}

.section-lg {padding: 160px 0;}
.section-lg.bg-image .container, .section-lg.bg-image .container-fluid {padding: 160px 30px;}

.section-xl {padding: 200px 0;}
.section-xl.bg-image .container, .section-xl.bg-image .container-fluid {padding: 200px 30px;}

.section-2xl {padding: 260px 0;}
.section-2xl.bg-image .container, .section-2xl.bg-image .container-fluid {padding: 260px 30px;}

.section-hero {padding: 260px 0;}
.section-hero.bg-image .container, .section-hero.bg-image .container-fluid {padding: 260px 20px;}

@media (max-width: 767.98px) {
	.section-xs {padding: 30px 0;}
	.section-xs.bg-image .container, .section-xs.bg-image .container-fluid {padding: 30px 30px;}
	
	.section-sm {padding: 50px 0;}
	.section-sm.bg-image .container, .section-sm.bg-image .container-fluid {padding: 50px 30px;}
	
	.section, .section-md {padding: 80px 0;}
	.section.bg-image .container, .section.bg-image .container-fluid,
	.section-md.bg-image .container, .section-md.bg-image .container-fluid {padding: 80px 30px;}
	
	.section-lg {padding: 120px 0;}
	.section-lg.bg-image .container, .section-lg.bg-image .container-fluid {padding: 120px 30px;}
	
	.section-xl {padding: 160px 0;}
	.section-xl.bg-image .container, .section-xl.bg-image .container-fluid {padding: 160px 30px;}
	
	.section-2xl {padding: 200px 0;}
	.section-2xl.bg-image .container, .section-2xl.bg-image .container-fluid {padding: 200px 30px;}
	
	.section-hero {padding: 220px 0;}
	.section-hero.bg-image .container, .section-hero.bg-image .container-fluid {padding: 220px 20px;}
}

@media (max-width: 575.98px) {
	.section, .section-md {
		padding: 70px 0;
	}
	.section.bg-image .container, .section.bg-image .container-fluid, .section-md.bg-image .container, .section-md.bg-image .container-fluid {
		padding: 70px 30px;
	}
	.section-lg {
		padding: 90px 0;
	}
	.section-lg.bg-image .container, .section-lg.bg-image .container-fluid {
		padding: 90px 30px;
	}
	.section-xl {
		padding: 120px 0;
	}
	.section-xl.bg-image .container, .section-xl.bg-image .container-fluid {
		padding: 120px 30px;
	}
	.section-2xl {
		padding: 150px 0;
	}
	.section-2xl.bg-image .container, .section-2xl.bg-image .container-fluid {
		padding: 150px 30px;
	}
	.section-hero {padding: 60px 0;}
	.section-hero.bg-image .container, .section-hero.bg-image .container-fluid { padding: 60px 20px;
	}
}

.section-xs.bg-image,
.section-sm.bg-image,
.section.bg-image, .section-md.bg-image,
.section-lg.bg-image,
.section-xl.bg-image,
.section-2xl.bg-image,
.section-hero.bg-image {
  padding: 0;
}

/*==============
	Random BG
==============*/

.random-bg {
	position: relative;
	background-position: center center;
    background-attachment: scroll;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    background-size:cover;
    background-repeat: no-repeat;
}
.src-1 {background-image: url("../images/hero-1.jpg");}
.src-2 {background-image: url("../images/hero-2.jpg");}
.src-3 {background-image: url("../images/hero-3.jpg");}
.src-4 {background-image: url("../images/hero-4.jpg");}
.src-5 {background-image: url("../images/hero-5.jpg");}
.src-6 {background-image: url("../images/hero-6.jpg");}
.src-7 {background-image: url("../images/hero-7.jpg");}
.src-8 {background-image: url("../images/hero-8.jpg");}
.src-9 {background-image: url("../images/hero-9.jpg");}
.src-10 {background-image: url("../images/hero-10.jpg");}
.src-11 {background-image: url("../images/hero-11.jpg");}
.src-12 {background-image: url("../images/hero-12.jpg");}
.src-13 {background-image: url("../images/hero-13.jpg");}
.src-14 {background-image: url("../images/hero-14.jpg");}
.src-15 {background-image: url("../images/hero-15.jpg");}
.src-16 {background-image: url("../images/hero-16.jpg");}

.random-bg.bg-fixed {
	background-attachment: fixed;
}

@media (max-width: 991.98px) { }

@media (max-width: 767.98px) {
  .random-bg.bg-fixed {
    background-attachment: scroll;
  }
}

.random-bg.section-xs {padding: 50px 0;}
.random-bg.section-xs .container, .random-bg.section-xs .container-fluid {padding: 50px 30px;}

.random-bg.section-sm {padding: 70px 0;}
.random-bg.section-sm .container, .random-bg.section-sm .container-fluid {padding: 70px 30px;}

.random-bg.section {padding: 100px 0;}
.random-bg.section .container, .random-bg.section .container-fluid {padding: 100px 30px;}

.random-bg.section-lg {padding: 160px 0;}
.random-bg.section-lg .container, .random-bg.section-lg .container-fluid {padding: 160px 30px;}

.random-bg.section-xl {padding: 200px 0;}
.random-bg.section-xl .container, .random-bg.section-xl .container-fluid {padding: 200px 30px;}

.random-bg.section-2xl {padding: 240px 0;}
.random-bg.section-2xl .container, .random-bg.section-2xl .container-fluid {padding: 240px 30px;}

.random-bg.section-hero {padding: 240px 0;}
.random-bg.section-hero .container, .random-bg.section-hero .container-fluid {padding: 240px 30px;}

@media (max-width: 991.98px) {
	.random-bg.section-hero {padding: 100px 0;}
	.random-bg.section-hero .container, .random-bg.section-hero .container-fluid {padding: 100px 30px;}
}

@media (max-width: 767.98px) {
	.random-bg.section-xs {padding: 30px 0;}
	.random-bg.section-xs .container, .random-bg.section-xs .container-fluid {padding: 30px 30px;}
	
	.random-bg.section-sm {padding: 50px 0;}
	.random-bg.section-sm .container, .random-bg.section-sm .container-fluid {padding: 50px 30px;}
	
	.random-bg.section {padding: 80px 0;}
	.random-bg.section .container, .random-bg.section .container-fluid {padding: 80px 30px;}
	
	.random-bg.section-lg {padding: 120px 0;}
	.random-bg.section-lg .container, .random-bg.section-lg .container-fluid {padding: 120px 30px;}
	
	.random-bg.section-xl {padding: 160px 0;}
	.random-bg.section-xl .container, .random-bg.section-xl .container-fluid {padding: 160px 30px;}
	
	.random-bg.section-2xl {padding: 180px 0;}
	.random-bg.section-2xl .container, .random-bg.section-2xl .container-fluid {padding: 180px 30px;}
	
	.random-bg.section-hero {padding: 80px 0;}
	.random-bg.section-hero .container, .random-bg.section-hero .container-fluid {padding: 80px 30px;}
}

@media (max-width: 575.98px) {
	.random-bg.section {padding: 70px 0;}
	.random-bg.section .container, .random-bg.section .container-fluid {padding: 70px 30px;}
	
	.random-bg.section-lg {padding: 100px 0;}
	.random-bg.section-lg .container, .random-bg.section-lg .container-fluid {padding: 100px 30px;}
	
	.random-bg.section-xl {padding: 140px 0;}
	.random-bg.section-xl .container, .random-bg.section-xl .container-fluid {padding: 140px 30px;}
	
	.random-bg.section-2xl {padding: 160px 0;}
	.random-bg.section-2xl .container, .random-bg.section-2xl .container-fluid {padding: 160px 30px;}
	
	.random-bg.section-hero {padding: 40px 0;}
	.random-bg.section-hero .container, .random-bg.section-hero .container-fluid {padding: 40px 20px;}
}
	
.random-bg.section-xs, 
.random-bg.section-sm, 
.random-bg.section,  
.random-bg.section-lg, 
.random-bg.section-xl, 
.random-bg.section-2xl,
.random-bg.section-hero  {
	padding: 0;
}

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

.bg-color-violet  {
	background: var(--bg-main);
}

.bg-color-violet,
.bg-color-violet h1,
.bg-color-violet h2,
.bg-color-violet h3,
.bg-color-violet h4,
.bg-color-violet h5,
.bg-color-violet h6 {
  color: white;
}

[class*='bg-color-'] a.link-bg-2 {
  background: rgba(255, 255, 255, 0);
  color: #fff;
}

[class*='bg-color-'] a.link-bg-2::before {
  background: rgba(255, 255, 255, 0.25);
}

[class*='bg-color-'] a.link-bg-2:hover {}

[class*='bg-color-'] .img-overlap img {
  border: 8px solid #db89ca;
}

.bg-dark {background-color: #121518;}
.bg-dark-01 {background-color: rgba(0, 0, 0, 0.1);}
.bg-dark-02 {background-color: rgba(0, 0, 0, 0.2);}
.bg-dark-03 {background-color: rgba(0, 0, 0, 0.3);}
.bg-dark-04 {background-color: rgba(0, 0, 0, 0.4);}
.bg-dark-05 {background-color: rgba(0, 0, 0, 0.5);}
.bg-dark-06 {background-color: rgba(0, 0, 0, 0.6);}
.bg-dark-07 {background-color: rgba(0, 0, 0, 0.7);}
.bg-dark-08 {background-color: rgba(0, 0, 0, 0.8);}
.bg-dark-09 {background-color: rgba(0, 0, 0, 0.9);}

.bg-white {background: white;}
.bg-lite {background: #fff6f3;}
.bg-grey {background: #f9f6fc;}
.bg-grey-darker {background: #eaecf4;}
.bg-grey-lighter {background: #f4f8fc;}

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

.border {border: 1px solid rgba(201,204,209,1.00) !important;}
.border-radius img {border-radius: 12px; overflow: hidden;}
.border-radius {border-radius: 1em; overflow: hidden;}
.border-radius-2 {border-radius: 2em; overflow: hidden;}

.border-top,
.border-right,
.border-bottom, 
.border-left {
  border-width: 0;
  border-style: solid;
  border-color: rgba(18,21,24,0.20) !important;
}

.border-top {border-top-width: 1px;}
.border-right {border-right-width: 1px;}
.border-bottom {border-bottom-width: 1px;}
.border-left {border-left-width: 1px;}

.border-style-dotted {border-style: dotted;}
.border-style-dashed {border-style: dashed;}

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

.n-margin-1 {margin-top: -1rem;}
.n-margin-2 {margin-top: -2rem;}
.n-margin-3 {margin-top: -3rem;}
.n-margin-4 {margin-top: -4rem;}
.n-margin-5 {margin-top: -5rem;}
.n-margin-6 {margin-top: -6rem;}

.opacity-10 {opacity: 0.1;}
.opacity-15 {opacity: 0.15;}
.opacity-20 {opacity: 0.2;}

/*==========================
	BS extra PADDING & MARGINS
===========================*/

.m-6 {margin: 3.5rem !important;}
.m-7 {margin: 4rem !important;}
.m-8 {margin: 4.5rem !important;}
.m-9 {margin: 5rem !important;}
.m-10 {margin: 6rem !important;}
.m-11 {margin: 7rem !important;}
.m-12 {margin: 8rem !important;}
.m-13 {margin: 9rem !important;}
.m-14 {margin: 10rem !important;}
.m-auto {margin: auto !important;}

.mt-6 {margin-top: 3.5rem !important;}
.mt-7 {margin-top: 4rem !important;}
.mt-8 {margin-top: 4.5rem !important;}
.mt-9 {margin-top: 5rem !important;}
.mt-10 {margin-top: 6rem !important;}
.mt-11 {margin-top: 7rem !important;}
.mt-12 {margin-top: 8rem !important;}
.mt-13 {margin-top: 9rem !important;}
.mt-14 {margin-top: 10rem !important;}
.mt-auto {margin-top: auto !important;}

.mb-6 {margin-bottom: 3.5rem !important;}
.mb-7 {margin-bottom: 4rem !important;}
.mb-8 {margin-bottom: 4.5rem !important;}
.mb-9 {margin-bottom: 5rem !important;}
.mb-10 {margin-bottom: 6rem !important;}
.mb-11 {margin-bottom: 7rem !important;}
.mb-12 {margin-bottom: 8rem !important;}
.mb-13 {margin-bottom: 9rem !important;}
.mb-14 {margin-bottom: 10rem !important;}
.mb-auto {margin-bottom: auto !important;}

.ms-6 {margin-left: 3.5rem !important;}
.ms-7 {margin-left: 4rem !important;}
.ms-8 {margin-left: 4.5rem !important;}
.ms-9 {margin-left: 5rem !important;}
.ms-10 {margin-left: 6rem !important;}
.ms-11 {margin-left: 7rem !important;}
.ms-12 {margin-left: 8rem !important;}
.ms-13 {margin-left: 9rem !important;}
.ms-14 {margin-left: 10rem !important;}
.ms-auto {margin-left: auto !important;}

.me-6 {margin-right: 3.5rem !important;}
.me-7 {margin-right: 4rem !important;}
.me-8 {margin-right: 4.5rem !important;}
.me-9 {margin-right: 5rem !important;}
.me-10 {margin-right: 6rem !important;}
.me-11 {margin-right: 7rem !important;}
.me-12 {margin-right: 8rem !important;}
.me-13 {margin-right: 9rem !important;}
.me-14 {margin-right: 10rem !important;}
.me-auto {margin-right: auto !important;}

.mx-6 {margin-right: 3.5rem !important; margin-left: 3.5rem !important;}
.mx-7 {margin-right: 4rem !important; margin-left: 4rem !important;}
.mx-8 {margin-right: 4.5rem !important; margin-left: 4.5rem !important;}
.mx-9 {margin-right: 5rem !important; margin-left: 5rem !important;}
.mx-10 {margin-right: 6rem !important; margin-left: 6rem !important;}
.mx-11 {margin-right: 7rem !important; margin-left: 7rem !important;}
.mx-12 {margin-right: 8rem !important; margin-left: 8rem !important;}
.mx-13 {margin-right: 9rem !important; margin-left: 9rem !important;}
.mx-14 {margin-right: 10rem !important; margin-left: 10rem !important;}
.mx-auto {margin-right: auto !important; margin-left: auto !important;}

.my-6 {margin-top: 3.5rem !important; margin-bottom: 3.5rem !important;}
.my-7 {margin-top: 4rem !important; margin-bottom: 4rem !important;}
.my-8 {margin-top: 4.5rem !important; margin-bottom: 4.5rem !important;}
.my-9 {margin-top: 5rem !important; margin-bottom: 5rem !important;}
.my-10 {margin-top: 6rem !important; margin-bottom: 6rem !important;}
.my-11 {margin-top: 7rem !important; margin-bottom: 7rem !important;}
.my-12 {margin-top: 8rem !important; margin-bottom: 8rem !important;}
.my-13 {margin-top: 9rem !important; margin-bottom: 9rem !important;}
.my-14 {margin-top: 10rem !important; margin-bottom: 10rem !important;}
.my-auto {margin-top: auto !important; margin-bottom: auto !important;}

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

.p-4 {padding: 2rem !important;}
.p-5 {padding: 2.5rem !important;}
.p-6 {padding: 3.5rem !important;}
.p-7 {padding: 4rem !important;}
.p-8 {padding: 4.5rem !important;}
.p-9 {padding: 5rem !important;}
.p-10 {padding: 6rem !important;}
.p-11 {padding: 7rem !important;}
.p-12 {padding: 8rem !important;}
.p-13 {padding: 9rem !important;}
.p-14 {padding: 10rem !important;}

.pt-6 {padding-top: 3.5rem !important;}
.pt-7 {padding-top: 4rem !important;}
.pt-8 {padding-top: 4.5rem !important;}
.pt-9 {padding-top: 5rem !important;}
.pt-10 {padding-top: 6rem !important;}
.pt-11 {padding-top: 7rem !important;}
.pt-12 {padding-top: 8rem !important;}
.pt-13 {padding-top: 9rem !important;}
.pt-14 {padding-top: 10rem !important;}

.pb-6 {padding-bottom: 3.5rem !important;}
.pb-7 {padding-bottom: 4rem !important;}
.pb-8 {padding-bottom: 4.5rem !important;}
.pb-9 {padding-bottom: 5rem !important;}
.pb-10 {padding-bottom: 6rem !important;}
.pb-11 {padding-bottom: 7rem !important;}
.pb-12 {padding-bottom: 8rem !important;}
.pb-13 {padding-bottom: 9rem !important;}
.pb-14 {padding-bottom: 10rem !important;}

.ps-6 {padding-left: 3.5rem !important;}
.ps-7 {padding-left: 4rem !important;}
.ps-8 {padding-left: 4.5rem !important;}
.ps-9 {padding-left: 5rem !important;}
.ps-10 {padding-left: 6rem !important;}
.ps-11 {padding-left: 7rem !important;}
.ps-12 {padding-left: 8rem !important;}
.ps-13 {padding-left: 9rem !important;}
.ps-14 {padding-left: 10rem !important;}

.pe-6 {padding-right: 3.5rem !important;}
.pe-7 {padding-right: 4rem !important;}
.pe-8 {padding-right: 4.5rem !important;}
.pe-9 {padding-right: 5rem !important;}
.pe-10 {padding-right: 6rem !important;}
.pe-11 {padding-right: 7rem !important;}
.pe-12 {padding-right: 8rem !important;}
.pe-13 {padding-right: 9rem !important;}
.pe-14 {padding-right: 10rem !important;}

.px-6 {padding-right: 3.5rem !important; padding-left: 3.5rem !important;}
.px-7 {padding-right: 4rem !important; padding-left: 4rem !important;}
.px-8 {padding-right: 4.5rem !important; padding-left: 4.5rem !important;}
.px-9 {padding-right: 5rem !important; padding-left: 5rem !important;}
.px-10 {padding-right: 6rem !important; padding-left: 6rem !important;}
.px-11 {padding-right: 7rem !important; padding-left: 7rem !important;}
.px-12 {padding-right: 8rem !important; padding-left: 8rem !important;}
.px-13 {padding-right: 9rem !important; padding-left: 9rem !important;}
.px-14 {padding-right: 10rem !important; padding-left: 10rem !important;}

.py-6 {padding-top: 3.5rem !important; padding-bottom: 3.5rem !important;}
.py-7 {padding-top: 4rem !important; padding-bottom: 4rem !important;}
.py-8 {padding-top: 4.5rem !important; padding-bottom: 4.5rem !important;}
.py-9 {padding-top: 5rem !important; padding-bottom: 5rem !important;}
.py-10 {padding-top: 6rem !important; padding-bottom: 6rem !important;}
.py-11 {padding-top: 7rem !important; padding-bottom: 7rem !important;}
.py-12 {padding-top: 8rem !important; padding-bottom: 8rem !important;}
.py-13 {padding-top: 9rem !important; padding-bottom: 9rem !important;}
.py-14 {padding-top: 10rem !important; padding-bottom: 10rem !important;}

.g-6, .gy-6 { --bs-gutter-y: 3.5rem; }
.g-8, .gy-8 {--bs-gutter-y: 4rem;}

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

/* Existing footer styles */
footer.footer {
    position: relative;
/*
    background-image: url('../images/footer-bg.png');
    background-size: auto;
    background-position: top center;
    background-repeat: repeat;
    background-color: #000000;
*/
	background-color: var(--bg-footer);
    color: #E6DDEF !important;
    text-align: center;
    z-index: 1;
    margin-top: 100px;
}

footer.footer::before {
    content: '';
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: 
        url("../images/footer-bg-grass.png") left bottom repeat-x,
        url("../images/footer-bg-group.png") right 25% bottom no-repeat;
    background-size: auto, auto;
    z-index: 0;
}

footer.footer .section-sm {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

footer.footer .logo-footer img {
	width: auto;
	height: 200px;
	max-height: 200px;
	margin-bottom: 10px;
}
footer.footer p.copyright {
    font-size: 0.8rem;
}

footer a.link-bg {
  background-color: #7956bb;
  transform: rotate(-3deg);
}

footer a.link-bg:hover {
  transform: rotate(-3deg) scale(1.1);
}

footer .footer p.copyright {
	font-size: 0.8rem;
}


/*===========================*/
body.glightbox-open {
  padding-right: 17px !important;
}

