@font-face {
	font-family: firagobook;
	src: url(../fonts/FiraGO-Book.woff2);
	font-display: swap;
}
@font-face {
	font-family: firago;
	src: url(../fonts/FiraGO-Regular.woff2);
	font-display: swap;
}
@font-face {
	font-family: firagobold;
	src: url(../fonts/FiraGO-Bold.woff2);
	font-display: swap;
}
@font-face {
	font-family: firagosemibold;
	src: url(../fonts/FiraGO-SemiBold.woff2);
	font-display: swap;
}
@font-face {
	font-family: firagomedium;
	src: url(../fonts/FiraGO-Medium.woff2);
	font-display: swap;
}
@font-face {
	font-family: gothambookitalic;
	src: url(../fonts/GothamBookItalic.ttf);
	font-display: swap;
}
@font-face {
	font-family: firagoitalic;
	src: url(../fonts/FiraGO-Italic.woff2);
	font-display: swap;
}
@font-face {
	font-family: firagosemibolditalic;
	src: url(../fonts/FiraGO-SemiBoldItalic.ttf);
	font-display: swap;
}
@font-face {
	font-family: gothammedium;
	src: url(../fonts/GothamMedium.ttf);
	font-display: swap;
}
body main {
	width: 100%;
	margin: 0 auto;
}
::-webkit-scrollbar {
	width: 12px;
}
::-webkit-scrollbar-track {
	background: #87a2d6;
}
::-webkit-scrollbar-thumb {
	background-color: #ff7686;
	background: linear-gradient(360deg, rgb(201 42 116 / 82%) 0%, #ff7686 100%);
}
::-webkit-scrollbar-thumb:hover {
	background-color: #f98a97;
	background: linear-gradient(360deg, rgb(209 59 129 / 82%) 0%, #f98a97 100%);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	resize: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	font-family: firago;
}
input,
input:before,
input:after {
	-webkit-user-select: initial;
	-khtml-user-select: initial;
	-moz-user-select: initial;
	-ms-user-select: initial;
	user-select: initial;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
}
.container {
	padding: 0 20px;
	width: 100%;
	margin: 0 auto;
}
@media screen and (min-width: 1025px) {
	.container {
		max-width: 1272px;
	}
}
.innercontainer {
	padding: 0 20px;
	width: 100%;
	margin: 0 auto;
}
@media screen and (min-width: 1025px) {
	.innercontainer {
		padding: 0;
	}
}
a,
button,
input,
textarea {
	color: inherit;
	text-decoration: none;
	border: none;
	outline: none;
	background: none;
	font-family: inherit;
	line-height: inherit;
}
ul li {
	list-style-position: inside;
	list-style: none;
}
div.default-ul p:not(:last-child) {
	margin-bottom: 1em;
}
div.default-ul ul li {
	list-style: initial;
	list-style-position: inside;
}
body {
	background-color: #f7f8ff;
	position: relative;
}
body.noscroll {
	overflow: hidden;
}
html {
	--swiper-theme-color: $dark !important;
	font-family: firagomedium;
	scroll-behavior: smooth;
}
body:not(.homebody) {
	padding-top: 100px;
}
.hamburger {
	width: 23px;
	position: absolute;
	top: 26px;
	right: 20px;
	z-index: 6;
	cursor: pointer;
}
.hamburger:before,
.hamburger:after,
.hamburger div {
	background: #5249b9;
	content: "";
	display: block;
	height: 4px;
	border-radius: 3px;
	margin: 4px 0;
	transition: 0.5s;
}
.hamburger.open:before {
	transform: translateY(8px) rotate(135deg);
}
.hamburger.open:after {
	transform: translateY(-8px) rotate(-135deg);
}
.hamburger.open div {
	transform: scale(0);
}
@media screen and (min-width: 1025px) {
	.hamburger {
		display: none;
	}
}
.header {
	position: fixed;
	z-index: 3;
	top: 0;
	right: 0;
	width: 100%;
	box-shadow: 0 10px 20px rgba(188, 188, 188, 0.16);
	background-color: #fff;
	height: 80px;
}
.header__container {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (min-width: 1025px) {
	.header__container {
		display: grid;
		grid-template-columns: auto 1fr minmax(auto, 300px);
	}
}
.header__logo {
	position: relative;
	z-index: 6;
}
@media screen and (min-width: 1025px) {
	.header__logo {
		margin-right: 50px;
	}
}
.header__logo.hide {
	z-index: 0;
}
.header__nav {
	position: fixed;
	top: -101vh;
	right: 0;
	width: 100%;
	height: 100vh;
	padding-top: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	background-color: #ebedff;
	transition: 0.4s ease-out;
}
@media screen and (min-width: 1025px) {
	.header__nav {
		height: unset;
		padding: 0;
		background-color: transparent;
		width: max-content;
		position: static;
		padding-right: 16px;
	}
}
.header__nav::after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 0;
	background: transparent;
	border: 1px solid #5249b9;
	opacity: 0.07;
	top: 99px;
	right: 0;
}
@media screen and (min-width: 1025px) {
	.header__nav::after {
		content: none;
	}
}
.header__nav.open {
	top: 0;
}
@media screen and (max-width: 1024px) {
	.header__nav.open .header__nav__ul {
		grid-gap: 56px;
	}
}
@media screen and (max-width: 1024px) and (max-height: 700px) {
	.header__nav.open .header__nav__ul {
		grid-gap: 30px;
	}
}
@media screen and (min-width: 1025px) {
	.header__nav.open .header__nav__ul {
		grid-gap: 20px;
	}
}
.header__nav__ul {
	display: grid;
	grid-gap: 0;
	transition: 0.2s ease-out;
	justify-items: center;
	position: absolute;
}
@media screen and (min-width: 1025px) {
	.header__nav__ul {
		position: static;
		justify-items: unset;
		grid-template-columns: repeat(6, auto);
		grid-gap: 20px;
	}
}
.header__nav__ul > li {
	max-width: max-content;
	font-family: firago;
	color: #5249b9;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	font-size: 24px;
	line-height: 28px;
	position: relative;
}
@media screen and (min-width: 1025px) {
	.header__nav__ul > li {
		color: #000;
		font-size: 14px;
		line-height: 17px;
	}
}
.header__nav__ul > li.toggled .innerul {
	left: 0;
}
@media screen and (min-width: 1025px) {
	.header__nav__ul > li.toggled .innerul {
		left: 0;
	}
}
@media screen and (min-width: 1025px) {
	.header__nav__ul > li.hovered .innerul {
		opacity: 1;
		top: 84px;
	}
}
@media screen and (min-width: 1025px) {
	.header__nav__ul > li:not(:last-child) .respoarrow {
		display: none;
	}
}
.header__nav__ul > li:not(:last-child) .respoarrow::after {
	content: url(../img/responavrightarrow.svg);
	margin-left: 15px;
}
.header__searchform {
	display: flex;
	align-items: center;
	border: 1px solid transparent;
	background-color: transparent;
	width: 64px;
	justify-content: flex-end;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 7;
	height: 100px;
	padding: 0 20px;
	background-color: #87a2d6;
	transform: translateY(-101%);
	transition: 0.4s ease-out;
}
@media screen and (min-width: 1025px) {
	.header__searchform {
		width: 300px;
		padding: 0;
		transform: none;
		height: 55px;
		position: static;
		padding-left: 20px;
		margin-left: 0;
		margin-right: 0;
		border-radius: 16px;
		background-color: #87a2d6;
		border-color: #87a2d6;
	}
}
.header__searchform input {
	color: #fff;
	flex-grow: 1;
	font-family: firagobook;
	font-size: 16px;
	line-height: 19px;
	flex-basis: 0%;
	flex-shrink: 1;
	padding-right: 70px;
}
@media screen and (min-width: 1025px) {
	.header__searchform input {
		width: 0;
	}
}
.header__searchform input::placeholder {
	padding-right: 0;
	color: #fff;
	opacity: 0.5;
}
.header__searchform__icon {
	cursor: pointer;
	margin: 0 10px;
	min-width: 44px;
	height: 44px;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	background-color: #fff;
	display: flex;
}
.header__searchform__icon.desktop {
	display: none;
}
@media screen and (min-width: 1025px) {
	.header__searchform__icon.desktop {
		display: flex;
	}
}
.header__searchform__icon.mobile {
	margin-right: 30px;
	position: relative;
	z-index: 8;
	background-color: transparent;
	right: 0;
	transition: 0.4s ease-out;
}
@media screen and (min-width: 1025px) {
	.header__searchform__icon.mobile {
		display: none;
	}
}
.header__searchform__icon.mobile.toggled {
	right: 10px;
}
.header__searchform__icon svg {
	width: 24px;
	height: 24px;
}
@media screen and (min-width: 1025px) {
	.header__searchform__icon__X {
		display: none;
	}
}
.header__searchform.toggled {
	transform: translateY(0);
}
.innerul {
	--height: 300px;
	grid-gap: 30px;
	left: 100vw;
	overflow: hidden;
	top: 0;
	position: fixed;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100vh;
	padding-top: 100px;
	align-items: center;
	align-content: center;
	display: grid;
	grid-auto-rows: auto;
	z-index: 6;
	transition: 0.4s ease-out;
	background-color: #ebedff;
	justify-content: center;
}
@media screen and (min-width: 1025px) {
	.innerul {
		transition: opacity 0.4s ease-out;
		overflow: visible;
		opacity: 0;
		border-radius: 10px;
		position: absolute;
		background-color: #fff;
		left: 50%;
		transform: translateX(-50%);
		width: 273px;
		top: calc(-400px - var(--height));
		grid-gap: 0;
		padding: 0;
		justify-content: center;
		height: unset;
		justify-content: stretch;
	}
}
.innerul__li {
	max-width: max-content;
	font-family: firago;
	color: #5249b9;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	font-size: 24px;
	line-height: 28px;
	transition: background-color 0.1s ease-out;
	display: block;
	border-radius: 10px;
}
@media screen and (max-width: 1025px) {
	.innerul__li {
		margin: 0 auto;
	}
}
@media screen and (min-width: 1025px) {
	.innerul__li {
		background-color: #fff;
		display: flex;
		max-width: 1000%;
		justify-content: center;
		align-items: center;
		font-family: firagobook;
		font-size: 14px;
		line-height: 17px;
		color: #000;
		height: 54px;
		width: 100%;
	}
	.innerul__li:hover {
		background-color: #f5f5f5;
	}
}
@media screen and (min-width: 1025px) {
	.innerul::after {
		content: "";
		transform: translate(-50%, -50%) rotate(45deg);
		width: 30px;
		height: 30px;
		display: inline-block;
		border-radius: 6px;
		background-color: #fff;
		top: 0;
		left: 50%;
		position: absolute;
		z-index: -1;
		transition: 0.4s ease-out;
	}
}
.innerul__goback {
	cursor: pointer;
	position: absolute;
	left: 20px;
	top: 0;
	height: 80px;
	display: flex;
	align-items: center;
}
.innerul__goback::before {
	content: url(../img/responavrightarrow.svg);
	transform: rotate(-180deg);
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 7px;
}
@media screen and (min-width: 1025px) {
	.innerul__goback {
		display: none;
	}
}
.homemain {
	display: grid;
}
@media screen and (max-width: 1024px) {
	.homemain {
		padding-left: 0;
		padding-right: 0;
	}
}
@media screen and (min-width: 1025px) {
	.homemain {
		grid-gap: 16px;
		grid-template-columns: 1fr 300px;
	}
}
.homemain__herocontent {
	overflow: hidden;
	width: 100%;
	max-height: 100vh;
	padding-top: 95px;
	position: relative;
	padding-bottom: 18px;
	padding-right: 14px;
	display: grid;
	height: 100vh;
}
@media screen and (min-width: 1025px) {
	.homemain__herocontent {
		grid-template-columns: 1fr 370px;
		height: 500px;
		border-radius: 30px;
		padding-top: 85px;
	}
}
.homemain__herocontent__cover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	overflow: hidden;
	border-radius: 0 0 30px 30px;
	background-image: url(../img/herocontentcover.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
	display: none;
}
@media screen and (min-width: 1025px) {
	.homemain__herocontent__cover {
		display: block;
	}
}
.homemain__herocontent__cover__mob {
	display: block;
	border-radius: 0;
}
@media screen and (min-width: 1025px) {
	.homemain__herocontent__cover__mob {
		display: none;
	}
}
.homemain__herocontent__logobox {
	width: 100%;
	height: 100%;
	place-items: center;
	display: none;
}
@media screen and (min-width: 1025px) {
	.homemain__herocontent__logobox {
		display: grid;
	}
}
.homemain__herocontent__logobox svg {
	height: 115px;
	width: 410px;
}
.homemain__herocontent__articles {
	overflow: visible;
	position: absolute;
	bottom: 24px;
	left: 36px;
	width: calc(100% - 72px);
	height: 130px;
}
@media screen and (min-width: 1025px) {
	.homemain__herocontent__articles {
		padding: 5px 0;
		border-radius: 19px;
		background: transparent;
		box-shadow: 0 13px 76px rgba(0, 0, 0, 0.36);
		backdrop-filter: blur(20.4624996185px);
		--webkit-backdrop-filter: blur(20.462499618530273px);
		background-color: rgba(255, 255, 255, 0.5);
		overflow: hidden;
		height: calc(500px - 75px - 18px);
		width: 100%;
		position: static;
	}
}
.homemain__herocontent__articles__ul {
	display: flex;
	will-change: transform;
	transition-timing-function: linear;
}
@media screen and (min-width: 1025px) {
	.homemain__herocontent__articles__ul {
		flex-direction: column;
	}
}
.homemain__herocontent__articles__ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	overflow: hidden;
	position: static !important;
	padding: 23px 33px;
	border-bottom: 1px solid rgba(112, 149, 132, 0.16);
}
@media screen and (max-width: 1024px) {
	.homemain__herocontent__articles__ul li {
		filter: drop-shadow(0 13px 76px rgba(0, 0, 0, 0.36));
		background-color: rgba(255, 255, 255, 0.71);
		border-radius: 29px;
	}
}
@media screen and (min-width: 1025px) {
	.homemain__herocontent__articles__ul li {
		height: fit-content;
		min-height: 70px;
		padding: 15px 25px;
	}
}
.homemain__herocontent__articles__ul li a {
	font-family: firagomedium;
	font-size: 16px;
	line-height: 22px;
	color: #000;
	font-weight: 500;
	overflow: hidden;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-align: center;
}
.homemain__herocontent__articles__ul li:hover a {
	color: #2a67d9;
}
.homemain__contactinfo {
	order: 2;
}
@media screen and (min-width: 1025px) {
	.homemain__contactinfo {
		padding-top: 85px;
		order: 0;
		height: 500px;
		max-height: 100vh;
		display: flex;
		flex-direction: column;
	}
}
.homemain__contactinfo__content {
	padding: 15px;
	border-radius: 20px;
	background-color: #ebedff;
	flex-grow: 1;
}
@media screen and (min-width: 450px) {
	.homemain__contactinfo__content {
		padding: 18px;
	}
}
.homemain__contactinfo__content--qr {
	background-image: url(../img/woman.webp);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	background-blend-mode: multiply;
}
.homemain__contactinfo__content {
	margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
	.homemain__contactinfo__content {
		margin-bottom: 0;
	}
	.homemain__contactinfo__content:first-child {
		margin-bottom: 20px;
	}
}
.homemain__contactinfo h4 {
	color: #3e3e3e;
	font-family: firagosemibold;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	text-align: center;
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 22px;
}
@media screen and (min-width: 1025px) {
	.homemain__contactinfo h4 {
		font-size: 20px;
		line-height: 20px;
	}
}
.homemain__contactinfo__socials {
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 15px;
	height: 50px;
	width: 100%;
}
@media screen and (min-width: 380px) {
	.homemain__contactinfo__socials {
	}
}
.homemain__contactinfo__socials li {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	max-width: 100px;
	border-radius: 16px;
	overflow: hidden;
}
@media screen and (min-width: 1025px) {
	.homemain__contactinfo__socials li {
		min-width: unset;
	}
}
.homemain__contactinfo__socials li a {
	display: flex;
}
.homemain__contactinfo__socials li.fb {
	background-color: #4267b2;
}
.homemain__contactinfo__socials li.fb a::after {
	content: url(../img/socials/fb.svg);
}
.homemain__contactinfo__socials li.ig {
	background-repeat: no-repeat;
	background: url(../img/socials/igcover.png);
	background-size: cover;
}
.homemain__contactinfo__socials li.ig a::after {
	content: url(../img/socials/ig.svg);
}
.homemain__contactinfo__socials li.yt {
	background-color: red;
}
.homemain__contactinfo__socials li.yt a::after {
	content: url(../img/socials/yt.svg);
}

.homemain__contactinfo__socials li.tkt {
	background-color: black;
}
.homemain__contactinfo__socials li.tkt a::after {
	content: url(../img/socials/tkt.svg);
}

.homemain__contactinfo p {
	font-family: firagomedium;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	margin-bottom: 24px;
}
.homemain__contactinfo__downloads {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
	width: 100%;
	justify-items: center;
}
@media screen and (min-width: 1025px) {
	.homemain__contactinfo__downloads {
		display: none;
	}
}
.homemain__contactinfo__downloads a img {
	height: 45px;
	object-fit: contain;
}
@media screen and (min-width: 1025px) {
	.homemain__contactinfo__downloads a img {
		height: 131px;
		max-width: 131px;
	}
}
@media screen and (min-width: 1025px) {
	.homemain__contactinfo__downloads a img.mob {
		display: none;
	}
}
.homemain__contactinfo__downloads a img.desk {
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
	pointer-events: none;
	display: none;
}
@media screen and (min-width: 1025px) {
	.homemain__contactinfo__downloads a img.desk {
		display: inline-block;
	}
}
.homemain__contactinfo__downloads span {
	display: block;
	margin-top: 16px;
	font-family: firagobook;
	font-size: 16px;
	line-height: 19px;
	color: #000;
	text-align: center;
}
.homemain__contactinfo__qr {
	display: none;
	width: fit-content;
	margin: 0 auto;
}
@media screen and (min-width: 1025px) {
	.homemain__contactinfo__qr {
		display: block;
	}
}
.homemain__newestarticles {
	width: 100%;
	overflow: hidden;
}
@media screen and (min-width: 1025px) {
	.homemain__newestarticles.last {
		margin-bottom: 65px;
	}
}
.homemain__newestarticles .sectionheader {
	margin-top: 25px;
	background: linear-gradient(-90deg, #c0d1f1 0%, #87a2d6 100%);
}
.homemain__newestarticles__navigation {
	display: none;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
	align-items: center;
	height: 40px;
}
@media screen and (min-width: 700px) {
	.homemain__newestarticles__navigation {
		display: grid;
	}
}
.homemain__newestarticles__navigation > a,
.homemain__newestarticles__navigation > div {
	cursor: pointer;
	height: 100%;
	width: 40px;
	border-radius: 14px;
	background-color: #fff;
	display: flex;
	opacity: 1;
	transition: 0.2 ease-out;
	justify-content: center;
	align-items: center;
}
.homemain__newestarticles__navigation > a:first-child svg,
.homemain__newestarticles__navigation > div:first-child svg {
	transform: rotate(-180deg);
}
.homemain__newestarticles__navigation > a.disabled,
.homemain__newestarticles__navigation > div.disabled {
	opacity: 0.22;
}
.homemain__newestarticles__slider {
	width: 100%;
	overflow: hidden;
	height: 304px;
	margin-bottom: 20px;
}
@media screen and (min-width: 700px) {
	.homemain__newestarticles__slider {
		height: 638px;
	}
}
@media screen and (min-width: 1025px) {
	.homemain__newestarticles__slider {
		height: 580px;
	}
}
.homemain__newestarticles__swiper {
	height: 100%;
	overflow: visible;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media screen and (min-width: 1025px) {
	.homemain__newestarticles__swiper {
		grid-template-columns: repeat(3, minmax(auto, 292px));
	}
}
.homemain__newestarticles__swiper.without-grid {
	display: flex;
}
.homemain__newestarticles__swiper.story .homemain__newestarticles__slide img {
	object-position: center 0;
	transition: 0.3s ease-out;
	will-change: object-position;
}
.homemain__newestarticles__swiper.story
	.homemain__newestarticles__slide:hover
	img {
}
.homemain__newestarticles__wrapper {
	height: 100%;
}
.homemain__newestarticles__slide {
	background-color: #fff;
	border-radius: 16px;
	border: 1px solid #f4f4f4;
	position: relative;
	width: 100%;
	height: 279px;
}
@media screen and (min-width: 1025px) {
	.homemain__newestarticles__slide {
		height: 310px;
	}
}
.homemain__newestarticles__slide::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 20px;
	right: 20px;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	background: #fff;
	box-shadow: 0 43px 46px rgba(15, 88, 128, 0);
	transition: 0.4s ease-out;
}
.homemain__newestarticles__slide__category {
	cursor: pointer;
	position: absolute;
	top: 8px;
	right: 8px;
	color: #fff;
	font-family: firago;
	padding: 10px 16px;
	font-size: 11px;
	line-height: 13px;
	border-radius: 10px;
	background-color: var(--categorycolor);
}
@media screen and (min-width: 1025px) {
	.homemain__newestarticles__slide__category {
		padding: 11px 14px;
		font-size: 14px;
		line-height: 17px;
	}
}
.homemain__newestarticles__slide__imgbox {
	display: flex;
	width: 100%;
	height: 147px;
	overflow: hidden;
	border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 1025px) {
	.homemain__newestarticles__slide__imgbox {
		height: 180px;
	}
}
.homemain__newestarticles__slide__imgbox img {
	width: 100%;
	height: 100%;
	transition: 0.4s ease-out;
	object-fit: cover;
}
.homemain__newestarticles__slide__textbox {
	padding: 20px;
	border-radius: 0 0 16px 16px;
	position: relative;
}
.homemain__newestarticles__slide h3 {
	margin-bottom: 10px;
	overflow: hidden;
	font-family: firagosemibold;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	font-size: 14px;
	line-height: 20px;
}
@media screen and (min-width: 1025px) {
	.homemain__newestarticles__slide h3 {
		font-size: 16px;
	}
}
.homemain__newestarticles__slide h3 a {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.homemain__newestarticles__slide p {
	font-family: firagobook;
	opacity: 0.8;
	font-size: 12px;
	line-height: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media screen and (min-width: 1025px) {
	.homemain__newestarticles__slide p {
		font-size: 14px;
		line-height: 17px;
	}
}
.homemain__newestarticles__slide:hover img {
	transform: scale(1.2);
}
.homemain__newestarticles__slide:hover::after {
	box-shadow: 0 43px 46px rgba(15, 88, 128, 0.16);
}
.homemain__populararticles__header {
	background-color: #accdbe;
	margin-top: 25px;
}
.homemain__populararticles.pink .sectionheader {
	background-color: #ff7686;
	background: linear-gradient(
		-90deg,
		rgba(217, 92, 150, 0.82) 0%,
		#ff7686 100%
	);
}
.homemain__populararticles.pink .homemain__populararticles__articles {
	background-color: #fff;
}
@media screen and (min-width: 1025px) {
	.homemain__populararticles.pink .homemain__populararticles__articles {
		overflow: hidden;
	}
}
.homemain__populararticles.pink .homemain__populararticles__ul {
	height: 280px;
}
@media screen and (min-width: 1025px) {
	.homemain__populararticles.pink .homemain__populararticles__ul {
		height: unset !important;
	}
}
.homemain__populararticles.pink .homemain__populararticles__ul.toggled {
	height: 560px;
}
.homemain__populararticles.pink li {
	flex-direction: column;
	height: 140px;
	justify-content: center;
	align-items: flex-start;
	color: #000;
	--hovercolor: #ff9191;
	background-color: transparent;
	transition: 0.1s ease-out;
}
.homemain__populararticles.pink li:nth-of-type(n + 5) {
	display: none;
}
.homemain__populararticles.pink li h3 {
	color: inherit;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 8px;
}
.homemain__populararticles.pink li p {
	font-family: firagobook;
	font-size: 14px;
	line-height: 22px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: inherit;
	opacity: 0.8;
}
.homemain__populararticles.pink li:nth-of-type(odd) {
	--hovercolor: #30b4fa;
}
@media screen and (min-width: 1025px) {
	.homemain__populararticles.pink li:hover {
		color: #fff;
		background-color: var(--hovercolor);
	}
}
.homemain__populararticles__articles {
	background-color: rgba(172, 205, 190, 0.2);
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}
@media screen and (min-width: 1025px) {
	.homemain__populararticles__articles {
		margin-bottom: 0;
	}
}
.homemain__populararticles__articles__toggler {
	height: 64px;
	display: flex;
	padding: 0 24px;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	font-family: firagosemibold;
	color: #000;
	font-size: 16px;
	line-height: 19px;
	border-bottom: 1px solid rgba(112, 149, 132, 0.16);
}
@media screen and (min-width: 1025px) {
	.homemain__populararticles__articles__toggler {
		display: none;
	}
}
.homemain__populararticles__articles__toggler .off {
	display: none;
}
.homemain__populararticles__articles__toggler.toggled .off {
	display: inline;
}
.homemain__populararticles__articles__toggler.toggled .on {
	display: none;
}
.homemain__populararticles__articles.insexcats {
	margin-bottom: 20px;
}
.homemain__populararticles__articles.insexcats:last-of-type {
	margin-bottom: 65px;
}
.homemain__populararticles__ul {
	display: grid;
	width: 100%;
	overflow: hidden;
	height: 300px;
	transition: height 0.4s ease-out;
}
@media screen and (min-width: 1025px) {
	.homemain__populararticles__ul {
		height: 580px;
	}
}
.homemain__populararticles__ul.toggled {
	height: 600px;
}
.homemain__populararticles__ul li {
	height: 100px;
	display: flex;
	padding: 15px 24px;
	align-items: center;
	border-bottom: 1px solid rgba(112, 149, 132, 0.16);
}
@media screen and (min-width: 1025px) {
	.homemain__populararticles__ul li {
		height: unset;
	}
}
.homemain__populararticles__ul li:nth-of-type(n + 7) {
	display: none;
}
.homemain__populararticles__ul li:nth-of-type(n + 6) {
	border: none;
}
.homemain__populararticles__ul li h3 {
	font-size: 18px;
	line-height: 21px;
	color: #709584;
	font-family: firagosemibold;
	overflow: hidden;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
@media screen and (min-width: 1025px) {
	.homemain__populararticles__ul li h3 {
		line-height: 24px;
	}
}
.homemain__populararticles__ul.questionoften li {
	white-space: initial;
	font-family: firagosemibold;
	cursor: pointer;
}
.homemain__populararticles__ul.questionoften.categoriess {
	padding: 27.5px 35px;
	grid-gap: 27.5px;
	height: unset;
}
@media screen and (min-width: 1025px) {
	.homemain__populararticles__ul.questionoften.categoriess {
		margin-bottom: 20px !important;
	}
}
.homemain__populararticles__ul.questionoften.categoriess li {
	display: block;
	color: #000 !important;
	background-color: transparent !important;
	height: unset !important;
	padding: 0 !important;
	height: unset !important;
	padding-bottom: 27.5px !important;
}
.homemain__populararticles__ul.questionoften.categoriess li:last-of-type {
	padding: 0 !important;
	border: none !important;
}
.sectionheader {
	height: 70px;
	border-radius: 20px;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	font-family: firagosemibold;
	font-size: 18px;
	line-height: 22px;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
	.sectionheader {
		margin-top: 25px;
		margin-bottom: 30px;
	}
	.sectionheader.bigger {
		padding: 0 61px;
		font-size: 24px;
		line-height: 28px;
	}
	.sectionheader.smaller {
		font-size: 20px;
		line-height: 24px;
		padding: 0 30px;
	}
}
.sectionheader h2 {
	font-size: inherit;
	line-height: inherit;
}
.sectionheader h2.right-title {
	font-size: 15px;
}
.swiper-wrapper {
	box-sizing: border-box !important;
}
.homemain__newestarticles .homemain__newestarticles__header {
	margin-top: 25px;
}
.homemain__newestarticles .homemain__newestarticles__header h2 {
	width: max-content;
}
.homemain__newestarticles .homemain__newestarticles__header h2 a {
	display: flex;
	align-items: center;
	width: max-content;
}
.homemain__newestarticles .homemain__newestarticles__header h2 a::after {
	margin-left: 19.4px;
	content: url(../img/newarticlesarrow.svg);
	height: 18px;
}
@media screen and (max-width: 1024px) {
	.homebody .homemain__populararticles,
	.homebody .homemain__populararticles.pink {
		order: 1 !important;
	}
	.homebody .homemain__newestarticles__header.sectionheader.mystory {
		margin-top: 20px !important;
	}
}
footer {
	background-color: #c0d1f1;
	background-image: url(../img/footercover.png);
	background-position: cover;
}
.footer {
	color: #5e7db7;
	padding-top: 56px;
	padding-bottom: 72px;
}
@media screen and (min-width: 1025px) {
	.footer {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
.footer__sections {
	display: grid;
	justify-content: center;
	justify-items: center;
}
@media screen and (min-width: 1025px) {
	.footer__sections {
		justify-items: unset;
		justify-content: unset;
		grid-gap: 10px;
		grid-template-columns: repeat(4, 1fr);
	}
}
.footer__section {
	position: relative;
}
.footer__section {
	margin-bottom: 50px;
}
.footer__section h4 {
	font-family: firagobold;
	font-size: 18px;
	line-height: 22px;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	margin-bottom: 30px;
	pointer-events: none;
}
@media screen and (max-width: 1024px) {
	.footer__section h4 {
		cursor: pointer;
		text-align: center;
		pointer-events: all;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 0;
		transition: 0.4s ease-out;
	}
	.footer__section h4::after {
		content: url(../img/footerarrow.svg);
		margin-left: 20px;
		transition: transform 0.5s ease;
		transition-transform: rotate(0);
	}
}
.footer__section h4.rotateArrow::after {
	transform: rotate(-180deg);
}
.smart-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	margin-top: 30px;
	white-space: nowrap;
	width: fit-content;
}
@media screen and (min-width: 1025px) {
	.smart-link {
		align-items: flex-start;
		grid-column-start: 1;
		grid-column-end: 4;
	}
}
.smart-link a {
	font-weight: 700;
}
.smart-link span {
	margin-bottom: 10px;
	white-space: normal;
	text-align: center;
}
@media screen and (min-width: 1025px) {
	.smart-link span {
		white-space: unset;
		text-align: unset;
	}
}
.smart-link__img img {
	width: 150px;
}
.footer__section__ul {
	display: grid;
	--height: min-content;
	grid-gap: 32px;
	overflow: hidden;
	transition: 0.4s ease-out;
	opacity: 0;
	height: 0;
}
@media screen and (min-width: 1025px) {
	.footer__section__ul {
		opacity: 1 !important;
		height: initial !important;
	}
}
.footer__section__ul li {
	text-align: center;
	font-family: firagobook;
	font-size: 16px;
	line-height: 19px;
	opacity: 0.8;
}
@media screen and (min-width: 1025px) {
	.footer__section__ul li {
		text-align: unset;
	}
}
.footer__section__ul li.fb {
	text-transform: capitalize;
	display: flex;
	align-items: center;
}
.footer__section__ul li.fb::before {
	transform: translateY(1px);
	margin-right: 10px;
	content: url(../img/socials/fb-f.svg);
}
.footer__section__ul li.ig {
	text-transform: capitalize;
	display: flex;
	align-items: center;
}
.footer__section__ul li.ig::before {
	margin-right: 10px;
	transform: translateY(1px);
	content: url(../img/socials/ig-f.svg);
}
.footer__section__ul li.yt {
	text-transform: capitalize;
	display: flex;
	align-items: center;
}
.footer__section__ul li.yt::before {
	margin-right: 10px;
	transform: translateY(1px);
	content: url(../img/socials/yt-f.svg);
}
@media screen and (max-width: 1024px) {
	.footer__section.toggled h4 {
		margin-bottom: 30px;
	}
	.footer__section.toggled .footer__section__ul {
		height: var(--height);
		opacity: 1;
	}
}
.pagenav__content {
	font-family: firago;
	font-size: 16px;
	line-height: 19px;
	color: #000;
	padding: 32px 0;
}
@media screen and (min-width: 1025px) {
	.pagenav__content {
		padding: 20px 0;
		font-size: 18px;
		line-height: 22px;
	}
}
.pagenav__content .tagpage {
	font-family: firagobook;
	font-size: 22px;
	line-height: 37px;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	color: #000;
}
@media screen and (min-width: 1025px) {
	.pagenav__content .tagpage {
		font-size: 30px;
		line-height: 37px;
	}
}
.pagenav__content .tagpage span {
	font-family: firagobold;
}
.questionmodal {
	display: flex;
	justify-content: center;
	position: fixed;
	top: 200vh;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: 0.2s ease-out;
	z-index: 99;
	opacity: 1;
	display: block;
	background-color: #fff;
	border-radius: 20px;
	padding: 20px 0;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	width: calc(100vw - 40px);
	height: calc(100vh - 40px);
}
@media screen and (min-width: 1025px) {
	.questionmodal {
		width: 100%;
		height: calc(100vh - 40px);
		max-height: 806px;
		max-width: 812px;
	}
}
.questionmodal.toggled {
	opacity: 1;
	top: 50%;
}
.questionmodal__bg {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 98;
	background-color: rgba(0, 0, 0, 0.5);
	transform: translateX(101vw);
}
.questionmodal__bg.toggled {
	transform: translateX(0);
}
.questionmodal__X {
	width: 44px;
	height: 44px;
	cursor: pointer;
}
.questionmodal__X::after {
	content: url(../img/questionmodalx.svg);
	width: 44px;
	height: 44px;
}
.questionmodal__heading {
	height: 65px;
	border-bottom: 1px solid #efefef;
	padding-left: 36px;
	padding-right: 40px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.questionmodal__heading p {
	font-family: firagomedium;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	font-size: 16px;
	line-height: 19px;
	color: #000;
}
.questionmodal__middle {
	padding: 0 32px;
}
.questionmodal__middle h6 {
	text-transform: uppercase;
	font-feature-settings: "case" on;
	font-family: firagobold;
	color: #000;
	margin-bottom: 26px;
	font-size: 18px;
	line-height: 30px;
}
.questionmodal__answer {
	padding: 30px;
	border-radius: 10px;
	background-color: #f5f5f5;
	overflow: auto;
	flex-grow: 1;
	height: 0;
	margin-bottom: 30px;
}
.questionmodal__answer p {
	font-family: firagobook;
	font-size: 16px;
	line-height: 28px;
	color: #000;
	margin-bottom: 15px;
}
.questionmodal__answer a {
	color: -webkit-link;
}
.questionmodal__answer img {
	width: 30%;
	display: block;
	float: left;
	margin: 0 10px 10px 0;
}
.questionmodal__moreinfo {
	padding: 0 32px;
}
.questionmodal__moreinfo p {
	font-family: firagosemibold;
	font-size: 16px;
	line-height: 30px;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	margin-bottom: 14px;
}
.questionmodal__moreinfo__links {
	display: flex;
	flex-wrap: wrap;
	max-height: 130px;
	overflow: auto;
}
@media screen and (min-width: 1025px) {
	.questionmodal__moreinfo__links {
		display: flex;
		align-items: center;
	}
}
.questionmodal__moreinfo__links a {
	display: flex;
	align-items: center;
	border-radius: 10px;
	padding: 18px 10px;
	padding-right: 15px;
	max-width: 236px;
	background-color: #f5f5f5;
	margin-bottom: 10px;
}
.questionmodal__moreinfo__links a span {
	flex-shrink: 1;
	flex-basis: 0%;
	display: inline-block;
	font-family: firagobook;
	color: rgba(0, 0, 0, 0.5);
	font-size: 14px;
	line-height: 30px;
	flex-grow: 1;
	overflow: hidden;
}
.questionmodal__moreinfo__links a::after {
	margin-left: 14.4px;
	content: url(../img/externallink.svg);
	height: 15.6px;
	width: 15.6px;
	display: inline-block;
	flex-shrink: 0;
	transform: translateY(-2px);
}
.questionmodal__moreinfo__links a:not(:last-of-type) {
	margin-right: 10px;
}
@media screen and (max-width: 1024px) {
	.sexualitymain {
		padding-left: 0;
		padding-right: 0;
	}
}
.sexualitymain__content {
	display: grid;
}
@media screen and (min-width: 1025px) {
	.sexualitymain__content {
		grid-column-gap: 16px;
		grid-template-columns: 1fr 300px;
	}
}
.sexualitymain__description {
	margin: 0 20px;
	margin-bottom: 45px;
	background-color: #fff;
	color: #000;
	font-family: firago;
	height: max-content;
	font-size: 16px;
	line-height: 30px;
	border-radius: 20px;
}
@media screen and (min-width: 1025px) {
	.sexualitymain__description {
		margin: 0;
		margin-bottom: 45px;
		font-size: 18px;
		line-height: 28px;
		padding: 40px;
		padding-bottom: 0;
	}
}
.sexualitymain__description div {
	--height6: max-content;
	--height5: max-content;
	--heightfull: max-content;
	height: var(--height5);
	overflow: hidden;
	padding: 40px 24px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	transition: 0.4s ease-out;
}
.sexualitymain__description div p {
	margin-bottom: 25px;
}
@media screen and (min-width: 1025px) {
	.sexualitymain__description div {
		padding: 0;
		margin-bottom: 45px;
		height: var(--height6);
		overflow: hidden;
		text-overflow: ellipsis;
		display: block;
		-webkit-line-clamp: 6;
		-webkit-box-orient: vertical;
	}
}
.sexualitymain__description div.toggled {
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	-webkit-line-clamp: unset;
	-webkit-box-orient: vertical;
	height: var(--heightfull);
}
@media screen and (min-width: 1025px) {
	.sexualitymain__description div.toggled {
	}
}
.sexualitymain__description__hr {
	height: 100%;
	height: 1px !important;
	background-color: #f2f2f2;
	margin-top: 16px;
	padding: 0 !important;
}
@media screen and (min-width: 1025px) {
	.sexualitymain__description__hr {
		margin-bottom: 0 !important;
		height: 0px !important;
	}
}
div.sexualitymain__description__toggler {
	cursor: pointer;
	height: 64px !important;
	display: flex;
	padding: 0 24px;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	font-family: firagosemibold;
	color: #000;
	font-size: 16px;
	line-height: 19px;
	font-weight: 700;
}
div.sexualitymain__description__toggler span {
	opacity: 0.6;
}
div.sexualitymain__description__toggler .off {
	display: none;
}
div.sexualitymain__description__toggler.toggled {
	display: flex;
}
div.sexualitymain__description__toggler.toggled .off {
	display: inline;
}
div.sexualitymain__description__toggler.toggled .on {
	display: none;
}
div.sexualitymain__description__toggler.toggled::after {
	transform: rotate(180deg);
}
div.sexualitymain__description__toggler::after {
	content: url(../img/seemorearrow.svg);
	margin-left: 6px;
	transform: rotate(0);
	transition: transform 0.1s ease-out;
}
.sexualitymain .homemain__newestarticles__header {
	margin-top: 0;
}
.sexualitymain .homemain__newestarticles__slide__textbox {
	user-select: text;
}
.sexualitymain .homemain__newestarticles__slide__textbox h3 a {
	user-select: text;
}
.sexualitymain .homemain__populararticles {
	order: 1;
}
.sexualitymain .homemain__populararticles__header {
	margin-top: 0;
}
@media screen and (min-width: 1025px) {
	.sexualitymain .homemain__populararticles__header {
		margin-top: 0;
	}
}
@media screen and (min-width: 1025px) {
	.sexualitymain .homemain__populararticles {
		order: 0;
		grid-row: 1/3;
		grid-column: 2/3;
	}
	.sexualitymain .homemain__populararticles.change-row {
		grid-row: 1/2;
	}
}
.sexualitymain__twosliders {
	display: grid;
	width: 100%;
}
@media screen and (min-width: 1025px) {
	.sexualitymain__twosliders {
		grid-column: 1/3;
		grid-template-columns: 1fr 1fr;
		grid-gap: 16px;
	}
}
.sexualitymain__twosliders .homemain__newestarticles__slider {
	height: auto;
	margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
	.sexualitymain__twosliders .homemain__newestarticles__slider {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 1024px) {
	.sexualitymain .homemain__newestarticles__slider.real {
		margin-bottom: 8px;
	}
}
.searchword {
	margin: 30px 0;
	margin: 75px auto 30px auto;
}
.searchword__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(127, 108, 249, 0.35);
	padding-bottom: 10px;
}
.searchword__top h2 {
	font-family: firagosemibolditalic;
	font-size: 24px;
	color: #000;
	font-style: italic;
}
@media screen and (min-width: 1025px) {
	.searchword__top h2 {
		font-size: 30px;
	}
}
@media screen and (min-width: 1441px) {
	.searchword__top h2 {
		font-size: 36px;
	}
}
@media screen and (min-width: 1900px) {
	.searchword__top h2 {
		font-size: 42px;
	}
}
.searchword__top a img {
	width: 18.56px;
	height: 18.56px;
	object-fit: scale-down;
}
@media screen and (min-width: 1025px) {
	.searchword__top a img {
		width: unset;
		height: unset;
		object-fit: unset;
	}
}
.searchword__bottom {
	display: flex;
	margin-top: 35px;
}
.searchword__bottom p,
.searchword__bottom span {
	font-family: firagomedium;
	font-size: 18px;
	line-height: 37px;
	text-transform: uppercase;
	font-feature-settings: "case" on;
}
@media screen and (min-width: 1025px) {
	.searchword__bottom p,
	.searchword__bottom span {
		font-size: 22px;
		line-height: 37px;
	}
}
@media screen and (min-width: 1441px) {
	.searchword__bottom p,
	.searchword__bottom span {
		font-size: 26px;
		line-height: 37px;
	}
}
@media screen and (min-width: 1900px) {
	.searchword__bottom p,
	.searchword__bottom span {
		font-size: 30px;
		line-height: 37px;
	}
}
.searchword__bottom p {
	margin-right: 5px;
}
.searchmain__list__item {
	width: 100%;
	margin-bottom: 20px;
}
.searchmain__list__item:last-child {
	margin-bottom: 25px;
}
@media screen and (min-width: 1025px) {
	.searchmain__list__item:last-child {
		margin-bottom: 65px;
	}
}
@media screen and (min-width: 1025px) {
	.searchmain__list__item {
		display: flex;
		padding: 15px;
		height: fit-content;
	}
	.searchmain__list__item .homemain__newestarticles__slide__imgbox {
		width: 300px;
		border-radius: 16px;
		flex-shrink: 0;
	}
	.searchmain__list__item .homemain__newestarticles__slide__textbox {
		flex-grow: 1;
		z-index: 2;
	}
	.searchmain__list__item .homemain__newestarticles__slide__textbox h3 {
		font-size: 20px;
		line-height: 24px;
		max-width: 70%;
	}
	.searchmain__list__item .homemain__newestarticles__slide__textbox p {
		font-size: 16px;
		line-height: 28px;
	}
	.searchmain__list__item .homemain__newestarticles__slide__category {
		right: calc(100% - 300px);
		top: 25px;
	}
}
.searchmain__list__item__tags {
	position: absolute;
	bottom: 10px;
	left: 335px;
	display: none;
	opacity: 0.5;
}
@media screen and (min-width: 1025px) {
	.searchmain__list__item__tags {
		display: flex;
		height: 91%;
		flex-direction: column;
		justify-content: space-between;
		width: 65%;
		z-index: 0;
	}
}
.searchmain__list__item__tags a {
	font-size: 14px;
	line-height: 24px;
}
.searchmain__list__item__tags a:first-child {
	align-self: flex-end;
}
.statiamain {
	padding-top: 30px;
}
@media screen and (min-width: 1025px) {
	.statiamain {
		padding-top: 35px;
	}
}
.statiamain .sexualitymain__content {
	display: flex;
	flex-direction: column;
}
@media screen and (min-width: 1025px) {
	.statiamain .sexualitymain__content {
		display: flex;
		flex-direction: row;
	}
	.statiamain .sexualitymain__content .homemain__populararticles.pink {
		flex-shrink: 0;
	}
}
.statiamain .homemain__newestarticles {
	width: 100%;
	overflow: hidden;
}
.statiamain__whitebg__mobile {
	padding: 20px;
	border-radius: 30px 30px 0 0;
	background-color: #fff;
	margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
	.statiamain__whitebg__mobile {
		margin-bottom: 0;
		padding: 0;
		border-radius: 0;
		background-color: transparent;
	}
}
@media screen and (min-width: 1025px) {
	.statiamain__whitebg__desktop {
		padding: 45px;
		background-color: #fff;
		border-radius: 20px;
		margin-bottom: 50px;
	}
}
.statiamain__content {
	width: 100%;
	display: flex;
	flex-direction: column;
}
@media screen and (min-width: 1025px) {
	.statiamain__content {
		flex-grow: 1;
		width: 0;
	}
}
.statiamain__title {
	user-select: text;
	font-family: firagosemibold;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	color: #000;
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 44px;
}
@media screen and (min-width: 1025px) {
	.statiamain__title {
		margin-bottom: 12px;
		font-size: 30px;
		line-height: 46px;
	}
}
.statiamain__info {
	font-family: firagobook;
	color: #000;
	opacity: 0.5;
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 28px;
}
@media screen and (min-width: 1025px) {
	.statiamain__info {
		margin-bottom: 30px;
	}
}
.statiamain__coverlink {
	width: 100%;
	height: 230px;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	margin-bottom: 40px;
}
@media screen and (min-width: 1025px) {
	.statiamain__coverlink {
		height: 557px;
		margin-bottom: 37px;
	}
}
.statiamain__coverlink img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.statiamain__article__content {
	margin-bottom: 30px;
}
.statiamain__article__content img {
	width: 100% !important;
	height: unset !important;
}
@media screen and (min-width: 1025px) {
	.statiamain__article__content {
		padding-bottom: 53px;
		border-bottom: 1px solid rgba(112, 112, 112, 0.09);
		margin-bottom: 39px;
	}
}
.statiamain__article__content p {
	user-select: text;
	font-size: 16px;
	line-height: 30px;
	font-family: firagobook;
	color: #000;
}
.statiamain__article__content li {
	user-select: text;
	font-size: 16px;
	line-height: 30px;
	font-family: firagobook;
	color: #000;
	list-style: unset;
	margin-left: 16px;
}
.statiamain__article__content a {
	color: #87a2d6;
}
.statiamain__article__content > p,
.statiamain__article__content > ul,
.statiamain__article__content > ol,
.statiamain__article__content > div,
.statiamain__article__content > h1,
.statiamain__article__content > h2,
.statiamain__article__content > h3,
.statiamain__article__content > h4 {
	margin-bottom: 2em;
}
.statiamain__article__content .quote {
	user-select: text;
	border-radius: 20px;
	display: block;
	margin-bottom: 2em;
	font-family: gothambookitalic;
	font-size: 16px;
	line-height: 30px;
	font-weight: 500;
	padding: 40px 30px;
	background-color: #c0d1f1;
	color: #fff;
}
@media screen and (min-width: 1025px) {
	.statiamain__article__content .quote {
		color: #000;
		background-color: #c0d1f1;
		display: grid;
		grid-template-columns: auto 1fr;
		grid-gap: 32px;
	}
}
.statiamain__article__content .quote::before {
	content: url(../img/quote.svg);
	display: block;
	margin-bottom: 20px;
	width: 84.87px;
	height: 60.62px;
}
@media screen and (min-width: 1025px) {
	.statiamain__article__content .quote::before {
		content: url(../img/quote.svg);
	}
}
@media screen and (min-width: 1025px) {
	.statiamain__article__content .withimage {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 21px;
	}
}
.statiamain__article__content .withimage p {
	margin-bottom: 50px;
}
@media screen and (min-width: 1025px) {
	.statiamain__article__content .withimage p {
		margin-bottom: 0;
	}
}
.statiamain__article__content .withimage__imgbox {
	position: relative;
	width: 100%;
	height: 212px;
	overflow: hidden;
	border-radius: 10px;
}
.statiamain__article__content .withimage__imgbox:hover div {
	opacity: 0.5;
}
.statiamain__article__content .withimage__imgbox div {
	display: none;
	transition: ease 0.5s all;
}
@media screen and (min-width: 1025px) {
	.statiamain__article__content .withimage__imgbox div {
		display: inherit;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #062e2e;
		opacity: 0;
	}
}
.statiamain__article__content .withimage__imgbox div img {
	display: none;
}
@media screen and (min-width: 1025px) {
	.statiamain__article__content .withimage__imgbox div img {
		display: inherit;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 50px;
		height: 50px;
	}
}
@media screen and (min-width: 1025px) {
	.statiamain__article__content .withimage__imgbox {
		height: 443px;
	}
}
.statiamain__article__content .withimage__imgbox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.statiamain__tagsAndShares {
	display: grid;
	grid-gap: 30px;
	width: 100%;
	margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
	.statiamain__tagsAndShares {
		margin-bottom: 0;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
}
.statiamain__tagsAndShares__label {
	font-family: firagobold;
	font-weight: 700;
	color: #000;
	font-size: 20px;
	line-height: 24px;
	text-transform: capitalize;
	margin-bottom: 18px;
}
@media screen and (min-width: 1025px) {
	.statiamain__tagsAndShares__label {
		margin-bottom: 24px;
	}
}
.statiamain__tagsAndShares .tags__ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.statiamain__tagsAndShares .tags__ul li {
	display: inline-block;
	margin-bottom: 20px;
}
.statiamain__tagsAndShares .tags__ul li:not(:last-of-type) {
	margin-right: 20px;
}
.statiamain__tagsAndShares .tags__ul li a {
	padding: 22px;
	border-radius: 10px;
	background-color: #f9f9f9;
	display: inline-block;
	transition: 0.3s all;
}
.statiamain__tagsAndShares .tags__ul li a:hover {
	background-color: #95d1c6;
	color: #fff;
}
@media screen and (min-width: 1025px) {
	.statiamain .homemain__newestarticles__slider {
		height: 382px;
	}
}
@media screen and (min-width: 1025px) {
	.statiamain .homemain__populararticles__ul li:last-of-type {
		border: none !important;
	}
}
.statiamain .mgbt {
	margin-bottom: 30px !important;
}
@media screen and (min-width: 1025px) {
	.statiamain .mgbt {
		margin-bottom: 35px !important;
	}
}
@media screen and (min-width: 1025px) {
	.statiamain aside {
		max-width: 360px;
	}
}
@media screen and (min-width: 1900px) {
	.statiamain aside {
		max-width: 398px;
	}
}
.statiamain .shares {
	max-width: 348px;
	width: 100%;
	display: flex;
	flex-direction: column;
}
.statiamain .shares__value {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 10px;
	max-width: 382px;
	width: 100%;
	align-items: center;
}
.statiamain .shares__value.coverlink {
	position: absolute;
	right: 15px;
	top: 18px;
	display: none;
}
@media screen and (min-width: 1025px) {
	.statiamain .shares__value.coverlink {
		display: grid;
	}
}
.statiamain .shares__value.modal {
	max-width: unset;
	display: flex;
	grid-gap: 0;
	width: 100%;
}
.statiamain .shares__value.modal .shares__container {
	width: 100%;
}
.statiamain .shares__container {
	cursor: pointer;
	padding: 0 20px;
	display: flex;
	align-items: center;
	height: 60px;
	border-radius: 9px;
	background-color: #f9f9f9;
	transition: all 0.3s;
}
.statiamain .shares__container input {
	width: 0;
	flex-grow: 1;
	user-select: text;
	pointer-events: none;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	transition: color 0.3s ease-out;
}
.statiamain .shares__container svg {
	margin-left: 5px;
}
.statiamain .shares__container svg path {
	transition: stroke 0.3s ease-out;
}
.statiamain .shares__container:hover input {
	color: #12a79d;
}
.statiamain .shares__container:hover svg path {
	stroke: #12a79d;
}
.statiamain .shares__container.coppied input {
	color: #12a79d;
}
.statiamain .shares__container.coppied svg path {
	stroke: #12a79d;
}
.statiamain .shares__btn {
	display: flex;
	border-radius: 9px;
	background-color: #c0d1f1;
	width: 60px;
	height: 60px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.statiamain .shares__btn::after {
	content: url(../img/share.svg);
}
@media screen and (min-width: 1025px) {
	.statiamain .shares__btn.hov {
		background-color: #fbd14c;
		transition: box-shadow 0.1s ease-out;
		box-shadow: 0 10px 30px rgba(239, 199, 90, 0);
	}
	.statiamain .shares__btn.hov:hover {
		box-shadow: 0 10px 30px rgba(239, 199, 90, 0.7);
	}
}
.sharemodal {
	position: fixed;
	max-height: calc(100vh - 50px);
	left: 50%;
	top: 200vh;
	transform: translate(-50%, -50%);
	border-radius: 30px;
	z-index: 99;
	width: calc(100% - 20px);
	height: auto;
	background-color: #fff;
	padding: 30px 40px;
	transition: top 0.4s ease-out;
}
@media screen and (min-width: 1025px) {
	.sharemodal {
		width: max-content;
		max-width: 548px;
	}
}
.sharemodal.toggled {
	top: 50%;
}
.sharemodal__container {
	display: flex;
	width: 100%;
	flex-direction: column;
}
.sharemodal__header {
	display: flex;
	justify-content: space-between;
}
.sharemodal__header__left p {
	font-family: firagobold;
	font-size: 22px;
	line-height: 24px;
	color: #000;
	margin-bottom: 3px;
	text-transform: capitalize;
}
.sharemodal__header__left h6 {
	font-family: firagobook;
	font-size: 14px;
	line-height: 22px;
	color: rgba(0, 0, 0, 0.45);
	margin-bottom: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	max-height: 22px;
}
.sharemodal__shares {
	margin-bottom: 18px;
}
.sharemodal__shares p {
	font-family: gothammedium;
	font-size: 16px;
	line-height: 24px;
	color: #000;
	font-weight: 500;
	margin-bottom: 16px;
	text-transform: capitalize;
}
.sharemodal__shares__ul {
	display: grid;
	grid-gap: 10px;
	width: 100%;
}
@media screen and (min-width: 1025px) {
	.sharemodal__shares__ul {
		grid-template-columns: repeat(5, 80px);
		grid-gap: 17px;
	}
}
.sharemodal__shares__ul li {
	display: inline-block;
}
.sharemodal__shares__ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	width: 100%;
	height: 80px;
}
.sharemodal__shares__ul li a::after {
	display: inline-block;
	height: 27px;
}
.sharemodal__shares__ul li a.fb {
	background-color: #4267b2;
}
.sharemodal__shares__ul li a.fb::after {
	content: url(../img/shares/fb.svg);
}
.sharemodal__shares__ul li a.fb:hover {
	filter: drop-shadow(0 10px 30px rgba(66, 103, 178, 0.26));
	box-shadow: 0 10px 30px rgba(66, 103, 178, 0.26);
}
.sharemodal__shares__ul li a.msgr {
	background-color: #00b2ff;
}
.sharemodal__shares__ul li a.msgr::after {
	content: url(../img/shares/msgr.svg);
}
.sharemodal__shares__ul li a.msgr:hover {
	filter: drop-shadow(0 10px 30px rgba(0, 178, 255, 0.26));
}
.sharemodal__shares__ul li a.ig {
	background-color: #e1306c;
}
.sharemodal__shares__ul li a.ig::after {
	content: url(../img/shares/ig.svg);
}
.sharemodal__shares__ul li a.ig:hover {
	filter: drop-shadow(0 10px 30px rgba(225, 48, 108, 0.26));
}
.sharemodal__shares__ul li a.lk {
	background-color: #2d72c5;
}
.sharemodal__shares__ul li a.lk::after {
	content: url(../img/shares/lk.svg);
}
.sharemodal__shares__ul li a.lk:hover {
	filter: drop-shadow(0 10px 30px rgba(40, 103, 178, 0.26));
}
.sharemodal__shares__ul li a.mail {
	background-color: #c71610;
}
.sharemodal__shares__ul li a.mail::after {
	content: url(../img/shares/mail.svg);
}
.sharemodal__shares__ul li a.mail:hover {
	filter: drop-shadow(0 10px 30px rgba(199, 22, 16, 0.26));
}
.sharemodal__X {
	width: 50px;
	height: 50px;
	cursor: pointer;
}
.sharemodal__X::after {
	content: url(../img/questionmodalx.svg);
	width: 50px;
	height: 50px;
}
.sharemodal__bg {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 98;
	display: none;
}
.sharemodal__bg.toggled {
	display: inline-block;
}
.test {
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.pagepagination {
	width: 100%;
	display: grid;
	grid-gap: 6px;
	align-items: center;
	height: 46px;
	grid-template-columns: auto 1fr auto;
	margin-bottom: 46px;
}
@media screen and (min-width: 1025px) {
	.pagepagination {
		margin: 0 auto;
		width: max-content;
		height: 38px;
		margin-bottom: 0;
	}
}
.pagepagination__ul {
	display: flex;
	align-items: center;
	height: 100%;
	width: 100%;
	justify-content: stretch;
}
.pagepagination__ul li {
	height: 100%;
	width: 100%;
	display: flex;
	width: 38px;
}
@media screen and (min-width: 1025px) {
	.pagepagination__ul li {
		width: 38px;
	}
}
.pagepagination__ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	border-radius: 9px;
	background-color: #fff;
}
.pagepagination__ul li:not(:last-of-type) {
	margin-right: 6px;
}
.pagepagination__ul li.active a {
	background-color: #8075fa;
	color: #fff;
}
.pagepagination__left,
.pagepagination__right {
	border-radius: 9px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 49px;
	height: 100%;
	cursor: pointer;
	background-color: #fff;
}
@media screen and (min-width: 1025px) {
	.pagepagination__left,
	.pagepagination__right {
		width: 39px;
	}
}
.pagepagination__left svg,
.pagepagination__right svg {
	height: 15.91px;
	width: auto;
	width: 9.82px;
	display: inline-block;
}
@media screen and (min-width: 1025px) {
	.pagepagination__left svg,
	.pagepagination__right svg {
		width: 7.98px;
		height: 12.93px;
	}
}
@media screen and (min-width: 1025px) {
	.questionsformodal {
		height: 100px !important;
	}
}
@media screen and (min-width: 1025px) {
	.category-two {
		height: max-content !important;
	}
}
.category-two .homemain__newestarticles__slider.innercontainer.real {
	height: unset;
}
@media screen and (min-width: 1025px) {
	.category-two .homemain__newestarticles__slider.innercontainer.real {
		margin-bottom: 0;
		padding-bottom: 50px;
	}
}
.category-two .homemain__newestarticles__wrapper {
	display: grid;
	width: 100%;
	grid-gap: 20px;
}
@media screen and (min-width: 1025px) {
	.category-two .homemain__newestarticles__wrapper {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 20px 16px;
	}
}
.category-two .homemain__newestarticles__slide {
	width: 100%;
}
@media screen and (max-width: 1024px) {
	.category-two .homemain__newestarticles__slide:nth-child(n + 7) {
		display: none;
	}
}
@media screen and (min-width: 1025px) {
	.category-two .homemain__newestarticles__slide.max9:nth-child(n + 10) {
		display: none;
	}
	.category-two .homemain__newestarticles__slide.max12:nth-child(n + 13) {
		display: none;
	}
}
@media screen and (max-width: 1024px) {
	.category-two .homemain__newestarticles__slider.innercontainer.real {
		margin-bottom: 38px !important;
	}
}
@media screen and (min-width: 1025px) {
	.pagepagination {
		margin-bottom: 50px !important;
	}
}
.homemain__populararticles__header.sectionheader.greenish {
	background: none !important;
	background-color: #accdbe !important;
}
.homemain__populararticles__articles.mgbt.greenish {
	background-color: rgba(172, 205, 190, 0.2) !important;
}
@media screen and (min-width: 1025px) {
	.sexualitymain__content.full {
		grid-template-columns: unset;
	}
	.sexualitymain__content.full .homemain__newestarticles__wrapper {
		grid-template-columns: repeat(4, 1fr);
	}
}
.femeamain {
	margin-top: 40px;
	margin-bottom: 71px;
}
@media screen and (max-width: 1025px) {
	.femeamain {
		padding: 0;
	}
}
@media screen and (min-width: 1025px) {
	.femeamain {
		margin-bottom: 96px;
	}
}
.femeamain ol {
	padding-left: 1em;
}
@media screen and (min-width: 1025px) {
	.femeamain .aboutslide__textbox {
		height: 0;
		flex-grow: 1;
		overflow: auto;
	}
}
.femeamain .aboutslide__textbox p {
	font-size: 16px;
	line-height: 30px;
	font-family: firagobook;
	color: #000;
}

.femeamain .aboutslide__textbox li {
	user-select: text;
	font-size: 16px;
	line-height: 30px;
	font-family: firagobook;
	color: #000;
	list-style: unset;
	margin-left: 16px;
}

.femeamain .aboutslide__textbox * {
	font-family: firagobook;
}
.femeamain .aboutslide__textbox > *:not(:last-child) {
	margin-bottom: 1em;
}
.femeamain .aboutslide__textbox h1,
.femeamain .aboutslide__textbox h2,
.femeamain .aboutslide__textbox h3,
.femeamain .aboutslide__textbox h4,
.femeamain .aboutslide__textbox h5,
.femeamain .aboutslide__textbox h6 {
	font-size: 22px;
	font-family: firamedium;
	line-height: 30px;
	margin-bottom: 2em;
}
.femeamain__container {
	display: grid;
	background-color: #fff;
	width: 100%;
	grid-gap: 38px;
	grid-template-columns: 100%;
}
@media screen and (max-width: 1025px) {
	.femeamain__container {
		padding: 0 20px;
	}
}
@media screen and (min-width: 1025px) {
	.femeamain__container {
		grid-template-columns: auto 360px;
		grid-gap: 59px;
		border-radius: 20px;
		overflow: hidden;
	}
}
@media screen and (min-width: 1900px) {
	.femeamain__container {
		grid-template-columns: auto 360px;
	}
}
.femeamain__content__title {
	font-family: firagosemibold;
	font-size: 24px;
	line-height: 37px;
	color: #000;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
	.femeamain__contentslider__wrapper {
		height: 1000px;
	}
}
.femeamain__contentslider__swiper {
	width: 100%;
	pointer-events: all;
}
@media screen and (min-width: 1025px) {
	.femeamain__contentslider__swiper {
		pointer-events: all;
	}
}
@media screen and (min-width: 1025px) {
	.femeamain__contentslider__slide {
		padding: 40px;
		display: flex;
		flex-direction: column;
	}
}
.aboutus-femea {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(292px, 1fr));
	grid-template-rows: repeat(auto-fill, 320px);
	justify-content: center;
	gap: 25px;
}
.aboutus-femea article {
	background-color: #f7f8ff;
	border-radius: 16px;
	border: 1px solid #f4f4f4;
	position: relative;
	overflow: hidden;
	margin: 0 !important;
}
.aboutus-femea__text {
	padding: 10px 15px;
}
.aboutus-femea__img {
	display: block;
	height: 180px;
}
.aboutus-femea__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.aboutus-femea h3 {
	font-size: 16px !important;
	font-family: "firagosemibold" !important;
}
.aboutus-femea p {
	font-family: "firagobook" !important;
	font-size: 14px !important;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.femeamain__navslider {
	background-color: #8075fa;
	height: 91px;
	order: -1;
	display: flex;
	align-items: center;
	width: 100vw;
	position: relative;
	left: -20px;
}
@media screen and (min-width: 1025px) {
	.femeamain__navslider {
		border-radius: 0 20px 20px 0;
		width: 100%;
		height: 850px;
		position: static;
		order: 0;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		padding-top: 30px;
	}
}
.femeamain__navslider__swiper {
	width: 100%;
}
@media screen and (min-width: 1025px) {
	.femeamain__navslider__swiper {
		padding-top: 20px;
	}
}
.femeamain__navslider__wrapper {
	align-self: flex-end;
	height: 80px;
	margin-top: 12px;
	width: 100%;
	align-items: flex-end;
}
@media screen and (min-width: 1025px) {
	.femeamain__navslider__wrapper {
		align-self: unset;
		height: unset;
		margin-top: 0;
	}
}
.femeamain__navslider__slide {
	margin-left: 25px;
	justify-content: center;
	flex-grow: 0;
	display: flex;
	align-items: center;
	cursor: pointer;
	width: 60% !important;
	border-radius: 16px 16px 0 0;
	font-family: firago;
	font-size: 18px;
	line-height: 30px;
	color: #fff;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	transition: background-color 0.1s linear, color 0.1s linear;
}
@media screen and (min-width: 1025px) {
	.femeamain__navslider__slide {
		padding: 34px 0;
		width: 382px !important;
		right: 15px;
	}
}
.femeamain__navslider__slide::after,
.femeamain__navslider__slide::before {
	position: absolute;
	display: inline-block;
	z-index: 2;
	width: max-content;
	height: max-content;
	opacity: 0;
	transition: opacity 0.1s linear;
}
@media screen and (min-width: 1025px) {
	.femeamain__navslider__slide::after,
	.femeamain__navslider__slide::before {
		transform: rotate(90deg);
	}
}
.femeamain__navslider__slide::after {
	top: 66%;
	right: 87%;
	content: url(../img/femeanav/mob-left.svg);
}
@media screen and (min-width: 1025px) {
	.femeamain__navslider__slide::after {
		top: unset;
		bottom: 72%;
		right: 85%;
	}
}
.femeamain__navslider__slide::before {
	top: 66%;
	left: 90%;
	content: url(../img/femeanav/mob-right.svg);
}
@media screen and (min-width: 1025px) {
	.femeamain__navslider__slide::before {
		left: unset;
		right: 85%;
		top: 77%;
	}
}
.femeamain__navslider__slide.thumbactive {
	background-color: #fff;
	color: #000;
}
.femeamain__navslider__slide.thumbactive::after,
.femeamain__navslider__slide.thumbactive::before {
	opacity: 1;
}
@media screen and (min-width: 1025px) {
	.femeamain__navslider__slide.thumbactive {
		text-align: center;
		border-radius: 0 16px 16px 0;
	}
}
.homemain__newestarticles__slide.max16:nth-of-type(n + 17) {
	display: none;
}
.contactform {
	display: grid;
	grid-gap: 20px;
}
@media screen and (min-width: 1025px) {
	.contactform {
		grid-gap: 27px 17px;
		grid-template-columns: repeat(3, 1fr);
	}
}
.contactform .input-div input {
	height: 70px;
}
.contactform .input-div input,
.contactform .input-div textarea {
	padding: 0 30px;
	width: 100%;
	display: flex;
	align-items: center;
	border-radius: 14px;
	border: 1px solid #e5e5e5;
	color: #000;
	font-family: firago;
	font-size: 16px;
	line-height: 30px;
}
.contactform .input-div input::placeholder,
.contactform .input-div textarea::placeholder {
	color: rgba(0, 0, 0, 0.5);
	font-family: firagoitalic;
}
.contactform .input-div input:focus,
.contactform .input-div textarea:focus {
	border-color: rgba(0, 0, 0, 0.8);
}
.contactform .input-div textarea {
	padding: 30px;
	height: 478px;
}
@media screen and (min-width: 1025px) {
	.contactform .input-div textarea {
		height: 351px;
	}
}
.contactform .input-div.invalid.invalid-shown input,
.contactform .input-div.invalid.invalid-shown textarea {
	border-color: #dc6848;
}
@media screen and (min-width: 1025px) {
	.contactform .textarea-div {
		grid-column: 1/5;
	}
}
@media screen and (min-width: 1025px) {
	.contactform button {
		justify-self: flex-end;
		grid-column: 1/5;
	}
}
@media screen and (min-width: 1025px) {
	.contactform button {
		margin-top: 3px;
	}
}
.pinkbtn {
	cursor: pointer;
	height: 70px;
	width: 100%;
	border-radius: 15px;
	background: linear-gradient(rgba(217, 92, 150, 0.82) 0%, #ff7686 100%);
	font-size: 18px;
	line-height: 30px;
	font-family: firagomedium;
	text-transform: uppercase;
	font-feature-settings: "case" on;
	color: #fff;
}
@media screen and (min-width: 700px) {
	.pinkbtn {
		padding: 0 69px;
		max-width: 222px;
	}
}
@media screen and (min-width: 1025px) {
	.homemain__newestarticles__slider.innercontainer.real.tagreal {
		margin-bottom: 0 !important;
	}
	.homemain__newestarticles__slider.innercontainer.real.tagreal
		.homemain__newestarticles__wrapper {
		padding-bottom: 50px !important;
	}
}
@media screen and (max-width: 1024px) {
	.homemain__newestarticles__swiper.swiper-container.real.respo6
		.homemain__newestarticles__wrapper.swiper-wrapper {
		display: grid !important;
		flex-direction: column !important;
		flex-wrap: nowrap !important;
		width: 100% !important;
		grid-gap: 20px !important;
	}
	.homemain__newestarticles__swiper.swiper-container.real.respo6
		.homemain__newestarticles__wrapper.swiper-wrapper
		.homemain__newestarticles__slide {
		width: 100% !important;
	}
}
@media screen and (max-width: 1024px) {
	.respo6parent {
		height: unset !important;
	}
}
.tags-slider {
	grid-template-columns: 1fr;
}
@media screen and (min-width: 1025px) {
	.tags-slider {
		grid-template-columns: repeat(4, minmax(auto, 292px));
	}
}
.without-text {
	height: 290px;
}
.without-text h3 {
	margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
	.without-text {
		height: 280px;
	}
}
@media screen and (max-width: 1024px) {
	.without-text .homemain__newestarticles__slide__textbox {
		padding: 15px;
	}
	.without-text .homemain__newestarticles__slide__imgbox {
		height: 200px;
	}
}
.without-text p {
	display: none;
}
#top-ge-counter-container {
	position: absolute;
	bottom: -15px;
}
@media screen and (max-width: 1024px) {
	#top-ge-counter-container {
		bottom: -70px;
		left: 25px;
	}
}

/*# sourceMappingURL=style.css.map */
