@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
	/* Colors */
	--agds-color-1: #94E2CC;
	--agds-color-1-rgb: 148, 227, 205;

	--agds-color-2: #4BD294;
	--agds-color-2-rgb: 242, 174, 48;

	--agds-white: #fff;
	--agds-white-rgb: 255, 255, 255;
	--agds-light: #F5F6F8;
	--agds-grey: #636363;
	--agds-dark: #00444B;
	--agds-dark-rgb: 0, 69, 77;
	--agds-black: #000;
	--agds-black-rgb: 0, 0, 0;

	/* Typography */
	--agds-font-primary: 'Poppins';
	--agds-font-secondary: 'agds-caslon', sans-serif;
	--agds-body-font-size: 16px;
	--agds-body-font-weight: 400;
	--agds-body-line-height: 1.37;

	/* Sizes */
	--agds-gutter-x: 24px;
	--agds-gutter-x-md: calc(var(--agds-gutter-x) * 0.5);
	--agds-gutter-x-sm: calc(var(--agds-gutter-x) * 0.25);

	--agds-container: 1300px;
	--agds-container-xl: 1500px;
	--agds-header-height: 74px;
	--agds-header-height-mob: 60px;
	--agds-border-radius: 3px;

	/* Transitions */
	--agds-transition-duration: .25s;
	--agds-transition-timing-function: ease;
	--agds-transition: var(--agds-transition-duration) var(--agds-transition-timing-function);
}

/* MAIN */
html,
body {
	color: var(--agds-dark);
	background-color: var(--agds-white);
	letter-spacing: -0.375px;
}

.bg-dark {
	background-color: var(--agds-dark);
	color: var(--agds-white);
}

.bg-green {
	background-color: var(--agds-color-2);
}

.bg-green-light {
	background-color: var(--agds-color-1);
}

.bg-light {
	background-color: var(--agds-light);
}

.main {
	margin-top: var(--agds-header-height);
}

.text-lg {
	font-size: 24px;
}

.text-green {
	color: var(--agds-color-2);
}

.section-title {
	font-family: var(--agds-font-secondary);
	line-height: 1.2;
	font-size: 92px;
	font-weight: 400;
}

.title-font-primary {
	font-family: var(--agds-font-primary), sans-serif;
	font-weight: 700;
}

.section-title--sm {
	font-size: 60px;
}

.section-title i {
	font-weight: 500;
	position: relative;
	border-bottom: 2px solid currentColor;
}

._decor-smile-green-dark,
._decor-chat-green,
._decor-smiles-green,
._decor-dashed-line-green {
	position: relative;
}

._decor-dashed-line-green--2::after,
._decor-dashed-line-green::before {
	content: '';
	position: absolute;
	top: -130px;
	left: -107px;
	width: 563px;
	height: 247px;
	background-image: url('../img/decor-dashed-line-green.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	-webkit-transform: rotate(152.222deg);
	-ms-transform: rotate(152.222deg);
	transform: rotate(152.222deg);
}

._decor-smiles-green::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 216px;
	height: 225px;
	background-image: url('../img/decor-smiles-green.svg');
	background-repeat: no-repeat;
	background-size: 100%;
}

._decor-smile-green-dark::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 112px;
	height: 108px;
	background-image: url('../img/decor-smile-green-dark.svg');
	background-repeat: no-repeat;
	background-size: 100%;
}

._decor-chat-green::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 559px;
	height: 193px;
	background-image: url('../img/decor-chat-green.svg');
	background-repeat: no-repeat;
	background-size: 100%;
}

._bb-green-light {
	border-bottom: 23px solid var(--agds-color-1);
}

._zoom-in img {
	-webkit-transition: -webkit-transform 3s cubic-bezier(0.16, 0.48, 0.21, 0.67);
	transition: -webkit-transform 3s cubic-bezier(0.16, 0.48, 0.21, 0.67);
	-o-transition: transform 3s cubic-bezier(0.16, 0.48, 0.21, 0.67);
	transition: transform 3s cubic-bezier(0.16, 0.48, 0.21, 0.67);
	transition: transform 3s cubic-bezier(0.16, 0.48, 0.21, 0.67), -webkit-transform 3s cubic-bezier(0.16, 0.48, 0.21, 0.67);
}

._zoom-in:hover img {
	-webkit-transform: scale3d(1.2, 1.2, 1) rotate(5deg);
	transform: scale3d(1.2, 1.2, 1) rotate(5deg);
	-webkit-backface-visibility: hidden;
}


@media screen and (min-width: 1200px) {
	.padd-left {
		margin-left: 80px;
	}

	.padd-right {
		margin-right: 150px;
	}
}

@media screen and (max-width: 991px) {
	.text-lg {
		font-size: 20px;
	}

	.section-title {
		font-size: 80px;
	}

	.section-title--sm {
		font-size: 50px;
	}

}

@media screen and (max-width: 767px) {
	.main {
		margin-top: var(--agds-header-height-mob);
	}

	.text-lg {
		font-size: 16px;
	}

	.section-title {
		font-size: 50px;
	}

	.section-title--sm {
		font-size: 38px;
	}

}

/* BUTTONS */
.btn {
	display: inline-block;
	padding: 16px 35px;
	text-align: center;
	line-height: 1;
	border-radius: calc(var(--agds-border-radius) * 3);
	border: none;
	outline: none;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.btn--small {
	font-size: .9em;
	padding: .7em 1em;
}

.btn--big {
	font-size: 1.1em;
	padding: 1em 2em;
}

/* Main Button */
.btn-main {
	color: var(--agds-white);
	background-color: var(--agds-dark);
}

.btn-main:hover {
	background-color: var(--agds-color-2);
	color: var(--agds-white);
}

/* Accent Button */
.btn-accent {
	color: var(--agds-white);
	background-color: var(--agds-color-2);
}

.btn-accent:hover {
	background-color: var(--agds-dark);
	color: var(--agds-white);
}

/* MODALS */
.modal {
	max-width: 420px;
	width: 100%;
	padding: 2em;
	cursor: auto !important;
}

/* Preloader */
.preloader-overlay {
	position: fixed;
	background-color: var(--agds-white);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: 500ms ease;
	z-index: 9999;
}

.preloader {
	position: fixed;
	background-color: var(--agds-white);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transition: 1s ease;
	display: none;
	z-index: 99999;
}

.preloader img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
}

