/*
Theme Name: Unique
Author: Sammy
Description: Individual development
Version: 3.0
*/
* {
	margin: 0;
	padding: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    line-height: 1;
}
*:focus {
    outline: none;
}
article, 
aside, 
footer, 
header, 
main, 
nav, 
section {
	display: block;
}
html {
	scroll-behavior: smooth;
}
body {
	background-color: #000000;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	width: 100%;
	padding-top: 70px;
	-webkit-text-size-adjust: none;
	color: #fff;
}
.inner,
.mini-inner {
	width:100%;
	margin: 0 auto;
}
.inner {
	max-width: 1140px;
	padding-left: 10px;
	padding-right: 10px;
}
.mini-inner {
	max-width: 780px;	
}
a,
button,
input[type="submit"] {
    text-decoration: none;
    outline: none;
}
a,
.color {
	color: #56b8d7;
}
.primary-menu span,
a:hover,
.post-announce:hover .post-link {
	color: #fff;
}
img {
	max-width: 100%;
	height: auto;
}
h1,
h2 {
	font-weight: 800;
}
h3,
h4,
h5,
h6 {
	font-weight: 500;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	position: relative;
}
h1 {	
	margin-bottom: 10px;
	font-size: 38px;
}
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}
h2 {
	font-size: 23px;
}
section h2 {
	font-size: 38px;
	text-transform: uppercase;
	line-height: 1.2;
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 18px;
}
h5 {
	font-size: 16px;	
}
h6 {
	font-size: 15px;	
}
section {
	padding: 80px 0;
	position: relative;
}
.inner,
.mini-inner,
section {
	cursor: default;
}
.grid {
	display:grid;
	gap: 35px;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align:center;
}
strong {
	font-weight: 600;
}
.cols-1-3 {
	grid-template-columns: 33% 67%;	
}
.cols-2 {
	grid-template-columns: repeat(2,1fr);	
}
.cols-3 {
	grid-template-columns: repeat(3,1fr);	
}
.cols-3-2 {
	grid-template-columns: repeat(12, 1fr);
}
.cols-4 {
	grid-template-columns: repeat(4,1fr);			
}
.aic {
	align-items: center;
}
.psr {
	position: relative;
}
::selection {
    color: #fff;
    background-color: #56b8d7;
}
.pt0 {
	padding-top: 0;
}
/* Header*/
.header {
	height: 70px;
	background-color: rgba(0, 0, 0, 0.89);
	position: fixed;
	width: 100%;
	top: 0;
	display: flex;
  	justify-content: space-evenly;
  	z-index: 10;
}
/* Logo */
.logo img {
	/*max-height: 100%;*/
	height: 50px;
	width: auto;
}
.socials {
	display: flex;
	gap: 10px;
}
.socials svg {
	width: 40px;
	height: 40px;
	filL: #495583;
}
.socials a:hover svg {
	opacity: 0.7;
}
/* Menu */
.toggle-content {
	display: none;
}
.primary-menu .inner {
	display: flex;
	gap: 30px;
	justify-content: space-between;
}
.menu {
    list-style-type: none;
    margin: 0;
    padding-left: 0px;
    text-align: center;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	gap: 35px;
	text-transform: uppercase;
}
.menu li {
    position: relative;
    white-space: nowrap;
    display: inline-block;
}
.menu span,
.menu .menu-item > a {
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
.menu a,
.menu span {
    position: relative;
    overflow: hidden;
    padding: 7px 0;
    color: #fff;
}
.primary-menu a::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: 0;
    height: 2px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    background-color: #56b8d7;
}
.menu .sub-menu a::after {
	content: none;
}
.primary-menu a:hover::after, 
.primary-menu a:focus::after, 
.primary-menu a:active::after {
    left: 0;
    right: auto;
    width: 100%;
}
.menu > .menu-item-has-children a {
    margin-right: 5px;
    transition:color .25s ease-in-out;
    -webkit-transition:color .25s ease-in-out;
}
.menu > li.menu-item-has-children:after, 
.menu-item-has-children .menu-item-has-children > a:after {
	content: url('/wp-content/themes/uni3/img/menu-chevron.svg');
	display: inline-block;
	position: relative;
	top: -2px;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}
