@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;700&display=swap');


body.home{
	overflow: hidden;
}
body::-webkit-scrollbar {
	width: 8px;
}
body::-webkit-scrollbar-track {
	background: #fff;
}

body::-webkit-scrollbar-thumb {
	width: 1px;
	border-left: 1px solid rgb(86, 86, 86);
	border-right: 3px solid #fff;
	transition: border 0.5s linear;
}
body::-webkit-scrollbar-thumb:hover {
	border-left-width: 4px;
}

.ct-menu-link__number {
	color: #e9e8ee;
	margin-right: 10px;
	transition: 0s;
}
.ct-menu-link__number_mobile {
	margin-right: 10px;
	color: rgb(14 66 194 / 50%) !important;
}
@media (min-width: 1000px) {
	.ct-menu-link__number_mobile {
		display: none;
	}
	.mobile-left-side {
		display: none;
	}
}
@media (max-width: 1000px) {
	.sub-menu .ct-menu-link .ct-menu-link__number {
		display: none;
	}
	.ct-menu-link__number {
		color: rgb(14 66 194 / 50%);
	}
	.mobile-menu .mobile-left-side {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		overflow: hidden;
		/* z-index: -1; */
	}
	.mobile-menu .mobile-side-content {
		position: absolute;
		right: 15px;
		/* bottom: 100px; */
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		white-space: nowrap;
		display: flex;
		flex-direction: column;
		gap: 10px;
		/* display: inline-block;
		line-height: 100px;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg); */
	}
	.mobile-menu .mobile-side-content a {
		display: inline-block;
		/* font-size: 12px;
		text-decoration: none;
		text-transform: lowercase;
		font-weight: bold;
		letter-spacing: 0;
		margin-right: 46px; */
	}
	.mobile-menu li{
		margin-right: 15px;
    max-width: fit-content;
	}
}
.background_grid {
	display: grid;
    grid-template-columns: repeat(6, 1fr);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-49.5%);
    width: 89% !important;
    max-width: 100% !important;
    height: 100vh;
    z-index: -1;
}
.background_grid div:not(:last-child) {
	border-right: 1px solid #edf5f8;
}
@media screen and (max-width: 1000px) {
	.background_grid {
		display: none;
	}
}
/* preloader */
.display-none {
    display: none;
}
.atail-preloader {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 0;
    height: 100%;
    -webkit-transition: width .6s ease;
    transition: width .6s ease;
    background-color: #edf5f8;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.atail-preloader > span {
    font-weight: bold;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: white;
}
.atail-preloader.atail-preloader-loaded > span {
    right: 0;
    left: auto;
}
.atail-preloader.full-preloader {
    width: 100%;
}
.atail-preloader.atail-preloader-loaded {
    right: 0;
    left: auto;
    width: 0;
}
	.atail-preloader-wrapper {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    text-align: center;
}
	.atail-preloader-wrapper > span {
    font-weight: bold;
    position: fixed;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: black;
}
	.atail-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 2px;
    border: 1px solid transparent;
    border-radius: 50%;
    background-color: #d9b29c;
}
.atail-preloader .atail-dot {
    background-color: #FFF;
}
/* .atail-dot.start-animation {
    -webkit-animation-name: dot-move;
    animation-name: dot-move;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
} */
.atail-dot.start-animation:nth-child(1) {
  -webkit-animation-name: dot-move;
          animation-name: dot-move;
  -webkit-animation-duration: .8s;
          animation-duration: 1s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.atail-dot.start-animation:nth-child(2) {
  -webkit-animation-name: dot-move;
		  animation-name: dot-move;
  -webkit-animation-duration: .8s;
		  animation-duration: 1s;
  -webkit-animation-delay: .2s;
		  animation-delay: .3s;
  -webkit-animation-iteration-count: infinite;
		  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
		  animation-fill-mode: forwards;
}
.atail-dot.start-animation:nth-child(3) {
  -webkit-animation-name: dot-move;
		  animation-name: dot-move;
  -webkit-animation-duration: .8s;
		  animation-duration: 1s;
  -webkit-animation-delay: .4s;
		  animation-delay: .5s;
  -webkit-animation-iteration-count: infinite;
		  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
		  animation-fill-mode: forwards;
}
@keyframes dot-move {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  25% {
    -webkit-transform: translateY(-80%);
            transform: translateY(-80%);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  75% {
    -webkit-transform: translateY(80%);
            transform: translateY(80%);
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
}
/* end preloader */
.main-home {
	position: relative;
	z-index: 2;
	height: 100%;
	min-height: 100%;
	/* width: 100%; */
	margin-top: -120px;
	--default-editor: 100px;
}
@media (max-width: 1000px) {
	.main-home {
		margin-top: -50px;
		--default-editor: 0;
	}
}
.main-scroll {
	/* overflow-x: hidden; */
	/* overflow-y: auto; */
	-webkit-overflow-scrolling: touch;
	height: 100vh;
	padding-bottom: 0;
	position: relative;
}

@media (min-width: 992px) {
	.main-home .main-scroll {
		padding-bottom: 46px;
		/* padding-top: 70px; */
	}
}
@media (min-width: 1200px) {
	.main-home .main-scroll {
		/* padding-top: 120px; */
	}
}
/* card */
.content {
	overflow: hidden;
	width: 100%;
}
.box-border-one {
	/* border-left: 1px solid #edf5f8; */
}
@media (max-width: 1000px) {
	.box-border-one {
		border-left: none;
	}
}
.box-border-two {
	/* border-left: 1px solid #edf5f8; 
	border-right: 1px solid #edf5f8; */
}

.item-box, .project-count{
	/* height: 100%; */
	height: 30%;
	display: flex;
	/* align-items: center; */
	align-items: flex-start;
	justify-content: center;
}
@media (max-width: 600px) {
	.item-box, .project-count {
		height: fit-content;
	}
}
.scroll-wrapper {
	position: relative;
	height: 100%;
	display: grid;
	grid-template-columns: 5fr 1fr;
}
@media (max-width: 1000px) {
	.item-box {
		justify-content: flex-start;
	}
	.scroll-wrapper {
		display: block;
	}
}
.sections,
.section {
	position: relative;
	height: 100%;
}
.section {
	/* width: calc(100% - 22px) !important; */
	width: 100%;
	margin-left: 12px;
}
@media (max-width: 1000px) {
	.section {
		width: 100% !important;
	}
}
@media (max-width: 600px) {
	.section {
		margin-left: 0;
	}
}
.cards-wrapper {
	position: absolute;
	/* z-index: 0;
    top: 0; */
	/* height: 100vh; */
	-webkit-transition: opacity 0.6s ease;
	transition: opacity 0.6s ease;
}
.card-item {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 3fr;
	align-items: center;
}
@media (max-width: 1440px) {
	.card-item {
		grid-template-columns: 1fr 3fr;
		/* margin-left: 3%; */
	}
}
@media (max-width: 1000px) {
	.card-item {
		grid-template-columns: 1fr;
		margin-left: 3%;
		align-items: start;
    	justify-items: start;
	}
}
@media (max-width: 600px) {
	.card-item {
		display: flex;
		flex-direction: column;
		padding-top: 23%;
		padding-left: 10px;
	}
}
.card-item .home-photo {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -1;
}

.card-item .photo-wr {
	background-color: #edf5f8;
	position: relative;
	-webkit-transition: transform 1.5s ease, opacity 0.5s ease, height 1.5s ease;
	transition: transform 1.5s ease, opacity 0.5s ease, height 1.5s ease;
	
	height: 0;
	left: 40%;
    width: 59.5%;
	z-index: -1;
}

.active .photo-wr {
	-webkit-transition: transform 1.5s ease, opacity 0.5s ease, height 1.5s ease;
	transition: transform 1.5s ease, opacity 0.5s ease, height 1.5s ease;
	height: 100%;
}
.card-item .photo {
	width: 100%;
	height: 100%;
	padding: 18%;
	margin-top: 5%;
	overflow: hidden;
	position: absolute;
	display: flex;
	align-items: center;
	transition: height 1s ease;
	height: 0;
}
.active .photo {
	transition: height 0.8s ease;
	height: 100%;
}
.card-item .photo img {
	display: block;
	height: 100%;
	max-height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 1440px) {
	.card-item .photo {
		padding: 15%;
	}
	.card-item .photo-wr {
		left: 25%;
		width: 76%;
	}
	.card-item .photo img {
		max-height: 90%;
	}
}

@media (max-width: 1000px) {
	.card-item .photo-wr {
		left: 35%;
		width: 65%;
	}
	.card-item .photo {
		margin-top: 0;
		padding: 18% 15%;
	}
	.card-item .photo img {
		max-height: 100%;
	}
}
@media (max-width: 768px) {
	.card-item .photo img {
		height: initial;
	}
}
@media (max-width: 600px) {
	.card-item .home-photo {
		height: 65%;
		top: unset;
		bottom: 0;
	}
	.card-item .photo-wr {
		left: 0;
		width: 100%;
		display: flex;
    	align-items: center;
	}
	.card-item .photo {
		padding: 3% 1% 10%;
		height: 100%;
		width: 100%;
		max-height: 400px;
	}
}
@media (max-width: 400px) and (max-height: 700px) {
	.card-item .home-photo {
		height: 50%;
	}

}
.preview-article-header {
	overflow: hidden;
}

.preview-article-header h2 {
	font-size: 2rem;
	color: #4d4f54;
	font-family: "Montserrat", "sans-serif";
	font-style: normal;
	font-weight: 700;
	-webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
	transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
	transition: transform 0.4s ease, opacity 0.4s ease;
	transition: transform 0.4s ease, opacity 0.4s ease,
		-webkit-transform 0.4s ease;
	-webkit-transform: translateY(-150%);
	transform: translateY(-150%);
	opacity: 0;
	/* white-space: nowrap; */
	/* max-width: 360px; */
	/* text-overflow: ellipsis; */
	/* overflow: hidden; */
	width: 100%;
	line-height: 1;
	padding: 10px 0;
}
@media (min-width: 600px) {
	.preview-article-header h2 {
		font-size: 2.5rem;
	}
}
@media (min-width: 1170px) {
	.preview-article-header h2 {
		font-size: 3.25rem;
	}
}
@media (min-width: 1270px) {
	.preview-article-header h2 {
		font-size: 3.75rem;
	}
}
.preview-article-header > h2 > a,
.all-photos a {
	color: #363b46;
	transition: all 0.3s ease;
}
.preview-article-header > h2 > a:hover,
.all-photos a:hover {
	color: #bfa288;
}
.active .preview-article-header h2 {
	-webkit-transition: all 2.2s ease;
	transition: all 1.5s ease;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.preview-article-text {
	margin-bottom: 21px;
	overflow: hidden;
}
@media (max-width: 1000px) {
	.preview-article-text {
		display: none;
	}
}
.preview-text-content p {
	position: relative;
	font-size: 0.875rem;
	margin: 0 0 21px;
	text-overflow: ellipsis;
	font-weight: 300;
	-webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
	transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
	transition: transform 0.4s ease, opacity 0.4s ease;
	transition: transform 0.4s ease, opacity 0.4s ease,
		-webkit-transform 0.4s ease;
	-webkit-transform: translateY(150%);
	transform: translateY(150%);
	opacity: 0;
}
.active .preview-article-text p {
	-webkit-transition: -webkit-transform 0.5s ease 0.5s,
		-webkit-transform 0.4s ease 0.5s;
	transition: -webkit-transform 0.5s ease 0.5s,
		-webkit-transform 0.4s ease 0.5s;
	transition: transform 0.5s ease 0.5s, transform 0.4s ease 0.5s;
	transition: transform 0.5s ease 0.5s, transform 0.4s ease 0.5s,
		-webkit-transform 0.5s ease 0.5s, -webkit-transform 0.4s ease 0.5s;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.open-full-post {
	font-size: 0.75rem;
	position: relative;
	margin-left: 80px;
	font-weight: 700;
	white-space: nowrap;
	padding: 0 10px;
	display: block;
	text-decoration: none;
	transform: translateX(100%);
	transition: all 0.2s ease;
	/* transition: transform 0.2s ease 0.2s, opacity 0.4s ease 0.2s,
		color 0.3s ease; */
}
.open-full-post:hover {
	color: #bfa288;
}
.active .open-full-post {
	-webkit-transition: all 0.2s ease;
	/* transition: transform 0.5s ease, color 0.3s ease; */
	transition: all 0.2s ease;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}
.open-full-post:before {
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	width: 50%;
	max-width: 200px;
	height: 1px;
	content: "";
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	vertical-align: middle;
	opacity: 0.3;
	border-top: 1px solid;
}

.open-full-post:hover:before {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
/* project-count */
.project-count {
	font-size: 1.25rem;
	-webkit-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
	text-align: right;
	/* padding-right: 20%; */
	font-weight: 700;
}

.project-count span,
.project-count {
	color: #a9acb5;
}
.project-count > span {
	display: inline-block;
	vertical-align: bottom;
}

.project-count > span:first-child {
	overflow: hidden;
}

.projects-item-animate .project-count {
	opacity: 1;
}

.project-count-number {
	font-size: 3.6rem;
	line-height: 0.8;
	position: relative;
	top: 2px;
	display: inline-block;
	/* -webkit-transform: translateY(-150%);
	transform: translateY(-150%); */
	animation: project-count-hide 0.5s forwards;
}
@media (max-width: 1440px) {
	.project-count {
		position: absolute;
		top: 23%;
	}
}
// @media (max-width: 1170px) {
// 	.project-count-number {
// 		font-size: 5.375rem;
// 	}
// }

@media (min-width: 768px) {
	.project-count-number {
		font-size: 8.75rem;
	}
}
@media (max-width: 1000px) {
	.project-count {
		position: relative;
		top: unset;
		left: unset;
		align-self: end;
	}
	.open-full-post:before {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.project-count-number {
		font-size: 5.75rem;
	}
}
@media (max-width: 600px) {
	.project-count-number {
		font-size: 3rem;
	}
	.project-count {
		align-self: auto;
	}
}


.active .project-count-number {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-animation: project-count 1.5s forwards;
	animation: project-count 1s forwards;
}

@-webkit-keyframes project-count {
	0% {
		-webkit-transform: translateY(150%);
		transform: translateY(150%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1;
	}
}

@keyframes project-count {
	0% {
		-webkit-transform: translateY(150%);
		transform: translateY(150%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1;
	}
}

@-webkit-keyframes project-count-hide {
	0% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(150%);
		transform: translateY(150%);
		opacity: 0;
	}
}

@keyframes project-count-hide {
	0% {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(150%);
		transform: translateY(150%);
		opacity: 0;
	}
}

.all-photos {
	height: 100vh;
	position: relative;
}
@media (max-width: 1000px) {
	.all-photos {
		position: fixed;
		height: auto;
		top: 40px;
		white-space: nowrap;
		left: 0;
	}
}
@media (max-width: 1000px) {
	.all-photos {
		top: 30px;
	}
}
.all-photos a {
	display: block;
	position: absolute;
	bottom: 10%;
	left: 0;
	font-size: 0.75rem;
	margin-left: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
}
.all-photos a > span {
	position: relative;
	display: inline-block;
	height: 9px;
	vertical-align: middle;
}
.all-photos a > span:before,
.all-photos a > span:after,
.all-photos a > span > span {
	position: relative;
	display: inline-block;
	height: 100%;
	margin-right: 3px;
	vertical-align: top;
	border-right: 1px solid;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.all-photos a > span:before,
.all-photos a > span:after {
	content: "";
}
.all-photos a span:before {
}
.all-photos a > span:after {
	margin-right: 7px;
}
.all-photos a:hover > span:after {
	-webkit-transform: translateY(25%);
	transform: translateY(25%);
}
.all-photos a:hover > span > span:first-of-type {
	-webkit-transform: translateY(-25%);
	transform: translateY(-25%);
}
/* scroll down arrow */
.project-preview-arrow {
	position: absolute;
	z-index: 3;
	bottom: 42px;
	left: 35%;
	opacity: 0.5;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	pointer-events: none;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
}
@media (max-width: 1000px) {
	.project-preview-arrow {
		left: 0;
	}
}

/* @media (min-width: 992px) {
  .project-preview-arrow {
    bottom: 0;
    left: 50%;
    -webkit-transform: rotate(-90deg) translateY(50%);
            transform: rotate(-90deg) translateY(50%);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    min-width: 150px;
  }
} */

.project-preview-arrow-wrapper {
	position: absolute;
	width: 20%;
	z-index: -1;
	bottom: 10%;
	left: 0;
}

.project-preview-arrow span {
	font-family: "Montserrat", sans-serif;
	font-size: 0.75rem;
	display: inline-block;
	vertical-align: middle;
}

.project-preview-arrow span:nth-child(1) {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	overflow: hidden;
	margin-right: 5px;
}

@media (max-width: 767px) {
	.project-preview-arrow span:nth-child(2) {
		opacity: 0;
	}
}

.project-preview-arrow svg {
	display: block;
	width: 50px;
	-webkit-animation: project-arrow 2.2s ease-in infinite;
	animation: project-arrow 2.2s ease-in infinite;
}
.project-preview-arrow span {
	fill: #a9acb5;
	color: #a9acb5;
}

@-webkit-keyframes project-arrow {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@keyframes project-arrow {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

/* end scroll down arrow */

/* modal */

.modal__wrapper {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	/* background: rgb(255 255 255 / 80%); */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	display: none;
	margin: 0 100px;
}
.modal {
	background: rgb(255, 255, 255);
	padding: 150px 0 30px;
	height: 100%;
	width: 100%;
	position: relative;
}
.modal__title {
	text-align: center;
}

.modal__close {
	cursor: pointer;
	display: flex;
	justify-content: flex-end;
	color: #363b46;
	position: fixed;
	top: 150px;
	right: 30px;
	font-size: 30px;
	z-index: 999;
	width: 25px;
	height: 25px;
}

.close-projects-btn:before,
.close-projects-btn:after,
.close-projects-btn span {
	position: absolute;
	top: 12px;
	left: 12px;
	display: block;
	width: 0;
	height: 2px;
	-webkit-transition: width 0.3s ease 0.3s, -webkit-transform 0.3s ease;
	transition: width 0.3s ease 0.3s, -webkit-transform 0.3s ease;
	transition: width 0.3s ease 0.3s, transform 0.3s ease;
	transition: width 0.3s ease 0.3s, transform 0.3s ease,
		-webkit-transform 0.3s ease;
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	transform: translate(-50%, -50%) rotate(0deg);
	background-color: #363b46;
}
.close-projects-btn.close-projects-btn-loaded:before,
.close-projects-btn.close-projects-btn-loaded span:nth-child(1) {
	width: 100%;
	-webkit-transition: width 0.3s ease, -webkit-transform 0.3s ease 0.3s;
	transition: width 0.3s ease, -webkit-transform 0.3s ease 0.3s;
	transition: width 0.3s ease, transform 0.3s ease 0.3s;
	transition: width 0.3s ease, transform 0.3s ease 0.3s,
		-webkit-transform 0.3s ease 0.3s;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}
.close-projects-btn.close-projects-btn-loaded:after,
.close-projects-btn.close-projects-btn-loaded span:nth-child(2) {
	width: 100%;
	-webkit-transition: width 0.3s ease, -webkit-transform 0.3s ease 0.3s;
	transition: width 0.3s ease, -webkit-transform 0.3s ease 0.3s;
	transition: width 0.3s ease, transform 0.3s ease 0.3s;
	transition: width 0.3s ease, transform 0.3s ease 0.3s,
		-webkit-transform 0.3s ease 0.3s;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close:hover
	.close-projects-btn.close-projects-btn-loaded
	span:nth-child(1),
.modal__close:hover
	.close-projects-btn.close-projects-btn-loaded
	span:nth-child(2) {
	width: 0;
	-webkit-transition: width 0.3s ease 0.3s, -webkit-transform 0.3s ease;
	transition: width 0.3s ease 0.3s, -webkit-transform 0.3s ease;
	transition: width 0.3s ease 0.3s, transform 0.3s ease;
	transition: width 0.3s ease 0.3s, transform 0.3s ease,
		-webkit-transform 0.3s ease;
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	transform: translate(-50%, -50%) rotate(0deg);
}
.modal__body {
	width: 100%;
	height: 100%;
}

.modal-body-wr {
	display: grid;
	grid-template-columns: 5fr 1fr;
	height: 100%;
	z-index: 2;
	position: relative;
}
.modal_body_cards {
	width: 83%;
	height: 100%;
	overflow-y: scroll;
	/* margin: 0 auto; */
	margin-left: auto;
}
/* custom scroll */
.modal_body_cards::-webkit-scrollbar {
	width: 1px;
}
.modal__body .card-item {
	width: 100%;
	height: 90%;
	max-width: max-content;
	display: grid;
	grid-template-columns: 1fr 2fr;
	align-items: center;
	z-index: 2;
	position: relative;
	/* padding-left: 100px; */
}
/* добавить отступы через один блок */
.modal__body .card-item:nth-child(even) {
	margin-left: 23%;
}
.modal__body .card-item:nth-child(even) .home-photo {
	margin-left: 58px;
}
.modal__body .card-item .project-count {
	display: none;
}
.modal__body .card-item .preview-article-text {
	display: none;
}
.modal__body .card-item .photo-wr,
.modal__body .card-item .content article {
	background-color: transparent;
	-webkit-transition: transform 0.7s ease, opacity 0.5s ease;
	transition: transform 0.7s ease, opacity 0.5s ease;
	-webkit-transform: translateY(0%) translateX(-100%);
	transform: translateY(0%) translateX(-100%);
	opacity: 1;
	left: 0;
	width: auto;
	height: 100%;
}
.modal__body .card-item .content article {
	-webkit-transition: transform 0.3s ease, opacity 0.5s ease;
	transition: transform 0.3s ease, opacity 0.5s ease;
}
.modal__body .card-item__clone.element-show .photo-wr,
.modal__body .card-item__clone.element-show .content article {
	-webkit-transform: translateY(0%) translateX(0%);
	transform: translateY(0%) translateX(0%);
	opacity: 1;
}
.modal__body .preview-article-header h2 {
	-webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
	transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
	transition: transform 0.4s ease, opacity 0.4s ease;
	transition: transform 0.4s ease, opacity 0.4s ease,
		-webkit-transform 0.4s ease;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	opacity: 1;
}
.modal__body .open-full-post {
	transform: translateX(0%);
	transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s,
		color 0.3s ease;
}
.modal__body .card-item .home-photo {
	position: relative;
	margin-left: 44px;
	overflow: hidden;
}
.modal__body .card-item .photo {
	/* left: 22%; */
	padding: 0;
	margin-top: 0;
	align-items: flex-start;
	height: 100%;
}
.modal__body .card-item .photo img {
	object-fit: contain;
	max-height: 90%;
	height: auto;
	max-width: 550px;
	width: auto;
}
.modal__body .modal_grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.modal__body .modal_grid div:not(:last-child) {
	border-right: 1px solid #edf5f8;
}
.modal__body .box-border-two,
.modal__body .box-border-one {
	border: none;
}
.modal__body .item-box {
	height: 75%;
	align-items: flex-start;
	width: 300px;
}
.modal__body .preview-article-header > h2 > a,
.modal__body .all-photos a {
	color: #4d4f54;
	white-space: break-spaces;
}
.modal__body .preview-article-header > h2 > a:hover,
.modal__body .all-photos a:hover {
	color: #bfa288;
}

.modal-links {
	display: flex;
	align-items: center;
}
.modal-links-list {
	width: 100%;
	padding: 15px 10px;
	text-align: center;
	vertical-align: middle;
	list-style: none;
}
.modal-links-list li {
	line-height: 1;
	margin-bottom: 25px;
}
.modal-links-list li a {
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	color: #e9e8ee;
	transition: color 0.3s ease;
}
.modal-links-list li a:hover,
.modal-links-list li a.active {
	color: #bfa288;
}

@media screen and (max-width: 1730px) {
	.modal_body_cards {
		width: 100%;
	}
	.modal__body .card-item:nth-child(even) {
		margin-left: 8%;
	}
}
@media screen and (max-width: 1400px) {
	.modal__body .card-item .photo img {
		object-fit: cover;
		max-height: 90%;
		height: auto;
		max-width: 500px;
		width: auto;
	}
	.modal__body .card-item:nth-child(even) {
		margin-left: 0%;
	}
	.modal__body .card-item:nth-child(even) .home-photo {
		margin-left: 40px;
	}
	.modal__body .card-item .home-photo {
		margin-left: 40px;
	}
}
@media screen and (max-width: 1200px) {
	.modal__body .card-item .photo img {
		max-width: 420px;
		
	}
	.modal__body .card-item:nth-child(even) .home-photo {
    margin-left: 10px;
}
.modal__body .card-item .home-photo {
    margin-left: 10px;
}
}
@media screen and (max-width: 1000px) {
	.modal {
		padding: 50px 0;
	}
	.modal__close {
		top: 30px;
	}
	.modal__wrapper {
		margin: 0;
	}
	.modal__body .modal_grid {
		display: none;
	}
	.modal-body-wr {
		grid-template-columns: 3fr 1fr;
	}
	.modal_body_cards {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 25px;
	}
	.modal__body .card-item {
		margin-left: 3%;
		height: 100%;
		max-width: 100%;
		flex: 1 0 270px;
	}
	.modal__body .item-box {
		width: 100%;
		padding-left: 15px;
	}
	.modal__body .card-item:nth-child(even) {
		margin-left: 3%;
	}
	.modal__body .card-item:nth-child(even) .home-photo {
		margin-left: 0px;
	}
	.modal__body .card-item .home-photo {
		margin-left: 0px;
	}
	.modal__body .card-item h2 {
		font-size: 2.25rem;
		/* margin-bottom: 25px !important; */
	}
	.modal__body .card-item .photo {
		justify-content: center;
		align-items: center;
	}
	.modal__body .card-item .photo img {
		object-fit: cover;
		max-height: 100%;
		height: 100%;
		max-width: 240px;
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.modal__body .card-item {
		display: flex;
		flex-direction: row;
		flex: 1 1 auto;
		height: auto;
		flex-wrap: wrap;
		margin-bottom: 30px;
	}
	.modal__body .item-box {
		height: auto;
	}
	.modal__body .card-item .home-photo {
		height: auto;
	}
	.modal__body .card-item .photo {
		position: static;
		transform: translate(0, 0);
		margin: 0 auto;
	}
	.modal__body .card-item .photo img {
		max-width: 90%;
	}
}
@media screen and (max-width: 600px) {
	.modal-links {
		display: none;
	}
	.modal__close {
		top: 20px;
		right: 20px;
	}
	.modal-body-wr {
		grid-template-columns: 1fr;
	}
	.modal__body .card-item {
		margin-left: 0;
		padding: 0 20px;
	}
	.modal__body .card-item:nth-child(even) {
		margin-left: 0;
	}
	.modal__body .card-item .photo-wr {
		padding-top: 30px;
	}
}
/* photography page */
.tax-photographs[data-prefix="categories"]{
	background-color: transparent;
}
.tax-photographs .background_grid{
	width: 100% !important;
    max-width: 100% !important;
    padding: 0 100px;
	left: 0;
	transform: translateX(0);
}
.photo-albums-layout{
	margin: 0 100px 100px;
	padding: 0 10px;
	color: var(--paletteColor1);
}
/* .photography-text, .photography-title{
	padding-left: 30px;
} */
.photography-title h1{
	font-family: 'Montserrat', "sans-serif";
    font-style: normal;
    font-weight: 700;
	letter-spacing: -1.8px;
	font-size: 4.5rem;
	color: inherit;
}
.photography-text p{
	font-family: 'Hind', "sans-serif";
	font-weight: 300;
	letter-spacing: -0.4px;
	line-height: 1.7;
    color: inherit;
	font-size: 1.5rem;
}
.photography-text .small-title{
    display: block;
    font-size: .875rem;
    font-weight: 700;
    font-style: normal;
    color: #a9acb5;
    letter-spacing: -.35px;
    margin-bottom: 26px;
    text-decoration: none;
}
@media (max-width: 1000px) {
	.photo-albums-layout{
		margin: 0 20px 70px;
	}
	.photography-title h1{
		font-size: 2.75rem;
	}
	.photography-text p{
		font-size: 1rem;
	}
}
.photo-album-items{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
	gap: 30px 20px;
	/* padding-left: 19px; */
    /* padding-right: 2px; */
}
@media (max-width: 1000px){
	.photo-album-items{
		gap: 30px 40px;
	}
}
@media (max-width: 767px){
	.photo-album-items{
		grid-template-columns: 1fr;
	}
}
.photo-album-item{
	width: 100%;
}
.photo-album-image{
	display: flex;
    justify-content: center;
}
.photo-album-image a {
    display: flex;
	justify-content: center;
    height: 220px;
    background-color: #ECF5F9;
	width: 100%;
}
@media (max-width: 1300px){
	.photo-album-image a {
		height: 175px;
	}
}
@media (max-width: 1000px){
	.photo-album-image a {
		height: 130px;
	}
}
@media (max-width: 767px){
	.photo-album-image a {
		height: 350px;
	}
}
@media (max-width: 575px){
	.photo-album-image a {
		height: 230px;
	}
}
.photo-album-image a img{
	height: inherit;
    width: initial;
    margin: auto;
    display: block;
    max-width: 100%;
}
.photo-album-link{
	padding: 20px 0;
}
.photo-album-item .open-album-photo {
    font-size: .75rem;
    position: relative;
    margin-left: 80px;
    padding: 0 10px;
    text-decoration: none;
}
@media (min-width: 480px){
.photo-album-item .open-album-photo {
    margin-left: 100px;
}
}
.photo-album-item  .open-album-photo:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 1px;
    content: '';
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    vertical-align: middle;
    opacity: .3;
    border-top: 1px solid;
}
.photo-album-item .open-album-photo:hover{
	color: var(--paletteColor3);
}
.photo-album-item .open-album-photo:hover:before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}


/* single photography post */

.single-photography-post {
	margin: 0 100px;
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 15px;
}
@media (max-width: 1000px) {
	.single-photography-post {
		margin: 0 0;
		padding-bottom: 50px;
	}
}
@media (max-width: 768px) {
	.single-photography-post {
		grid-template-columns: 1fr;
	}
}
.post-img-wrapper {
	background: #edf5f8;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: calc(100vh - 120px);
    /* height: 100vh; */
    justify-content: center;
    overflow: hidden;
	overflow-y: auto;
}
.post-img-wrapper::-webkit-scrollbar {
	width: 0px;
	background: transparent;
}
@media (min-width: 1500px) {
	.post-img-wrapper {
		height: auto;
	}
}
@media (max-height: 450px) {
	.post-img-wrapper {
		height: 100%;
	}
}
.post-img{
	max-width: 100%;
	/* max-height: 800px; */
	/* max-height: 740px; */
	/* margin: 0 60px 70px; */
	display: flex;
	flex-direction: column;
	padding: 0 23% 0;
	justify-content: center;
	align-items: center;
	position: relative;
}
@media (max-width: 1100px) {
	.post-img{
		/* align-items: flex-start; */
		/* margin: 20px 40px 50px; */
		padding: 0 21% 0;
	}
}
@media (max-width: 1000px) {
	.post-img-wrapper {
		height: calc(100vh - 50px);
		/* justify-content: center; */
	}
}
@media (max-width: 768px) {
	.post-img{
		padding: 8% 10% 0;
	}
	.post-img-wrapper {
		padding: 0 15px;
	}
	
}
@media (max-width: 480px) {
	.post-img{
		/* margin: 0px 20px 50px; */
		padding: 5% 10% 0;
	}
}

.post-img img {
	object-fit: contain;
	width: 100%;
	max-height: 100%;
}
.post-navigation{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 20px 0;
	/* position: absolute; */
    /* bottom: -65px; */
}
.post-navigation a {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.4px;
	display: flex;
	align-items: center;
	gap: 5px;
}
.post-navigation a:hover {
	color: var(--paletteColor3);
}
.single-project-next, .single-project-prev {
	display: flex;
	align-items: center;
}

.single-project-arrow > svg {
    position: relative;
    display: inline-block;
    vertical-align: middle;
	fill: var(--paletteColor1);
}
.single-project-prev .single-project-arrow > svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.post-info-wrapper{
	padding-top: 20%;
}
.post-info {
	max-width: 330px;
	/* position: sticky; */
    /* top: 25%; */
}
@media (min-width: 1000px) {
	.post-info {
	max-width: 330px;
	position: sticky;
    top: 25%;
}
}
@media (max-width: 1000px) {
	.post-info-wrapper{
		padding-right: 15px;
		padding-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.post-info-wrapper{
		padding: 50px 15px 70px;
		/* margin-bottom: 100px; */
	}
	.post-info {
		max-width: 100%;
	}
	.single-project-prev > a > span, .single-project-next > a > span {
		font-size: 10px;
	}
	.post-navigation{
		padding: 8px 0;
	}
}
@media (max-width: 500px) {
	.post-info-wrapper{
		padding: 30px 15px 40px;
		/* margin-bottom: 100px; */
	}
}
.post-info .preview-article-header h2{
	transform: translate(0);
	opacity: 1;
}
.post-info-title {
	
}
.post-info-current {
	font-size: .75rem;
	font-weight: 700;
    margin-bottom: 10px;
	margin-top: 15px;
    letter-spacing: 0;
    line-height: 1.5;
}
.post-info-text p{
	font-family: 'Hind', "sans-serif";
    font-weight: 300;
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 0;
}
.post-info-socials {
	margin-top: 10px;
	display: flex;
	gap: 20px;
	justify-content: center;
}
@media (max-width: 768px) {
	.post-info-socials {
		justify-content: flex-start;
	}
}
.post-info-socials a{
	display: flex;
	justify-content: center;
	align-items: center;
   	width: 30px;
    height: 30px;
    border: 1px solid;
    overflow: hidden;
    border-radius: 50%;
	border-color: #edf5f8;
}
.post-info-socials a svg{
	width: 10px;
	height: 10px;
}
.post-info-socials a:hover{
	color: var(--paletteColor3);
}

form {
	--form-field-padding: 0 18px;
}

[class*=header-menu] {
	width: 100%;

}

.home {
	overflow: hidden;
}

/*menu  */

#header [data-device=desktop] [data-column-set="2"]>div {
	grid-template-columns: 100px auto;
}

#menu-main-menu.menu {
	width: 100%;
	justify-content: end;
	align-items: center;
	margin-right: 70px;
}

#menu-main-menu>li {
	width: 16.8%;
	/* 	max-width: 210px; */
	text-align: left;
	vertical-align: middle;
	height: 100%
}

#menu-main-menu>li:last-child {
	position: absolute;
	z-index: -1;
}

@media(max-width:1440px) {
	#menu-main-menu.menu {
		justify-content: space-between;
		align-items: center;
		margin-left: 50px;
		margin-right: 0;
	}

	#menu-main-menu>li {
		min-width: min-content;
	}

}

@media (min-width:992px) {
	.menu-item.menu-item-has-children:hover {
		background-color: var(--paletteColor3, #bfa288);
	}
}

.menu-item.menu-item-has-children:hover>a {
	color: #0a3ab1 !important;
}

[data-dropdown*=type-1] .animated-submenu>.sub-menu {
	transition: transform 0.3s ease 0.2s, opacity 0s ease 0.5s, -webkit-transform 0.3s ease 0.2s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	box-shadow: none !important;
	--dropdown-width: 100% !important;
	padding-bottom: 40px;
}

.sub-menu li {
	padding-left: 22px;
}

.sub-menu li a {
	overflow: hidden;
	max-width: fit-content;
	padding-left: 0 !important;
	padding-right: 0 !important;
	transition: 0s;
}

.sub-menu li a:before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
	-webkit-transform: translate(-110%, -50%);
	transform: translate(-110%, -50%);
	border-top: 1px solid;
}

.sub-menu li:hover a:before {
	-webkit-transform: translate(110%, -50%);
	transform: translate(110%, -50%);
}

.menu-item.ct-active .sub-menu {
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

#menu-main-menu .ct-toggle-dropdown-desktop {
	display: none;
}

.menu>li>.ct-menu-link {
	justify-content: start;
	padding-left: 22px;
}

[data-header*="type-1"] .ct-header [data-device=desktop] [data-id="logo"] .site-logo-container {
	transform: translateX(-15px);
}

/* mobile menu */
#header [data-device=mobile] {
	position: fixed;
	top: unset;
	bottom: 0;
	width: 100%;
	background: #fff;
}

.ct-panel {
	bottom: 50px;
}

#header [data-device=mobile] [data-column-set="2"]>div {
	grid-template-columns: 1fr 1fr;
}

#header [data-device=mobile] [data-items] {
	justify-content: center;
}

[data-device=mobile] [data-sticky*=fixed],
#header [data-device=mobile] [data-sticky*=yes] {
	top: unset;
	bottom: 0;
	/*   background: #fff; */
}

#header [data-device=mobile] [data-column=start] {
	border-right: 1px solid rgba(0, 0, 0, 0.8);
}

.mobile-menu[data-interaction=click] [class*=children]:not(.dropdown-active)>ul {
	display: block;
	padding: 0;
}

.ct-toggle-dropdown-mobile {
	display: none;
}

/* side blocks */
.main-wrapper {
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	transition: all 0s !important;
}

.side {
	display: none;
	position: fixed;
	top: 0;
	width: 100px;
	height: 100%;
	background: #fff;
	z-index: 2;
}

.left-side {
	left: 0;
	border-right: 1px solid #edf5f8;
}

.right-side {
	right: 0;
	border-left: 1px solid #edf5f8;
}

.left-side p,
.right-side p {
	position: absolute;
	left: 0;
	white-space: nowrap;
	display: inline-block;
	line-height: 100px;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transform-origin: left top;
	transform-origin: left top;
	overflow: auto;
	max-width: calc(100vh - 200px);
}

.left-side p {
	bottom: -65px;
}

.right-side p {
	bottom: -82px;
	font-size: .625rem;
	letter-spacing: .05em;
	color: #e3e3e4;
}

/* .left-side a {
	color: #4d4f54;
	display: inline-block;
	font-size: .625rem;
	text-decoration: none;
	text-transform: lowercase;
	font-weight: bold;
	letter-spacing: 0;
	margin-right: 46px;
	transition: all .3s ease;
} */

.left-side a:hover {
	color: #bfa288;
}

@media (min-width:1000px) {
	.side {
		display: block;
	}
}

.contacts-info a {
	color: #a9acb5;
	text-decoration: none;
}

.contacts-info a:hover {
	text-decoration: underline;
}

@media (min-width:1000px) and (max-width: 1024px) {
	.fix-padding {
		padding-left: 60px !important;
		padding-right: 60px !important;
	}
}

.archive-item .stk-block-text__text strong {
	font-size: 12px !important;
}

.archive-label p:hover {
	cursor: default;
	color: var(--paletteColor3) !important;
}

/* blog page */
.author .card-content,
.blog .card-content,
.category .card-content {
	width: 100%;
}

.author .entry-card,
.blog .entry-card,
.category .entry-card {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}


@media (min-width: 1000px) {

	.author [data-archive=default][data-layout=simple] article>.ct-image-container,
	.blog [data-archive=default][data-layout=simple] article>.ct-image-container,
	.category [data-archive=default][data-layout=simple] article>.ct-image-container {
		max-width: 60%;
	}

	.author [data-archive=default][data-layout=simple] article .card-content,
	.blog [data-archive=default][data-layout=simple] article .card-content,
	.category [data-archive=default][data-layout=simple] article .card-content {
		align-self: stretch;
	}

	.author .card-content,
	.blog .card-content,
	.category .card-content {
		padding: 30px 0 20px;
	}
}

.author .entry-meta .meta-author>span,
.blog .entry-meta .meta-author>span,
.category .entry-meta .meta-author>span {
	text-transform: lowercase;
	font-weight: 500;
	letter-spacing: 0;
}

.author time.ct-meta-element-date,
.blog time.ct-meta-element-date,
.category time.ct-meta-element-date {
	--fontFamily: Montserrat, Sans-Serif;
	font-size: 15px;
	color: #c1c1c1;
	font-weight: 400;
	text-transform: none !important;
	letter-spacing: 1px;
}

.author .card-content .entry-meta:last-of-type,
.blog .card-content .entry-meta:last-of-type,
.category .card-content .entry-meta:last-of-type {
	padding-top: 30px;
	border-top: 1px solid #e9e9e9;
	display: flex;
	justify-content: space-between;
}

.author .card-content .entry-divider,
.blog .card-content .entry-divider,
.category .card-content .entry-divider {
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 50px !important;
	padding-top: 30px;
}

footer {
	display: none;
}

.author footer,
.blog footer,
[data-prefix=single_blog_post] footer,
.category footer {
	display: block;
}

@media (max-width: 999.98px) {

	.author footer,
	.blog footer,
	[data-prefix=single_blog_post] footer,
	.category footer {
		padding-bottom: 50px;
	}
}

/* blog page single*/
@media (min-width: 1000px) {
	[data-prefix="single_blog_post"] .hero-section[data-type="type-2"] {
		--container-padding: 50px 80px;
	}
}

.single-post [data-sidebar] {
	max-width: 1070px;
}

.single-post .post p {
	font-family: 'Lora', serif;
	font-size: 17px;
	line-height: 2;
}

.single-post .ct-sidebar h2 {
	font-size: 1em;
	color: #afafaf;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 50px !important;
	padding-top: 50px !important;
}

.single-post .ct-sidebar a {
	font-family: 'Lora', serif;
}

.single-post .ct-sidebar .blog-sidebar a {
	color: var(--paletteColor3)
}

.single-post .ct-sidebar .blog-sidebar a:hover {
	text-decoration: underline;
}

@media (min-width: 690px) and (max-width: 999.98px) {
	.single-post .ct-hidden-md {
		display: block !important;
		max-width: 500px;
		padding: 0 40px;
	}

	.single-post .ct-sidebar h2 {
		margin-bottom: 30px !important;
		padding-top: 10px !important;
	}
}

@media (max-width: 689.98px) {
	.single-post .ct-hidden-md {
		display: block !important;
		padding: 0 20px;
	}

	.single-post .ct-sidebar h2 {
		margin-bottom: 30px !important;
		padding-top: 10px !important;
	}
}

@media (max-width: 999.98px) {
	[data-archive=default] .entry-card {
		flex-direction: column;
	}

	.blog [data-archive=default][data-layout=simple] article>.ct-image-container {
		max-width: 100%;
		--card-inner-spacing: 0px;
	}

	[data-archive=default][data-layout=simple] article .card-content {
		padding: 30px;
	}
}

.blog-single-meta {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}

.blog-single-meta * {
	color: #9a9a9a;
}

.blog-single-meta a {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 2px;
}

.blog-single-meta a:hover {
	color: var(--paletteColor3);
	text-decoration: underline;
}

/* books wrapper */
@media (min-width: 999.98px) {
	.books-wrapper .stk-block-content>.stk-block-columns:nth-child(odd) {
		margin-left: auto;
	}
}

.books-wrapper a {
	text-decoration: none;
}

.books-wrapper a:hover {
	color: var(--paletteColor3);
}

.archive-label a {
	color: #a9acb5;
}

.other-bg a {
	color: #fff;
	background-color: var(--paletteColor3);
}

/* collections page */
.collections-list a {
	text-decoration: none;
	--linkInitialColor: #a9acb5;
	font-size: 10px;
	display: block;
	letter-spacing: 1px;
}

.collections-list a:after {
	content: '';
	color: inherit;
	width: 7px;
	margin-left: 5px;
	display: inline-block;
	height: 7px;
	border-top: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg);
}

button.ct-button.ct-load-more {
	border-radius: 30px;
	font-size: 15px;
	padding: 17px 38px;
}