.preloader._hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	z-index: 0;
}

/* HEADER */
.header {
	position: fixed;
	right: 0;
	top: 0;
	left: 0;
	background-color: transparent;
	-webkit-transition: -webkit-transform 0.7s 0.2s ease;
	transition: -webkit-transform 0.7s 0.2s ease;
	-o-transition: transform 0.7s 0.2s ease;
	transition: transform 0.7s 0.2s ease;
	transition: transform 0.7s 0.2s ease, -webkit-transform 0.7s 0.2s ease;
	z-index: 10;
}

.header._header_hide {
	-webkit-transform: translateY(-120%);
	-ms-transform: translateY(-120%);
	transform: translateY(-120%);
}

.header::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: var(--agds-color-1);
	-webkit-box-shadow: 0 0 5px 2px rgb(var(--agds-black-rgb), 5%);
	box-shadow: 0 0 5px 2px rgb(var(--agds-black-rgb), 5%);
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.header._bg-transp::after {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.header__inner {
	height: var(--agds-header-height);
}

.header__inner-left {
	flex: 0 0 90px;
	max-width: 90px;
}

.logo {
	max-width: 207px;
}

.header__nav ul.nav-list li.menu-item {
	position: relative;
}

.header__nav ul.nav-list li.menu-item a {
	padding: 5px 0;
	position: relative;
	letter-spacing: -0.225px;
}

.header__nav ul.nav-list>li.menu-item:not(:last-child) {
	margin-right: 35px;
}

.header__nav ul.nav-list>li a[aria-current="page"][href]:not([href*="#"]),
.header__nav ul.nav-list>li.menu-item a._active {
	font-weight: 700;
}

.header__nav ul.nav-list li a:hover {
	color: var(--agds-dark);
}

.header__nav a::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: transparent;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	opacity: 0;
}

.header__nav ul.nav-list>li a[aria-current="page"][href]:not([href*="#"]):after,
.header__nav ul.nav-list>li .sub-menu li a[aria-current="page"]::after,
.header__nav li a._active::after,
.header__nav li a:hover::after {
	background-color: var(--agds-dark);
	opacity: 1;
}

.header__nav ul.nav-list>li .sub-menu li a[aria-current="page"]::after,
.header__nav ul.nav-list>li .sub-menu li a:hover::after {
	bottom: 3px;
}

.menu-item-has-children__icon {
	display: none;
}

.lang {
	margin-left: 43px;
	font-size: 15px;
	text-transform: uppercase;
}

.lang ul>li.wpml-ls-current-language {
	position: relative;
}

.lang ul>li.wpml-ls-current-language>a {
	padding: 10px 36px;
	width: 90px;
	position: relative;
	border-radius: 7px;
	background-color: var(--agds-white);
}