.menu-item-has-children .menu-item-has-children > a:after {
	float: right;
}
.menu > li.menu-item-has-children:hover:after {
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
	top: 2px;
}
.menu .menu-item-has-children {
    position:relative;
}
.menu .sub-menu,
.menu .children {
    background-color: #fff;
    position: absolute;
    z-index: 1000;
    top: 30px;
    left: 0;
    min-width: 230px;
    opacity: 0;
    visibility:hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,.100);
    margin-top: 30px;
    -webkit-transition: all .35s;
    transition: all .35s;
}
.menu .sub-menu li {
    width: 100%!important;
    height: auto;
    display: block;
}
.menu .sub-menu li a,
.menu .sub-menu li span {
    font-size: 14px;
    display: block;
	color: #333;
    margin: 0;
    display: block;
    width: 100%;
    text-align: left;
    text-decoration: none;
	text-transform: none;
	font-weight: 400;
    position: relative;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.menu .sub-menu li:last-child a,
.menu .sub-menu li:last-child span {
	border-bottom: none;
}
.menu .menu-item-has-children:hover > .sub-menu {
    margin-top: 0px;
    opacity: 1;
    visibility: visible;
}
.sub-menu .sub-drop-icon{
    position: absolute;
    top: 17px;
    right: 20px;
    font-size: 15px;
}
/*Socials*/
.social a {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #56b8d7;
	font-weight: 500;
}
.social a:hover {
	opacity: 0.7;
	color: #999;
}
.social svg {
	fill: #56b8d7;
	width: 25px;
	height: 25px;
}
/* Top contacts */
.top-contacts {
	display: flex;
	gap: 10px;
	margin-left: auto;
}
.top-contacts svg {
	width: 28px;
	height: 28px;
	fill: #56b8d7;
}
.top-phone {
	font-size: 20px;
	font-weight: 600;
	color: #444;
	margin-left: 10px;
}
.top-phone svg {

	height: 18px;
	position: relative;
	top: 2px;	
}
/* Intro */
.intro,
.advantages .innerb,
.five-section .innerb,
.project-support .innerb,
.contacts {
	overflow: hidden;
	position: relative;
	background-image: url(../../../wp-content/themes/uni3/img/top.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.intro .inner {
	padding-top: 160px;
	padding-bottom: 80px;
}
.inimg {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 440px;
}
h1.slogan {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 30px;
	color: #56b8d7;
	text-transform: uppercase;
	white-space: pre-wrap;
    position: relative;
	min-height: 96px
}
.slogan::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1em;
    background: #56b8d7;
    margin-left: 5px;
    animation: blink 0.7s step-end infinite alternate;
    vertical-align: bottom;
}
@keyframes blink {
   50% { opacity: 0; }
}
.slogan,
.subslogan,
.intro ul {
	max-width: 60%;
}
.slogan,
.subslogan {
	color: #fff;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
	position: relative;
}
.subslogan {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
	margin-bottom: 40px;
}
.intro ul {
	margin-bottom: 30px;
	list-style-type: none;
	grid-row-gap: 15px;
}
.intro ul li {
	line-height: 1.5;
	padding-left: 40px;
	background-image: url(../../../wp-content/themes/uni3/img/checked.svg);
	background-repeat: no-repeat;
	background-size: 30px;
	font-weight: 300;
}
.btn-group {
	display: flex;
	gap: 30px;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 15px 35px;
	color: #fff;
	background-color: #56b8d7;
	border: none;
	font-weight: 500;
	overflow: hidden;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	text-decoration: none;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 14px;
	border-radius: 30px;
	align-self: flex-start;
	border: 2px solid #fff;
}
.btn svg {
	width: 20px;
	height: 20px;
}
.btn.inv {
	background-color: transparent;
	color: #56b8d7;
	border-color: #56b8d7;
}
.btn::before {
	position: absolute;
	content: '';
	background-color: #fff;
	width: 120%;
	height: 0;
	padding-bottom: 120%;
	top: -110%;
	left: -10%;
	border-radius: 50%;
	transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
	z-index: -1;
}
.btn:hover {
	color: #56b8d7;
}
.btn.inv:hover {
	border-color: #fff;
}
.btn::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: #fff;
	transform: translate3d(0, -100%, 0);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
	z-index: -1;
}
.btn:hover::before {
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.btn:hover::after {
	transform: translate3d(0, 0, 0);
	transition-duration: 0.05s;
	transition-delay: 0.4s;
	transition-timing-function: linear;
}
section.skills {
	padding-bottom: 0;
}
.skill {
	padding: 30px;
	border-radius: 25px;
	color: #fff;
	font-size: 30px;
	border: 1px solid #56b8d7;
	background-image: url(../../../wp-content/themes/uni3/img/top.png);
  	background-position: center center;
  	background-repeat: no-repeat;
  	background-size: cover;
}
.skill div {
	line-height: 1.3;
}
/* Slider */
.reviews {
	background-color: #fbfcff;
	padding-bottom: 0;
}
.rev-text {
	overflow: hidden;
}
.review {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 35px;
}
.review p {
	font-style: italic;
	line-height: 1.7;
	margin-bottom: 25px;
}
.mySwiper .swiper-pagination {
	position: relative;
	text-align: left;
	margin-top: 50px;
}
.mySwiper .swiper-pagination-bullet {
	width: 13px;
	height: 13px;
}
.mySwiper .swiper-pagination-bullet-active {
	background: #56b8d7;
}
.reviews img {
	margin-bottom: -10px;
}
.reviews svg {
	fill: #e6e6e6;
	position: absolute;
	width: 180px;
	height: 180px;
	top: 0;
	left: 0;
}
/* Front titles */
.section-title {
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
}
.section-subtitle {
	font-size: 14px;
	margin: 0 auto;
	max-width: 680px;
	line-height: 1.5;
	color: #555;
}
.heading-divider {
	margin: 24px auto 40px;
	max-width: 385px;
	display: block;
	height: 3px;
	position: relative;
	z-index: 1;
}
.heading-line1 {
	width: 100px;
	height: 3px;
	display: inline-block;
	background-color: #56b8d7;
	vertical-align: top;
}
.heading-line2 {
	width: 100%;
	height: 1px;
	display: inline-block;
	background-color: #dedede;
	position: absolute;
	top: 1px;
	left: 0;
	z-index: -1;
}
/* SMI */
.smi h2 {
	margin-bottom: 50px;
}
.smi .swiper-slide img {
	margin-bottom: 15px;
	max-height: 55px;
}
.smi .swiper-slide p {
	position: relative;
	border: 1px solid #56b8d7;
	border-radius: 25px;
	padding: 15px;
}
.smi .swiper-pagination {
	text-align: center;
}
.smi .swiper-pagination-bullet {
	background-color: #30aacf;
}
/* Advantages */
.advantages .innerb,
.five-section .innerb,
.project-support .innerb,
.contacts {
	padding: 45px;
	border-radius: 25px;
	border: 1px solid #c0c0c0;
}
.advantages .inner > p {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.col:nth-child(-1n + 3) {
	grid-column: span 4;
}
.col:nth-last-child(2) {
	grid-row-start: 2;
	grid-column: 3 / span 4;
}
.col:nth-last-child(1) {
	grid-row-start: 2;
	grid-column: 7 / span 4;
}
.advantage-item img {
	height: 65px;
	width: auto;
	margin: 0 auto 15px;
	display: block;
}
@media (max-width: 768px) {
  .item {
    flex: 0 0 calc(50% - 15px);
  }
}
/* Fourth section */
.services::before,
.services-list::before  {
	content: '';
	background-image: url('../../../wp-content/themes/uni3/img/divider.png');
	background-position: center top;
	background-size: 1200px;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 12px;
	width: 100%;
}
.services h2 {
	margin-bottom: 50px;
}
.srv-item {
	display: flex;
	flex-direction: column;
	border-radius: 25px;
	border: 1px solid #fff;
	padding: 0 25px 25px;
}
.srv-item img {
	width: 45px;
	height: 45px;
	position: relative;
	top: -25px;
	margin: 0 auto;
}
.srv-item h3 {
	color: #56b8d7;
	margin-top: -10px;
	margin-bottom: 15px;
}
.srv-item p {
	margin-bottom: 20px;
}
.srv-item .center {
	margin-top: auto;
}
/* Fifth section */
.five-section h2 {
	font-size: 28px;
	line-height: 1.4;
}
.five-section img,
.contacts img {
	position: absolute;
}
.five-section img {
	bottom: -90px;
}
.five-section .btn {
	margin-top: 15px;
}
.contacts img {
	bottom: -250px;	
}
/* Six section */
.six-section {
	background-image: url(../../../wp-content/themes/uni3/img/six.png);
	background-size: cover;
}
.six-section p,
.advantages .inner > p {
	font-size: 20px;
	margin-bottom: 30px;
}
/* Services page */
.services-list .grid {
	margin-bottom: 30px;
}
.services-list .grid div {

}
.full-serv-list,
.serv-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.full-serv-list {
	padding: 20px;
	border: 1px solid #56b8d7;
	border-radius: 25px;
	gap: 25px;
}
.serv-list {
	gap: 10px;
}
.serv-list div {
	line-height: 1.6;
}
.full-serv-list h3 {
	margin-bottom: 0;
}
.full-serv-list .btn {
	margin-top: auto;
}
/* Common */
.content {
	padding-top: 80px;
	padding-bottom: 80px;
}
.content h1 {
	text-transform: uppercase;
	margin-bottom: 50px;
	letter-spacing: 1px;
}
.content p,
.content ul,
.content ol,
section p {
	margin-bottom: 15px;
}
.content p,
.content li,
section li, 
.widget ul li,
.widget ol li,
section p  {
	line-height: 1.4;	
}
.content ul li,
.content ol li,
section ul li,
section ol li {
	margin-left: 25px;
	margin-bottom: 10px;
}
.content li::marker {
	color: #56b8d7;
}
.content p:last-child,
section p:last-child,
section ul li:last-child,
section ol li:last-child,
section ul:last-child,
section ol:last-child {
	margin-bottom: 0;
}
section ul li {
	background: url(../../../wp-content/themes/uni3/img/checked.svg);
	list-style-type: none;
	padding-left: 30px;
	background-repeat: no-repeat;
	background-size: 20px 20px;	
	background-position: 0 center;
}
input[type="submit"],
input[type="button"],
button {
	-webkit-appearance: none;
	cursor: pointer;
	font-family: "Inter", sans-serif;
	display: inline-block;
	padding: 7px 20px;
	background: #56b8d7;
	border-radius: 3px;
	font-size: 14px;
	border: none;
}
input[type="submit"],
button,
input[type="submit"]:hover,
button:hover {
	color: #fff;	
}
.bt {
	font-size: 20px;
}
.promo-services .cols-2 {
	margin-bottom: 20px;
}
/* Contact page */
.contacts-block {
	margin-bottom: 20px;
	grid-row-gap: 5px;
}
.contacts h3 {
	font-size: 18px;
}
/* Popup */
.popup-container .popup-button {
    background: #333;
    line-height: 34px;
    color: #fff;
    padding: 0 20px;
    border-radius: 3px;
    display: block;
    cursor: pointer;
}
.popup-inner .grid {
	grid-column-gap: 15px;
	grid-row-gap: 15px;	
}
.popup-container .popup-button:hover {
    background: #444;
}
.popup-container .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 250ms all;
}
.popup-inner {
    width: 95%;
	max-width: 400px;
    box-sizing: border-box;
    padding: 20px;
	background-image: url(../../../wp-content/themes/uni3/img/top.png);
  	background-position: center center;
  	background-repeat: no-repeat;
  	background-size: cover;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 150%;
    transition: 250ms all;
    max-height: 90%;
	overflow-y: auto;
	border-radius: 20px;
	border: 1px solid #0c0767
}
.popup-title svg {
    height: 20px;
    width: auto;
    margin-right: 3px;
    position: relative;
    top: 3px;
    fill: #56b8d7;
}
.popup-title h4 {
    font-size: 24px;
    font-weight: 600;
    color: #56b8d7;
    margin-bottom: 5px;
}
.popup-title .subtitle {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.3;
    color: #56b8d7;
}
.popup-container .popup .popup-inner .popup-content ul li {
    margin-bottom: 10px;
}
.popup-container .popup .popup-inner .popup-content ul li:last-child {
    margin-bottom: 0;
}
.popup-container .popup .popup-inner .popup-content ul li input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
    line-height: 34px;
    padding: 0 15px;
    font-size: 14px;
    box-sizing: border-box;
}
.popup-container .popup .popup-inner .popup-content ul li button {
    width: 100%;
    line-height: 34px;
    background: #666;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    border: none;
    font-size: 14px;
}
.popup-container .popup .popup-inner .popup-content ul li button:hover {
    background: #444;
}
.popup-container .popup .transparent-label {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    cursor: pointer;
}
.popup-container>input {
    display: none;
}
.popup-container>input:checked+.popup {
    opacity: 1;
    visibility: visible;
}
.popup-container>input:checked+.popup .popup-inner {
    position: relative;
    top: 50%;
}
.popup-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    display: block;
    padding: 10px;
    font-size: 22px;
    color: #777;
}
.popup-close-btn:hover {
    color: #dd3d53;
}
/*Cookies*/
#cookie_note {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 15px;
	width: 100%;
    max-width: 370px;;
    padding: 15px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
	z-index: 999;
}
#cookie_note p {
    margin: 0;
    font-size: 13px;
    text-align: left;
    color: black;
	line-height: 1.2;
	margin-bottom: 15px;
}
#cookie_note a {
	text-decoration: underline;
}
#cookie_note a:hover {
	text-decoration: none;
}
@media (min-width: 576px) {
    #cookie_note.show {
        display: block;
		flex-direction: column;
    }
}
@media (max-width: 575px) {
    #cookie_note.show {
        display: block;
        text-align: left;
    }
}
/*404*/
.error404 {
	min-height: 100vh;
	display: flex;
	gap: 50px;
	flex-direction: column;
	justify-content: space-between;
}
.error404 .header {
	position: relative;
}
.error404 .top-title {
	margin-bottom: 0;
	margin-top: 100px;
}
.error404 .content {
	padding-top: 40px;
}
.error404 .content p {
	margin-bottom: 15px;
}
.error404 .footer {
	margin-top: auto;
}
/* Footer*/
.footer {
	padding: 40px 0 20px;
	position: relative;
	background-color: #020119;
}
.footer::before {
	content: "";
	position: absolute;
	background-image: url(../../../wp-content/themes/uni3/img/back.png);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-position: center center;
	background-size: cover;
	opacity: 0.03;
}
.footer-logo {
	width: 50px;
	margin-bottom: 9px;
}
.footer-title {
	font-size: 18px;
	line-height: 16px;
	font-weight: 700;
	margin-bottom: 36px;
	display: inline-block;
	position: relative;
	color: #cfd3e2;
}
.footer-title::before {
	position: absolute;
	content: '';
	bottom: -14px;
	left: 0;
	width: 18px;
	height: 2px;
	display: block;
	background-color: #56b8d7;
}
.footer-txt {
	background-color: #010014;
	margin: -70px 0 0 0;
	padding: 50px 40px 50px 40px;
	border-radius: 10px;
	box-shadow: 0px 0px 100px 0px rgba(16, 9, 131, 0.2) inset;
}
.footer-txt img {
	height: 35px;
}
.footer-txt p {
	line-height: 1.5;
	font-weight: 300;
	color: #dfe2ec;
}
.footer-txt img {
	margin-bottom: 20px;
}
.footer,
.fmenu .menu span,
.footer a {
	color: #e8e9eb;
	font-size: 14px;
}
.footer a:hover {
	color: #d0d3e2;
}
.fmenu .menu {
	display: block;
	text-align: left;
	font-size: 15px;
	font-weight: 400;
	padding-left: 15px;
}
.fmenu .menu a,
.fmenu .menu span {
	text-transform: none;
	padding: 0;
}
.fmenu .menu li {
	display: block;
	margin-bottom: 10px;
	text-transform: none;
}
.fmenu li::before {
	content: '';
	position: absolute;
	border-right: 1px solid #56b8d7;
	border-bottom: 1px solid #56b8d7;
	width: 4px;
	height: 4px;
	top: 50%;
	left: -15px;
	transform: translateY(-50%) rotate(-45deg);
}
.fmenu li:hover a {
	padding-left: 5px;
}
.fc-item {
	line-height: 1.2;
	margin-bottom: 12px;
	font-size: 14px;
	display: flex;
	gap: 10px;
	align-items: center;
}
.fc-item svg {
	width: 16px;
	height: 16px;
	fill: #56b8d7;
	flex: 0 0 auto;
}
.fc-item span {
	line-height: 1.5;
}
.fc-item a {
	color: #fff;
}
.copyright .inner {
	margin-top: 35px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-weight: 300;
	color: #dfe2ec;
	font-size: 13px;
}
/* Back to top button */
.gototop {
    position: fixed;
    display: block;
    box-sizing: border-box;
    height: 40px;
    width: 40px;
    border: none;
    background-color: #070735;
    color: #fff;
    bottom: 20px;
    right: 20px;
    margin-right: -30px;
    outline: none;
    opacity: 0;
    transition: opacity .3s ease, margin-right .5s ease-out;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    padding: 0;
    z-index: 1;
}
.gototop svg {
    fill: #fff;
    height: 40px;
    width: 40px;
}
.visiblebtn {
    transition: opacity .3s ease, margin-right .5s ease-out, background-color .2s linear;
    margin-right: 0px;
    opacity: 1;
}
.visiblebtn:hover {
    background-color: #0d51ff;
}
/*CF7*/
p.suptitle {
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 15px;
	color: #e84d4b;
	display: inline-block;
	position: relative;
}
p.suptitle::before, 
p.suptitle::after {
	content: '';
	display: block;
	height: 1px;
	width: 25px;
	background: #e84d4b;
	position: absolute;
	top: 8px;
}
p.suptitle::after {
	right: -37px;
}
.wpcf7 h2 {
	font-weight: 700;
}
.wpcf7 .subtitle {
	line-height: 1.4;
	margin-bottom: 15px;
}
.wpcf7 input[type="text"].form-name, 
.wpcf7 input[type="text"].form-tel,
.wpcf7 input[type="text"].form-email {
	padding-left: 35px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: 5px;
}
.form-name {
	background-image: url(../../../wp-content/themes/uni3/img/form-name-w.svg);
}
.form-tel {
	background-image: url(../../../wp-content/themes/uni3/img/form-phone-w.svg);
}
.form-email {
	background-image: url(../../../wp-content/themes/uni3/img/form-email-w.svg);
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea  {
	width: 100%;
	padding: 10px;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #0c0767;
	font-family: 'Inter', sans-serif;
	margin-bottom: 10px;
	font-size: 15px;
	color: #fff;
}
.wpcf7 textarea {
	height:120px;
	line-height: 1.4;
}
.wpcf7-not-valid-tip {
	display:none!important;
}
.wpcf7-form.invalid .wpcf7-not-valid {
	border-bottom: 1px solid #f00!important;
}
.right-sidebar .wpcf7-not-valid {
	border-left: none!important;
	border-top: none!important;
	border-right: none!important;
}
.wpcf7-not-valid-tip, 
.invalid .wpcf7-response-output,
div.wpcf7-validation-errors {
	display: none !important;
}
.wpcf7-response-output {
	font-size:13px;
	text-align:center;
	color:#56b8d7;
	font-weight:300;
}
div.wpcf7-response-output {
    margin: 10px 0 0!important;
    padding: 0!important;
}
div.wpcf7-mail-sent-ng,
div.wpcf7-mail-sent-ok,
.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
	border:none!important;
}
input[type="submit"],
button,
input[type="text"],
textarea,
input[type="tel"] {
	-webkit-appearance: none;
}
.wpcf7-acceptance label {
	cursor: pointer;
	display: flex;
	align-items: baseline;
	gap: 5px;
}
.wpcf7-acceptance {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
   	margin-top: 5px;
  	color: #ccc;
}
.wpcf7-acceptance label input[type="checkbox"] {
	position: relative;
	bottom: -2px;
}
.wpcf7-acceptance label span {
	line-height: 1.3;
}
.wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}
:focus::-webkit-input-placeholder {
	color: transparent
}
:focus::-moz-placeholder {
	color: transparent
}
:focus:-moz-placeholder {
	color: transparent
}
:focus:-ms-input-placeholder {
	color: transparent
}
@media (min-width: 801px) {
	.page.inner .content img {
		padding: 5px;
		box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.13);
	}
	img.alignright,
	a img.alignright {
    	float:right;
     	margin:0 0 10px 20px;
	}
	img.alignleft,
	a img.alignleft {
    	float:left;
     	margin:0 20px 10px 0
	}
	img.aligncenter,
	a img.aligncenter {
    	display: block;
     	margin-left: auto;
     	margin-right: auto
	}
}
@media (min-width: 1024px) {
	.fmenu:nth-of-type(2) {
		margin-left: 40px;
	}
}
@media (max-width: 834px) {
	.cols-4	{
		grid-template-columns: repeat(2,1fr);
	}
	h1 {
		font-size: 32px;
	}
	h2 {
    	font-size: 20px;
    	line-height: 1.3;
  	}
  	.inimg {
  		z-index: 0;
  	}
  	.intro .subslogan,
  	.intro .grid.cols-2,
  	.intro .btn-group {
  		position: relative;
  		z-index: 1;
  	}
	.inner,
	.section-subtitle {
		padding: 0 15px;
	}
	.about-img {
    	display: none;
  	}
  	.about-txt {
		padding: 15px;
		position: relative;
		right: auto;
		top: auto;
		width: 100%;
	}
	.services::before, 
	.services-list::before {
		background-size: 800px;
		height: 10px;
	}
	.five-section .cols-2,
	.contacts .cols-2 {
		grid-template-columns: 1fr;	
	}
	.five-section img, 
	.contacts img {
	 	position: relative;
	}
	.five-section div, 
	.contacts div {
		order: 1;
	}
	.five-section img,
	.contacts img {
		bottom: 0;
		margin-bottom: -95px;
		width: 400px;
	}
	.five-section .psr,
	.contacts .psr {
		text-align: center;
	}
	.five-section div.psr, 
	.contacts div.psr {
		order: 2;
	}
	.header,
	.right,
	.copyright {
		text-align:center;
	}
	.copyright .inner {
		line-height: 1.3;
	}
}
@media (max-width: 667px) {
	body {
		padding-top: 0;
	}
	.grid {
		gap: 20px;
	}
	.services .grid {
		grid-row-gap: 40px;
	}
	.cols-2,
	.cols-3,
	.cols-2-1,
	.cols-4,
	.footer .cols-4,
	.cols-1-3,
	.post-item.cols-2	{
		grid-template-columns: 1fr;	
	}
	h1 {
		font-size: 28px;
	}
	.services::before, 
	.services-list::before {
		background-size: 500px;
		height: 7px;
	}
	.header {
		padding: 15px 0;
		height: auto;
		position: relative;
	}
	.logo-brand {
		display: flex;
		align-items: center;
		justify-content: center;
		order: 1;
	}
	.logo {
		margin: 0 auto;
	}
	.menu li,
	.menu li a,
	.menu span {
		display: block;
		text-transform: none;
		font-weight: 400;
		letter-spacing: 0.1px;
		text-align: left;
	}
	.menu li a,
	.menu span	{
		font-size: 16px;
	}
	.intro .inner {
		padding: 0;
		display: flex;
		flex-direction: column;
	}
	.intro .slogan {
		order: 1;
		min-height: 126px;
	}
	.intro .subslogan {
		order: 2;
	}
	.intro .grid {
		order: 3;
	}
	.inimg {
		order: 4;
	}
	.intro .btn-group {
		order: 5;
	}
	.five-section img,
	.contacts img {
		bottom: 0;
		margin-bottom: -70px;
	}
	.footer-title::before {
		content: none;
	}
	.footer .menu li a, 
	.footer .menu span {
		padding: 3px 0;
	}
	.top-contacts {
		justify-content: center;
		margin-left: 0;
	}
	.intro {
  		padding: 15px;
	}
	.slogan, 
	.subslogan,
	.intro ul {
 		 max-width: 100%;
 	}
	h1.slogan {
  		font-size: 30px;
  		line-height: 1.4;
  		margin-bottom: 25px;
	}
	.intro ul li {
		padding-left: 35px;
		background-size: 25px;
	}
	.inimg {
		position: relative;
		margin-left: auto;
		margin-right: auto;
		max-width: 255px;
	}
	section h2,
	.five-section h2 {
		font-size: 24px;
		line-height: 1.3;
	}
	.contacts h3 {
		line-height: 1.4;
	}
	.footer .menu {
		display: block;
	}
	.footer .cols-4,
	.wpcf7 .cols-2 {
		grid-template-columns: repeat(2,1fr);
	}
	.footer-title {
		margin-bottom: 20px;
	}
	.fmenu .menu a {
		font-size: 15px;
	}
	.services-list .grid div {
		line-height: 1.4;
	}
	.wpcf7-list-item-label {
		line-height: 1.3;
	}
	.btn-group a,
	.btn-group label {
		min-width: 260px;
		display: block;
		text-align: center;
	}
	.btn-group {
		gap: 20px;
	}
	.smi .swiper-slide img {
		max-height: 45px;
	}
}
@media (max-width: 549px) {
	.btn-group {
		flex-direction: column;
	}
	.btn-group * {
		margin-left: auto;
		margin-right: auto;
	}
	.footer .cols-4,
	.wpcf7 .cols-2,
	.cols-3-2 {
		grid-template-columns: repeat(1,1fr);
	}
	.col:nth-child(-1n + 3) {
		grid-column: span 1;
	}
	.col:nth-last-child(2) {
		grid-row-start: auto;
		grid-column: auto;
	}
	.col:nth-last-child(1) {
		grid-row-start: auto;
		grid-column: auto;
	}
	.services::before, 
	.services-list::before {
		background-size: 330px;
		height: 4px;
	}
	.footer .menu li a, 
	.footer .menu span {
		font-size: 14px;
	}
	.swiper img {
		max-width: none;
	}
	.slider-title {
  		font-size: 35px;
	}
	.slider-text {
		font-size: 15px;
	}
	.about-txt li {
		margin-left: 10px;
	}
	.footer-txt img {
		margin-left: auto;
		margin-right: auto;
	}
	.footer-txt p {
  		line-height: 1.45;
	}

	.footer-title {
		margin-bottom: 30px;
	}
}
/*Swiper 11.2.10*/
@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, 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');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}