/* General */
:root {
	--vesper-primary-color: #000000;
	--vesper-primary-hover: #000000cc;
	--vesper-secondary-color: #ffffff;
	--vesper-accent-color: #f5f5f5;
	--vesper-heading-color: #000000;
	--vesper-menu-color: #000000;
	--vesper-text-color: #666666;
	--vesper-border-color: #dddddd;
	--vesper-black-color: #222222;
	--vesper-white-color: #ffffff;
	--vesper-smoke-color: #f5f5f5;
	--vesper-gray-color: #dddddd;
	--vesper-border-radius-sm:4px;
	--vesper-border-radius-md:8px;
	--vesper-border-radius-lg:12px;
	--vesper-border-radius-xl:16px;
	--vesper-font-family: "Spline Sans", sans-serif;
}

html {
  font-size: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-weight: normal;
  font-style: normal;
  font-weight: 400;
  color: var(--vesper-text-color);
  font-family: var(--vesper-font-family);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
}

body.locked {
  overflow-y: hidden;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

@media (max-width: 767px) {
	
	h1 {
	  font-size: 48px;
	}

    h2 {
      font-size: 32px;
    }
	
	h3{
		font-size: 26px;
	}
	
	h4{
        font-size: 22px;
    }
	
	h5, h6 {
        font-size: 20px;
    }
}

h1,h2,h3,h4,h5,h6 {
  color: var(--vesper-heading-color);
  font-weight: 600;
  margin: 0px;
  font-family: var(--vesper-font-family);
  margin-bottom: 1rem;
  line-height:1.1;
}

span.text-stroke{
	font-family: monospace!important;
    -webkit-text-stroke: 2px var(--vesper-heading-color);
    color: transparent;
}

span.text-underline {
  position: relative; 
  display: inline-block;
  z-index:1;
}

span.text-underline::after {
    content: "";
    position: absolute;
    display: block;
    width: 33%;
    height: 8px;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB3aWR0aD0iMTE3IiBoZWlnaHQ9IjE1IiB2aWV3Qm94PSIwIDAgMTE3IDEzIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNCA4LjYyNzQ0QzE2LjQ1NzEgNi4yMjc0NCAzMi4yNTQ2IDQuNjI3NDggNTguMTEwNyA0LjYyNzQ0Qzg0LjE5MjkgNC42Mjc0IDk4LjU5NjQgNi4yMjc0NCAxMTMgOC42Mjc0NCIgc3Ryb2tlPSIjRjlEMDQ3IiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
    -webkit-mask-size: 100% 100%;
    background-color: var(--vesper-primary-color);
    -webkit-mask-repeat: no-repeat;
    background-position: center bottom;
    left: 0; 
    bottom: -4px;
    z-index: -1;
	opacity:0;
    transition: all 0.25s ease-out; 
}

span.text-underline.animated::after {
    width: 100%;
	opacity:1;
}

span.text-highlight {
  background-color: var(--vesper-accent-color);
  margin: 0 4px;
  padding: 0 8px;
  border-radius:var(--vesper-border-radius-sm);
}

span.text-border {
	position: relative;
	padding: 2px 10px;
}

span.text-border:after,
span.text-border:before {
	position: absolute;
	content: "";
}

span.text-border:after {
	border-top: 2px solid var(--vesper-primary-color);
	border-bottom: 2px solid var(--vesper-primary-color);
	left: 0;
	right: 0;
	top: 5px;
	bottom: 5px;
}

span.text-border:before {
	border-left: 2px solid var(--vesper-primary-color);
	border-right: 2px solid var(--vesper-primary-color);
	left: 5px;
	right: 5px;
	top: 0;
	bottom: 0;
}

a,
a:focus, 
a:visited, 
a:active {
  color: var(--vesper-text-color);
  text-decoration: underline;
}

a:hover {
  color: var(--vesper-primary-color);
  text-decoration: underline;
  -webkit-transition: color 0.25s ease;
  -moz-transition: color 0.25s ease;
  -ms-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
  transition: color 0.125s ease;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

ul,
ol {
  margin: 0 0 0.5em 0.5em;
  padding-left: 1em;
}

input,
textarea {
  display: inherit;
}

button {
  border: none;
}

select {
    width: 100%;
	height:40px;
    padding: 0 28px 0 8px;
	border-radius: var(--vesper-border-radius-sm);
	outline:none;
	border: 1px solid var(--vesper-border-color);
	font-size:16px;
	cursor:pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE2IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIgMGw2IDZsNi02IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMiIvPjwvc3ZnPg==') no-repeat;
    background-position: calc(100% - 8px) center;
    background-size: 12px;
}

select::-ms-expand {
    display: none;
}

label {
  margin-bottom: 0;
}

iframe {
  width: 100%;
  border: none;
  display: inherit;
}

ul.ul-0 {
  padding-left: 0 !important;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height:1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}


img {
  max-width: 100%;
  height: auto;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

@media (max-width: 991px) {
  .col-reverse-lg {
    flex-direction: column-reverse !important;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1344px;
  }
}

@keyframes moveY {
  0% {
    -webkit-transform: translateX(-50%) translateY(-10px);
    -moz-transform: translateX(-50%) translateY(-10px);
    -ms-transform: translateX(-50%) translateY(-10px);
    -o-transform: translateX(-50%) translateY(-10px);
    transform: translateX(-50%) translateY(-10px);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(5px);
    -moz-transform: translateX(-50%) translateY(5px);
    -ms-transform: translateX(-50%) translateY(5px);
    -o-transform: translateX(-50%) translateY(5px);
    transform: translateX(-50%) translateY(5px);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-10px);
    -moz-transform: translateX(-50%) translateY(-10px);
    -ms-transform: translateX(-50%) translateY(-10px);
    -o-transform: translateX(-50%) translateY(-10px);
    transform: translateX(-50%) translateY(-10px);
  }
}
@keyframes moveX {
  0% {
    -webkit-transform: 0;
    -moz-transform: 0;
    -ms-transform: 0;
    -o-transform: 0;
    transform: 0;
  }
  50% {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: 0;
    -moz-transform: 0;
    -ms-transform: 0;
    -o-transform: 0;
    transform: 0;
  }
}

@keyframes shakeX{
	0% {
	transform: translateX(0);
	}
	50% {
	transform: translateX(5%);
	}
	100% {
	transform: translateX(0);
	}
}

.text-center{
	text-align:center;
}

/* Sections */
.section-text{
	margin-bottom:30px;
}

.section-text h2{
	margin-bottom:20px;
}

.section-text.section-text-light h2{
	color:var(--vesper-secondary-color);
}

.section-wrapper{
	position: relative;
	padding: 75px 0;
}

@media (max-width: 767px) {
	.section-wrapper{
		padding: 50px 25px;
	}
}


/* Background */
.background-cover {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.background-contain {
  background-position: center center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

/* Buttons */
.theme-button{
	position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
	height:40px;
    border-radius: var(--vesper-border-radius-sm);
	padding: 12px 16px;
	font-size:16px;
	font-weight:600;
	box-shadow: none;
    text-decoration: none!important;
    transition: all 0.125s ease;
	line-height:1;
	cursor:pointer;
}

.button-solid-dark,
.button-solid-dark:focus,
.button-solid-dark:active,
.button-solid-dark:visited{
	color: var(--vesper-secondary-color);
	background: var(--vesper-primary-color);
}

.button-solid-dark:hover{
	color: var(--vesper-secondary-color);
	background: var(--vesper-primary-hover);
}

.button-outline-dark,
.button-outline-dark:focus,
.button-outline-dark:active,
.button-outline-dark:visited{
	color: var(--vesper-primary-color);
	background: transparent;
	border:1px solid var(--vesper-primary-color);
}

.button-outline-dark:hover{
	color: var(--vesper-secondary-color);
	background: var(--vesper-primary-color);
	border:1px solid var(--vesper-primary-color);
}

.button-outline-light,
.button-outline-light:focus,
.button-outline-light:active,
.button-outline-light:visited{
	color: var(--vesper-secondary-color);
	background: transparent;
	border:1px solid var(--vesper-secondary-color);
}

.button-outline-light:hover{
	color: var(--vesper-primary-color);
	background: var(--vesper-secondary-color);
	border:1px solid var(--vesper-secondary-color);
}

.theme-preview{
	margin:50px 0;
	padding:50px;
	background:#aaa;
}

.theme-preview-group{
	margin-bottom:20px
}

.theme-preview h4{
	font-size:20px;
	font-weight:600;
	margin-bottom:10px;
}

.theme-preview .theme-button{
	margin-right:20px;
}


/* Header */
.header-section {
	padding:0;
}

@media (max-width: 767px) {
	.header-nav .header-section{
		padding: 0 25px;
	}
}

.theme-header, .header-wrapper{
	height:75px;
}

.header-wrapper {
	display: flex;
    justify-content: space-between;
}

.header-left,
.header-right{
	display: flex;
    align-items: center;
}

.theme-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .theme-header {
    top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .theme-header {
    top: 0;
  }
}
@media (max-width: 767px) {
  .theme-header {
    top: 0;
  }
}

.admin-bar .header-nav.header-nav-hidden, .header-sticky,
.admin-bar .header-nav.header-nav-hidden,.admin-bar .header-sticky {
  top: 32px;
}
@media screen and (max-width: 767px) {
	.header-nav.header-nav-hidden, .header-sticky,
	.admin-bar .header-nav.header-nav-hidden, .admin-bar .header-sticky   {
		top: 46px;
	}
}
@media screen and (max-width: 600px) {
	.header-nav.header-nav-hidden, .header-sticky,
	.admin-bar .header-nav.header-nav-hidden, .admin-bar .header-sticky{
		top: 0px;
	}
}

.header-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}
.header-nav-overlay.active {
  visibility: visible;
  opacity: 1;
}


.menu a, .menu-item a {
	text-decoration: none;
}




@media (max-width: 991px) {
	.header-main-menu:not(.header-nav-mobile) .main-menu{
		display:none;
	}
}

.header-nav:not(.header-nav-hidden) .header-main-menu ul > li {
  display: inline-block;
  position: relative;
  margin-left: 20px;
  padding: 20px 0;
}

.header-main-menu ul > li > a {
	position: relative;
	display: block;
	padding: 5px 0;
	text-transform: capitalize;
	line-height:1;
}

.header-nav:not(.header-nav-hidden) .header-main-menu ul > li > a span.ddown-button {
  display:none;
}

.header-nav .header-main-menu ul > li .sub-menu{
  position: absolute;
  left: 0;
  top: 150%;
  width: 250px;
  height: auto;
  margin:0px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  text-align: left;
  border-radius: var(--vesper-border-radius-md);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  z-index: 99;
  transition: all 0.25s ease;
}

.header-nav .header-main-menu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 80px;
}

.header-nav .header-main-menu ul > li .sub-menu li a{
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
  line-height: 1.6;
  transition: all 0.125s ease;
  color:var(--vesper-text-color);
}

.header-main-menu ul > li .sub-menu li a{
	padding-left:15px;
}

.header-nav:not(.header-nav-hidden) .header-main-menu ul > li .sub-menu li{
  display: block;
  margin: 0;
  padding:5px 20px;
}


.header-nav .header-main-menu ul > li .sub-menu li a span.ddown-button{
  margin-left: auto;
}

.header-nav .header-main-menu ul > li .sub-menu li:last-child{
  border-bottom: 0;
  margin-bottom: 0;
}

.header-nav .header-main-menu ul > li .sub-menu li:last-child a {
  padding-bottom: 0;
}
.header-nav .header-main-menu ul > li .sub-menu li .sub-menu{
  left: 100%;
  top: 50%;
}
.header-nav .header-main-menu ul > li .sub-menu li:hover .sub-menu
 {
  top: 0%;
}

.header-nav.header-nav-hidden .header-main-menu {
  text-align: left;
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  transition-duration: 250ms;
  padding: 40px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 9999;
}

.header-nav.header-nav-hidden .header-main-menu.header-nav-mobile {
  left: 0;
}

.header-main-menu .main-menu ul{
	margin:0;
	padding:0;
}

.header-nav.header-nav-hidden .header-main-menu .main-menu ul li a {
  display: block;
  padding: 15px 0;
}

.header-main-menu:not(.header-nav-mobile) ul:not(.sub-menu) > li > a {
    background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
    background-size: 0% 1.5px, 0% 1.5px;
    background-position: 50% 100%, 50% 100%;
    background-repeat: no-repeat;
    transition: all 0.125s linear;
}


.header-main-menu:not(.header-nav-mobile) ul:not(.sub-menu) > li:hover > a {
    background-size: 100% 1.5px, 100% 1.5px;
}


.header-nav.header-nav-hidden .header-main-menu .main-menu ul li {
  display: block;
  margin: 0;
  border:none;
}

.header-nav.header-nav-hidden .header-main-menu .main-menu ul li:first-child{
	border:none;
}

.header-nav.header-nav-hidden .header-main-menu .main-menu ul li .sub-menu {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  padding: 0;
  box-shadow: none;
  border:none;
  background-color: transparent;
  visibility: visible;
  opacity: 1;
  display: none;
  transition: none;
}

.header-nav.header-nav-hidden .header-main-menu .main-menu ul li .sub-menu > li > a{
  padding: 10px 20px;
}

.header-nav.header-nav-hidden .header-main-menu .main-menu ul li .ddown-button {
	position: absolute;
	display: flex;
	align-items:center;
	justify-content: flex-end;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	border-radius: 0;
	z-index: 2;
	cursor: pointer;
	font-size: 16px;
}

.header-nav.header-nav-hidden .header-main-menu .main-menu.header-nav-mobile {
  left: 0;
}


.header-nav .navbar-toggler {
	display: none;
	margin:0;
	padding: 0;
	border-radius: 0;
	background-color: transparent;
	cursor: pointer;
  
}

@media (max-width: 991px) {
	.header-nav .navbar-toggler {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
}

.header-nav .navbar-toggler:hover span{
	background-color: var(--vesper-primary-color);
	transition: background-color 0.125s ease;
}

.header-nav .navbar-toggler span {
  position: relative;
  border-radius: 0;
  display: block;
  height: 2px;
  padding: 0;
  width: 25px;
  cursor: pointer;
  display: block;
  transition: all 0.25s ease;
  background-color: var(--vesper-menu-color);
}
.header-nav .navbar-toggler span:not(:first-child) {
  margin-top: 5px;
}
.header-nav .navbar-toggler.active span:nth-of-type(1) {
  transform: rotate3d(0, 0, 1, 45deg);
  top: 7px;
}
.header-nav .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}
.header-nav .navbar-toggler.active span:nth-of-type(3) {
  transform: rotate3d(0, 0, 1, -45deg);
  top: -7px;
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  animation: 250ms ease-in-out 0s normal none 1 running fadeInDown;
}

.header-sticky.not-sticky{
	display:none;
}

.header-nav:not(.header-sticky){
	background:none!important;
}

.header-nav:not(.header-nav-hidden) .header-main-menu{
	background:none!important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}


.header-button{
	display:flex;
}

.theme-header.no-button.with-icons .header-icons{
	margin-right:20px;
}

.theme-header.with-button.no-icons .header-button{
	margin-left:20px;
}

.header-button-main{
	display:none;
}

@media (min-width: 991px) {
    .header-button-main {
        display: block;
    }
}

.header-social-link{
	display:none;
	align-items: center;
    justify-content: space-evenly;
    margin: 30px 0 0 0;
    padding: 0;
	opacity:0;
}

@media (max-width: 991px) {
    .header-social-link {
        display: flex;
    }
}

.header-social-link a{
	display:flex!important;
	align-items:center;
	justify-content:center;
	text-decoration:none;
}

.header-social-icon{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.header-social-icon{
	font-size: 20px;
}

.header-social-icon a{
	display: flex;
    align-items: center;
    justify-content: center;
	width:40px;
	height:40px;
	padding:0;
	border-radius:50%;
	color: var(--vesper-secondary-color)!important;
	background: var(--vesper-primary-color);
	transition: all 0.125s ease;
}

.header-social-icon a:hover{
	color: var(--vesper-secondary-color);
	background: var(--vesper-primary-hover);
}

.header-icons{
	display: flex;
    gap: 20px;
	margin:0 20px;
	height:30px;
}


.header-nav.header-nav-hidden .header-main-menu.header-nav-mobile .header-social-link,
.header-nav.header-nav-hidden .header-main-menu.header-nav-mobile .header-button-mobile{
	opacity:1; /*fix*/
}

.header-minicart-icon,
.header-account-icon{
	position:relative;
}

.header-minicart-icon a,
.header-account-icon a{
	position:relative;
	display:block;
	height:100%;
	padding-top:2px;
	text-decoration:none;
}

.header-minicart-icon i,
.header-account-icon i{
	color:var(--vesper-menu-color);
	font-size:22px;
	cursor:pointer;
}

.header-minicart-icon:hover i,
.header-account-icon:hover i{
	color:var(--vesper-primary-color);
	transition: all 0.125s ease;
}

.header-minicart-total{
	position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    bottom: -8px;
    right: -8px;
    border-radius: 50%;
    font-size: 14px;
    background: var(--vesper-primary-color);
    color: var(--vesper-secondary-color);
}


.header-nav .header-site-logo-mobile{
	display:none;
	margin: 20px 0 30px 0;
	text-align:center;
}

.header-nav .header-button-mobile{
	display:none;
	align-items:center;
	justify-content:center;
	margin: 30px 0 0 0;
	opacity:0;
}

@media (max-width: 991px) {
	.header-nav-mobile .header-site-logo-mobile {
		display:block;
	}
	
	.header-nav-mobile .header-button-mobile  {
		display:flex;
	}
}

/* Header Nav Colors */
.theme-header, .header-nav, .header-main-menu,  .header-nav .header-main-menu ul > li .sub-menu{
	background:var(--vesper-smoke-color);
}

.theme-header.transparent-header{
	background:none!important;
}

.header-main-menu ul > li > a{
	color: var(--vesper-menu-color);
}

.header-main-menu:not(.header-nav-mobile) ul:not(.sub-menu) > li:hover > a,
.header-main-menu ul > li .sub-menu li:hover a,
.header-nav.header-nav-hidden .header-main-menu .main-menu ul li a:hover {
	color: var(--vesper-primary-color);
}

.theme-default-header,
.theme-default-header .header-main-menu ul > li .sub-menu{
	background-color: var(--vesper-smoke-color);
}

/* Default Header */
.admin-bar .theme-default-header {
    margin-top: 32px;
}

.default-header-heading{
	margin-bottom:0
}

.default-header-heading a,
.default-header-heading-mobile a{
	text-decoration:none;
}

.default-header-heading,
.default-header-heading-mobile{
	font-size:24px;
}



.header-site-name-mobile{
	display: none;
	margin: 0 0 30px 0;
	text-align: center;
}

@media (max-width: 991px) { 
	.theme-default-header .header-nav.header-nav-hidden{
		padding:0;
	}
	
	.header-nav-mobile .header-site-name-mobile{
		display:block;
	}
}

.theme-default-header .main-menu ul{
	margin:0;
	padding:0;
}


/* Footer */
.footer-one-section, .footer-two-section{
	background: var(--vesper-smoke-color);
}

.footer-two-section{
	text-align:center;
}

.footer-one-section{
	padding-bottom:45px;
}

@media (max-width: 767px) {
    .footer-one-section.section-wrapper {
        padding: 50px 25px 30px 25px;
    }
}

.footer-logo{
	text-align:center;
	padding-bottom:20px;
}

.footer-one-section .footer-logo,
.footer-one-section .footer-text{
	text-align:left;
}

.footer-social-link{
	margin:0;
	padding: 10px 0 0 0;
}

.footer-social-link a{
	text-decoration:none;
}

.footer-social-icon{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.footer-one-section .footer-social-icon{
	font-size: 20px;
}

.footer-social-icon a{
	display: flex;
    align-items: center;
    justify-content: center;
	width:50px;
	height:50px;
	margin:0 10px;
	padding:0;
	border-radius:50%;
	color: var(--vesper-secondary-color);
	background: var(--vesper-primary-color);
	transition: all 0.125s ease;
}

.footer-one-section .footer-social-icon a{
	width:40px;
	height:40px;
	margin: 0 5px;
}

.footer-social-icon a:hover{
	color: var(--vesper-secondary-color);
	background: var(--vesper-primary-hover);
}

.footer-menu{
	margin-bottom:30px;
}

@media (max-width: 1199px) {

	.footer-one-section .container > .row > div:nth-child(even){
		padding-left:40px;
	}
}

@media (max-width: 767px) {
	.footer-one-section .footer-social-link{
		margin-bottom:30px;
	}
	
	.footer-one-section .footer-menu {
		margin:10px 0;
	}
	
	.footer-one-section .container > .row > div:nth-child(even){
		padding-left:12px;
	}
}

.footer-menu-title{
	font-weight: 600;
    font-size: 20px;
    line-height: 1.1;
}

.footer-menu .sub-menu{
	display:none;
}

.footer-menu ul{
	padding: 0;
    margin: 0;
	list-style: none;
}

.footer-menu .menu-item{
	padding-bottom:10px;
}

.footer-copyright{
	padding:10px 0;
	border-top:1px solid var(--vesper-border-color);
	background: var(--vesper-smoke-color);
}

.footer-copyright-text{
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	text-align:center;
	
}

.footer-copyright .footer-copyright-text p{
	margin:0;
	padding:0;
	color:var(--vesper-heading-color);
	font-size:16px;
}


.default-footer{
	padding:10px 0;
	background: var(--vesper-smoke-color);
	font-size:16px;
	font-weight:600;
}

.footer-newsletter-text{
	margin-top: 10px;
}

/* Hero Banner */
.hero-one-wrapper{
	position:relative;
	padding:150px 0 75px 0;
	z-index:1;
}

.hero-one-content-box p {
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-one-content-box h2 {
  margin-bottom: 20px;
}

.hero-one-image-box{
	position:relative;
	z-index:1;
	text-align:center;
}

.hero-banner-buttons{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:0;
}

.hero-banner-buttons.with-buttons{
	gap:20px
}

.hero-one-wrapper.orientation-vertical .hero-one-image-box{
	margin-top:50px;
}

.hero-one-wrapper.orientation-vertical .hero-one-content-box{
	text-align:center;
}
	
.hero-one-wrapper.orientation-vertical .hero-banner-buttons{
	justify-content:center;
}

.hero-one-wrapper.orientation-vertical .video-image-box img,
.hero-one-wrapper.orientation-vertical .hero-one-image-box img{
	width:auto;
	max-height:600px;
}

.hero-one-wrapper .hero-banner-buttons{
	justify-content:left;
}

@media (max-width: 767px) {	
	.hero-one-wrapper{
		padding:125px 25px 50px 25px;
	}
}

@media (max-width: 991px){
	.hero-one-wrapper .video-image-box,
	.hero-one-image-box{
		margin-top:50px;
	}
	.hero-one-content-box{
		text-align:center;
	}
	
	.hero-one-wrapper .hero-banner-buttons{
		justify-content:center;
	}
	
	.video-image-box img,
	.hero-one-image-box img{
		width:auto;
		max-height:600px;
	}
}

/* Slick Slider */
.slick-slider-section{
	opacity:0;
	transition: opacity 125ms ease-in-out;
}

.slick-arrow:before{
	font-family:none;
	font-size:24px;
	font-weight:bolder;
	color: var(--vesper-heading-color);
}

.slick-dotted.slick-slider{
	margin-bottom:0;
}

.slick-dots{
	display: flex;
    align-items: center;
    justify-content: center;
	bottom:25px;
}

.slick-dots li button:before{
	color:var(--vesper-heading-color);
	font-size:12px;
}

/* Logo Slider */
.logo-slider-one-section{
	padding:20px 0;
	position:relative;
	transition: opacity 250ms ease-in-out;
}

.logo-slider-one-section .section-text{
	margin-bottom:30px;
}

.logo-slider-two-section{
	padding:0;
}

.logo-slider-two-wrapper{
  padding: 25px;
  border-radius: var(--vesper-border-radius-xl);
}

.logo-slider {
  overflow:hidden;
}

.logo-slider .slick-track {
  display: flex;
  align-items: center;
}

.logo-slider .slick-slide {
  margin: 0 20px;
}

.logo-slider-one-wrapper,.logo-slider-two-wrapper{
	background:var(--vesper-smoke-color);
	pointer-events:none;
}

/* Info Cards */
.info-cards-section{
	padding-bottom:50px;
	
}

.info-card {
	padding: 30px 40px 23px;
    border-radius: var(--vesper-border-radius-md);
	margin-bottom:20px;
	
}

.info-card .icard-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 65px;
    min-height: 65px;
	margin-bottom: 20px;
	border-radius: 50%;
	font-size: 30px;
	background: var(--vesper-primary-color);
}

.icard-icon i{
	color: var(--vesper-smoke-color);
}

.info-card h5{
  color: var(--vesper-heading-color);
}

.info-card-image{
	position:relative;
	width:100%;
	margin-bottom:20px;
	border:1px solid var(--vesper-smoke-color);
	border-radius: var(--vesper-border-radius-md);
}

.team-member-image,
.icard-steps-thumbnail,
.info-card-image .icard-image{
	position:relative;
	width:100%;
	height:auto;
}

.info-card-image .icard-image img {
	border-radius: var(--vesper-border-radius-md) var(--vesper-border-radius-md) 0 0;
	width:100%;
	height: 100%;
	object-fit: fill;
	object-position: center;
}

.info-card-image .icard-content {
  padding: 21px 24px 24px;
  border-radius: 0 0 var(--vesper-border-radius-md) var(--vesper-border-radius-md);
}
.info-card-image .icard-content h4 {
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.info-card-image .icard-content p {
  font-size: 16px;
}

.info-card-image.no-content img{
	border-radius: var(--vesper-border-radius-md);
}
.info-card-image.no-content .icard-content{
	display:none;
}

.info-card,
.info-card-image .icard-content{
	background:var(--vesper-smoke-color);
}

/* Info Card Steps */
.icard-steps-item {
	margin-bottom:40px;
	text-align:center;
}

.icard-steps-thumbnail{
	text-align: center;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.icard-steps-thumbnail img{
	border-radius: var(--vesper-border-radius-md);
}

.icard-steps-content {
    padding-top: 10px;
	text-align:left
}

.icard-steps-content span {
    flex: 0 0 auto;
    width: 60px;
	font-weight:700;
	font-size:48px;
	font-family: monospace!important;
    line-height: 1;
    -webkit-text-stroke: 2px var(--vesper-heading-color);
    color: transparent;
}

.icard-steps-content h5 {
    font-size: 22px;
    margin-bottom: 13px;
}


/* Blog Post */
.blog-post-section{
	padding-bottom:35px
}

.blog-post-title{
	margin-bottom:50px;
}

.post-meta a {
  text-transform: capitalize;
}

.post-meta span {
  display: inline-flex;
  line-height: 1;
  font-size: 14px;
}
.post-meta span:not(:last-child) {
  margin-right:10px;
}

.post-meta span i {
  margin-right: 10px;
  color:var(--vesper-text-color);
  background: transparent;
}

.blog-post-item{
	margin: 0 10px 30px 10px;
}

.blog-post-button-mobile{
	display:none;
}

@media (max-width: 991px) {
	.blog-post-title{
		text-align:center;
		margin-bottom:30px;
	}
	.blog-post-button-mobile{
		display:inline-flex;
		float:right;
	}
	.blog-post-button{
		display:none;
	}
}

.blog-post-item .post-thumbnail {
  position: relative;
}

.blog-post-item .post-thumbnail a {
	display: block;
	max-height: 400px;
	overflow: hidden;
}

.blog-post-item .post-thumbnail img {
  width: 100%;
  border-radius: var(--vesper-border-radius-md);
}

.blog-post-item .post-thumbnail .post-categories {
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 4px 8px;
	background: var(--vesper-primary-color);
	color: var(--vesper-secondary-color);
	border-radius: var(--vesper-border-radius-sm);
	font-size: 14px;
	line-height: 1.5;
	pointer-events: none;
}

.blog-post-item .post-title {
  font-size: 20px;
  line-height: 1.1;
  margin-top: 15px;
  margin-bottom:0;
}

.blog-post-item .post-title a{
	display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-post-item h3.title{
	font-size: 24px;
	line-height: 1.2;
	margin-bottom: 15px;
} 

.blog-post-single .post-thumbnail img{
	border-radius: var(--vesper-border-radius-md) var(--vesper-border-radius-md) 0 0;
}

.read-more-button{
	margin:20px 0 0 0;
}

/* Search Form */
.single-search-inner,
.widget-search-form .search-form {
	position:relative;
}

.single-search-inner button, .widget-search-form .search-form button{
	position:absolute;
	top:0;
	right:0;
	height:50px;
}

.single-search-inner button:hover, 
.widget-search-form .search-form button:hover{
	color: var(--vesper-secondary-color);
	background:var(--vesper-primary-hover);
}

.single-search-inner input,
.widget-search-form .search-form input{
	width:100%;
	height:50px;
	padding:0 70px 0 10px;
	border-radius:var(--vesper-border-radius-sm);
	border: 1px solid var(--vesper-primary-color);
	color: var(--vesper-black-color);
	background:var(--vesper-white-color);
}

.single-search-inner input::placeholder,
.widget-search-form .search-form input::placeholder{
	color: var(--vesper-text-color);
}

.single-search-inner button,
.widget-search-form .search-form button{
	width:60px;
	color:var(--vesper-secondary-color);
	background:var(--vesper-primary-color);
	border-radius:0 var(--vesper-border-radius-sm) var(--vesper-border-radius-sm) 0;
}

/* CTA */
.cta-section-wrapper{
	background:var(--vesper-smoke-color);
}

.cta-one-wrapper {
  padding: 50px;
  border-radius: var(--vesper-border-radius-xl);
}

.cta-one-wrapper .image-one{
	max-height:400px;
	border-radius: var(--vesper-border-radius-md);
}

.cta-two-wrapper,
.cta-three-wrapper{
	position:relative;
	padding: 100px 0;
	z-index:1;
}

.cta-three-content-box{
	text-align:left;
}

.cta-three-content-right{
	padding-right:20px;
}
.cta-three-content-left{
	padding-left:20px;
}

.cta-two-content-box p,
.cta-three-content-box p {
  margin-bottom: 30px;
  line-height: 1.4;
}

.cta-two-content-box h2 {
	margin-bottom:20px;
}

.cta-four-wrapper {
  padding: 50px 35px 35px 35px;
  border-radius: var(--vesper-border-radius-xl);
}

@media (max-width: 991px) {
	
	.cta-one-wrapper {
		padding: 50px 25px;
	}
	
	.cta-one-wrapper .section-text{
		text-align:center;
	}
	
	.cta-two-section .cta-two-wrapper,
	.cta-three-section .cta-three-wrapper{
		padding: 50px 0;
	}
	
	.cta-three-content-right{
		padding-right:12px;
	}

	.cta-three-content-left{
		padding-left:12px;
	}
}


@media (max-width: 767px) {
	.cta-three-content-box{
		text-align:center;
	}
	
	.cta-three-content-box h2 {
		margin-bottom:20px;
	}
}

/* cta download */
.cta-dload-wrapper {
  padding: 50px 35px;
  border-radius: var(--vesper-border-radius-xl);
  background:var(--vesper-smoke-color);
}

.cta-dload-buttons{
	display:flex;
	justify-content:center;
	gap:20px;
}

.cta-dload-buttons i {
	font-size:20px;
	margin-right:10px;
}

.cta-dload-image-box{
	position:relative;
	width:100%;
	border-radius: var(--vesper-border-radius-md);
	z-index:1;
}

.cta-dload-image-box .cta-image {
  position: absolute;
  top: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  min-height:400px;
  max-height:400px;
}

.cta-dload-image-box .cta-image {
	border-radius: var(--vesper-border-radius-md);
	animation: moveY 2s infinite;
}

.cta-dload-image-box.no-effect .cta-image {
	animation: none;
}

@media (max-width: 991px) {

	.cta-dload-image-box{
		height:100%!important;
		text-align:center;
		margin-top:30px;
	}
	
	.cta-dload-image-box .cta-image{
		position:relative;
		top:0;
		left:0;
		min-height: unset;
		margin-top:0;
		transform:none;
		animation:none;
	}
	
	.cta-dload-two, .cta-dload-buttons{
		justify-content:center;
	}
	
	.cta-dload-content{
		text-align:center;
	}
}

@media (max-width: 576px) {
	.cta-dload-image-box .cta-image{
		min-height: unset;
	}
}

.cta-dload-two .cta-dload-buttons{
	justify-content: left;
}

@media (max-width: 576px) {
	.cta-dload-buttons{
		flex-direction:column;
	}
}


/* Video */
.video-wrapper{
	padding:50px 50px 0px 50px;
	border-radius: var(--vesper-border-radius-xl);
}

@media (max-width: 768px) {
  .video-wrapper{
    padding:25px 25px 0 25px;
  }
}

.video-content-box{
	padding-left:50px;
}

@media (max-width: 1199px) {
  .video-wrapper .video-content-box {
    padding-left:0;
	padding-bottom:0;
  }
}

.video-image-box {
  position: relative;
  z-index:1;
  max-width:640px;
  margin: 0 auto 50px auto;
}

.video-image-box img {
  width: 100%;
  border-radius: var(--vesper-border-radius-md);
}

.video-image-box .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-play-button .video-popup-button{
	display: flex;
    align-items: center;
    justify-content: center;
	width: 90px;
    height: 90px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
	text-decoration:none;
	color:var(--vesper-secondary-color);
	background:var(--vesper-primary-color);
    box-shadow: 0 0 0 0 rgb(0, 0, 0);
    transform: scale(1);
    animation: pulse 2s infinite;
}

.video-play-button .video-popup-button:hover,
.video-play-button .video-popup-button:focus,
.video-play-button .video-popup-button:visited{
	color:var(--vesper-secondary-color);
	background:var(--vesper-primary-hover);
}

@keyframes pulse {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.8);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.video-content-box .list-feature{
	margin:0 0 50px 0;
	padding:0;
}



/* Subscribe Form */
.subscribe-one-wrapper {
	padding: 75px 25px;
	border-radius: var(--vesper-border-radius-xl);

}

@media (max-width: 991px) {
	.subscribe-one-wrapper {
		background-size: cover;
	}
}

.subscribe-two-wrapper{
	position:relative;
	padding: 50px 25px;
	z-index:1;
}

.subscribe-one-content-box p,
.subscribe-two-content-box p {
  margin-bottom: 30px;
  line-height: 1.4;
}

.subscribe-one-content-box h2,
.subscribe-two-content-box h2 {
	margin-bottom:20px;
}

.subscribe-form{
	position:relative;
}

.subscribe-form .theme-button{
	position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 var(--vesper-border-radius-sm) var(--vesper-border-radius-sm) 0;
    font-size: 14px;
    line-height: 1.1;
}

.subscribe-form input,
.subscribe-form p{
	margin:0!important;
}

.subscribe-one-wrapper, .subscribe-two-section{
	background:var(--vesper-smoke-color);
}

/* Features */
.features-one-section,
.features-three-section{
	padding-bottom:25px
}

.features-two-section,
.features-four-section{
	padding-bottom:45px
}

.features-one-section .section-text,
.features-two-section .section-text,
.features-three-section .section-text,
.features-four-section .section-text{
	margin-bottom:30px;
}

.features-one-section .features-content-box,
.features-two-section .features-content-box,
.features-three-section .features-content-box,
.features-four-section .features-content-box{
	padding:0 50px;
}

.features-one-section .features-content-box,
.features-three-section .features-content-box{
	margin-bottom:50px;
}

@media (max-width: 767px) {
	.features-one-section .features-content-box,
	.features-two-section .features-content-box,
	.features-three-section .features-content-box,
	.features-four-section .features-content-box{
		padding:0;
	}
}

.features-one-section .features-content,
.features-three-section .features-content {
	display: flex;
    align-items: flex-start;
	margin-bottom:30px;
}

.features-two-section .features-content,
.features-four-section .features-content {
  display: flex;
  align-items: flex-start;
  margin-bottom:30px;
}

.features-one-section .features-content span {
    display:inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 65px;
    min-height: 65px;
    min-height: 65px;
	margin-right: 20px;
    border-radius: 50%;
    font-size: 30px;
    background: var(--vesper-primary-color);
    color: var(--vesper-secondary-color);
}

.features-one-section .features-content span svg{
	fill: var(--vesper-secondary-color);
    width: 30px;
    height: 30px;
    stroke-width: 1;
}

.features-two-section .features-content span {
	flex: 0 0 auto;
	width: 60px;
	margin-right: 25px;
	font-weight:700;
	font-size:64px;
	font-family: monospace!important;
	line-height: 1;
	-webkit-text-stroke: 2px var(--vesper-primary-color);
	color: transparent;
}

.features-content h5 {
	margin-bottom: 0;
}

.features-image-box{
	display:flex;
	justify-content:center;
	max-width:100%;
	margin-bottom:30px;
}

.feature-image{
	position:relative;
	z-index:1;
}

.feature-image img{
	border-radius: var(--vesper-border-radius-md);
}


.bgfx-square.features-one-section .features-image-box,
.bgfx-square.features-three-section .features-image-box{
	margin-left:-50px;
}

.bgfx-square .feature-image:after{
	content: "";
	position: absolute;
	top: 0;
	width: 90%;
	height: 90%;
	z-index: -1;
	border: 1px solid var(--vesper-primary-color);
	border-radius: var(--vesper-border-radius-md);
	background:var(--vesper-accent-color);
}


.bgfx-square.features-one-section .feature-image:after,
.bgfx-square.features-three-section .feature-image:after{
	right: -50px;
}


.bgfx-square.features-two-section .feature-image:after,
.bgfx-square.features-four-section .feature-image:after{
	left: 0;
}

@media (min-width: 1199px) {
	.bgfx-square.features-one-section,
	.bgfx-square.features-three-section{
		padding-right:75px;
	}
}

.bgfx-square .feature-image{
	position: relative;
	width:100%;
	padding-top: 50px;
	padding-left: 50px;
	z-index: 1;
}

.bgfx-square .feature-image img{
	width:100%;
}

@media (max-width: 767px){
	.bgfx-square.features-one-section .feature-image, 
	.bgfx-square.features-three-section .feature-image{
		padding-top: 30px;
		padding-left: 0;
	}
	
	.bgfx-square.features-two-section .feature-image, 
	.bgfx-square.features-four-section .feature-image{
		padding-top: 30px;
		padding-left: 30px;
	}
	
	.bgfx-square.features-one-section .features-image-box, 
	.bgfx-square.features-three-section .features-image-box{
		margin-left:0;
		margin-right:30px;
	}
	
	.bgfx-square.features-one-section .features-image-box .feature-image:after, 
	.bgfx-square.features-three-section .features-image-box .feature-image:after{
		right: -30px;
		width:100%;
	}
}

.bgfx-blob .feature-image:after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 90%;
	z-index: -1;
	border: 1px solid var(--vesper-primary-color);
	background:var(--vesper-accent-color);
}

.bgfx-blob.features-one-section .feature-image:after,
.bgfx-blob.features-three-section .feature-image:after{
	animation: morph 12s ease-in-out infinite;
}

.bgfx-blob.features-two-section .feature-image:after,
.bgfx-blob.features-four-section .feature-image:after{
	animation: morph 12s ease-in-out infinite reverse;
}

@keyframes morph{
  0%,100%{
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  }
  34%{
      border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
  }
  67%{
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60% ;
  }
}

.list-feature{
	margin:0 0 40px 0;
	padding:0;
}

.list-feature li {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size:20px;
	color: var(--vesper-heading-color);
}

.list-feature  li:not(:last-child) {
  margin-bottom: 16px;
}

.list-feature li i{
	font-size:20px;
	margin-right:10px;
}

/* Team */
.team-section{
	padding-bottom:45px;
}

@media (max-width: 767px) {
	.team-section{
		padding-bottom:25px;
	}
}

.team-member{
	margin-bottom: 30px
}

.team-member-image img {
  width: 100%;
  border-radius: var(--vesper-border-radius-md);
}

.team-member-info {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-left: 18px;
  margin-right: 18px;
  margin-top: -50px;
  padding: 20px;
  border-radius: var(--vesper-border-radius-sm);
  background: var(--vesper-smoke-color);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.team-member-content h5 {
  margin-bottom: 8px;
}

/* Image Tabs */
.image-tabs-nav{
	margin-bottom:50px;
}

.image-tabs-nav .nav-tabs {
	display:flex;
	align-items: center;
	border-bottom: none;
	justify-content: center;
	gap:20px;
}


.image-tabs-nav .nav-link {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height:40px;
	border:none;
	border-radius: var(--vesper-border-radius-sm);
	padding: 12px 16px;
	font-weight:600;
	font-size:16px;
	box-shadow: none;
	text-decoration: none;
	border: 1px solid var(--vesper-primary-color);
	color: var(--vesper-primary-color);
	background: transparent;
	transition: all 0.125s ease-in-out;
	cursor:pointer;
}

.image-tabs-nav .nav-link:hover,
.image-tabs-nav .nav-link.active{
	border: 1px solid var(--vesper-primary-color);
	color: var(--vesper-secondary-color);
	background: var(--vesper-primary-color);
}

.tab-box .tab-box-image {
  margin: 0 auto;
  max-width: 907px;
}

.tab-box .tab-box-image img {
	border-radius: var(--vesper-border-radius-md);
 
}

/* Gallery */
.gallery-one-section{
	padding-bottom:55px;
}

.gallery-one-section .gallery-image-wrapper{
	padding:0 5px;
}

.gallery-one-section .gallery-image{
	position:relative;
	width:100%;
	height:300px;
	margin-bottom:10px;
	border-radius: var(--vesper-border-radius-md);
}

.gallery-one-section .gallery-image img {
	width: 100%;
	height: 100%;
	border-radius: var(--vesper-border-radius-md);
	object-fit: cover;
	object-position: center;
}

@media (max-width: 576px){
	.gallery-one-section .gallery-image{
		height:200px;
	}
}

.gallery-two-section .gallery-image-box {
    display: grid;
    gap: 10px;
    width: 100%;
}

.gallery-two-section .gallery-image-box .gallery-image {
	position:relative;
    width: 100%;
}

.gallery-two-section .gallery-image-box .gallery-image img{
	width: 100%;
    height: 100%;
    border-radius: var(--vesper-border-radius-md);
    object-fit: cover;
    object-position: center;
}

@media (max-width: 767px){
	.gallery-two-section .gallery-image-box .gallery-image  {
        height: 200px;
    }
}

@media only screen and (min-width: 567px) {
    .gallery-two-section .gallery-image-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
	.gallery-two-section .gallery-image-box .gallery-image  {
        height: 200px;
    }
}




@media only screen and (min-width: 767px) {
    .gallery-two-section .gallery-image-box {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 150px);
    }
    .gallery-two-section .gallery-image-box .gallery-image {
        &:nth-of-type(2) { grid-column: 2 / span 2; }
        &:nth-of-type(3) { grid-column: 4 / 4; grid-row: 1 / span 3 }
        &:nth-of-type(4) { grid-column: 1 / 1; grid-row: 2 / span 2 }
        &:nth-of-type(6) { grid-column: 3/3; grid-row: 2 / span 2 }
    }
}

/* Image Overlay Effect */
.gallery-one-section .gallery-image::after,
.gallery-two-section .gallery-image::after{
	content: "";
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border-radius: var(--vesper-border-radius-md);
    background: var(--vesper-black-color);
    opacity: 0.3;
	z-index:1;
	transition: all 0.25s ease;
} 

.gallery-one-section .gallery-image:hover::after,
.gallery-two-section .gallery-image:hover::after{
    opacity: 0;
	pointer-events:none;
} 


/* FAQs */
.faq-one-section{
	padding:75px 0;
}

.faq-one-wrapper {
  padding: 75px 25px;
  border-radius: var(--vesper-border-radius-xl);
}

.faq-image-box{
	display:flex;
	justify-content:center;
	max-width:100%;
	margin-bottom:40px;
}

.faq-image{
	position:relative;
	z-index:1;
}

.faq-image img{
	border-radius: var(--vesper-border-radius-md);
}

.faq-two-wrapper{
	position:relative;
	padding: 50px 25px;
	z-index:1;
}

@media (max-width: 767px) {
	.faq-one-section{
		padding:50px 0;
	}
}

.faq-one-wrapper,.faq-two-section{
	background:var(--vesper-smoke-color);
}

/* Accordion */
.accordion-card .accordion-header h5 {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.accordion-card .accordion-header h5:after {
	content: "\f068";
	margin-left: auto;
	padding-left:10px;
	font-family: "Font Awesome 5 Pro" !important;
	font-weight: 400;
	font-size: 20px;
	color: var(--vesper-heading-color);
	transition: all 0.4s ease;
}

.accordion-card .accordion-header h5.collapsed:after {
  content: "\f067";
}

/* Pricing */
.pricing-section{
	padding-bottom:45px;
}

.pricing-item-card{
	padding:20px;
	padding-top:30px;
	margin-bottom:30px;
	border-radius: var(--vesper-border-radius-md);
	border:1px solid transparent;
	background:var(--vesper-smoke-color);
	transition: all 0.125s ease;
}

.pricing-item-card:hover{
	border:1px solid var(--vesper-heading-color);
}

.pricing-item-card:hover .pricing-item-info{
	color:var(--vesper-heading-color);
}

.pricing-item {
	padding-bottom:30px;
	border-bottom:1px solid var(--vesper-border-color);
}

.pricing-item-card:hover .pricing-item{
	border-bottom:1px solid var(--vesper-heading-color);
}

.pricing-item-price{
	margin-bottom:20px;
}

.pricing-item-info{
	margin-top:20px;
	/*color:var(--vesper-primary-color);*/
}

.pricing-item-checklist{
	margin: 0 0 10px 0;
	padding: 0 20px;
}

.pricing-item-checklist li {
  display: flex;
  align-items: flex-start;
  height:30px;
  font-size: 18px;
}
.pricing-item-checklist li:not(:last-child) {
  margin-bottom: 20px;
}
.pricing-item-checklist li i {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 30px;
	height: 30px;
}

/* List Item */
.list-item{
	margin:0;
	padding:0;
}

.list-item li {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size:20px;
	color: var(--vesper-primary-color);
}

.list-item  li:not(:last-child) {
  margin-bottom: 16px;
}

.list-item  li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  background: var(--vesper-primary-color);
}

/* Testimonial */
.testimonial-item-card {
  padding: 30px 20px;
  margin:0 10px 30px 10px;
  border-radius: var(--vesper-border-radius-md);
  background:var(--vesper-smoke-color);
}

.testimonial-author{
	display: flex;
	margin-bottom:15px;
}

.testimonial-author-thumb {
  width: 55px;
  flex: 0 0 auto;
  margin-right: 15px;
}

.testimonial-author-thumb img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.testimonial-author-info h6 {
	color:var(--vesper-heading-color);
	margin-bottom: 8px;
}

.testimonial-author-info span{
	color:var(--vesper-heading-color);
}


.testimonial-content p {
  color:var(--vesper-text-color);
  margin-bottom:10px;
  text-align:center;
}

.testimonial-ratings ul{
	margin: 0;
    padding: 0;
    text-align: center;
}

.testimonial-ratings li {
  display: inline-block;
}

.testimonial-ratings i {
  color: var(--vesper-heading-color);
}

/* Contact Form 7 */
.vesper-form input::placeholder,
.vesper-form textarea::placeholder{
	color:var(--vesper-text-color);
	opacity:0.3;
	font-size:16px;
}

.vesper-form input,
.vesper-form textarea{
	width:100%;
	height:40px;
	padding: 12px 18px;
	margin-bottom: 30px;
	border-radius: var(--vesper-border-radius-sm);
	border:1px solid var(--vesper-primary-color);
	outline: none;
	font-size:16px;
	color: var(--vesper-black-color);
	background:var(--vesper-white-color);
}

.vesper-form textarea{
	height: 140px;
}

.vesper-form input:focus,
.vesper-form textarea:focus{
	border:1px solid var(--vesper-primary-color);
	outline: none;
	box-shadow:none;
}

.contact-one-wrapper {
	padding: 75px 25px 60px 25px;
	border-radius: var(--vesper-border-radius-xl);
	background:var(--vesper-smoke-color);
}

@media (max-width: 767px) {
    .contact-one-wrapper {
        padding: 50px 25px 35px 25px;
    }
}

.contact-two-wrapper{
	position:relative;
	padding: 50px 25px;
	z-index:1;
	background:var(--vesper-smoke-color);
}

/* Back to top */
.back-to-top {
	position: fixed;
	display: none;
	right: 30px;
	border-radius: 50%;
	bottom: 30px;
	width: 50px;
	height: 50px;
	line-height:50px;
	font-size: 20px;
	text-align: center;
	text-decoration: none;
	color: var(--vesper-secondary-color);
	background-color: var(--vesper-primary-color);
	cursor: pointer;
	transition: 0.25s;
	z-index: 999;
}

.back-to-top:hover{
	background-color: var(--vesper-primary-hover);
}


/* About Us */
.facts-section{
	padding-bottom:45px;
}

.facts-section .section-text{
	margin-bottom:30px;
}

.facts-content{
	margin-bottom:30px;
	text-align:center;
}

.facts-content h6{
	color:var(--vesper-text-color);
}


.facts-two-content-right{
	padding-right:20px;
}

.facts-two-content-left{
	padding-left:20px;
}

@media (max-width: 991px) {
	.facts-two-content-right{
		padding-right:12px;
	}

	.facts-two-content-left{
		padding-left:12px;
	}
}

.facts-two-content-box .section-text,
.facts-two-content-box .facts-content{
	text-align:left;
}

@media (max-width: 991px) {
	.facts-two-content-box .section-text,
	.facts-two-content-box .facts-content{
		text-align:center;
	}
}
.about-team-gallery{
	display:flex;
	align-items:center;
	justify-content:center;
	margin-top: 0;
	margin-bottom:30px;
}

.facts-two-section .about-team-gallery{
	justify-content:flex-start;
}

@media (max-width: 991px) {
	.facts-two-section .about-team-gallery{
		justify-content:center;
	}
}

.about-team-member{
	margin-right:-15px;
}

.about-team-member img{
	width: 50px;
    height: 50px;
    border-radius: 50%;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

@media (max-width: 576px) {
	.about-team-gallery .about-team-member{
		margin-right:-15px;
	}
	.about-team-gallery .about-team-member img{
		width: 40px;
		height: 40px;
	}
	.about-team-gallery .about-team-button,
	.about-team-gallery .about-team-button:focus,
	.about-team-gallery .about-team-button:active,
	.about-team-gallery .about-team-button:visited{
		width: 40px;
		height: 40px;
	}
}

.about-team-button,
.about-team-button:focus,
.about-team-button:active,
.about-team-button:visited{
	width: 50px;
    height: 50px;
	color: var(--vesper-secondary-color);
	background:var(--vesper-primary-color);
    border-radius: 50%;
	box-shadow: 0 0 5px rgba(0,0,0,0.1)!important;
}

.about-team-button:hover{
	background: var(--vesper-primary-hover);
	color:var(--vesper-secondary-color);
}

/* Pagination */
.wp-pagination{
  display: flex;
  justify-content:center;
  gap: 10px;
  width: 100%;
  text-align: center;
}

@media (max-width: 991px) {
	.wp-pagination {
		margin-bottom:30px;
	}
}

.wp-pagination a,
.wp-pagination span{
	display: inline-block;
	width: 40px;
	height: 40px;
	padding: 0;
	text-align: center;
	line-height:40px;
	font-size: 14px;
	text-decoration:none;
	font-weight: 600;
	border-radius: var(--vesper-border-radius-sm);
	border: 1px solid var(--vesper-border-color);
	color: var(--vesper-primary-color);
	background-color: var(--vesper-secondary-color);
}

.wp-pagination span.current{
	color: var(--vesper-secondary-color);
	background: var(--vesper-primary-color);
}

.wp-pagination a:hover{
    color: var(--vesper-secondary-color);
    background: var(--vesper-primary-color);
}

/* Page Banner */
.page-banner .page-banner-wrapper {
  position: relative;
  background-color: var(--vesper-primary-color);
  padding: 200px 0 115px;
  z-index: 1;
}

.page-banner {
	margin-bottom:-65px;
}

@media (max-width: 767px) {
	.page-banner .page-banner-wrapper {
		padding: 150px 0 55px;
	}
  
	.page-banner {
		margin-bottom:0;
	}
	
	.no-page-banner{
		padding-bottom:75px;
	}
}

.banner-breadcrumb-content{
	position:relative;
	text-align:center;
	z-index:1;
}


@media (max-width: 767px) {
  .page-banner .banner-breadcrumb-content .banner-breadcrumb-list{
	  display:none;
  }
}

.banner-breadcrumb-content .banner-breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin:0;
  padding:0;
}
.banner-breadcrumb-content .banner-breadcrumb-list a.dot, .banner-breadcrumb-content .banner-breadcrumb-list span.dot {
  margin-left: 10px;
  margin-right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.banner-breadcrumb-title {
	margin-bottom: 0;
	text-transform: capitalize;
	color:var(--vesper-secondary-color);
}

.banner-breadcrumb-title.with-breadcrumb {
	margin-bottom: 15px;
}

.banner-breadcrumb-content .banner-breadcrumb-list li {
  text-transform: capitalize;
  list-style: none;
  color:var(--vesper-secondary-color);
}

.banner-breadcrumb-content .banner-breadcrumb-list li.current{
	font-weight:bolder;
}


.banner-breadcrumb-content .banner-breadcrumb-list li a {
	display: inline;
	padding-bottom:5px;
	background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
	background-size: 0% 1.5px, 0% 1.5px; 
	background-position: 50% 100%, 50% 100%;
	background-repeat: no-repeat;
	transition: background-size 0.125s linear;
	color:var(--vesper-secondary-color);
	text-decoration:none;
}

.banner-breadcrumb-content .banner-breadcrumb-list li a:hover {
  background-size: 0% 1.5px, 100% 1.5px;
  color:var(--vesper-secondary-color);
  text-decoration:none;
}

.banner-breadcrumb-content .banner-breadcrumb-list li:not(:last-child):after {
  content: "";
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--vesper-secondary-color);
  top: -2px;
}

/* Page Template */
.vesper-page-section{
	padding:125px 0 50px 0;
}

@media (max-width: 767px) {
	.vesper-page-section{
		padding:50px 25px;
	}
}

.vesper-page-title{
	margin-bottom:30px;
}

.vesper-shop-page h1.page-title{
	display:none;
}

.vesper-product-page.vesper-page-no-banner{
	padding-top:150px;
}

/* Categories */
.vesper-cat-and-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--vesper-border-color);
  text-transform: capitalize;
}
.vesper-cat-and-tag span {
  color: var(--vesper-heading-color);
  font-size: 20px;
  margin-right: 5px;
  font-weight: 700;
}

.vesper-cat-and-tag .cats a {
  display: inline-block;
  margin:5px 0;
  padding: 4px 16px;
  border: 1px solid var(--vesper-text-color);
  font-weight: 400;
  font-size:16px;
  border-radius: 50px;
  margin-right: 7px;
  text-decoration:none;
  
}
.vesper-cat-and-tag .cats a:hover {
  color: var(--vesper-secondary-color);
  background: var(--vesper-primary-color);
  border-color: var(--vesper-primary-color);
}

.vesper-cat-and-tag .tags a:not(:last-child)::after {
  content: ",";
}

.vesper-cat-and-tag .tags a:hover {
  color: var(--vesper-primary-color);
}

/* Blog Comment */
.blog-comment h3 {
  margin-bottom: 30px !important;
  font-size: 36px;
}
.blog-comment span.says {
  display: none;
}



.blog-comment .comment-list {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.blog-comment .comment-list li {
  position: relative;
}

.comment-list .reply, .comment-list .comment-metadata, .comment-list .comment-content{
	margin-top:-20px;
	margin-bottom:50px;
	padding-left: 70px;
}

@media (max-width: 991px) {
	.comment-list .reply, .comment-list .comment-metadata, .comment-list .comment-content{
		margin-bottom:30px!important;
	}
}

.comment-author.vcard{
	display: flex;
	align-items: start;
	flex-wrap: wrap;
}

.blog-comment .comment-author.vcard .fn {
  margin-right: 5px;
  font-size: 20px;
  color: var(--vesper-primary-color);
  font-weight: 600;
  text-transform: capitalize;
}

.blog-comment .comment-author.vcard .fn a {
  transition: 0.25s;
  color: var(--vesper-heading-color);
  text-decoration:none;
}

.blog-comment .comment-author.vcard .fn a:hover {
  color:var(--vesper-primary-color);
}

.blog-comment .comment-metadata {
  margin-top: -20px;
  margin-bottom: 20px;
  font-size:14px;
}

@media (min-width: 991px) {
	.blog-comment .comment-reply-link {
		margin-top: 0;
		position: absolute;
		top: 0;
		right: 0;
	}
	
}

.blog-comment .comment-reply-link {
    margin-bottom:30px;
	border-radius:30px;
}


.comment-form textarea {
	width: 100%;
	height: 140px;
    margin-bottom: 20px;
	padding: 20px;
	font-size: 20px;
	border-radius: var(--vesper-border-radius-sm);
    border: 1px solid var(--vesper-primary-color);
    color: var(--vesper-black-color);
	background: var(--vesper-smoke-color);
}

.comment-form textarea::placeholder,
.single-input-inner input::placeholder{
	color:var(--vesper-text-color);
}

.single-input-inner input{
	height: 50px;
    margin-bottom: 20px;
	padding: 20px;
	font-size: 20px;
	border-radius: var(--vesper-border-radius-sm);
    border: 1px solid var(--vesper-primary-color);
    color: var(--vesper-black-color);
	background: var(--vesper-smoke-color);
}

.comment-form .comment-submit-button{
	border:none;
}

@media (max-width: 991px) {
	.comment-form .comment-submit-button {
		margin-bottom:0;
	}
}


.comment-form-cookies-consent {
  display: flex;
  align-items:center;
  height:20px;
  gap: 10px;
  font-size:14px;
}

.comment-form-cookies-consent,
.comment-form .logged-in-as {
  margin-bottom: 24px;
}

.comment-form .logged-in-as {
  margin-top: -16px;
  font-size:14px;
}

.comment-form .form-submit {
  margin-bottom: 0 !important;
}

.comment-form.logged-in-as a:hover {
  color: var(--vesper-primary-color);
}

.comment-form-title{
	display:flex;
	align-items: center;
}

.comment-form-title small{
	margin-top:-10px;
}

#cancel-comment-reply-link {
  margin-left:20px;
}


/* Blog Details */
.vesper-page-section .post-meta{
	margin-bottom:20px;
}

.vesper-page-section .single-blog-inner,
.blog-post-single.blog-post-item{
  border: 1px solid var(--vesper-border-color);
  border-radius: var(--vesper-border-radius-md);
  padding: 35px 35px;
  overflow: hidden;
}
.vesper-page-section .thumb {
  margin-top: -35px;
  margin-left: -36px;
  margin-right: -36px;
  margin-bottom: 30px;
}

.vesper-page-section .thumb img{
	width:100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vesper-page-section ol, .vesper-page-section ul {
  padding-left: 25px;
  margin-bottom: 30px;
  margin-left: 0;
}
.vesper-page-section ol ol, .vesper-page-section ol ul, .vesper-page-section ul ol, .vesper-page-section ul ul {
  margin-bottom: 0;
}
.vesper-page-section .alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.single-post p {
  line-height: 1.8;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
	.single-post p {
	  line-height: 1.6;
	}
}


.blog-post-item .post-content blockquote cite, 
.blog-post-item .post-content blockquote p{
	color:var(--vesper-primary-color);
}

.wp-block-quote {
	margin:20px 0;
	padding: 20px;
	color: var(--vesper-black-color);
	border-radius: var(--vesper-border-radius-sm);
	border-left: 4px solid var(--vesper-primary-color);
	background: var(--vesper-gray-color);
}

.wp-block-quote.is-large{
	padding-top:30px;
}

.wp-block-quote.is-large:where(:not(.is-style-plain)) cite{
	padding-bottom:20px;
}


.wp-block-pullquote {
	max-width:100%!important;
	margin:20px 0;
	padding:30px 20px;
	border-top: 4px solid var(--vesper-primary-color);
	border-bottom: 4px solid var(--vesper-primary-color);
	color: var(--vesper-black-color);
	background-color: var(--vesper-gray-color);
}

.wp-block-pullquote.is-style-solid-color {
  border: 0;
}

.wp-block-pullquote blockquote {
  border: 0;
  background-color: transparent;
}

.wp-block-pullquote blockquote:after {
  display: none;
}


.wp-block-pullquote.has-background blockquote {
  background-color: transparent;
  border: 0;
}

.wp-block-pullquote.has-background blockquote:after {
  display: none;
}


.vesper-page-section .post-password-form input[type=password] {
	width:100%;
    height: 40px;
    padding: 7px 113px 7px 15px;
    text-transform: capitalize;
    line-height:1;
    border: 1px solid var(--vesper-primary-color);
    border-radius: var(--vesper-border-radius-sm);
    font-size: 14px;
    color: var(--vesper-black-color);
    background: var(--vesper-white-color);
}

.vesper-page-section .post-password-form input[type=submit] {
	position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
	height:40px;
    margin-left:10px;
	padding: 12px 16px;
	font-size:16px;
	font-weight:600;
	box-shadow: none;
    text-decoration: none;
    transition: all 0.125s ease;
	line-height:1;
	cursor:pointer;
	color: var(--vesper-secondary-color);
    background: var(--vesper-primary-color);
    border: 1px solid var(--vesper-primary-color);
	border-radius: var(--vesper-border-radius-sm);
}

.vesper-page-section .post-password-form input[type=submit]:hover {
	color: var(--vesper-primary-color);
	background: transparent;
	border: 1px solid var(--vesper-primary-color);
}

@media (max-width: 767px) {
  .vesper-page-section .post-password-form input[type=submit]{
    margin-left:0;
	margin-top:10px;
  }
}

.vesper-page-section .wp-block-post-comments-form .comment-reply-title {
  margin-bottom: 20px;
}

.vesper-page-section .comment-author.vcard img {
	max-width:50px;
	margin-right: 20px;
	border-radius: 50%;
}

.vesper-page-section .blog-comment {
  margin-top: 50px;
}
 
.vesper-page-section .blog-comment .comment-list ul.children {
  list-style: none;
}

.wp-block-button__link,
.wp-block-button__link:focus,
.wp-block-button__link:visited,
.wp-block-button__link:active{
	position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
	height:40px;
	margin:0 0 30px 0;
	padding: 12px 16px;
	font-size:16px;
	font-weight:600;
	box-shadow: none;
    text-decoration: none;
    transition: all 0.125s ease;
	line-height:1;
	cursor:pointer;
	color: var(--vesper-secondary-color);
    background: var(--vesper-primary-color);
    border: 1px solid var(--vesper-primary-color);
	border-radius: var(--vesper-border-radius-sm);
}

.wp-block-button__link:hover{
	background: var(--vesper-primary-hover);
	border: 1px solid var(--vesper-primary-color);
	text-decoration:none;
}


/* No Results found */
.no-results-found {
  border: 1px solid var(--vesper-border-color);
  border-radius: var(--vesper-border-radius-md);
  padding: 45px 35px 55px;
  margin-bottom:30px;
}
.no-results-found .page-title {
  font-size: 36px;
  margin-bottom: 10px;
}
.no-results-found p {
  margin-bottom: 20px;
}


/* Sidebar */
.vesper-sidebar {
  padding: 20px 20px 5px 20px;
  background-color: var(--vesper-smoke-color);
  border-radius: var(--vesper-border-radius-md);
}

.vesper-sidebar .widget-title, .vesper-sidebar .sidebar-title h2, .vesper-sidebar .wp-block-heading {
  position: relative;
  display: inline-block;
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 17px !important;
  font-weight: 600;
}

.vesper-sidebar ul ul {
  padding-left: 8px;
  margin-top: 10px;
}

.vesper-sidebar .widget{
	margin-bottom:20px;
	padding: 28px 35px 35px;
	border-radius: var(--vesper-border-radius-sm);
	background-color: var(--vesper-white-color);
}

.vesper-sidebar .widget ul, .vesper-sidebar ul {
  list-style: none;
  margin: 0;
  padding:0;
}
.vesper-sidebar .widget ul li, .vesper-sidebar ul li {
  font-size: 16px;
  padding-bottom:8px;
}


.vesper-sidebar .widget ul ul {
  padding-left: 1em;
}

.vesper-sidebar .widget a {
  transition: 0.25s;
  color: var(--vesper-heading-color);
  text-decoration:none;
}

.vesper-sidebar .widget a:hover {
  color:var(--vesper-primary-color);
}


.vesper-sidebar .widget select, .vesper-sidebar select {
	width: 100%;
	height: 50px;
	padding-left: 20px;
	outline: none;
	border-radius: var(--vesper-border-radius-sm);
	border: 1px solid var(--vesper-border-color);
	color: var(--vesper-text-color);
	background-color: var(--vesper-secondary-color);
	cursor:pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.sidebar-recent-widget .post-thumbnail-image{
	flex: 0 0 auto;
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.sidebar-recent-widget .post-thumbnail-image img{
	width: 100%;
	height: 100%;
	border-radius: var(--vesper-border-radius-sm);
	object-fit: cover; 
	object-position: center;
}

.sidebar-recent-widget .post-thumbnail-content:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--vesper-border-color);
}

.sidebar-recent-widget .post-title-date h6{
	
	margin-bottom:0;
	
}

.vesper-sidebar .widget .widget-search{
	border:none;
	padding:0;
}

.vesper-sidebar .wp-calendar-table caption {
  text-align: center;
}
.vesper-sidebar .wp-calendar-nav {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width:100%;
}

.vesper-sidebar .wp-calendar-table {
	width:100%;
	margin-bottom: 0;
}
 

.vesper-sidebar .wp-calendar-table td {
  padding: 3px 0px;
  font-size: 14px;
  text-align: center;
}

.vesper-sidebar .wp-block-search__button{
	position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
	height:40px;
	padding: 12px 16px;
	font-size:16px;
	font-weight:600;
	box-shadow: none;
    text-decoration: none;
    transition: all 0.125s ease;
	line-height:1;
	cursor:pointer;
	color: var(--vesper-secondary-color);
    background: var(--vesper-primary-color);
    border: 1px solid var(--vesper-primary-color);
	border-radius: var(--vesper-border-radius-sm);
}

.vesper-sidebar .wp-block-search__button:hover{
	background: var(--vesper-primary-hover);
	border: 1px solid var(--vesper-primary-color);
	text-decoration:none;
}

.vesper-sidebar .wp-block-search__input{
	height:40px;
	border-radius: var(--vesper-border-radius-sm);
}

/* Docs Archive */
.vesper-docs-archive .page-title{
	font-size: 48px;
    line-height: 1.1;
}

.vesper-docs-archive .docs{
	padding:0 12px;
	
}

.docspress-archive-list-category{
	margin:0;
	padding: 12px 0;
}

.docspress-archive .docspress-archive-list{
	padding-left: 0;
}

.docspress-archive-list li+.docspress-archive-list-category{
	margin:0;
}

.docspress-archive-list-item{
	padding: 0 24px 24px 0;
}

.docspress-archive .docspress-archive-list > .docspress-archive-list-item .docspress-archive-list-item-title {
    padding: 12px;
    background-color: var(--vesper-white-color);
    border-radius: var(--vesper-border-radius-sm);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.docspress-archive .docspress-archive-list > .docspress-archive-list-item .docspress-archive-list-item-title img{
	width: 80px;
    height: auto;
    margin-right: 24px;
    border-radius: var(--vesper-border-radius-sm);
	background:var(--vesper-smoke-color);
}

.docspress-archive .docspress-archive-list > .docspress-archive-list-item .docspress-archive-list-item-title:hover{
	text-decoration:none;
}

.docspress-archive-list-item-title>span h2{
	transform:unset;
	top:-10px;
	color:var(--vesper-text-color);
}

.docspress-archive-list-item-title:hover>span h2{
	transform: translateY(10px);
	text-decoration:underline;
	color:var(--vesper-heading-color);
}

.docspress-archive-list-item-title>span span{
	color:var(--vesper-heading-color);
	transform:unset;
}

.docspress-archive-list-item-title:hover>span span{
	transform: translateY(-10px);
}

/* Docs Single */
.docspress-single-sidebar{
	min-width:300px;
}

.docspress-single-sidebar .docspress-nav-home{
	display: block;
    padding: 16px 0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--vesper-heading-color);
    border-bottom: 1px solid var(--docspress-color-border);
}

.docspress-single-sidebar .docspress-nav-home:hover{
	color: var(--vesper-primary-color);
	text-decoration:underline;
}

.docspress-single-sidebar .docspress-nav-list{
	margin:0;
	padding:10px 0;
	padding-left:20px;
	border-bottom: 1px solid var(--docspress-color-border);
}

.docspress-single-sidebar .docspress-nav-list a{
	color:var(--vesper-text-color);
	font-size:18px;
}

.docspress-single-sidebar .docspress-nav-list a:hover{
	color:var(--vesper-heading-color);
}

.docspress-single-sidebar .docspress-nav-list li.current_page_item a{
	color:var(--vesper-primary-color);
	font-weight:600;
}

.docspress-nav-list .children{
	padding-bottom:0;
}

.docspress-nav-list .children li a{
	font-size:18px;
}

.docspress-nav-back{
	display:block;
	width:100%;
	margin-top:12px;
	font-size:18px;
}

.docspress-single-content{
	min-width:auto;
	padding:0 40px;
	padding-top:16px;
}


.docspress-single-content h1.entry-title{
	font-size: 32px;
    line-height: 1.1;
}

.docspress-single-content h2.wp-block-heading{
	font-size: 24px;
    line-height: 1.1;
}

.docspress-single-content .entry-content,
.docspress-single-content .entry-footer{
	margin-bottom:30px;
}

.docspress-single-adjacent-nav{
	padding:16px 0px;
	margin:0;
}

.docspress-single-adjacent-nav a {
	font-size:18px;
	margin-top:-10px;
}

.docspress-single-adjacent-nav .nav-previous,
.docspress-single-adjacent-nav .nav-next{
	display:flex;
	flex-direction:column;
}

.docspress-single-adjacent-nav .nav-previous span,
.docspress-single-adjacent-nav .nav-next span{
	font-size:14px;
}

@media (max-width: 800px) {
	.docspress-single-content{
		padding:0;
	}
	
	.docspress-single-sidebar, .docspress-single-content{
		min-width:100%;
		border:none;
	}
	
	.docspress-single-content .docspress-single-adjacent-nav{
		flex-direction: column;
	}
}