.lang ul>li.wpml-ls-current-language:hover>a {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.lang ul>li.wpml-ls-current-language::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
	width: 18px;
	height: 18px;
	background-image: url('../img/earth.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	transition: var(--agds-transition);
	z-index: 2;
}

.lang ul>li.wpml-ls-current-language::after {
	content: '';
	position: absolute;
	top: 13px;
	right: 12px;
	width: 14px;
	height: 15px;
	background-image: url('../img/arrow-down.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	transition: var(--agds-transition);
	z-index: 2;
}

.lang ul>li.wpml-ls-current-language:hover::after {
	transform: rotate(180deg);
}

.lang ul>li.wpml-ls-current-language .wpml-ls-sub-menu {
	display: block;
	position: absolute;
	background-color: var(--agds-white);
	padding: 10px 36px;
	width: 90px;
	opacity: 0;
	top: 100%;
	left: 50%;
	border-radius: 7px;
	border-top: 1px solid rgb(var(--agds-black-rgb), 5%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	visibility: hidden;
	pointer-events: none;
	list-style: none;
	-webkit-box-shadow: 0px 4px 4px 4px rgb(var(--agds-black-rgb), 3%);
	box-shadow: 0px 6px 4px 4px rgb(var(--agds-black-rgb), 3%);
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	z-index: 2;
}

.lang ul>li.wpml-ls-current-language .wpml-ls-sub-menu>li:not(:last-child) {
	margin-bottom: 5px;
}

.lang ul>li.wpml-ls-current-language:hover .wpml-ls-sub-menu {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

@media screen and (min-width: 992px) {
	.header__nav {
		margin-right: 70px;
	}

	.header__nav ul.nav-list .sub-menu {
		display: block;
		position: absolute;
		background-color: var(--agds-color-1);
		padding: 10px 30px 10px 15px;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		max-width: 250px;
		min-width: 150px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		list-style: none;
		-webkit-box-shadow: 0px 0px 4px 4px rgb(var(--agds-black-rgb), 3%);
		box-shadow: 0px 0px 4px 4px rgb(var(--agds-black-rgb), 3%);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
		z-index: 2;
	}

	.header__nav ul.nav-list>li>.sub-menu {
		max-width: 270px;
		top: 100%;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.header__nav ul.nav-list>li>.sub-menu li a {
		padding: 3px 0;
	}

	.header__nav ul.nav-list>li.menu-item-has-children {
		padding-right: 15px;
	}

	.header__nav ul.nav-list>li.menu-item-has-children a {
		position: relative;
	}

	.header__nav ul.nav-list>li.menu-item-has-children::after {
		content: '';
		position: absolute;
		top: 50%;
		right: -5px;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-bottom: 5px solid var(--agds-dark);
		-webkit-transform: rotate(180deg) translateY(50%);
		-ms-transform: rotate(180deg) translateY(50%);
		transform: rotate(180deg) translateY(50%);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
	}

	.header__nav ul.nav-list>li.menu-item-has-children:hover::after {
		-webkit-transform: rotate(0deg) translateY(-50%);
		-ms-transform: rotate(0deg) translateY(-50%);
		transform: rotate(0deg) translateY(-50%);
	}

	.header__nav ul.nav-list>li.menu-item-has-children .sub-menu>li .sub-menu {
		left: 100%;
		top: -10px;
	}

	.header__nav ul.nav-list>li.menu-item-has-children .sub-menu>li:hover>.sub-menu,
	.header__nav ul.nav-list>li.menu-item-has-children:hover>.sub-menu {
		pointer-events: auto;
		opacity: 1;
		visibility: visible;
	}

}

@media screen and (max-width: 991px) {
	.burger {
		position: relative;
		width: 30px;
		height: 17px;
		cursor: pointer;
		z-index: 3;
	}

	.burger:before {
		top: 0;
	}

	.burger span {
		position: absolute;
		width: 100%;
		height: 2px;
		left: 0;
		top: 8px;
		background-color: var(--agds-dark);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
	}

	.burger:before,
	.burger:after {
		content: '';
		position: absolute;
		width: 100%;
		height: 2px;
		left: 0;
		background-color: var(--agds-dark);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
	}

	.burger:after {
		bottom: 0;
	}

	.burger._active:before {
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 6px;
	}

	.burger._active span {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}

	.burger._active:after {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		bottom: 9px;
	}

	.header__nav {
		position: fixed;
		top: 100%;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		will-change: auto;
		background-color: rgb(var(--agds-color-1-rgb), 92%);
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
	}

	.header__nav._show {
		top: var(--agds-header-height);
	}

	.header__nav ul.nav-list {
		margin-right: 0;
		text-align: center;
		margin-top: 30%;
	}

	.header__nav::-webkit-scrollbar {
		display: none;
	}

	.header__nav ul.nav-list li.menu-item:not(:last-child) {
		margin-right: 0;
		margin-bottom: 15px;
	}

	.header__nav ul.nav-list li.menu-item a {
		font-size: 22px;
	}

	.header__nav ul.nav-list li.menu-item.menu-item-has-children {
		display: inline-block;
	}

	.menu-item-has-children__icon {
		position: absolute;
		display: block;
		right: -30px;
		top: 10px;
		width: 22px;
		height: 22px;
		cursor: pointer;
		fill: var(--agds-dark);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
	}

	.header__nav ul.nav-list>li.menu-item-has-children .sub-menu {
		padding: 16px 10px;
	}

	.header__nav ul.nav-list li.menu-item-has-children .sub-menu>li:not(:last-child) {
		margin-bottom: 5px;
	}

	.header__nav ul.nav-list li.menu-item-has-children .sub-menu>li a {
		font-size: 18px;
	}

	.header__nav ul.nav-list>li.menu-item-has-children .sub-menu[hidden] {
		display: none;
	}

	.menu-item-has-children._active>.menu-item-has-children__icon {
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	.lang {
		margin-left: 20px;
	}
}

@media screen and (max-width: 767px) {
	.logo {
		max-width: 150px;
	}

	.header__inner {
		height: var(--agds-header-height-mob);
	}

	.header__nav._show {
		top: var(--agds-header-height-mob);
	}

	.lang {
		font-size: 12px;
	}

	.lang ul>li.wpml-ls-current-language::before {
		width: 12px;
		height: 12px;
	}

	.lang ul>li.wpml-ls-current-language::after {
		width: 10px;
		height: 11px;
	}

	.lang ul>li.wpml-ls-current-language>a {
		padding: 10px 28px;
		width: 70px;
	}

	.lang ul>li.wpml-ls-current-language .wpml-ls-sub-menu {
		padding: 10px 28px;
		width: 70px;
	}
}

/* FOOTER */
.footer {
	padding: 60px 0 30px;
	font-size: 15px;
}

.footer-logo {
	max-width: 300px;
	margin: 30px 0 70px;
}

.footer-col nav ul li:not(:last-child) {
	margin-bottom: 10px;
}

.footer-col nav ul li a[aria-current="page"][href]:not([href*="#"]) {
	font-weight: 700;
}

/* Socials */
.socials {
	margin-bottom: -14px;
}

.socials-link:not(:last-child) {
	margin-right: 14px;
}

.socials-link {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	margin-bottom: 14px;
	background-color: var(--agds-dark);
}

.socials-link:hover {
	background-color: var(--agds-color-1);
}

.socials-link__icon {
	max-width: 16px;
	max-height: 16px;
	fill: var(--agds-white);
	-webkit-transition: fill var(--agds-transition);
	-o-transition: fill var(--agds-transition);
	transition: fill var(--agds-transition);
}

.socials-link:hover .socials-link__icon {
	fill: var(--agds-dark);
}

/* Dev */
.footer-dev__icon {
	max-width: 16px;
	max-height: 16px;
	margin: 0 5px;
	transition: var(--agds-transition);
	fill: var(--agds-grey);
}

.footer-dev__link:hover .footer-dev__icon {
	animation: heartbeat 1.4s infinite;
	fill: var(--agds-color-2);
}

@-webkit-keyframes heartbeat {
	0% {
		opacity: 1
	}

	20% {
		opacity: .7
	}

	100% {
		opacity: 1
	}
}

@keyframes heartbeat {
	0% {
		opacity: 1
	}

	20% {
		opacity: .7
	}

	100% {
		opacity: 1
	}
}

@media screen and (max-width: 991px) {
	.footer-logo {
		margin: 0px 0 40px;
	}

	.copyright {
		margin-top: 30px;
		text-align: center;
	}
}

@media screen and (max-width: 767px) {
	.footer {
		padding: 40px 0 20px;
	}

	.footer-logo {
		margin: 0px 0 30px;
		max-width: 200px;
	}

	.footer-col:last-of-type {
		margin-top: 30px;
	}

	.copyright {
		text-align: left;
	}
}

/* 404 */
.error-404-section {
	min-height: 60vh;
}

.error-404-content h1 {
	font-size: 100px;
	line-height: 1;
}

.error-404-section .btn {
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.error-404-section__inner {
		max-width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}

/* HERO HOME SECTION */
.hero-home-section {
	/* padding: 100px 0 50px; */
	min-height: calc(100vh - var(--agds-header-height));
}

.hero-home-section-row {
	margin-bottom: 100px;
}

.hero-home-section__title {
	font-family: var(--agds-font-secondary);
	font-weight: 400;
	font-size: 83px;
	line-height: 1.1;
}

.hero-home-section__title i {
	font-weight: 500;
	position: relative;
}

/* .hero-home-section__title i::after {
	content: '';
	position: absolute;
	top: -15px;
	left: -26px;
	width: 113%;
	height: 146%;
	background-image: url('../img/decor-chat-green.svg');
	background-repeat: no-repeat;
	background-size: 100%;
} */

.hero-home-section__desc {
	margin-top: 60px;
	max-width: 80%;
}

.hero-home-section__links {
	margin-top: 30px;
}

.stores-logo:not(:last-child) {
	margin-right: 20px;
}

.stores-logo {
	margin-bottom: 20px;
	max-width: 200px;
}

.stores-logo:hover {
	-webkit-transform: scale(1.02) translateY(-2px);
	-ms-transform: scale(1.02) translateY(-2px);
	transform: scale(1.02) translateY(-2px);
}

/* Scroll Down */
.scroll-down {
	position: absolute;
	bottom: 30px;
	padding-bottom: 24px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 2;
}

.scroll-down span {
	position: absolute;
	bottom: 5px;
	left: 50%;
	width: 20px;
	height: 20px;
	margin-left: -10px;
	border-left: 2px solid var(--agds-dark);
	border-bottom: 2px solid var(--agds-dark);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: scroll-down 3s infinite;
	animation: scroll-down 3s infinite;
	opacity: 0;
	border-bottom-left-radius: 3px;
}

.scroll-down span:nth-of-type(1) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

@-webkit-keyframes scroll-down {
	0% {
		opacity: 0;
	}

	70% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes scroll-down {
	0% {
		opacity: 0;
	}

	70% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 1550px) {
	.hero-home-section__title {
		font-size: 64px;
	}

	.hero-home-section__title i::after {
		top: -7px;
		left: -22px;
	}
}

@media screen and (max-width: 1199px) {
	.hero-home-section {
		text-align: center;
	}

	.hero-home-section__desc {
		margin: 0 auto;
		margin-top: 40px;
	}
}

@media screen and (max-width: 991px) {
	.hero-home-section {
		padding: 30px 0;
	}

	.hero-home-section__title {
		font-size: 60px;
		max-width: 80%;
		margin: 0 auto;
		margin-top: 30px;
	}

	.hero-home-section__title i::after {
		top: -9px;
		left: -18px;
		width: 116%;
	}

	.scroll-down span {
		width: 15px;
		height: 15px;
		border-bottom-left-radius: 2px;
	}
}

@media screen and (max-width: 767px) {
	.hero-home-section {
		padding: 50px 0;
		min-height: calc(100vh - var(--agds-header-height-mob));
	}

	.hero-home-section-row {
		margin-bottom: 60px;
	}

	.hero-home-section__title {
		font-size: 36px;
		max-width: 100%;
	}

	.hero-home-section__title i::after {
		top: -5px;
		left: -10px;
	}

	.hero-home-section__desc {
		margin-top: 30px;
		max-width: 100%;
	}

	.hero-home-section__links {
		margin-top: 20px;
	}

	.stores-logo {
		margin-bottom: 16px;
		max-width: 150px;
	}

	.stores-logo:not(:last-child) {
		margin-right: 16px;
	}
}

/* HERO SECTION*/
.hero-section {
	height: 510px;
	background-color: var(--agds-dark);
}

.hero-section__desc {
	margin-top: 40px;
	font-size: 24px;
	color: var(--agds-white);
}

.hero-section__img {
	position: absolute;
	top: 0;
	left: 50%;
	right: 0;
	bottom: 0;
}

@media screen and (max-width: 991px) {
	.hero-section {
		height: auto;
		padding-bottom: 40px;
	}

	.hero-section ._h100 {
		height: auto;
	}

	.hero-section._decor-dashed-line-green::before {
		top: auto;
		left: auto;
		bottom: -40px;
		right: -60px;
		width: 423px;
		height: 197px;
		-webkit-transform: rotate(352deg);
		-ms-transform: rotate(352deg);
		transform: rotate(352deg);
	}

	.hero-section__img {
		position: absolute;
		left: 0;
		height: 400px;
	}

	.hero-section__left-side {
		margin-top: 420px;
	}

	.hero-section__desc p {
		margin-top: 50px;
		font-size: 20px;
	}
}

@media screen and (max-width: 767px) {
	.hero-section__img {
		height: 280px;
	}

	.hero-section__left-side {
		margin-top: 300px;
	}

	.hero-section__desc p {
		margin-top: 35px;
		font-size: 16px;
	}

	.hero-section._decor-dashed-line-green::before {
		bottom: -40px;
		right: -43px;
		width: 293px;
		height: 147px;
	}
}

/* MARQUEE */
.marquee {
	overflow: hidden;
}

.marquee__inner {
	white-space: nowrap;
}

.marquee-item {
	font-family: var(--agds-font-secondary);
	padding: 20px 15px;
	margin-bottom: 0;
	white-space: nowrap;
	font-weight: 400;
}

.marquee svg {
	--size: 50px;
	border-radius: 50%;
	padding: 10px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 var(--size);
	flex: 0 0 var(--size);
	max-width: var(--size);
	height: var(--size);
	margin-right: 30px;
}

.marquee.bg-dark svg {
	background-color: var(--agds-white);
	fill: var(--agds-dark);
}

.marquee.bg-green-light svg {
	background-color: var(--agds-dark);
	fill: var(--agds-color-1);
}

@media screen and (max-width: 991px) {
	.marquee-item {
		padding: 15px;
	}
}

@media screen and (max-width: 767px) {
	.marquee-item {
		padding: 15px 10px;
	}

	.marquee svg {
		--size: 40px;
		margin-right: 20px;
	}
}

/* ABOUT SECTION */
.about-section {
	padding: 235px 0;
}

.about-section._decor-dashed-line-green::before {
	top: auto;
	left: auto;
	right: -80px;
	bottom: -28px;
	width: 537px;
	height: 235px;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

.about-section ._decor-smiles-green::after {
	top: -170px;
}

.about-section__title {
	max-width: 80%;
	margin: 0 auto;
	margin-top: 30px;
}

.about-section__content {
	margin-top: 60px;
}

@media screen and (max-width: 991px) {
	.about-section ._decor-smiles-green::after {
		background-size: 62%;
	}
}

@media screen and (max-width: 767px) {
	.about-section {
		padding: 150px 0;
	}

	.about-section__content {
		margin-top: 30px;
	}

	.about-section ._decor-smiles-green::after {
		background-size: 46%;
		top: -91px;
	}

	.about-section._decor-dashed-line-green::before {
		right: -52px;
		bottom: 0;
		width: 327px;
		height: 125px;
	}
}

/* FEATURES SECTION */
.features-item__left-side {
	max-width: 70%;
	width: 100%;
	margin: 0 auto;
	padding: 2em;
}

.features-item ._decor-chat-green::before {
	-webkit-transform: translate(50%, 55%) scale(-1, 1);
	-ms-transform: translate(50%, 55%) scale(-1, 1);
	transform: translate(50%, 55%) scale(-1, 1);
}

.features-item__right-side {
	height: 700px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

.features-item__right-side--overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(var(--agds-dark-rgb), 55%);
}

.features-item__img {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
}

.features-item__title {
	font-size: 122px;
}

.features-item__content {
	margin-top: 50px;
}

.features-item__content blockquote {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--agds-color-2);
}

.features-item__content blockquote p {
	max-width: 70%;
	width: 100%;
	margin: 0 auto;
	padding: 2em 1.5em;
}

@media screen and (max-width: 1199px) {
	.features-item__title {
		font-size: 92px;
	}

	.features-item__content blockquote p,
	.features-item__left-side {
		max-width: 100%;
	}
}

@media screen and (max-width: 991px) {
	.features-item__title {
		font-size: 80px;
	}

	.features-item__right-side {
		height: 600px;
	}

	.features-item__left-side {
		padding: 4em 2em;
	}

	.features-item__content blockquote {
		position: static;
		margin: 4em -2em -4em -2em !important;
	}
}

@media screen and (max-width: 767px) {
	.features-item__title {
		font-size: 50px;
	}

	.features-item__content {
		margin-top: 30px;
	}

	.features-item__left-side {
		padding: 2.5em 1.2em;
	}

	.features-item__right-side {
		height: 400px;
	}

	.features-item ._decor-chat-green::before {
		width: 279px;
		height: 95px;
		-webkit-transform: translate(77%, 55%) scale(-1, 1);
		-ms-transform: translate(77%, 55%) scale(-1, 1);
		transform: translate(77%, 55%) scale(-1, 1);
	}

	.features-item__content blockquote {
		position: static;
		margin: 2.5em -1.2em -2.5em -1.2em !important;
	}

	.features-item__content blockquote p {
		padding: 1.5em 1.2em;
	}
}

/* INFO SECTION */
.info-section {
	padding: 100px 0 140px;
}

.info-section__logo {
	max-width: 65%;
	margin: 0 auto;
}

.info-section__content {
	margin-top: 150px;
}

@media screen and (max-width: 991px) {
	.info-section {
		padding: 80px 0 100px;
	}

	.info-section__content {
		margin-top: 100px;
	}
}

@media screen and (max-width: 767px) {
	.info-section {
		padding: 40px 0;
	}

	.info-section__content {
		margin-top: 50px;
	}
}

/* INFO TITLE SECTION */
.info-title-section__title i {
	border: none;
}

.info-title-section__title span {
	position: relative;
}

.info-title-section__title span::after {
	content: '';
	position: absolute;
	bottom: -21px;
	right: -70px;
	width: 62px;
	height: 59px;
	background-image: url('../img/decor-smile-green.svg');
	background-repeat: no-repeat;
	background-size: 100%;
}

@media screen and (max-width: 767px) {
	.info-title-section__title span::after {
		bottom: -61px;
		right: 70px;
	}
}

/* STEPS SECTION */
.steps-item__title {
	font-family: var(--agds-font-secondary);
	font-size: 40px;
	letter-spacing: -0.6px;
	font-weight: 400;
}

.steps-item__title i {
	font-weight: 500;
}

.steps-section__desc {
	font-size: 30px;
	color: var(--agds-color-1);
	font-weight: 500;
	max-width: 70%;
	margin: 75px auto 0;
}

.steps-slider {
	padding: 50px 0;
	overflow: initial;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border: 2px solid var(--agds-white);
	background: transparent;
}

.swiper-pagination-bullet-active {
	background: var(--agds-white);
}

.steps-item:not(:last-child):after {
	content: '';
	position: absolute;
	top: 120px;
	left: 50%;
	width: 287px;
	height: 117px;
	background-image: url('../img/decor-dashed-arrow-white.svg');
	background-repeat: no-repeat;
	background-size: 100%;
}

.steps-item:nth-child(2n):not(:last-child):after {
	top: -90px;
	-webkit-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1);
}

@media screen and (min-width: 1200px) {
	.steps-slider-wrapper {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 18px 1fr 18px 1fr 18px 1fr;
		grid-template-columns: repeat(4, 1fr);
		-webkit-column-gap: 18px;
		-moz-column-gap: 18px;
		column-gap: 18px;
	}
}

@media screen and (max-width: 1199px) {
	.steps-item {
		padding: 0 20px;
	}

	.steps-item:not(:last-child):after {
		top: -80px;
		left: 70%;
		-webkit-transform: scale(1, -1);
		-ms-transform: scale(1, -1);
		transform: scale(1, -1);
	}

	.steps-item__desc {
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}

	.steps-section__desc {
		max-width: 90%;
	}
}

@media screen and (max-width: 991px) {
	.steps-section__desc {
		max-width: 100%;
		font-size: 24px;
		margin-top: 50px;
	}
}

@media screen and (max-width: 767px) {
	.steps-section__desc {
		font-size: 20px;
		margin-top: 40px;
	}
}

/* LOCALS SECTION */
/* .locals-section__title span {
	position: relative;
}

.locals-section__title span::after {
	content: '';
	position: absolute;
	display: block;
	top: 25px;
	left: -20px;
	width: 100px;
	height: 100px;
	background-color: transparent;
	border-radius: 50%;
	border: 2px solid currentColor;
} */

.locals-section__desc {
	margin-top: 60px;
}

@media screen and (max-width: 1199px) {
	.locals-section {
		text-align: center;
	}

	.locals-section__title {
		margin-top: 50px;
	}

	.locals-section__desc {
		max-width: 80%;
		margin: 0 auto;
		margin-top: 50px;
	}
}

@media screen and (max-width: 991px) {
	.locals-section__title span::after {
		top: 23px;
		left: -19px;
		width: 90px;
		height: 90px;
	}
}

@media screen and (max-width: 767px) {
	.locals-section__title span::after {
		top: 15px;
		left: -12px;
		width: 55px;
		height: 55px;
	}

	.locals-section__desc {
		max-width: 100%;
		margin-top: 30px;
	}
}

/* CONTACTS FORM SECTION */
.contacts-form-section._decor-dashed-line-green::before {
	top: 56%;
	left: auto;
	width: 520px;
	height: 227px;
	right: -278px;
	-webkit-transform: rotate(252deg);
	-ms-transform: rotate(252deg);
	transform: rotate(252deg);
}

.contacts-form-section__content {
	margin-top: 30px;
}

.contacts-form-wrap {
	margin-top: 50px;
}

.contacts-form-wrap div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column-50 {
	width: calc(50% - 5px);
}

.wpforms-hidden,
.wpforms-field-limit-text,
label.wpforms-error,
em.wpforms-error,
.wpforms-label-hide {
	display: none !important;
}

.wpforms-field textarea,
.wpforms-field input {
	padding: 20px 25px;
	background-color: var(--agds-white);
	width: 100%;
	font-weight: 600;
	border-radius: var(--agds-border-radius);
	outline: none;
	line-height: 1;
	border: 1px solid rgb(var(--agds-dark-rgb), 50%);
	position: relative;
	margin-bottom: 6px;
	font-size: 20px;
	color: var(--agds-dark);
	border-radius: 12px;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.wpforms-field textarea {
	margin-top: 15px;
}

.wpforms-field input::-webkit-input-placeholder,
.wpforms-field textarea::-webkit-input-placeholder {
	color: rgb(var(--agds-black-rgb), 50%);
	font-weight: 300;
}

.wpforms-field input::-moz-placeholder,
.wpforms-field textarea::-moz-placeholder {
	color: rgb(var(--agds-black-rgb), 50%);
	font-weight: 300;
}

.wpforms-field input:-ms-input-placeholder,
.wpforms-field textarea:-ms-input-placeholder {
	color: rgb(var(--agds-black-rgb), 50%);
	font-weight: 300;
}

.wpforms-field input::-ms-input-placeholder,
.wpforms-field textarea::-ms-input-placeholder {
	color: rgb(var(--agds-black-rgb), 50%);
	font-weight: 300;
}

.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder {
	color: rgb(var(--agds-black-rgb), 50%);
	font-weight: 300;
}

.wpforms-field textarea:focus,
.wpforms-field input:focus {
	-webkit-box-shadow: 0 0 6px var(--agds-color-2);
	box-shadow: 0 0 6px var(--agds-color-2);
	border: 1px solid var(--agds-color-2);
}

.wpforms-field textarea {
	min-height: 150px;
	resize: none;
}

.wpforms-field .wpforms-error {
	border: 1px solid var(--agds-danger);
}

.wpforms-field .wpforms-error::-webkit-input-placeholder {
	color: var(--agds-danger);
}

.wpforms-field .wpforms-error::-moz-placeholder {
	color: var(--agds-danger);
}

.wpforms-field .wpforms-error:-ms-input-placeholder {
	color: var(--agds-danger);
}

.wpforms-field .wpforms-error::-ms-input-placeholder {
	color: var(--agds-danger);
}

.wpforms-field .wpforms-error::placeholder {
	color: var(--agds-danger);
}

.wpforms-submit-container {
	text-align: right;
}

.wpforms-submit-container button[type="submit"] {
	margin-top: 10px;
	padding: 20px 35px;
	font-size: 20px;
}

.wpforms-submit-spinner {
	position: absolute;
	bottom: 10px;
	left: 23px;
}

.wpforms-confirmation-container {
	font-size: 24px;
}

@media screen and (max-width: 767px) {
	.contacts-form-wrap div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column-50 {
		width: 100%;
		padding: 0 10px;
	}

	.wpforms-field textarea,
	.wpforms-field input {
		padding: 16px 20px;
		font-size: 16px;
		margin: 0 0 16px;
	}

	.wpforms-submit-container button[type="submit"] {
		padding: 16px 35px;
		font-size: 16px;
		margin-top: 0;
	}

}

/* CONTACTS FOLLOW SECTION */
.contacts-socials-link__icon {
	--size: 46px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 var(--size);
	flex: 0 0 var(--size);
	max-width: var(--size);
	height: var(--size);
	padding: 10px;
	background-color: var(--agds-dark);
	border-radius: 50%;
	fill: var(--agds-color-1);
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.contacts-socials-link__title {
	font-size: 24px;
	font-weight: 500;
	margin-left: 20px;
	border-bottom: 2px solid transparent;
	-webkit-transition: border var(--agds-transition);
	-o-transition: border var(--agds-transition);
	transition: border var(--agds-transition);
}

.contacts-socials-link:hover {
	color: var(--agds-dark) !important;
}

.contacts-socials-link:hover .contacts-socials-link__title {
	border-color: currentColor;
}

@media screen and (min-width: 768px) {
	.contacts-socials {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 50px 1fr;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 50px;
	}
}

@media screen and (max-width: 1199px) {
	.contacts-socials {
		margin-top: 40px;
	}
}

@media screen and (max-width: 991px) {
	.contacts-socials-link__title {
		font-size: 20px;
		margin-left: 16px;
	}

	.contacts-socials-link__icon {
		--size: 40px;
	}
}

@media screen and (max-width: 767px) {
	.contacts-socials {
		margin-top: 30px;
	}

	.contacts-socials-link:not(:last-child) {
		margin-bottom: 16px;
	}

	.contacts-socials-link .contacts-socials-link__icon {
		--size: 34px;
		padding: 8px
	}

	.contacts-socials-link__title {
		font-size: 18px;
		margin-left: 12px;
	}
}

/* NEWSLETTER SECTION */
.newsletter-form-wrap form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.newsletter-form-wrap input {
	border-color: transparent;
	margin-bottom: 0;
	padding: 15px 25px;
}

.newsletter-form-wrap .wpforms-field-container {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	-webkit-box-flex: 1;
	flex-grow: 1;
	max-width: 100%;
	margin-right: 23px;
}

.newsletter-form-wrap .wpforms-submit-container button[type="submit"] {
	margin-top: 0;
}

.newsletter-section__desc {
	margin-top: 30px;
}

.newsletter-section ._decor-smile-green-dark::after {
	bottom: -50px;
	right: -50px;
	-webkit-transform: rotate(20deg);
	-ms-transform: rotate(20deg);
	transform: rotate(20deg);
}

@media screen and (max-width: 991px) {
	.newsletter-section ._decor-smile-green-dark::after {
		bottom: -50px;
		right: -23px;
		width: 90px;
		height: 88px;
	}
}

@media screen and (max-width: 767px) {
	.newsletter-form-wrap .wpforms-field-container {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin: 0 0 16px;
	}

	.newsletter-form-wrap input {
		padding: 15px 25px;
	}

	.newsletter-section ._decor-smile-green-dark::after {
		bottom: -30px;
		right: 17px;
		width: 38px;
		height: 38px;
	}
}

/* FAQ SECTION */
.faq-section._decor-dashed-line-green::before {
	top: -70px;
	left: auto;
	right: -70px;
	width: 520px;
	height: 227px;
	-webkit-transform: rotate(46deg);
	-ms-transform: rotate(46deg);
	transform: rotate(46deg);
}

.faq-section._decor-dashed-line-green--2::after {
	top: auto;
	bottom: 120px;
	left: -230px;
	width: 520px;
	height: 227px;
	-webkit-transform: rotate(-84deg);
	-ms-transform: rotate(-84deg);
	transform: rotate(-84deg);
}

.spoller-item:not(:last-child) {
	border-bottom: 1px solid rgb(var(--agds-dark-rgb), 50%);
}

.spoller-item__button {
	padding: 30px 50px 30px 0;
	width: 100%;
	position: relative;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.spoller-item__button:hover {
	color: var(--agds-color-2);
}

.spoller-item__button-title {
	font-size: 24px;
	font-weight: 600;
}

.spoller-item__button-icon {
	width: 50px;
	height: 100%;
	position: absolute;
	z-index: 2;
	right: 0;
	top: 0;
	bottom: 0;
}

.spoller-item__button-icon::before,
.spoller-item__button-icon::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-90deg);
	-ms-transform: translate(-50%, -50%) rotate(-90deg);
	transform: translate(-50%, -50%) rotate(-90deg);
	-webkit-transition: .4s ease-in-out;
	-o-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
	background-color: var(--agds-dark);
}

.spoller-item__button:hover .spoller-item__button-icon::before,
.spoller-item__button:hover .spoller-item__button-icon::after {
	background-color: var(--agds-color-2);
}


.spoller-item__button-icon::before {
	width: 25px;
	height: 2px;
	opacity: 1;
}

.spoller-item__button-icon::after {
	width: 2px;
	height: 25px;
	opacity: 1;
}

.spoller-item__button._active .spoller-item__button-icon::before {
	opacity: 0;
}

.spoller-item__button._active .spoller-item__button-icon:after,
.spoller-item__button._active .spoller-item__button-icon:before {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	-ms-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg);
}

.spoller-item__content {
	padding-bottom: 30px;
}

.faq-video__btn-play {
	margin-left: 100px;
	padding: 5px;
}

.faq-video__btn-play-icon {
	width: 70px;
	height: 70px;
	fill: var(--agds-color-2);
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	-webkit-animation: fadeIn 2s ease infinite;
	animation: fadeIn 2s ease infinite;
}

.faq-video__btn-play:hover .faq-video__btn-play-icon {
	fill: var(--agds-dark);
}

@-webkit-keyframes fadeIn {

	0%,
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
}

@keyframes fadeIn {

	0%,
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
}


@media screen and (max-width: 991px) {
	.faq-section__title {
		font-size: 52px;
	}
}

@media screen and (max-width: 767px) {
	.faq-section__title {
		font-size: 38px;
	}

	.spoller-item__button-title {
		font-size: 18px;
	}

	.spoller-item__button {
		padding: 16px 40px 16px 0;
	}

	.spoller-item__button-icon::before {
		width: 20px;
	}

	.spoller-item__button-icon::after {
		height: 20px;
	}

	.spoller-item__content {
		padding-bottom: 16px;
	}

	.faq-video__btn-play {
		margin-left: 0;
		margin-top: 20px;
		padding: 0;
	}

	.faq-video__btn-play-icon {
		width: 38px;
		height: 38px;
	}
}

/* NEWS LIST SECTION */
.news-card-item {
	font-size: 18px;
	background-color: var(--agds-white);
	-webkit-box-shadow: 0px 3px 10px 4px rgb(var(--agds-black-rgb), 4%);
	box-shadow: 0px 3px 10px 4px rgb(var(--agds-black-rgb), 4%);
}

.news-card-item__img {
	height: 350px;
}

.news-card-item-bottom {
	padding: 30px 40px;
}

.news-card-item__title {
	font-weight: 600;
}

.meta {
	margin-top: 20px;
}

.meta__location {
	margin-bottom: 10px;
}

.meta .svg-icon {
	max-width: 20px;
	max-height: 20px;
	margin-right: 5px;
	fill: var(--agds-dark);
	margin-bottom: 2px;
}

.meta__author {
	margin-left: 20px;
}

.news-card-item__readmore {
	margin-top: 30px;
	border-bottom: 2px solid currentColor;
}

.news-card-item__readmore:hover {
	color: var(--agds-dark) !important;
	border-color: var(--agds-dark);
}

/* NEWS SINGLE HERO SECTION */
.news-single-hero-section-row {
	padding-bottom: calc(1.85rem + 2.2vw);
	border-bottom: 2px solid rgb(var(--agds-dark-rgb), 50%);
}

.news-single-hero-section__img {
	height: 600px;
}

.news-single-hero-section__title {
	margin-top: 30px;
}

.news-single-hero-section__meta {
	font-size: 20px;
}

@media screen and (min-width: 1200px) {
	.news-single-hero-section-row {
		display: -ms-grid;
		display: grid;
		-webkit-column-gap: 40px;
		-moz-column-gap: 40px;
		column-gap: 40px;
		-ms-grid-columns: 1fr 40px 1fr;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 1199px) {
	.news-single-hero-section {
		padding-top: 0;
	}

	.news-single-hero-section__meta {
		margin-top: 50px;
	}

	.news-single-hero-section__img {
		margin-left: calc(var(--agds-gutter-x-md) * -1);
		margin-right: calc(var(--agds-gutter-x-md) * -1);
	}
}

@media screen and (max-width: 991px) {
	.news-single-hero-section__img {
		height: 500px;
	}
}

@media screen and (max-width: 767px) {
	.news-single-hero-section__img {
		height: 50vh;
	}

	.news-single-hero-section__title {
		font-size: 28px;
	}

	.news-single-hero-section__meta {
		margin-top: 40px;
		font-size: 16px;
	}
}

.news-single-content-section .wp-block-gallery,
.news-single-content-section iframe,
.news-single-content-section .wp-block-image {
	margin: 40px 0;
}

.news-single-content-section .wp-block-gallery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0 !important;
	margin-left: -10px;
	margin-right: -10px;
}

.news-single-content-section .wp-block-gallery>* {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	width: 100%;
	margin: 0;
	padding: 10px;
}

.news-single-content-section .wp-block-gallery>.wp-block-image>img {
	border-radius: calc(var(--agds-border-radius) * 10);
}

.news-single-content-section iframe,
.news-single-content-section .wp-block-image.full-width figure,
.news-single-content-section figure.wp-block-image.full-width {
	overflow: hidden;
	display: block;
	border-radius: calc(var(--agds-border-radius) * 10);
}

.news-single-content-section .wp-block-image.full-width img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.news-single-content-section .wp-block-image .aligncenter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.news-single-content-section .wp-block-image.aligncenter img {
	margin: 0 auto;
}

.news-single-content-section .content .btn {
	margin-top: 30px;
}

/* NEWS SINGLE CONTENT SECTION */
.tags-list li {
	font-size: 20px;
	padding: 10px 20px;
	border-radius: calc(var(--agds-border-radius) * 10);
	background-color: var(--agds-light);
	margin: 0 15px 15px 0;
}

/* Share */
.share {
	border-top: 1px solid rgb(var(--agds-dark-rgb), 50%);
	padding: 30px 0;
	margin-top: calc(1.5rem + 1.5vw);
}

.share__title {
	margin-bottom: 0
}

.share-item__link {
	width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: var(--agds-light);
	border-radius: 50%;
}

.share-item__link:hover {
	background-color: var(--agds-color-2);
}

.share-item:not(:last-child) {
	margin-right: 10px
}

.share-item .svg-icon {
	max-width: 18px;
	max-height: 18px;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.share-item__link:hover {
	fill: var(--agds-white);
}

.share-item-facebook .share-item__link:hover {
	background-color: var(--agds-i-facebook);
}

.share-item-twitter-x .share-item__link:hover {
	background-color: var(--agds-black);
}

.share-item-telegram .share-item__link:hover {
	background-color: var(--agds-i-telegram);
}

.share-item-viber .share-item__link:hover {
	background-color: var(--agds-i-viber);
}

.share-item-whatsapp .share-item__link:hover {
	background-color: var(--agds-i-whatsapp);
}

@media screen and (max-width: 991px) {
	.tags-list li {
		font-size: 18px;
	}
}


@media screen and (max-width: 767px) {

	.news-single-content-section iframe,
	.news-single-content-section .wp-block-image.full-width figure,
	.news-single-content-section figure.wp-block-image.full-width {
		border-radius: calc(var(--agds-border-radius) * 4);
	}

	.tags-list li {
		font-size: 14px;
		padding: 8px 16px;
		margin: 0px 10px 10px 0px;
	}

	.share-list {
		margin-top: 10px;
	}

	.share-item__link {
		width: 36px;
		height: 36px;
	}

	.share-item .svg-icon {
		max-width: 17px;
		max-height: 17px;
	}

	.share-item {
		margin-top: 10px;
	}
}