@font-face{font-family:Gotham;src:url(../fonts/Gotham-Book.woff2) format("woff2"),url(../fonts/Gotham-Font/Gotham-Book.woff) format("woff");font-weight:400;font-style:normal;font-display:swap}

@font-face{font-family:Gotham;src:url(../fonts/Gotham-LightItalic.woff2) format("woff2"),url(../fonts/Gotham-LightItalic.woff) format("woff");
font-weight:300;font-style:italic;font-display:swap
}



* {box-sizing: border-box;}
html {
    max-width: 100vw;
    max-width: 100dvw;
    overflow-x: hidden;
}
div {
	position:relative;
}
body {
    font-family: 'Gotham',  'Roboto', Arial, sans-serif;
    margin: 0;
    transition: all 0.6s ease;
    opacity: 0;
	/*
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	*/
	padding-top: 0;
}
* {
	font-family: 'Gotham',  'Roboto', Arial, sans-serif;
}
body.loaded {opacity: 1;}
.wrap {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 20px;
}
.margin24 {
    margin: 20px auto;
}
div, main, article, footer {
    position: relative;
}
section {
    position: relative;
}
h1, h2, h3, h4 {
    margin: 0;
}

body {
    font-size: 20px; 
    line-height: 1.31;
    font-weight: 400;
    color: #190f19;
    background: #fbf9fb;
    min-height: 100vh;
    position: relative;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

h2 {
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
}
h3 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}
.wrap {}








* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.btn {
    color: #fbf9fb;
    background: #86368c;
    border-radius: 16px;
    padding: 17px 40px;
    border: none;
    transition: all ease-in-out .3s;
    cursor: pointer;
    font-size: 20px;
	text-decoration:none;
	
}
.btn.btn-violet {}
.btn.btn-white {
	color: #190f19;
    background: #fbf9fb;
}
.btn:hover {
	background: #85c3ff;
    color: #fbf9fb;
    transform: translateY(-7px);
}
.btn.btn-white:hover {
	background: #f6eef7;
    box-shadow: 0 5px 25px rgba(134, 54, 140, .15);
    color: #190f19;
}



header {
    height: 64px;
    padding: 12px 10px;
    /*background: #f6eef7;*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    transition: all ease-in-out .3s;
    /*transform: translateY(-100%);*/
	
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	
	/*background-color: #00000012;*/
}

header .wrap {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
header .logo {
    margin-right: auto;
    height: 40px;
    width: 145px;
}
header nav {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
header nav .navitem {
    border-radius: 10px;
    color: #fbf9fb;
    padding: 8px 10px;
    transition: all 0.6s ease;
    display: flex;
    gap: 5px;
    align-items: center;
}
header nav .navitem > a {
    color: inherit;
    text-decoration: none;
}
header nav .navitem:hover {
    background: #fbf9fb;
    color: #190f19;
}
header nav .navitem:hover > a {
	color:#86368c;
}
header nav .navitem .submenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 38px;
    background: #fbf9fb;
    box-shadow: 0 10px 12px rgba(134, 54, 140, .15);
    width: auto;
    border-radius: 12px;
    left: 0;
    border-top-left-radius: 0;
    min-width: calc(100% + 16px);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
    padding: 15px 24px;
    gap: 12px;
}
header nav .navitem.navitem_sub:hover {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
header nav .navitem .submenu a {
    color: #190f19;
    text-decoration: none;
}
header nav .navitem:hover .submenu {
    opacity: 1;
    pointer-events: all;
}
header nav .navitem:hover .submenu a:hover{color:#86368c;}
header nav .navitem:hover .submenu.dpmodules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 15px 24px;
}
header nav .navitem.navitem_sub:after {
    content: '';
    background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 8.625L12 15.375L18.75 8.625' stroke='%23FBF9FB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    width: 24px;
    height: 24px;
    display: block;
    transition: all 0.6s ease;
}
header nav .navitem.navitem_sub:hover:after {
    filter: invert(1);
    transform: scaleY(-1);
}
header .controls {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}
header .controls .btn {
    height: 40px;
    font-size: 15px;
    padding: 0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 10px;
}
 
body:not(.scrolledW) header .controls .btn {
	color: #190f19;
    background: #fbf9fb;
}
body.hrome header .controls .btn {
	color: #fbf9fb;
    background: #86368c;
}
body.hrome header,
.scrolledW header { 
    background-color: #ffffffb5;
}

.langs{}
.langs .selected {}
.langs .lngitem {
    display: flex;
    gap: 10px;
    height: 44px;
    font-size: 15px;
    text-decoration: none;
    align-items: center;
    cursor: pointer;
	transition: all 0.6s ease;
}
.langs .lngitem b {
    width: 34px;
    height: 24px;
    display: block;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}
.langs .lngitem i {
    font-style: normal;
    color: #fff;
    font-size: 12px;
}
.langs .variants {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: all 0.6s ease;
	border-radius: 12px;
    background: #fff;
    padding: 2px 8px;
	top: 0;
    left: -8px;
}
.langs:hover .variants {
    pointer-events: all;
    opacity: 1;
}
.langs:hover .variants .lngitem:not(:hover) {
    opacity: 0.5;
}
.langs .variants .lngitem i {
    color: #121212;
}
.flag {}
.flag-en {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 30' width='250' height='150'%3E%3CclipPath id='t'%3E%3Cpath d='M25,15h25v15zv15h-25zh-25v-15zv-15h25z'/%3E%3C/clipPath%3E%3Cpath d='M0,0v30h50v-30z' fill='%23012169'/%3E%3Cpath d='M0,0 50,30M50,0 0,30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0,0 50,30M50,0 0,30' clip-path='url(%23t)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M-1 11h22v-12h8v12h22v8h-22v12h-8v-12h-22z' fill='%23C8102E' stroke='%23FFF' stroke-width='2'/%3E%3C/svg%3E");
}
.flag-ua {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='flag-icons-ua' viewBox='0 0 640 480'%3E%3Cg fill-rule='evenodd' stroke-width='1pt'%3E%3Cpath fill='gold' d='M0 0h640v480H0z'/%3E%3Cpath fill='%230057b8' d='M0 0h640v240H0z'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.flag-kz {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1000' height='500' xmlns:v='https://vecta.io/nano'%3E%3Cpath fill='%2300abc2' d='M0 0h1000v500H0z'/%3E%3Cg fill='%23ffec2d'%3E%3Cg transform='matrix(.5 0 0 .5 540.236 210)'%3E%3Ccircle r='134.55'/%3E%3Cg id='A'%3E%3Cg id='B'%3E%3Cpath id='C' d='M0-152.9c8-.1 11-5.1 11-11.1 0-8-11-46.1-11-46.1S-11-172-11-164c0 6 3 11.1 11 11.1z'/%3E%3Cuse xlink:href='%23C' transform='rotate(90)'/%3E%3Cuse xlink:href='%23C' transform='scale(-1)'/%3E%3Cuse xlink:href='%23C' transform='rotate(270)'/%3E%3C/g%3E%3Cuse xlink:href='%23B' transform='rotate(22.5)'/%3E%3Cuse xlink:href='%23B' transform='rotate(45)'/%3E%3Cuse xlink:href='%23B' transform='rotate(67.5)'/%3E%3C/g%3E%3Cuse xlink:href='%23A' transform='rotate(11.25)'/%3E%3C/g%3E%3Cg transform='scale(.5)'%3E%3Cpath d='M1056.467 711.467c-3.6.2-7.1.666-10.534 1.766-4.7.634-9.2 2.267-13.866 3.034l-1.867.3-3.133.3c.2.866.333 1.733.333 2.6 0 .9-.1 1.766-.333 2.5-.2.7-.834 1.566-1.334 2.1-.666.733-1.366 1.366-2.2 1.766-.8.4-1.7.567-2.6.634-.9.033-1.833 0-2.7-.334-.9-.3-1.733-.866-2.5-1.533a21.57 21.57 0 0 1-2.8.5c-.933.1-1.8.1-2.633 0-.933-.267-1.9-.567-2.8-.933a16.14 16.14 0 0 1-2.6-1.367c-3.4 2-7.2 3.9-9.267 7.4-1.166 1.6-1.4 3.433-1.666 5.333-.167 2.334.433 4.8 1.433 6.967.367.633.667-2.3 1.8-2.7 1.9-1.567 4.267-2.7 6.667-3.333 2.033-1.034 1.766.066.933 1.666-.2.834-1.333 4 .2 2.4 6.767-3 14.267-3.6 21.567-4.166 10.6-1.1 21.233-1.334 31.866-1.467l30 .633c4.767.134 9.567 1.2 14.267.4 1.133-.3 2.9-.366 3.567-1.033-2.134-1.233-4.634-1.267-7-1.567H1080.2c-5.3-.533-10.833-.6-15.833-2.6-1.334-.533-2.567-1.8-3.834-.433-1.9.667-3.933 1.133-5.933 1.267-3.5.266-7-.467-10.233-1.767 2.333-3.233 5.133-6.067 7.7-9.067-2.067-.333-4.067-.766-6.134-1.266 3.634-2.5 7-5.334 10.534-8z'/%3E%3Cpath d='M1212.2 746.01c-7.245 4.35-12.775-3.362-18.831-5.675-4.325 2.349-4.729 10.208-8.77 13.93-4.835 5.502-10.76-1.537-10.319-6.965-5.782 4.874-8.706 15.922-18.057 14.446-4.43-3.615-7.721-11.201-11.106-2.564-2.76 4.222-10.11 10.23-13.916 3.854-1.178-5.63-4-12.25-7.063-3.308-2.102 6.325-8.85 10.978-15.379 8.209-3.574-2.922 2.865-13.727-1.684-12.958-6.8 4.495-10.753 15.658-20.242 14.764-3.685-4.136 2.236-11.144-1.806-15.735-4.77 6.123-10.063 15.089-18.315 15.735-3.988-3.232.157-12.501-2.39-13.873-8.467 5.078-17.401 14.128-28.05 11.294 4.15-15.873 21.49-21.442 36.073-22.68 25.089-3.084 51.484 2.586 75.624-6.47 3.9-2.373 13.35-5.739 9.985-11.243-2.98-4.347 7.753-2.647 8.785-7.724-.639-6.43 4.927-5.545 10.364-6.108 24.376-1.052 48.455 4.082 72.758 4.954 1.836 11.842-11.3 20.157-21.876 16.5-5.052.819-12.627-11.615-11.142-2.57-1.018 4.748-.305 11.018-4.643 14.189m-207.4-24.248c5.643 5.165 9.6-.973 14.875-3.216 17.692-6.085 33.128-16.719 48.346-27.344 9.22-7.63 17.214-17.525 29.597-20 24.155-7.303 49.832-6.417 74.08-13.157 18.465-25.28 49.826-34.299 76.097-48.83 5.899-1.833 8.178-6.688 10.062-12.048 10.028-15.83 23.689-29.857 39.845-39.439 7.644-4.177 16.764-6.582 25.418-4.672-.62 10.307-6.533 19.442-13.672 26.57 5.842-.128 10.863-3.819 16.767-3.611 2.023 10.578-9.4 16.114-15.478 22.7 3.385.787 16.353 1.768 9.286 5.159-9.005 6.25-19.289 10.541-27.602 17.799 7.67 1.378 8.544 3.008.745 5.782-4.222 2.862-12.341 3.862-13.126 9.437 5.794 3.561-2.669 7.097-5.933 8.255-6.242 1.454-12.798 4.165-4.507 8.907-3.136 4.738-9.865 5.749-15.356 5.28 1.666 5.37 4.078 11.379-2.892 13.748-15.624 11.81-33.96 20.402-53.6 22.367 24.535 1.886 49.806-2.668 70.772-16.011 2.768-3.273 17.282-6.79 9.164-9.542-3.822-1.59-12.016-3.357-12.57-6.271 11.355-7.006 25.664-4.514 37.88-8.676.316-3.955-9.292-2.855-12.874-3.755-8.543-.7-8.042-2.88.195-3.688 10.422-2.76 22.226-3.303 30.993-10.098-7.138-3.307-16.116-.396-23.732-3.096 12.911-5.65 28.142-6.217 39.726-14.704 5.277-5.87-6.76-4.036-10.267-3.893-7.15 1.245-10.456-2.178-2.332-5.149 13.87-10.227 31.433-16.87 41.176-31.697 2.308-3.319 5.433-13.319-1.928-9.722-9.68 3.219-18.198 14.101-29.228 10.735 21.733-16.844 42.413-36.02 57.267-59.33.768-6.723-9.785-7.45-12.532-2.172-13.963 13.454-26.6 29.335-44.477 37.77 17.121-16.525 31.276-36.092 43.626-56.372 2.648-6.032 9.764-13.286 5.902-19.983-6.225-5.153-14.013-.436-17.248 5.73-10.854 14.17-19.096 30.709-33.054 42.25 12.22-23.321 24.871-48.147 25.18-75.046-.038-5.538-1.15-13.694-8.67-12.66-5.962 1.069-4.546 9.992-7.004 14.505-5.411 18.377-7.951 38.279-19.05 54.37 2.497-14.933 6.866-30.5 3.512-45.58-1.567-6.739-12.45-3.84-11.048 2.83-13.002 65.86-57.194 123.46-114.99 156.78-26.464 14.973-56.023 24.626-86.096 29.002-8.09 1.771-16.84.732-24.572 3.49-18.736 14.367-30.08 38.407-53.802 45.935-10.632 5.284-24.496 6.356-32.098 16.233-.658 1.263-.8 2.727-.774 4.128'/%3E%3Cpath d='M1075.8 654.95c-3.5 6.354-5.56 13.658-10.06 19.347-13.541-12.321-33.171-11.914-50.347-12.734-14.177-.757-29.594-2.065-40.563-12.176-11.539-9.452-20.958-21.724-33.852-29.393-11.769-3.2-23.633-7.204-33.095-15.271-20.22-16.482-31.8-40.937-51.558-57.933-3.767-3.708-8.209-6.581-12.429-9.727-4.01.977-2.195 9.631-7.102 5.22-2.67-1.9-9.348-2.085-9.95.569 6.041 7.96 12.088 17.049 12.925 27.23-4.12.422-11.445-.87-13.487.664 5.471 8.2 12.484 15.473 20.452 21.263-3.822.614-11.353.28-12.818 1.82 7.909 6.446 16.39 13.034 26.747 14.69 2.12 2.794-3.1 8.19 1.29 10.576 2.545 1.04 10.944 2.78 5.159 5.675-3.97 2.675-2.497 8.91 2.58 8.77 3.21 1.64 10.417 2.041 10.981 4.88-2.845 2.895-11.698 6.328-4.163 9.04 7.039 3.904 15.067 6.439 23.105 6.717-4.034 3.394-9.004 5.32-13.156 8.513 18.55 10.877 39.113 18.03 59.433 24.919 8.09 2.703 16.274 5.223 24.66 6.81-24.368-1.407-47.921-8.621-70.115-18.495-11.503-5.045-23.084-9.92-34.873-14.265 5.169-2.69 11.148-3.347 16.509-5.675-11.128-2.23-23.285-2.96-33.067-9.077 1.5-2.676 7.183-2.802 10.326-4.164 5.911-1.416 9.578-3.134 1.243-3.648-8.405-2.281-18.045-1.257-25.452-6.328.477-3.04 8.229-1.98 11.386-3.293 3.976-.683 8.396-1.255 11.573-3.93-12.994-5.387-29.99-1.57-40.168-13.045-2.347-4.372 7.289-.85 10.033-1.579 6.973 0 14.467 2.216 21.107-.595-18.934-8.313-39.215-16.095-53.655-31.471-1.603-2.472-6.407-9.225-2.531-10.06 11.239 1.487 19.374 13.753 31.396 11.844 1.597-2.153-6.984-5.681-9.126-8.758-17.528-15.041-34.54-31.364-46.825-51.066-.845-6.58 9.497-7.565 12.22-2.484 13.405 12.911 25.514 27.977 42.21 36.791 5.924 2.873-3.402-3.4-4.644-5.675-15.427-17.914-30.113-36.834-40.895-57.932-1.93-3.802-5.128-10.686.646-12.71 5.773-2.892 11.501 1.048 14.428 6.007 11.342 14.305 19.688 31.307 33.817 43.225-12.037-23.359-24.889-47.948-25.2-74.828.283-5.21.618-13.092 7.684-12.878 5.933-.9 4.996 6.696 6.94 10.318 5.846 19.747 8.395 41.121 20.122 58.556-2.59-14.649-6.403-29.735-3.87-44.627.584-4.89 6.089-6.37 9.682-3.414 2.905 7.11 3.51 15.89 6.157 23.491 15.06 51.52 48.875 96.832 92.941 127.24 36.292 24.891 79.362 39.75 123.32 42.341 3.97.346 7.956.466 11.932.71'/%3E%3Ccircle cx='1020' cy='720.887' r='2.367'/%3E%3Ccircle cx='1019.8' cy='720.507' r='.965' stroke='%23ffec2d' stroke-width='.381'/%3E%3Cg id='D'%3E%3Cg id='E'%3E%3Cpath d='M120 72.922s-9.61-8.076-12.874-4.025c-5.25 6.515 16.14 38.968 16.14 50.396 0 18.759-12.517 23.86-27.973 26.539-10.371 1.798-27.259-.752-27.259-.752 3.18-4.273 5.248-5.532 10.606-5.873-5.965-3.097-12.039-9.82-12.039-20.284 0-16.138 6.643-22.79 6.643-40.983 0-10.093-8.276-22.941-8.276-22.941 14.629 1.464 21.879 15.009 17.754 25.834 2.328.335 4.442-.19 6.258-1.91 1.07 3-.62 6.483-2.883 9.484 1.823.974 3.162.39 6.066-.21-.276 3.092-2.128 6.376-6.66 9.468 13.151-3.415 21.243 5.751 21.243 15.347 0 7.248-5.079 12.443-10.044 12.443-1.604 0-3.961-.661-5.29-1.654-.938 1.995-.455 4.665.51 6.66-3.638-.962-5.948-3.123-4.304-7.621-2.795-.257-5.018-1.201-6.53-3 1.532-1.963 3.857-3.093 6.53-3.001-2.035-4.2.233-6.55 3.538-8.456 0 0-2.102 8.456 3.265 8.456 2.413 0 4.612-.786 4.612-4.343 0-3.097-2.707-7.387-8.966-7.114s-11.332 4.315-11.332 14.306c0 9.216 7.434 13.8 17.23 14.096 8.833.273 15.5-4.512 15.5-13.625 0-12.128-17.508-39.773-17.508-50.58 0-8.11 7.292-12.636 14.427-12.636 9.252 0 17.058 9.161 17.058 9.161l-5.435 6.815z'/%3E%3Cpath id='F' d='M122.02 292.14c0 20.27-18.198 30.688-32.498 30.688-19.266 0-29.524-11.519-29.524-26.598 0-8.548 1.566-13.911 5.507-22.092l44.153-91.653c1.543-3.188 2.041-6.818 2.041-12.138 0-8.217-7.97-14.933-16.327-15.139-7.618-.19-15.918 7.102-15.918 15.412 0 10.093 5.236 14.593 10.612 14.593 6.616 0 9.252-2.72 9.252-7.365 0-3.237-1.563-4.637-3.81-4.637-5.674 0-4.081 7.638-4.081 7.638-2.818-.617-5.134-3.497-3.81-7.093a10.23 10.23 0 0 1-5.51-3.273c1.521-1.475 3.266-2.613 5.51-3-1.329-4.388.447-6.531 4.286-7.433-.775 1.687-.801 3.24-.544 4.705 6.043-1.719 15.306 1.016 15.306 11.456 0 10.365-7.194 19.093-20.681 16.912 3.208 1.534 4.84 4.673 5.17 8.183-2.45-.954-5.17-1.09-5.17-1.09 1.577 2.78 3.767 5.177 3.673 10.637-2.5-1.137-4.823-3.242-8.027-1.91 5.03 9.898-1.15 23.512-16.871 26.733 5.754-6.745 8.571-14.027 8.571-21.277 0-23.496-6.53-27.445-6.53-43.78 0-6.835 3.513-14.215 10.476-19.231v.273c-4.602-1.233-7.55-3.499-9.245-6.578 10.515-2.982 25.8-2.927 34.006.302 9.434 1.093 16.02 8.33 17.96 12.004s5.709 16.953 0 28.912l-44.898 95.198c-1.948 4.165-3.13 8.583-3.13 13.366 0 12.03 11.02 16.23 17.28 16.23 7.483 0 15.102-5.7 15.102-12.82 0-4.511-2.45-7.228-5.987-7.228-8.458 0-7.944 7.195-6.258 11.729-5.264-2.367-8.324-6.592-7.483-11.047-2.98-.409-5.817-1.822-8.435-4.774 2.06-2.6 4.572-4.567 8.435-4.637-1.687-6.912 2.94-9.835 7.483-11.456-1.437 5.073-2.38 10.911 6.258 10.911 6.3 0 11.258 1.091 14.15 5.183l.68-27.005c.364-8.098-10.838-7.867-17.958-5.456 2.687-9.327 8.198-14.37 20.952-13.093-3.096-1.295-6.395-4.208-6.395-9.82.002-7.593 6.162-16.005 10.206-18.492l2.022 79.051z'/%3E%3Cuse xlink:href='%23F' transform='matrix(1 0 0 -1 0 645.08)'/%3E%3C/g%3E%3Cuse xlink:href='%23E' transform='matrix(-1 0 0 1 240 0)'/%3E%3C/g%3E%3Cuse xlink:href='%23D' transform='matrix(1 0 0 -1 0 1000)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.flag-ro {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' id='flag-icons-ro' viewBox='0 0 640 480'%3E%3Cg fill-rule='evenodd' stroke-width='1pt'%3E%3Cpath fill='%2300319c' d='M0 0h213.3v480H0z'/%3E%3Cpath fill='%23ffde00' d='M213.3 0h213.4v480H213.3z'/%3E%3Cpath fill='%23de2110' d='M426.7 0H640v480H426.7z'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.flag-md {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' id='flag-icons-md' viewBox='0 0 640 480'%3E%3Cg fill-rule='evenodd' stroke-width='1pt'%3E%3Cpath fill='%2300319c' d='M0 0h213.3v480H0z'/%3E%3Cpath fill='%23ffde00' d='M213.3 0h213.4v480H213.3z'/%3E%3Cpath fill='%23de2110' d='M426.7 0H640v480H426.7z'/%3E%3C/g%3E%3Cpath fill='%23ff1900' fill-rule='evenodd' stroke='%23000' stroke-width='.7' d='m360.4 320.4 24.2 35c1.4 2 2.7 3.9.7 5.2-2 1.3-1.4 6.4 0 8.4 2.7 3.9 6 4.5 8 3.2l18.4-11.6c2-1.2 2.7-4.5 0-8.4-1.5-2-6-4.5-8-3.2-2.1 1.3-3.5-.7-4.8-2.6l-24.3-35'/%3E%3Cpath fill='%23a77b3b' fill-rule='evenodd' stroke='%23000' stroke-width='2.5' d='M177.2 696.3c0 24.4-9.6 44.3-21.3 44.3-11.7 0-21.3-19.9-21.3-44.3S144.3 652 156 652s21.3 19.8 21.3 44.3z' transform='matrix(.52728 -.42386 .44358 .50386 -32.4 20)'/%3E%3Cpath fill='%23ff1900' fill-rule='evenodd' stroke='%23000' stroke-width='.7' d='m262 306.1-21.5 36.7c-1.2 2-2.4 4-4.5 3-2.1-1.2-6.6 1.7-7.8 3.8-2.4 4-1.5 7.2.7 8.4l19.2 10.2c2 1.1 5.4.2 7.8-3.8 1.1-2.2 1.4-7.3-.7-8.4-2.1-1.1-1-3.2.3-5.2l21.4-36.7'/%3E%3Cpath fill='%23a77b3b' fill-rule='evenodd' stroke='%23000' stroke-width='1.7' d='M331.2 280.6h-19.6c-.6.6-6.2 35.6-12.2 49-7.3 16.3-29.2 30.7-29.2 30.7s13.1 4 17 6.6c1-.3 22-4.7 24.4-30.3 2.4 25.6-14.6 37.3-14.6 37.3s24.4 7 24.4 23.3c0-16.3 24.4-23.3 24.4-23.3s-12.2-11.7-14.7-37.3c5 25.6 23.5 30 24.5 30.3 3.9-2.6 17-6.6 17-6.6s-21.9-14.4-29.2-30.7c-6-13.4-11.6-48.4-12.2-49zm-83-116.7 36.6 11.7c12.1 0 24.4-11.7 24.4-23.4.4-26-9.8-35-12.2-35l4.8-4.6-7.3-7s2.5-12.1 26.9-11.7c24.4.5 24.4 11.7 24.4 23.3s-12.2 11.7-12.2 35c0 11.7 12.2 23.4 24.4 23.4l36.6-11.7v116.7H248.1z'/%3E%3Cg fill='none' stroke='%23000'%3E%3Cpath stroke-width='.5' d='m302.2 292.2 14.6 15 14.7-15 14.6 15 29.3-15 14.3 15.8 15-15.8 21.6 15.8 22.3-15.8 14.6 15 14.7-15' transform='matrix(.16672 0 0 .46773 253.9 31.9)'/%3E%3Cpath stroke-width='.2' d='m432.3 435.8-7.1 39m10.6-39v39m7.1-39v39m7.1-39 3.5 39m3.6-39 3.5 39' transform='matrix(.68905 0 0 .65843 16.2 -144)'/%3E%3C/g%3E%3Cg stroke='%23000' stroke-width='2.5'%3E%3Cpath fill='%23a77b3b' fill-rule='evenodd' d='M318.9 361.4c35.4 17.7 35.4 53.2 35.4 70.9-1.2 16.1 0 354.3 0 354.3s-2.3-20-17.7-35.4L319 733.5l-17.7-17.7c-13-11.8-17.7-35.5-17.7-53.2v-248s0-17.8 35.4-53.2z' transform='matrix(-.68905 0 0 .65843 443.4 -144)'/%3E%3Cpath fill='none' d='M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7' transform='matrix(-.68905 0 0 .65843 443.4 -237.3)'/%3E%3Cpath fill='none' d='M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7' transform='matrix(-.68905 0 0 -.65843 443.4 530.2)'/%3E%3Cpath fill='none' d='M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7' transform='matrix(-.68905 0 0 .65843 443.4 -190.7)'/%3E%3Cpath fill='none' d='m301.4 557-.2 158.8' transform='matrix(-.68905 0 0 1.24911 443.4 -566.8)'/%3E%3Cpath fill='none' d='m301.4 539.3-.2 176.5' transform='matrix(-.68905 0 0 1.12111 431.4 -464)'/%3E%3Cpath fill='none' d='m301.4 539.3-.2 176.5' transform='matrix(-.68905 0 0 1.2559 419.2 -548.3)'/%3E%3C/g%3E%3Cg stroke='%23000' stroke-width='2.5'%3E%3Cpath fill='%23a77b3b' fill-rule='evenodd' d='M318.9 361.4c35.4 17.7 35.4 53.2 35.4 70.9-1.2 16.1 0 354.3 0 354.3s-2.3-20-17.7-35.4L319 733.5l-17.7-17.7c-13-11.8-17.7-35.5-17.7-53.2v-248s0-17.8 35.4-53.2z' transform='matrix(.68905 0 0 .65843 199.3 -144)'/%3E%3Cpath fill='none' d='M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7' transform='matrix(.68905 0 0 .65843 199.3 -237.3)'/%3E%3Cpath fill='none' d='M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7' transform='matrix(.68905 0 0 -.65843 199.3 530.2)'/%3E%3Cpath fill='none' d='M283.5 574c.4 0 17.7-17.7 17.7-17.7l17.7 17.7 17.7-17.7 17.7 17.7' transform='matrix(.68905 0 0 .65843 199.3 -190.7)'/%3E%3Cpath fill='none' d='m301.4 557-.2 158.8' transform='matrix(.68905 0 0 1.24911 199.3 -566.8)'/%3E%3Cpath fill='none' d='m301.4 539.3-.2 176.5' transform='matrix(.68905 0 0 1.12111 211.4 -464)'/%3E%3Cpath fill='none' d='m301.4 539.3-.2 176.5' transform='matrix(.68905 0 0 1.2559 223.6 -548.3)'/%3E%3C/g%3E%3Cpath fill='%23a77b3b' fill-rule='evenodd' stroke='%23000' stroke-width='2.5' d='M177.2 696.3c0 24.4-9.6 44.3-21.3 44.3-11.7 0-21.3-19.9-21.3-44.3S144.3 652 156 652s21.3 19.8 21.3 44.3z' transform='matrix(.63605 .25323 -.26502 .60778 361.1 -165.2)'/%3E%3Cpath fill='red' fill-rule='evenodd' d='M248.1 175.6h146.5v70H248.1z'/%3E%3Cpath fill='%23564dff' fill-rule='evenodd' d='M248.1 245.6h146.5v35c0 23.3-36.6 23.3-73.2 46.6C284.7 304 248 304 248 280.6z'/%3E%3Cpath fill='none' stroke='%23ff0' stroke-width='2' d='M336.6 485.4h212.6V645c0 35.4-53.1 35.4-106.3 70.9-53.1-35.5-106.3-35.5-106.3-71V485.5z' transform='matrix(.68905 0 0 .65843 16.2 -144)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='2.5' d='M385.6 129.9S335 185.4 335 238.5c0 53.1 53.1 70.9 53.1 70.9s-17.7 0-17.7 70.8c0 35.5 53.1 17.8 53.1 35.5s-.7 60.5 0 88.6c0 17.7-35.4 0-35.4 17.7 0 8.8 26.6 53.1 53.2 53.1s53.1-44.3 53.1-53.1c0-17.7-35.4 0-35.4-17.7v-88.6c0-17.7 53.1 0 53.1-35.5 0-70.8-17.7-70.8-17.7-70.8s53.2-17.7 53.2-70.9-50.7-108.6-50.7-108.6 28.5 73.2 28.5 108.6c0 17.7-13.3 53.2-48.7 53.2 0 0-9-17.8-17.7 0 0 0-10.2-17.8-17.7 0-2.6 6-7.2-17.8-17.8 0-4.4 4.7-8-17.8-17.7 0-17.7 0-53.1-17.8-53.1-53.2s32.9-108.6 32.9-108.6z' transform='matrix(.48234 0 0 .30917 108.5 140.1)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='2.5' d='M382.7 248c-3.6 3.6 4.6 61.3 7 63.8 3.6 3.5 24.9 3.5 28.4 0 2.5-2.5 0-56.7-3.5-60.2-3.6-3.6-29.4-6-32-3.6z' transform='matrix(.48234 0 0 .30917 110.4 201.6)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='2.5' d='M382.7 248c-3.6 3.6 4.6 61.3 7 63.8 3.6 3.5 24.9 3.5 28.4 0 2.5-2.5 0-56.7-3.5-60.2-3.6-3.6-29.4-6-32-3.6z' transform='matrix(-.48234 0 0 .30917 532.4 201.6)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='2.5' d='M414.6 228.5a16 16 0 1 1-32 0 16 16 0 0 1 32 0z' transform='matrix(.5544 0 0 .38542 82.7 183.7)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='2.5' d='M414.6 228.5a16 16 0 1 1-32 0 16 16 0 0 1 32 0z' transform='matrix(.55441 0 0 .38543 118 183.7)'/%3E%3Cpath fill-rule='evenodd' d='M336.8 307.5c0 1.5-2 2.7-4.3 2.7-2.4 0-4.3-1.2-4.3-2.7s2-2.7 4.3-2.7 4.3 1.2 4.3 2.7m-22.3 0c0 1.5-1.9 2.7-4.2 2.7-2.4 0-4.3-1.2-4.3-2.7s1.9-2.7 4.3-2.7c2.3 0 4.2 1.2 4.2 2.7'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='m439.4 550-7.8-10.3-12.8 1.7 1.8-12.8-10.3-7.7 10.3-7.8-1.8-12.8 12.8 1.8 7.8-10.3 7.8 10.3 12.7-1.8-1.7 12.8 10.2 7.8-10.2 7.8 1.7 12.7-12.8-1.7z' transform='matrix(.67225 0 0 .64237 26 -133.3)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='m496 591.7 21.3 10.7 21.3-10.7-21.3-10.6z' transform='matrix(.68905 0 0 .65843 16.2 -144)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='m496 591.7 21.3 10.7 21.3-10.7-21.3-10.6z' transform='matrix(.68905 0 0 .65843 -88.8 -144)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='M535 659c-3.5-7-14.1-10.6-21.2-10.6s-14.2 0-21.3 10.7c0-14.2 10.5-21.3 21.3-21.3a22.7 22.7 0 0 1 21.2 21.3z' transform='matrix(.59753 -.3279 .34316 .57097 -165.2 86.5)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z' transform='matrix(.68905 0 0 .65843 13.7 -155.7)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z' transform='matrix(.68905 0 0 .65843 8.8 -139.4)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z' transform='matrix(.68905 0 0 .65843 6.4 -148.7)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z' transform='matrix(.68905 0 0 .65843 18.6 -139.4)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z' transform='matrix(.68905 0 0 .65843 21 -148.7)'/%3E%3Cpath fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='M386.2 652a7 7 0 1 1-14.1 0 7 7 0 0 1 14.1 0z' transform='matrix(.68905 0 0 .65843 13.7 -146.4)'/%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23da4500' d='M297.8 120.4c-12.4 0-14 2-19.6 3.9 0-5.4 13.8-11.7 26-11.7 0 3.9-3.2 7.8-6.4 7.8'/%3E%3Cpath fill='%23cac9c7' d='M316.5 108c0 2.5-2.2 4.6-4.9 4.6s-4.9-2.1-4.9-4.7 2.2-4.6 4.9-4.6 4.9 2 4.9 4.6z'/%3E%3Cpath fill='%23ff0' stroke='%23000' stroke-width='1.1' d='M361.4 357.9v10.6h17.7v53.1h10.7v-53.1h17.7v-10.6h-17.7v-14.2H379v14.2z' transform='matrix(.68905 0 0 .65843 16.2 -144)'/%3E%3Cpath fill='%23da4500' d='M304.3 112.6a78.5 78.5 0 0 0-29.3 3.9c0-7.2 8.4-15.6 22.8-15.6 3.2 0 6.5 7.8 6.5 11.7'/%3E%3C/g%3E%3Cg fill-rule='evenodd'%3E%3Cpath fill='%23008500' stroke='%23000' stroke-width='.7' d='M67.3 613c-14.2-14.2-16.6-21.4 3.6-10.1l283.7 247.5-3.4 7L67.4 613z' transform='matrix(.38821 .29653 -.14073 .23692 237.4 71.3)'/%3E%3Cpath fill='%23008f00' d='M228.4 330.4c.8-10.6-18.6-22-19.4-21.3-.7.8 1.2 7 4.9 10.1-7-3.6-14.4-5.8-14.6-4.3-.6 2.2 11 7.2 12 9.2 0 1.4-8.6 1.2-8.4 2.6.2 1.4 24.3 13.6 25.5 3.7M209 299.6c.8-10.6-18.6-22-19.3-21.3-.8.7 1.1 6.9 4.8 10.1-7-3.6-14.4-5.9-14.6-4.3-.5 2.1 11 7.2 12 9.2.1 1.4-8.5 1.2-8.4 2.6.2 1.4 24.3 13.5 25.5 3.7m-14.8-28c.8-10.6-18.6-22-19.4-21.3-.7.7 1.2 6.9 4.9 10.1-7-3.6-14.4-5.9-14.6-4.3-.5 2.1 11 7.2 12 9.2 0 1.4-8.5 1.2-8.4 2.6.2 1.4 24.3 13.6 25.5 3.7m-14.6-30.4c.7-10.5-18.6-22-19.4-21.3-.8.8 1.2 7 4.8 10.2-7-3.7-14.4-5.9-14.5-4.3-.6 2.1 11 7.2 11.9 9.1.1 1.4-8.5 1.3-8.3 2.7.1 1.4 24.2 13.5 25.5 3.6'/%3E%3Cpath fill='%23008f00' d='M184.6 239.9c9.4-5.7 7.5-27.4 6.5-27.6-1.1-.1-5.2 5-5.7 9.8-1.1-7.6-3.6-14.6-5-13.8-2.1.8.4 12.7-.7 14.6-1 1-6-5.8-7-4.8-1.2 1 2.8 26.7 12 21.8zm13.6 26.6c10.8-2.4 16.7-23.4 15.7-23.9s-6.6 3-8.7 7.4c1.6-7.5 1.7-14.9 0-14.6-2.3.1-4 12.1-5.7 13.5-1.3.6-3.7-7.3-5-6.8-1.4.6-6.6 26.1 3.7 24.4m16.2 27.2c9.9-4.8 10-26.6 9-26.8-1-.3-5.5 4.5-6.5 9.2-.4-7.7-2.2-14.8-3.7-14.1-2.2.6-.8 12.6-2 14.4-1.2.9-5.5-6.3-6.7-5.4-1.2.8.4 26.8 10 22.7zm17.6 35.6c10.3-3.9 12.8-25.5 11.8-25.9-1-.3-6 4-7.5 8.6.4-7.7-.6-15-2.2-14.4-2.3.4-2.1 12.5-3.5 14.2-1.3.7-4.8-6.8-6-6-1.3.6-2.5 26.7 7.4 23.5'/%3E%3C/g%3E%3Cpath fill='%23ff1900' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='M209 776c0 7.8-10.2 14.2-23 14.2s-23-6.4-23-14.2 10.3-14.2 23-14.2 23 6.4 23 14.2z' transform='matrix(.60164 .32097 -.3359 .5749 389.6 -146.8)'/%3E%3Cg fill='%23ff0' fill-rule='evenodd' stroke='%23000' stroke-width='.5'%3E%3Cpath d='M156 414.6v-7.1h7v-7.1h7v7h7.2v7.2H170v17.7h-7v-17.7zm7 60.2h7v205.5h-7z' transform='matrix(.49887 .1571 -.1826 .4713 451.4 -3.7)'/%3E%3Cpath d='M159.4 676.8h14.2v56.7h-14.2zM156 439.4h21.3c14.1 0-3.6 39-3.6 39h-14.1s-17.8-39-3.6-39zm17.6-5.4c0 3-3.1 5.4-7 5.4s-7.1-2.4-7.1-5.3 3.1-5.4 7-5.4 7.1 2.4 7.1 5.4z' transform='matrix(.49887 .1571 -.1826 .4713 451.4 -3.7)'/%3E%3C/g%3E%3Cpath fill='%23ff1900' fill-rule='evenodd' stroke='%23000' stroke-width='1.1' d='M209 776c0 7.8-10.2 14.2-23 14.2s-23-6.4-23-14.2 10.3-14.2 23-14.2 23 6.4 23 14.2z' transform='matrix(.57449 -.36357 .38048 .54895 -2.3 4.2)'/%3E%3C/svg%3E%0A");
}
.mobile-menu {}

section {
    margin-bottom: 100px;
}
body.hrome  .langs .lngitem i,
body.hrome  header nav .navitem,
.scrolledW .langs .lngitem i,
.scrolledW header nav .navitem {
    color: #190f19;
}
body.hrome header nav .navitem.navitem_sub:after,
.scrolledW  header nav .navitem.navitem_sub:after {
    filter: invert(1); 
}

header .logo svg {
    transition:all 0.6s ease;
}
body.hrome header .logo svg,
.scrolledW header .logo svg {
    fill: #86368c;
}

.mobilemenu {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    height: 100svh;
    transition: all 0.6s ease;
    width: 100%;
    z-index: 11;
    max-width: 375px;
    display: none;
}
.mobilemenu nav {}
.mobilemenu nav .navitem {}
.mobilemenu nav .navitem .link {}
.mobilemenu nav .navitem .link a {}
.mobilemenu nav .navitem .link i {}
.mobilemenu nav .navitem.navitem_sub .link i {}

.mobilemenu nav .navitem .submenu {}
.mobilemenu nav .navitem .submenu a {}
.mobilemenu nav .navitem.active .submenu {}

.mobilemenu .controls {}
.mobilemenu .controls .btn {}
.mobilemenu .controls .langs {}

.socials {}
.socials a {}
.socials .fb {}
.socials .li {}
.socials .in {}
.mobilemenu .close {}

.homepromo {
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}
.homepromo .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.homepromo video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.homepromo .bg:before {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear,left bottom,left top,from(rgba(13,20,28,.35)),to(rgba(13,20,28,.35)));
    background: -o-linear-gradient(bottom,rgba(13,20,28,.35),rgba(13,20,28,.35));
    background: linear-gradient(0deg,rgba(13,20,28,.35),rgba(13,20,28,.35));
    z-index: 1;
}
.homepromo .wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
	gap: 20px;
}
.homepromo h1 {
    color: #fbf9fb;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
    display: block;
    max-width: 1000px;
    text-align: center;
}
.homepromo p {
    color: #fbf9fb;
    font-size: 26px;
    line-height: 1.2;
    max-width: 1000px;
    text-align: center;
}


.btns {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}


.homepromo .btns {}
.homepromo .btn {}

.wrap.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
	align-items: center;
}
.sec_home_2 .left {
    width: 100%;
}
.sec_home_2 .right {
    width: 100%;
}

.sec_home_2 {}
.sec_home_2 .duo {}
.sec_home_2 .left {}
.madeinukraine {
    font-size: 20px;
    color: #190f19;
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
    align-items: center;
}
.madeinukraine i {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='800'%3E%3Crect width='1200' height='800' fill='%230057B7'/%3E%3Crect width='1200' height='400' y='400' fill='%23FFD700'/%3E%3C/svg%3E");
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-size: cover;
    border-radius: 100px;
}
.sec_home_2 h2 {}
.sec_home_2 p {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
}
.sec_home_2 .btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 380px;
    justify-content: flex-start;
    margin-top: 24px;
}
.sec_home_2 .btns .btn {
    padding: 17px 32px;
    width: 100%;
    justify-content: center;
    display: flex;
}
.sec_home_2 .right {}
.sec_home_2 .right .img {width: 100%;}
.sec_home_2 .right .img video {
    width: 100%;
    max-width: 590px;
    pointer-events: none;
}
.img video { 
    pointer-events: none;
}
.sec_home_3 {}
.sec_home_3 .left {}
.sec_home_3 .duo {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}
.sec_home_3 h2 {}
.sec_home_3 h3 {
    margin-top: 40px;
}
.sec_home_3 .intro {
    font-size: 26px;
}
.sec_home_3 p {}
.sec_home_3 ul, ul.ok {
    padding: 0;
}
.sec_home_3 ul li, ul.ok li {
    position: relative; 
    list-style: none;
    margin-left: 0;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
ul.ok li:last-child,
.sec_home_3 ul li:last-child {
    margin-bottom: 0px;
}
ul.ok li:before,
.sec_home_3 ul li:before {
    content: '';
    display: block;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.4523 16.403C12.9179 17.199 11.5821 17.199 11.0477 16.403L5.93806 8.79105C5.40372 7.99503 6.07165 7 7.14034 7L17.3597 7C18.4283 7 19.0963 7.99502 18.5619 8.79104L13.4523 16.403Z' fill='%23190F19'/%3E%3C/svg%3E%0A");
    width: 24px;
    min-width: 24px;
    height: 24px;
}
.sec_home_3 .left {
    width: 100%;
    flex: 1;
}
.sec_home_3 .right {
    width: 100%;
    flex: 1;
    flex: 0 0 auto;
    width: 58.33333333%;
	position: sticky;
    top: 60px;
}
.sec_home_3 .btns  {}
.sec_home_3 .mac {
    width: 100%;
    height: auto;
    aspect-ratio: 167 / 116;
}
.sec_home_3 .mac .imacbg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 167 / 116;
}
.sec_home_3 .mac .imacfront {
    position: absolute;
    overflow: hidden;
    border-radius: var(--border-radius-16-allMedia);
    -webkit-box-shadow: 0 0 60px rgba(134, 54, 140, .45);
    box-shadow: 0 0 60px rgba(134, 54, 140, .45);
    border-radius: 12px;
}
.sec_home_3 .mac .imacfront1 {
    right: 1.47%;
    top: 6.71%;
}
.sec_home_3 .mac .imacfront2 {
    top: 24%;
    left: 2.1%;
}
.sec_home_3 .mac .imacfront3 {
    bottom: 18.43%;
    right: 30.48%;
}

.sec_home_4 {}
.sec_home_4 h2 {
    text-align: center;
    margin-bottom: 80px;
}
.sec_home_4 .marvi-interface {
    aspect-ratio: 1920 / 1135;
    width: 100%;
    height: auto;
    max-width: 1380px;
	    background: url(../../uploads/iface.webp);
    margin: 0 auto;
	background-size: cover;
}
.sec_home_4 .marvi-interface img {
	display: block;
    aspect-ratio: 1256 / 790;
    height: auto;
    width: 65.3%;
    max-width: 68%;
    position: absolute;
    top: 4.5%;
    left: 17.5%;
    border-radius: 8px;
    object-fit: cover;
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}
.sec_home_4 .marvi-interface img.active {
	opacity: 1;
}

.section-mini {}
.section-mini .duo {
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    border-radius: 40px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.section-mini .left {}
.section-mini .left h2 {
    font-size: 40px;
}
.section-mini .left p {
    font-size: 20px;
    margin: 20px 0;
}
.section-mini .left .btns {
    justify-content: flex-start;
}
.section-mini .right .img {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.minifunctions {
    margin-top: 120px;
    margin-bottom: 150px;
}
.minifunctions .wrap {}
.minifunctions h2 {
    display: block;
    margin-bottom: 80px;
    text-align: center;
}
.minifunctions .items {
    height: 590px;
    display: flex;
    gap: 20px;
    transition: all 0.6s ease;
}
.minifunctions .items .mf_item {
    aspect-ratio: 1160 / 590;
    border-radius: 40px;
    padding: 40px;
    display: flex;
    text-decoration: none;
    transition: all 0.6s ease;
	position: relative;
	    max-width: 1000px;
}
.minifunctions .items .mf_item .img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 57%;
    flex: 0 0 57%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.minifunctions .items .mf_item .img div {}
.minifunctions .items .mf_item .inf {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.minifunctions .items .mf_item .inf h3 {
    font-size: 40px;
    margin-bottom: 10px;
}
.minifunctions .items .mf_item .inf p {
    padding: 0;
    margin: 0;
    font-size: 19px;
}
.minifunctions .items .mf_item .counter {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    font-size: clamp(20px, 2.6vw, 50px);
    position: absolute;
    right: 30px;
    top: 30px;
}
.minifunctions .items .mf_item .counter b {
    font-size: clamp(40px, 7.81vw, 150px);
    line-height: .94;
}
.section-reviews .dots,
.minifunctions .dots{
    display:flex;
    gap:8px;
}
.section-reviews .dots ins,
.minifunctions .dots ins {
    display: block;
    cursor: pointer;
    text-decoration: none;
    background: #f6eef7;
    border-radius: 4px;
    width: 16px;
    height: 16px;
}
.section-reviews .dots ins.active ,
.minifunctions .dots ins.active {
    background: #190f19;
}
.controls .next, .controls .prev {
    background-image: url("data:image/svg+xml,%0A%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.375 8.75L25.625 20L14.375 31.25' stroke='%23190F19' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: block;
    transition: all 0.6s ease;
}
.controls .prev {
    transform: scaleX(-1);
}
.controls .prev:hover, .controls .next:hover {

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.375 8.75L25.625 20L14.375 31.25' stroke='%2386368c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E ");
   
    scale(1.1);
}
 

.section-news .controls,
.section-reviews .controls,
.minifunctions .controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}



.section-reviews {}
.section-reviews .wrap {}
.section-reviews h2 {
    display: block;
    text-align: center;
    margin-bottom: 80px;
}
.section-reviews .items {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px; 
	padding: 10px;
	transition: all 0.6s ease;
}
.section-reviews .items .review {
    width: 465px;
    box-shadow: 0 0 10px rgba(134,54,140,.25);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 465px;
}
.section-reviews .items .review .author {
    height: 60px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.section-reviews .items .review .author img {
    width: 60px;
    min-width: 60px;
    display: block;
    height: 60px;
    object-fit: cover;
    border-radius: 60px;
}
.section-reviews .items .review .author div {}
.section-reviews .items .review .author b {
    font-size: 20px;
    font-weight: normal;
}
.section-reviews .items .review .author i {
    font-size: 14px;
    font-style: italic;
}
.section-reviews .items .review .text {
    font-size: 15px;
    line-height: 1.3;
}
.section-reviews .items .review .text p {
    margin: 0;
    margin-bottom: 10px;
}
.section-reviews .items .review .btns {
    margin-top: auto;
}

.section-cards {}
.section-cards h2 {
    display: block;
    text-align: center;
    margin-bottom: 80px;
}
.section-cards .items {
    counter-reset: smartMARVI-item;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.section-cards .items .card {
    background: #593399;
    border-radius: 40px;
    padding: 40px;
    color: #fbf9fb;
}
.section-cards .items .card svg {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
        margin-bottom: 20px;
}
.section-cards .items .card h3 {
    margin: 10px 0;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
}
.section-cards .items .card p {
    margin: 0;
    font-size: 20px;
}
.section-cards .items .card:after {
    counter-increment: smartMARVI-item;
    content: "0" counter(smartMARVI-item);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(50px,7.81vw,150px);
    line-height: .7;
    opacity: .5;
    top: 63px;
    font-size: clamp(42px,5.81vw,140px);
    right: 32px;
}

.section-moretools {}
.section-moretools .duo {
    display: flex;
    gap: 40px;
    flex-direction: row-reverse;
}
.section-moretools h2 {
    display: block;
    text-align: center;
    font-size: 40px;
    margin-bottom: 80px;
}
.section-moretools .right {
    flex: 0 0 auto;
    width: 43%;
}
.section-moretools .simplecards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.section-moretools .simplecards div {
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    border-radius: 16px;
    padding: 20px;
}
.section-moretools .simplecards h3 {
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    display: block;
}
.section-moretools .simplecards p {
    margin: 0;
    font-size: 18px;
}
.section-moretools .img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-moretools .img div {}
.section-moretools .img video {
    max-width: 460px;
    max-height: 420px;
    object-fit: contain;
}
.plashka_green {
    margin: 80px auto;
}
.plashka_green .wrap {
    background: #02ab6b;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.plashka_green b {
    display: block;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    color: #fbf9fb;
}
.plashka_green .btns {}




.section-marviintegrationspromo {
    height: 100vh;
    height: 100svh;
    background-size: cover;
    mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 61%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.section-marviintegrationspromo .wrapin {
    width: 600px;
    max-width: 100%;
    background: #fbf9fb;
    padding: 40px;
    border-radius: 40px;
	margin: 0;
}
.section-marviintegrationspromo .wrap {
    width: 100%;
}
.section-marviintegrationspromo h2 {
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
}
.section-marviintegrationspromo ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.section-marviintegrationspromo li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 10px;
}
.section-marviintegrationspromo li:before {
    content: '';
    background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.4523 16.403C12.9179 17.199 11.5821 17.199 11.0477 16.403L5.93806 8.79105C5.40372 7.99503 6.07165 7 7.14034 7L17.3597 7C18.4283 7 19.0963 7.99502 18.5619 8.79104L13.4523 16.403Z' fill='%23190F19'/%3E%3C/svg%3E%0A");
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.section-marviclients {}
.section-marviclients .wrap {}
.section-marviclients h2 {
    font-size: 40px;
    text-align: center;
}
.section-marviclients p {
    margin: 0 auto;
    display: block;
    text-align: center;
    font-size: 20px;
    max-width: 1000px;
}
.section-marviclients ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 30px;
}
.section-marviclients li {
    list-style: none;
    width: 100%;
    height: auto;
    aspect-ratio: 430 / 269;
    box-shadow: 0px 0px 15px 0px #190F1940;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s ease;
    border: 2px solid transparent;
}
.section-marviclients li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-marviclients .more {
    display: flex;
    margin: 0 auto;
    width: 255px;
}
.section-news {}
.section-news .wrap {
    max-width: 100%;
}
.section-news h2 {
    margin-bottom: 80px;
    text-align: center;
}
.newscontainer {}

.newscontainer .itemswrap {}
.newscontainer .items {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.6s ease;
}
.newscontainer .items .newsitem {
    box-shadow: 0 0 5px rgba(25, 15, 25, .15);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    min-width: 328px;
    text-decoration: none;
    color: #190f19;
}
.newscontainer .items .newsitem .img {}
.newscontainer .items .newsitem img {}
.newscontainer .items .newsitem b {
    font-size: 17px;
    margin-bottom: 10px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    height: 56px;
    padding: 10px 16px;
}
.newscontainer .items .newsitem p {
    font-size: 15px;
    margin-bottom: 10px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    height: 60px;
    padding: 10px 16px;
    margin: 0;
    padding-top: 0;
}
.newscontainer .items .newsitem .bott {
    display: flex;
    padding: 0 16px;
    margin: 16px 0;
    justify-content: space-between;
	align-items: center;
}
.newscontainer .items .newsitem .bott time {
    font-size: 11px;
    font-style: italic;
}
.newscontainer .items .newsitem .bott span {
    font-size: 18px;
    display: flex;
    gap: 4px;
    align-items: center;
    color: #86368c;
}
.newscontainer .items .newsitem .bott span i {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.375 8.75L25.625 20L14.375 31.25' stroke='%2386368c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    width: 16px;
    height: 24px;
    background-size: 20px;
    background-position: center;
}
.newscontainer .controls {
    margin-top: 40px;
    gap: 40px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.newscontainer .controls .next {
    transform: none;
}
.newscontainer .controls span:hover {
    scale: 1.1;
}
.newscontainer .controls span:active {
    scale: 0.9;
}
.newscontainer .items .newsitem:hover .bott span {}
.newscontainer .items .newsitem:hover .bott i {}
.sec_home_3.sec_home_3b {}
.sec_home_3.sec_home_3b .wrap {}
.sec_home_3.sec_home_3b h2 {}
.sec_home_3.sec_home_3b h3 {
    font-size: 32px;
}
.sec_home_3.sec_home_3b p {}
.sec_home_3.sec_home_3b .right {
    width: 40%;
}
.sec_home_3.sec_home_3b .right .img {}
.sec_home_3.sec_home_3b .right video {
    width: 100%;
    height: auto;
}
footer {
    margin-top: 80px;
}
footer .footertop {
    background: #f6eef7;
    padding: 80px 0;
}
footer .footertop .wrap {
    display: grid;
    grid-template-columns: 50fr 25fr 25fr;
    gap: 80px;
    align-items: flex-start;
}
footer .footertop .wrap > div {}
.demoform {}
.demoform b {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
    display: block;
}
.demoform .fieldsrow {}
.demoform .fieldsrow .fieldscol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.demoform .fieldsrow .fieldscol input {
    border-radius: 16px;
    padding: 12px 10px;
    border: 0;
    background: #fbf9fb;
    width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    min-height: 50px;
    outline: none;
    padding: 0 20px;
    font-size: inherit;
}
.demoform .fieldsrow .fieldscol input:hover {
-webkit-box-shadow: 0 5px 25px rgba(134, 54, 140, .15);
        box-shadow: 0 5px 25px rgba(134, 54, 140, .15);
}
.demoform .fieldsrow .fieldscol.select {}
.demoform .fieldsrow .fieldscol.select .selected {}
.demoform .fieldsrow .fieldscol.select .variants {}
.demoform .fieldsrow .fieldscol.select .variants span {}
.demoform .fieldsrow .fieldscol.select .variants span:hover {}
.demoform .fieldsrow .fieldscol.btns {}
.demoform .fieldsrow .fieldscol.btns .btn {}
.footernav, footerinf {}
.footerinf b, .footernav b {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
	display: block;
}
.footerinf .inn, .footernav .inn {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
.footerinf .inn a, .footernav .inn a {
    margin-bottom: 10px;
    font-size: 20px;
    display: inline;
    text-decoration: none;
    color: #190f19;
    background: linear-gradient(0deg, #86368c, #86368c) no-repeat right bottom / 0 1px;
    transition: background-size .3s;
}
.footerinf .inn a:hover, .footernav .inn a:hover {
    color: #86368c;
    background-size: 100% 1px;
    background-position-x: left;
}
.footerinf .inn {
    margin-bottom: 30px;
}
.footerbot {
    padding: 40px 0 5px;
    background: #86368c;
    color: #fbf9fb;
}
.footerbot .wrap {}
.footerbot svg {
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
    margin-bottom: 10px;
    display: block;
    background-size: contain;
    height: 140px;
}
.footerbot .socials {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}
.socials a {
    width: 40px;
    height: 40px;
    background-size: 40px;
    background-repeat: no-repeat;
}
.footerbot .socials .fb {}
.footerbot .socials .in {}
.footerbot .socials .li {}
.footerbot .madeby {
    transition: all 0.6s ease;
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
    color: #190f19;
    font-size: 18px;
    text-decoration:none;
}
.footerbot .madeby:hover {
    color: #fff;
}
.footerbot .madeby img {}
footer .copyright {
    font-size: 14px;
    font-style: italic;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.socials a {
    width: 40px;
    height: 40px;
    background-size: 40px;
    background-repeat: no-repeat;
        transition: all ease-in-out .3s;
}
.footerbot .socials svg {
    width: 40px;
    height: 40px;
    fill: #fbf9fb;
    transition: all ease-in-out .3s;
}

.footerbot .socials a:hover svg, .footerbot .socials a:active svg {
    transform: scale(1.1);
}
.demoform .fieldsrow .fieldscol.select {
    display: block;
        font-size: inherit;
}
.demoform .fieldsrow .fieldscol.select .selected {
    border-radius: 16px;
    border: 0;
    background: #fbf9fb;
    width: 100%;
    text-overflow: ellipsis;
    min-height: 50px;
    outline: none;
    padding: 0 20px;
    font-size: 16px;
    line-height: 50px;
    cursor: pointer;
}
.demoform .fieldsrow .fieldscol.select .variants {
    border-radius: 16px;
    border: 0;
    background: #fbf9fb;
    width: 100%;
    position: absolute;
    z-index: 1;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: inherit;
    opacity:0;
    pointer-events:none;
    top: 0;
}
.demoform .fieldsrow .fieldscol.select.active .variants ,
.demoform .fieldsrow .fieldscol.selewct:hover .variants {
	opacity:1;
    pointer-events:all;
}
.demoform {
    font-size: 18px;
}
.demoform .fieldsrow .fieldscol.select .variants span {
    cursor: pointer;
    transition: all 0.6s ease;
    min-height: 30px;
    line-height: 30px;
}

.demoform .fieldsrow .fieldscol.select .variants span:hover {
    color: #86368c;
}
.demoform .fieldsrow .fieldscol.btns {
    display: flex;
}
.demoform .fieldsrow .fieldscol.select .selected:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M8 10L12 14L16 10' stroke='%2386368c' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    transition: all 0.6s ease;
    width: 48px;
    height: 48px;
    display: block;
    position: absolute;
    right: 4px;
    top: 1px;
}
.demoform .fieldsrow .fieldscol.select.active .selected:after,
.demoform .fieldsrow .fieldscol.selewct:hover .selected:after {
    transform:scaleY(-1);
}

.demoform .fieldsrow .fieldscol.select.active .selected {
    pointer-events: none;
    color: transparent;
    z-index: 2;
    background: transparent;
}












#videoplayer2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1000;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}
#videoplayer2.active {
    display: flex;
}
#videoplayer2 .player {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: auto;
    background: #000;
    position: relative;
    max-height: 90svh;
    justify-content: center;
    align-items: center;
    display: flex;
    max-width: 90vw;
    aspect-ratio: 720 / 1280;
    width: auto;
}
#myVideo2 {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}
#videoplayer2 .close {
    width: 44px;
    height: 44px;
    position: absolute;
    filter: invert(1);
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}
#videoplayer2 .close svg {
    width: 100%;
    height: 100%;
}
body.hrome header,
.scrolledW header {
    background-color: #f6eef7;
}








	
.aboutpromo {
    margin-bottom: 80px;
}
.aboutpromo .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    max-height: 72vh;
}
.aboutpromo .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.aboutpromo .bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(13, 20, 28, .35)), to(rgba(13, 20, 28, .35))); 
    background: linear-gradient(0deg, rgba(13, 20, 28, .35), rgba(13, 20, 28, .35));
    z-index: 1;
}
.aboutpromo .heading {
    height: 600px;
    max-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fbf9fb;
    z-index: 1;
    gap: 24px;
}
.aboutpromo h1 {
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
}
.aboutpromo p {
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    margin: 0;
}
.aboutpromo ul {
    list-style: none;
    gap: 40px;
    justify-content: space-evenly;
    display: flex;
    top: -60px;
    position: relative;
}
.aboutpromo ul li {
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    padding: 20px;
    text-align: center;
    background: #fbf9fb;
    border-radius: 16px;
    z-index: 1;
}
.aboutpromo ul li b {
    display: block;
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.aboutpromo ul li span {
    display: block;
    font-size: 18px;
    text-align: center;
}

.blockandtext {}
.blockandtext .wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}
.blockandtext.dir_rtl .wrap {}
.blockandtext .img {
    flex: 0 0 auto;
    width: 58%;
    border-radius: 40px;
    overflow: hidden;
}
.blockandtext .img img {
    transition: all 0.6s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blockandtext:hover .img img {
    transform: translate3d(0px, 0px, 0px) scale(1.2117, 1.2117);
}
.blockandtext .txt {
    flex: 0 0 auto;
    width: 42%;
}
.blockandtext .txt h2 {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
}
.blockandtext .txt p {
    font-size: 20px;
}
.blockandtext.dir_rtl .wrap {
    flex-direction: row-reverse;
}


.section-team {}
.section-team h2 {
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}
.section-team .wrap > p {
    display: block;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}
.section-team .items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-top: 80px;
}
.section-team .items .teamitem {
    flex: 0 0 auto;
    width: calc(100% / 3 - 28px);
    
    height: auto;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.section-team .items .teamitem .img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 1;
}
.section-team .items .teamitem .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-team .items .teamitem .txt {
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    border-radius: 40px;
    padding: 20px;
    flex-grow: 1;
}
.section-team .items .teamitem .txt h3 {
    font-weight: 400;
    font-size: 29px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: center;
}
.section-team .items .teamitem .txt span {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
    display: block;
}
.section-team .items .teamitem .txt p {}
.section-addr {}
.section-addr h2 {
    margin-bottom: 80px;
    text-align: center;
}
.section-addr .items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.section-addr .items > div {
    flex: 0 0 auto;
    width: calc(50% - 20px);
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    height: 550px;
    border-radius: 40px;
}
.section-addr .items > div.office2 {}
.section-addr .items > div .map {
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.section-addr .items > div .map iframe {
    width: 100%;
    height: 100%;
}
.section-addr .items > div .contact-box {
    border-radius: 40px;
    padding: 40px;
    text-align: center;
    background: #02ab6b;
    color: #fbf9fb;
    max-width: 585px;
    margin: 0 auto;
    transform: translateY(-80px);
}
.section-addr .items > div .contact-box b {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-addr .items > div .contact-box p {
    margin: 0;
    margin-top: 20px;
}
.section-addr .items > div.office2 .contact-box {
    background: #36498c;
}
.section-addr {
    margin-bottom: 180px;
}
.sec_home_3b .img.lottie {
    max-height: 500px;
    width: 100%;
}
.sec_home_3b .img.lottie svg {
    max-width: 100%;
    max-height: 500px;
}


.sec_home_3 .right .lottie, .sec_home_3 .right .lottie svg {
    max-height: 500px;
}



.optical .sec_home_3 .right {
    width: 48%;
}
.optical .sec_home_3 .wrap.duo {
    gap: 80px;
}
.sec_home_3 {}
.sec_home_3 .right {}
.sec_home_3 .right .lottie {}

.sec_tabes {}
.sec_tabes h2 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.sec_tabes .wrap > p {
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 40px;
    text-align: center;
}
.tabes {
    background: #36498c;
    padding: 40px 0;
    border-radius: 40px;
    color: #fbf9fb;
}
.tabes .tabes_select {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0 auto 40px;
    width: fit-content;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    border-radius: 16px;
    background: #fbf9fb;
}
.tabes .tabes_select span {
    cursor: pointer;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;

    border-radius: 16px;

    color: #190f19;
    background: #fbf9fb;
    transition: all 0.6s ease;
}
.tabes .tabes_select span.active {
    color: #fbf9fb;
    background: #36498c;
}
.tabes .tabes_conts {}
.tabes .tabes_conts > div {
    display: none;
    padding: 0 40px;
}
.tabes .tabes_conts > div.active {
    display: block;

}
.tabes .tabes_conts ul {
    max-width: 450px;
    /* margin: 0 auto; */
    margin-bottom: 40px;
}
.tabes .tabes_conts ul li:before {
    filter: invert(1);
}
.tabes .tabes_conts .btns {
    justify-content: flex-start;
}
.btn-blue {}
.btn-blue:hover {}

.sidebysidecards {}
.sidebysidecards .wrap > div {
    background: #fbf9fb;
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    border-radius: 40px;
    padding: 40px;
    max-width: 700px;
    margin-bottom: 80px;
}
.sidebysidecards div strong,
.sidebysidecards div b {
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    text-align: center;
    display: block;
}
.sidebysidecards div ul {}
.sidebysidecards div li {}
.sidebysidecards div .btns {}
.sidebysidecards div.right {
    margin-left: auto;
}
.sidebysidecards .wrap > div.center {
    margin: 0 auto;
    margin-bottom: 0;
}
.stepbystepcards {}
.stepbystepcards h2 {
    display: block;
    text-align: center;
    margin-bottom: 80px;
}
.stepbystepcards .items {
    margin: 0 auto;
    max-width: 750px;
}
.stepbystepcards .items > div {
    padding-bottom: 80px;
    display: flex;
    position: relative;
}
.stepbystepcards .items > div .img {
    width: 120px;
    height: 120px;
    flex: 0 0 120px;
    border-radius: 16px;
}
.stepbystepcards .items > div .img svg {
    max-width: 100%;
    max-height: 100%;
}
.stepbystepcards .items > div .txt {
    padding-left: 40px;
    margin: auto 0;
}
.stepbystepcards .items > div:after {
    content: '';
    width: 2px;
    height: 80px;
    position: absolute;
    left: 59px;
    top: 120px;
    background-image: linear-gradient(to bottom, #02ab6b 50%, transparent 50%);
    background-position: left;
    background-size: 2px 30px;
    background-repeat: repeat-y;
}
.stepbystepcards .items > div:last-child:after {
    content: none;
}
.stepbystepcards .items > div:last-child {
    padding-bottom: 0;
}







.btn-red {
    background: #8C3655;
}
.btn-red:hover {
        background: #7b2c48;
}
.audit .aboutpromo {}
.audit .aboutpromo .wrap {}
.audit .aboutpromo h1 {
    font-size: 48px;
}
.audit .aboutpromo p {
    font-size: 20px;
}
.audit .aboutpromo .heading {
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
}
.audit .aboutpromo .btns {}
.sec_home_2 .right .img img {
    max-height: 550px;
    max-width: 100%;
}
.alert {
    padding: 24px 32px;
    background: #8C3655;
    border-radius: 16px;
    color: #fff;
    margin-top: 40px;
}
.audit .section-cards .items {
    gap: 16px;
}
.audit .section-cards .items .card {
    border-radius: 16px;
    padding: 60px 40px;
}

.innerform {
    background-color: #8C3655;
    color: #fff;
    padding: 80px 60px;
    border-radius: 40px;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 40px;
    margin: 40px auto;
}
.innerform .demoform b {
    text-align: center;
}
.innerform .demoform {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}
.innerform .img.lottie {
    transform: scaleX(-1);
}
.btn-yellow {
    background-color: #CA8B02;
}
.btn-yellow:hover {
    background-color: #b77f05;
}
    

.block_imgtext2 .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.text2image .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #86368C40;
    padding: 40px;
}
.block_imgtext2 h2 {
    display: block;
    font-weight: 400;
    font-size: 42px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #190f19;
}
.block_imgtext2 p {}
.block_imgtext2 ul {}
.block_imgtext2 ul li {}
.block_imgtext2 .imag {
    width: 100%;
}
.block_imgtext2 .imag  img {
    width: 100%;
    height: auto;
    max-width: 900px;
}
.block_imgtext2 .text p {
    margin: 0;
}
.separateform {
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 1200;
    display: flex;
    gap: 48px;
    background-size: cover;
    background-position: center;
    margin: 48px 0;
    margin-top: 20px;
    align-items: flex-end;
    padding-bottom: 48px;
}
.separateform > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.separateform .wrap {}
.separateform .demoform {
    background: #02AB6B;
    padding: 32px 56px;
    max-width: 780px;
    border-radius: 16px;
}
.separateform .demoform b {
    max-width: 620px;
    color: #fff;
    margin: 0 auto;
    margin-bottom: 24px;
    font-size: 24px;
    text-align: center;
}
.separateform .demoform .btns {}



.modules .items {
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-auto-rows: 1fr;
    align-items: stretch;
}
.modules .items .module {
    display: flex;
    border-radius: 40px;
    padding: 48px 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    gap: 16px;
    min-height: 0;
}
.modules .items .module .btns {
    margin-top: auto;
}
.modules .items .module .im {
    margin-top: auto;
}
.module .t2 {
    display: block;
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
}
.module .tx {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
}
.module .im img {
    max-width: 100%;
    max-height: 200px;
}



.pinkblock {}
.pinkblock .wrap {
    background: #f6eef7;
    padding: 40px;
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    border-radius: 40px;
    display: flex;
    gap: 20px 50px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}
.pinkblock .txt {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
.pinkblock .txt b {
    display: block;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.pinkblock .img {}
.pinkblock .img img {}



section.modulespromo {
    padding: 48px 0;
    padding-left: 48px;
    padding-top: calc(64px + 48px);
}
section.modulespromo .left {
    width: 40%;
    display: inline-flex;
    vertical-align: top;
    font-size: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    min-height: 600px;
    align-items: flex-start;
}
section.modulespromo .left .headtitle span {
    display: block;
    font-size: 24px;
}
section.modulespromo .left h1 {
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    display: block;
    margin-bottom: 16px;
}
section.modulespromo .left .intro {
    font-size: 24px;
}
section.modulespromo .left .btns {
    width: 100%;
}
section.modulespromo .right {
    display: inline-block;
    height: auto;
    min-height: 600px;
    width: 60%;
    padding-left: 40px;
    vertical-align: top;
}
section.modulespromo .right img {
    display: block;
    object-fit: cover;
    object-position: center left;
    top: 0;
    left: 0;
    transition: all 0.6s ease;
    opacity: 1;
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px #86368C40;
    border-radius: 16px 0 0 16px;
    max-height: 600px;
    position: relative;
    height: calc(100vh - 100px);
}
section.modulespromo > .wrap {
    display: block;
    font-size: 0;
    max-width: 100%;
    padding-right: 0;
}
section.modulespromo .bottom {
    margin: 40px auto;
}

section.modulespromo .bottom .wrap {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
section.modulespromo .bottom .smt_item {
    box-shadow: 0px 0px 60px 0px #86368C73;
    background-color: #02AB6B;
    height: 130px;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    gap: 20px;
    font-size: 19px;
}
section.modulespromo .bottom .smt_item ins {
    display: block;
    width: 90px;
    height: 90px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex: 1 1 90px;
    min-width: 90px;
}
.smtdog1 {
    background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.5239 68.582H57.8765V82.2984H42.5239V68.582Z' fill='%23FBF9FB'/%3E%3Cpath d='M58.1022 79.6484V67.7859C58.7491 49.4844 53.4023 46.3221 53.4023 46.3221L35.4795 44.5781C35.4795 44.5781 20.5396 46.5462 3.83308 76.8784C3.83308 76.8784 -0.561661 85.3501 6.41835 85.6907H63.2964C63.2964 85.6907 64.848 77.7256 54.2469 79.9287H46.7361C46.7361 79.9287 53.6 55.697 30.3305 58.4088' fill='%23FBF9FB'/%3E%3Cpath d='M6.40752 86.141H63.6681L63.739 85.7767C63.7627 85.6495 64.3193 82.6575 62.3379 80.6915C61.4331 79.7948 60.1674 79.2753 58.5535 79.133V67.7878C59.2025 49.4454 53.8621 46.0696 53.6343 45.9338L53.5484 45.8821L35.4751 44.123L35.4236 44.1295C35.2667 44.1511 31.5081 44.6857 25.6584 48.9884C20.3095 52.9224 12.1132 60.9177 3.44188 76.6583C3.33657 76.8631 0.989841 81.4525 2.56292 84.2031C3.24631 85.3973 4.53787 86.0483 6.39892 86.1389L6.40752 86.141ZM62.9031 85.2378H6.43116C4.9032 85.1623 3.86308 84.6622 3.34302 83.7547C2.01278 81.4331 4.21122 77.1282 4.23271 77.0851C8.95196 68.5186 16.5831 56.8155 26.1076 49.7752C31.45 45.826 35.0496 45.1082 35.4923 45.0327L53.2411 46.7594C53.8428 47.225 58.2375 51.213 57.6509 67.7706V79.092C56.6301 79.0813 55.4696 79.2149 54.2017 79.4779H47.3184C47.9029 77.0549 49.7317 67.7296 44.9244 62.0602C41.9523 58.5551 37.0267 57.1755 30.2831 57.9623C30.036 57.9904 29.8598 58.2145 29.8877 58.4624C29.9156 58.7103 30.1434 58.8849 30.3863 58.8591C36.8118 58.1089 41.4709 59.3829 44.2388 62.6444C45.7109 64.3797 47.4237 67.6671 47.2195 73.4701C47.097 76.9838 46.3169 79.7797 46.3083 79.8077L46.1472 80.3811H54.2984L54.3435 80.3725C55.6437 80.103 56.8042 79.978 57.8163 79.9953C57.9625 80.1181 58.2075 80.1311 58.3643 80.0211C59.8171 80.1311 60.9346 80.5687 61.7104 81.3361C62.9804 82.5993 62.9718 84.4596 62.9031 85.2378Z' fill='%23190F19'/%3E%3Cpath d='M26.8336 78.112C27.5815 78.8751 27.7469 80.4228 27.1989 81.5502C27.1989 81.5502 27.1237 81.7033 26.3995 82.7552C21.7469 89.5067 13.615 91.9556 8.23815 88.2263C5.31333 86.1978 4.26032 81.1924 4.26032 81.1924C4.00244 79.9637 4.5139 79.6856 5.3993 80.5737C5.3993 80.5737 6.82409 82.0051 8.84847 83.4106C14.2253 87.1398 18.2418 84.9842 22.8945 78.2348L23.5069 77.877C24.5879 77.2432 26.0836 77.3489 26.8336 78.112Z' fill='%23190F19'/%3E%3Cpath d='M56.6452 53.6717C56.9182 53.3418 57.0385 54.5619 57.4468 54.6482C57.9132 57.6036 58.1667 61.4104 57.9948 66.2973V71.1756C57.4189 71.3566 56.8172 71.4536 56.194 71.4536C52.287 71.4536 49.1194 71.4536 49.1194 62.9841C49.1172 58.3063 53.9719 56.89 56.6452 53.6717Z' fill='%23190F19'/%3E%3Cpath d='M71.3766 19.2369C71.3766 19.2369 60.0921 41.3259 51.7861 47.754C51.7861 47.754 43.5339 53.7015 35.6663 45.8851C35.6663 45.8851 25.7013 33.3629 20.6963 14.9558C20.6963 14.9558 20.6855 6.33534 34.5467 5.03333C34.5467 5.03333 44.0948 4.17754 48.6271 4.17969C58.6673 4.184 67.1387 6.46253 67.1387 6.46253C67.1387 6.46253 74.8215 9.42655 71.3766 19.2369Z' fill='%23FBF9FB'/%3E%3Cpath d='M44.6942 50.4187C45.4377 50.4187 46.1319 50.3497 46.7572 50.2463C49.8819 49.7224 51.9879 48.2264 52.0761 48.1618C55.5833 45.4478 59.9673 39.7935 65.1206 31.3455C68.9458 25.0769 71.7912 19.5196 71.8191 19.4657L71.8449 19.4032C75.4122 9.25009 67.3964 6.02524 67.3147 5.99506L67.2653 5.97782C67.1794 5.9541 58.6155 3.68205 48.6247 3.67773C48.6183 3.67773 48.6118 3.67773 48.6075 3.67773C44.0968 3.67773 34.5959 4.52491 34.4992 4.53353C30.444 4.91508 24.9898 6.20416 22.0199 10.1813C20.2104 12.6043 20.1932 14.8613 20.1932 14.9561V15.0229L20.2104 15.0876C25.1833 33.3848 35.1719 46.0729 35.2707 46.198L35.3094 46.2411C38.6168 49.5241 41.995 50.4187 44.6942 50.4187ZM70.9165 19.0389C70.4373 19.968 59.4644 41.1774 51.4808 47.3577C51.4743 47.362 49.4607 48.7869 46.5552 49.2633C42.702 49.8949 39.1648 48.6446 36.0379 45.5513C35.5673 44.9498 26.0235 32.5872 21.1968 14.8979C21.214 14.5487 21.3795 12.6884 22.8623 10.731C25.0479 7.84677 29.1052 6.04895 34.5938 5.5316C34.6862 5.52297 44.144 4.68011 48.6097 4.68011C48.6161 4.68011 48.6204 4.68011 48.6269 4.68011C58.2029 4.68442 66.4465 6.79912 66.9816 6.93924C67.506 7.15265 74.067 10.0218 70.9165 19.0389Z' fill='%23190F19'/%3E%3Cpath d='M64.6327 6.50977H78.1006C79.88 6.50977 82.7704 6.74473 84.5261 7.03143C84.5261 7.03143 89.1164 7.7816 86.8449 14.3089C83.3786 24.2702 75.3176 31.0368 75.3176 31.0368C73.953 32.1814 72.8032 31.6598 72.7603 29.8749C72.7603 29.8749 72.4487 16.9905 64.6327 6.50977Z' fill='%23FBF9FB'/%3E%3Cpath d='M73.9768 32.1453C74.4023 32.1453 74.9675 31.9836 75.638 31.421C75.7197 31.352 83.8451 24.4496 87.3179 14.4733C88.1947 11.9533 88.199 9.93346 87.3287 8.46761C86.3616 6.83794 84.6768 6.54693 84.6059 6.53399C82.8244 6.24298 79.9038 6.00586 78.0987 6.00586H63.6336L64.231 6.80776C71.8558 17.032 72.2555 29.759 72.2576 29.8862C72.292 31.324 72.9475 31.8327 73.3343 32.0095C73.489 32.0806 73.7039 32.1453 73.9768 32.1453ZM78.1008 7.01039C79.8609 7.01039 82.7083 7.24105 84.4469 7.52559C84.4984 7.53422 85.7578 7.76703 86.4798 8.99575C87.1826 10.1943 87.1482 11.9253 86.3745 14.1434C82.992 23.8611 75.0771 30.5846 74.9976 30.6514C74.5077 31.0632 74.0413 31.2291 73.749 31.0976C73.4568 30.9662 73.2741 30.5048 73.2591 29.8625C73.2569 29.7353 72.8744 17.3467 65.6129 7.01039H78.1008Z' fill='%23190F19'/%3E%3Cpath d='M32.4297 4.82735L19.3572 1.57663C17.6315 1.14766 14.7669 0.677724 12.994 0.53114C12.994 0.53114 8.35853 0.14959 8.99679 7.0369C9.97244 17.5414 16.1745 26.0562 16.1745 26.0562C17.2232 27.4962 18.4675 27.2677 18.936 25.5475C18.9381 25.5475 22.3293 13.1158 32.4297 4.82735Z' fill='%23190F19'/%3E%3Cpath d='M17.5972 27.5046C17.6982 27.5046 17.7884 27.4938 17.8636 27.4808C18.2827 27.4032 19.0392 27.067 19.4195 25.6787C19.4539 25.5558 22.8923 13.2988 32.7456 5.21512L33.5171 4.58135L19.4776 1.09135C17.724 0.655912 14.8357 0.181669 13.0348 0.032929C12.9639 0.0264621 11.2576 -0.096411 9.92946 1.25303C8.7346 2.4645 8.25323 4.42615 8.50036 7.08407C9.47602 17.6036 15.7082 26.2651 15.7726 26.3513C16.4646 27.3019 17.1437 27.5046 17.5972 27.5046ZM31.3573 5.07715C21.8307 13.3592 18.489 25.2907 18.4546 25.4136C18.287 26.0322 17.9969 26.4354 17.6831 26.4936C17.3694 26.5518 16.9568 26.278 16.5785 25.7606C16.5184 25.6766 10.4452 17.2286 9.49536 6.99137C9.27831 4.64171 9.66299 2.94953 10.6408 1.95793C11.6465 0.938303 12.9424 1.03315 12.9553 1.03315C14.711 1.17758 17.5284 1.64105 19.239 2.06571L31.3573 5.07715Z' fill='%23190F19'/%3E%3Cpath d='M69.371 18.3928C72.3883 18.3928 73.3102 20.7015 71.4212 23.5232L63.3903 35.5216C61.5013 38.3433 58.4218 38.3347 56.5457 35.5L48.6287 23.5426C46.7526 20.7101 47.6853 18.3906 50.7025 18.3906H69.371V18.3928Z' fill='%23009FE3'/%3E%3Cpath d='M59.9758 38.1341C61.4392 38.1341 62.7996 37.3064 63.8075 35.8017L71.8383 23.8034C72.9193 22.1866 73.1922 20.6044 72.5819 19.4576C72.0446 18.4487 70.9057 17.8926 69.3713 17.8926H50.7006C49.1683 17.8926 48.0272 18.4487 47.4857 19.4619C46.871 20.6109 47.1354 22.1996 48.2099 23.8228L56.1269 35.778C57.1305 37.2934 58.4929 38.1298 59.9629 38.1341C59.9693 38.1341 59.9715 38.1341 59.9758 38.1341ZM69.3713 18.895C70.5167 18.895 71.3441 19.2636 71.6986 19.9297C72.1285 20.738 71.8749 21.9452 71.0067 23.2451L62.9758 35.2434C62.1613 36.4614 61.0954 37.1318 59.9736 37.1318C59.9715 37.1318 59.9693 37.1318 59.9672 37.1318C58.8411 37.1296 57.7752 36.4506 56.9628 35.224L49.0459 23.2688C48.1819 21.9624 47.9348 20.7488 48.3689 19.9361C48.7278 19.2657 49.5573 18.8971 50.7027 18.8971H69.3713V18.895Z' fill='%23190F19'/%3E%3Cpath d='M69.371 18.3928C72.3883 18.3928 73.3102 20.7015 71.4212 23.5232L63.3903 35.5216C61.5013 38.3433 58.4218 38.3347 56.5457 35.5L48.6287 23.5426C46.7526 20.7101 47.6853 18.3906 50.7025 18.3906H69.371V18.3928Z' fill='%238C3655'/%3E%3Cpath d='M59.9758 38.0622C61.4156 38.0622 62.7566 37.2452 63.7494 35.7621L71.7803 23.7638C72.8462 22.1707 73.117 20.6122 72.5217 19.4913C71.9974 18.5061 70.8799 17.9629 69.3734 17.9629H50.7028C49.1984 17.9629 48.0788 18.5061 47.5501 19.4934C46.9484 20.6187 47.2106 22.1815 48.2722 23.7831L56.1892 35.7384C57.1799 37.2344 58.5209 38.0579 59.9672 38.0622C59.9693 38.0622 59.9715 38.0622 59.9758 38.0622ZM69.3713 18.823C70.5446 18.823 71.3935 19.2045 71.761 19.8944C72.2037 20.7264 71.9501 21.9595 71.0647 23.2809L63.0338 35.2792C62.2043 36.5166 61.119 37.1978 59.9736 37.1978C59.9715 37.1978 59.9693 37.1978 59.9672 37.1978C58.8174 37.1956 57.73 36.5058 56.9048 35.2598L48.9878 23.3046C48.1089 21.9767 47.8596 20.7351 48.3087 19.8987C48.6805 19.2045 49.5294 18.8208 50.7028 18.8208H69.3713V18.823Z' fill='%23190F19'/%3E%3Cpath d='M41.6835 18.3928C44.7008 18.3928 45.6227 20.7015 43.7337 23.5232L35.7028 35.5216C33.8138 38.3433 30.7343 38.3347 28.8582 35.5L20.9412 23.5426C19.0651 20.7101 19.9978 18.3906 23.015 18.3906H41.6835V18.3928Z' fill='%23009FE3'/%3E%3Cpath d='M32.2858 38.1341C33.7493 38.1341 35.1096 37.3064 36.1175 35.8017L44.1484 23.8034C45.2294 22.1866 45.5023 20.6044 44.892 19.4576C44.3547 18.4487 43.2157 17.8926 41.6813 17.8926H23.0107C21.4784 17.8926 20.3373 18.4487 19.7957 19.4619C19.1811 20.6109 19.4454 22.1996 20.5199 23.8228L28.4369 35.778C29.4405 37.2934 30.803 38.1298 32.2729 38.1341C32.2794 38.1341 32.2837 38.1341 32.2858 38.1341ZM41.6835 18.895C42.8289 18.895 43.6563 19.2636 44.0109 19.9297C44.4407 20.738 44.1871 21.9452 43.3189 23.2451L35.288 35.2434C34.4735 36.4614 33.4076 37.1318 32.2858 37.1318C32.2837 37.1318 32.2815 37.1318 32.2794 37.1318C31.1533 37.1296 30.0874 36.4506 29.275 35.224L21.3559 23.2666C20.492 21.9603 20.2449 20.7467 20.679 19.934C21.0379 19.2636 21.8674 18.895 23.0128 18.895H41.6835Z' fill='%23190F19'/%3E%3Cpath d='M41.6835 18.3928C44.7008 18.3928 45.6227 20.7015 43.7337 23.5232L35.7028 35.5216C33.8138 38.3433 30.7343 38.3347 28.8582 35.5L20.9412 23.5426C19.0651 20.7101 19.9978 18.3906 23.015 18.3906H41.6835V18.3928Z' fill='%238C3655'/%3E%3Cpath d='M32.2858 38.0622C33.7257 38.0622 35.0667 37.2452 36.0595 35.7621L44.0904 23.7638C45.1563 22.1707 45.4271 20.6122 44.8318 19.4913C44.3074 18.5061 43.1899 17.9629 41.6835 17.9629H23.0128C21.5085 17.9629 20.3889 18.5061 19.8602 19.4934C19.2585 20.6187 19.5207 22.1815 20.5823 23.7831L28.4993 35.7384C29.4899 37.2344 30.8309 38.0579 32.2772 38.0622C32.2794 38.0622 32.2837 38.0622 32.2858 38.0622ZM41.6835 18.823C42.8568 18.823 43.7057 19.2045 44.0732 19.8944C44.5159 20.7264 44.2623 21.9595 43.3769 23.2809L35.346 35.2792C34.5165 36.5166 33.4312 37.1978 32.2858 37.1978C32.2837 37.1978 32.2815 37.1978 32.2794 37.1978C31.1296 37.1956 30.0422 36.5058 29.217 35.2598L21.3 23.3046C20.4211 21.9767 20.1718 20.7351 20.6209 19.8987C20.9927 19.2045 21.8416 18.8208 23.015 18.8208H41.6835V18.823Z' fill='%23190F19'/%3E%3Cpath d='M51.4271 32.2619C51.4271 32.2619 48.541 38.1921 46.9443 39.2872C46.9443 39.2872 45.3884 40.7013 43.8647 38.8905C43.8647 38.8905 41.5481 35.338 40.9055 31.128C40.9055 31.128 40.74 29.6622 43.5574 29.66C46.3404 29.6579 49.7423 29.5781 49.7423 29.5781C49.7423 29.5781 52.1599 29.6644 51.4271 32.2619Z' fill='%23190F19'/%3E%3Cpath d='M59.3228 21.4532C58.5158 21.4532 57.8615 20.7969 57.8615 19.9873C57.8615 19.1778 58.5158 18.5215 59.3228 18.5215C60.1299 18.5215 60.7842 19.1778 60.7842 19.9873C60.7842 20.7969 60.1299 21.4532 59.3228 21.4532Z' fill='%23190F19'/%3E%3Cpath d='M33.6954 21.4532C32.8883 21.4532 32.2341 20.7969 32.2341 19.9873C32.2341 19.1778 32.8883 18.5215 33.6954 18.5215C34.5025 18.5215 35.1567 19.1778 35.1567 19.9873C35.1567 20.7969 34.5025 21.4532 33.6954 21.4532Z' fill='%23190F19'/%3E%3Cpath d='M50.6749 18.8955C50.8146 18.8955 50.9522 18.8373 51.051 18.7252C51.2315 18.5161 51.2122 18.2014 51.0037 18.0182C49.4973 16.6968 47.5696 16.0436 45.5732 16.1773C43.97 16.285 42.4764 16.8886 41.2494 17.9233C41.0387 18.1023 41.0108 18.417 41.1892 18.6304C41.3675 18.8416 41.6813 18.8697 41.8941 18.6907C42.9557 17.794 44.2494 17.2702 45.6398 17.1775C47.3698 17.0611 49.0417 17.628 50.3461 18.7748C50.4407 18.8546 50.5589 18.8955 50.6749 18.8955Z' fill='%23190F19'/%3E%3Cpath d='M42.8096 44.3847C41.7569 44.3847 40.9035 43.5286 40.9035 42.4726C40.9035 41.4166 41.7569 40.5605 42.8096 40.5605C43.8624 40.5605 44.7158 41.4166 44.7158 42.4726C44.7158 43.5286 43.8624 44.3847 42.8096 44.3847Z' fill='%23FBF9FB'/%3E%3Cpath d='M42.8096 44.8849C44.1355 44.8849 45.2144 43.8028 45.2144 42.4727C45.2144 41.1427 44.1355 40.0605 42.8096 40.0605C41.4837 40.0605 40.4049 41.1427 40.4049 42.4727C40.4049 43.8028 41.4837 44.8849 42.8096 44.8849ZM42.8096 41.0629C43.5854 41.0629 44.2151 41.6967 44.2151 42.4727C44.2151 43.2488 43.5832 43.8825 42.8096 43.8825C42.036 43.8825 41.4041 43.2488 41.4041 42.4727C41.4041 41.6967 42.0338 41.0629 42.8096 41.0629Z' fill='%23190F19'/%3E%3C/svg%3E%0A");
}
.smtdog2 {
    background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1574_8721)'%3E%3Cpath d='M28.073 82.1254C26.3368 84.7254 28.5079 87.1812 28.5079 87.1812C31.9803 90.3595 26.6272 89.6204 26.6272 89.6204C25.6147 89.0272 23.7324 83.4245 22.7199 80.9389C21.7074 78.4533 22.7199 78.0788 22.7199 78.0788C25.3242 76.0571 24.5341 68.3997 24.5341 68.3997C24.5341 68.3997 24.164 64.9512 26.3334 65.6737C28.5046 66.3962 31.2533 75.0645 29.9503 78.2412C28.6473 81.4195 28.6473 81.4195 28.6473 81.4195' fill='white'/%3E%3Cpath d='M27.7813 90.0006C28.6196 90.0006 29.6105 89.8614 29.8993 89.2499C30.1682 88.6782 29.7948 87.9541 28.7242 86.9698C28.5582 86.7759 26.7804 84.6034 28.3241 82.2901C28.4171 82.1526 28.3789 81.9654 28.2411 81.8726C28.1034 81.7814 27.9158 81.8179 27.8228 81.9554C25.9787 84.7161 28.2594 87.3509 28.281 87.3774L28.3025 87.4006C29.4694 88.4695 29.4014 88.8887 29.3532 88.9931C29.1673 89.3891 27.8627 89.4753 26.734 89.3295C26.0351 88.8059 24.7106 85.3044 23.8275 82.9696C23.5238 82.1659 23.2349 81.4053 22.9992 80.8236C22.1826 78.8202 22.7669 78.396 22.8316 78.3579L22.883 78.3446L22.9046 78.3164C25.6102 76.2152 24.8666 68.6887 24.8334 68.3689C24.7803 67.8701 24.767 66.4781 25.333 66.0241C25.5488 65.8501 25.8459 65.8302 26.2377 65.9595C26.812 66.15 27.529 67.1012 28.203 68.5694C29.579 71.5604 30.4969 76.1158 29.6703 78.1292L28.3673 81.3075C28.3042 81.4616 28.3772 81.6373 28.5316 81.7002C28.686 81.7632 28.8619 81.6903 28.925 81.5362L30.228 78.3579C31.1409 76.1291 30.1716 71.4113 28.7507 68.3192C28.2162 67.1575 27.3796 65.7076 26.4269 65.3911C25.8326 65.1939 25.3363 65.2486 24.9529 65.5568C24.5462 65.8832 24.3022 66.4765 24.2292 67.3166C24.1777 67.9099 24.2292 68.412 24.2325 68.4335C24.2408 68.5064 24.9712 75.8938 22.5594 77.8226C22.4565 77.8756 22.2506 78.0148 22.1079 78.3363C21.8406 78.9428 21.9518 79.8575 22.4399 81.054C22.6739 81.629 22.9611 82.3846 23.2632 83.185C24.6342 86.8074 25.6667 89.4074 26.4734 89.8797L26.5248 89.9095L26.5846 89.9178C26.7688 89.9443 27.2435 90.0006 27.7813 90.0006Z' fill='black'/%3E%3Cpath d='M39.504 63.231C44.2778 62.3958 48.3777 45.5763 48.3777 45.5763C57.3958 47.4538 66.5716 41.8097 67.2887 40.2305C68.2249 38.1674 64.6843 38.9943 64.6843 38.9943C58.747 42.9216 48.4076 41.0971 48.4076 41.0971C48.3379 39.7963 47.1743 31.2739 47.1743 31.2739C47.4598 31.1479 40.0966 27.6233 38.6409 31.9152C38.6409 31.9152 35.5751 42.5421 32.5474 46.0104C29.5198 49.4771 16.5064 59.7345 24.5335 68.4011C24.5335 68.4011 29.6659 73.7469 27.7836 78.0802C27.7836 78.0802 26.7711 80.536 28.0724 82.1252C29.3754 83.7143 31.9051 89.4926 31.9051 89.4926C31.9051 89.4926 34.8729 89.781 35.741 89.4926C36.6092 89.2043 36.6092 89.2043 36.6092 89.2043C36.6092 89.2043 34.8729 87.1827 33.7143 86.4602C33.7143 86.4602 31.1067 79.671 31.9051 78.8044C31.9051 78.8044 43.2653 72.3036 38.7803 60.8912' fill='white'/%3E%3Cpath d='M34.3369 89.9211C34.9444 89.9211 35.5121 89.8846 35.8391 89.7769L37.1321 89.3461L36.84 89.0064C36.7702 88.9252 35.1419 87.0344 33.9634 86.2572C32.6338 82.7773 31.8022 79.5294 32.1093 79.0306C32.5193 78.7871 35.1203 77.1797 37.2682 74.303C39.0675 71.8935 40.8021 68.1883 39.8576 63.4539C44.3443 62.0902 48.0358 48.1656 48.6019 45.9252C49.7937 46.1522 50.9854 46.2533 52.1573 46.2533C59.9405 46.2533 66.907 41.8007 67.5643 40.3524C67.8199 39.7906 67.8116 39.3366 67.5394 39.0068C66.8904 38.2164 64.9915 38.6124 64.6164 38.7002L64.5633 38.7118L64.5184 38.7417C59.2367 42.2365 50.2435 41.0699 48.6915 40.8362C48.5371 39.0515 47.5927 32.1017 47.4831 31.2963C47.4864 31.2682 47.4864 31.2383 47.4814 31.2085C47.4632 31.1025 47.4217 30.8572 45.8498 30.2656C45.0829 29.9773 43.9094 29.6127 42.6728 29.515C40.422 29.336 38.9297 30.1314 38.3571 31.815L38.3538 31.8283C38.3239 31.9343 35.2714 42.432 32.3234 45.8075C31.9051 46.2881 31.2794 46.9111 30.554 47.6336C28.3397 49.8426 24.9934 53.1816 23.1128 56.8703C20.8371 61.3345 21.2404 65.2817 24.3145 68.5992C24.3676 68.6556 29.2892 73.8555 27.5098 77.9535C27.4633 78.0662 26.4425 80.5999 27.8418 82.3084C29.1033 83.8478 31.6064 89.5482 31.6329 89.6062L31.7043 89.7686L31.8802 89.7852C32.0761 89.8101 33.2662 89.9211 34.3369 89.9211ZM36.0831 89.061L35.6465 89.2069C35.0274 89.4123 33.0289 89.2897 32.111 89.2085C31.6811 88.2391 29.5116 83.4037 28.3065 81.9339C27.1363 80.5055 28.0526 78.217 28.0625 78.1938C28.8676 76.3379 28.5455 74.0113 27.1264 71.4693C26.0723 69.5786 24.8025 68.2496 24.7494 68.1932C18.0518 60.96 26.4591 52.5718 30.9756 48.0645C31.7076 47.3337 32.34 46.7024 32.7733 46.2069C35.7942 42.7469 38.7754 32.5325 38.9281 32.0056C39.2468 31.0726 39.8726 30.496 40.8436 30.2391C43.111 29.6409 46.3394 31.0577 46.8872 31.4024C47.01 32.3055 48.0425 39.9116 48.1056 41.1146L48.1188 41.3533L48.3545 41.3947C48.3811 41.3996 51.0054 41.857 54.3218 41.8206C57.3826 41.7891 61.6784 41.3201 64.8039 39.2769C65.5857 39.1046 66.7726 39.0283 67.0713 39.3912C67.1859 39.5304 67.1659 39.7707 67.0132 40.1071C66.3675 41.5289 57.3063 47.1282 48.4392 45.2822L48.1537 45.2226L48.084 45.5059C48.074 45.5474 47.0432 49.7464 45.4464 53.9903C43.4679 59.2466 41.4976 62.3023 39.7265 62.8673C39.5622 62.1912 39.3431 61.4953 39.0625 60.7794C39.0011 60.6253 38.8268 60.5491 38.6725 60.6087C38.5181 60.67 38.4417 60.844 38.5015 60.9981C38.8003 61.7587 39.0343 62.5111 39.2036 63.2567C39.2036 63.265 39.2053 63.2733 39.2069 63.2833C39.2103 63.3015 39.2152 63.3197 39.2219 63.3363C40.0568 67.0979 39.2401 70.6573 36.7852 73.945C34.5692 76.9129 31.7856 78.5252 31.7574 78.5401L31.7176 78.5633L31.686 78.5981C31.4005 78.9097 31.203 79.6951 32.2255 83.0425C32.7749 84.8371 33.4306 86.5489 33.4355 86.5655L33.4721 86.6599L33.5584 86.7129C34.3833 87.2266 35.5436 88.4612 36.0831 89.061Z' fill='black'/%3E%3Cpath d='M47.8574 47.5302L46.9229 50.213C46.1627 51.842 46.5976 50.9604 45.7726 54.6458L44.5858 57.0635C44.2372 56.9607 41.1449 56.9773 40.8328 56.7685C38.8775 55.4528 37.294 54.3873 40.139 50.1699C41.7092 47.8417 45.3726 47.1159 47.8574 47.5302Z' fill='black'/%3E%3Cpath d='M48.0815 38.1673C48.0815 38.1673 58.9454 35.4315 60.9953 30.896C60.9953 30.896 62.2236 27.1029 59.2325 28.7898C56.8805 30.1172 53.3084 33.8804 48.0317 35.3536' fill='white'/%3E%3Cpath d='M48.0818 38.4686C48.1067 38.4686 48.1316 38.4653 48.1565 38.4586C48.6063 38.3459 59.1864 35.6349 61.2712 31.0199L61.2828 30.9884C61.394 30.6454 61.9069 28.9055 61.1251 28.2691C60.6886 27.9145 60.0213 27.999 59.0835 28.5276C58.3664 28.932 57.5547 29.5468 56.6136 30.256C54.381 31.9429 51.6024 34.0441 47.9507 35.0632C47.7897 35.108 47.6967 35.2737 47.7415 35.4344C47.7863 35.5935 47.9523 35.688 48.1133 35.6432C51.8746 34.5926 54.8242 32.3638 56.9788 30.7366C57.9016 30.0389 58.6984 29.4374 59.3806 29.0513C60.0379 28.6801 60.5359 28.5658 60.7434 28.7348C61.0853 29.0132 60.9326 30.0969 60.7135 30.7863C59.9001 32.5643 57.4618 34.349 53.659 35.9498C50.7409 37.1777 48.0337 37.8654 48.0071 37.8737C47.8461 37.9151 47.7482 38.0775 47.788 38.2382C47.8229 38.3774 47.9457 38.4686 48.0818 38.4686Z' fill='black'/%3E%3Cpath d='M22.1425 60.4456C22.1425 60.4456 15.3386 50.4864 23.2977 42.2523C23.2977 42.2523 24.0646 39.6523 21.3656 40.9515C18.6667 42.2506 13.2804 58.7901 22.2686 64.5336' fill='black'/%3E%3Cpath d='M22.9364 36.1175C21.2018 35.849 19.3444 36.9791 18.7701 38.6296C18.712 38.7953 18.5477 38.9047 18.3717 38.855C18.2107 38.8102 18.0879 38.623 18.146 38.4573C18.6805 36.9261 20.0963 35.7628 21.6981 35.4994C22.1712 35.4215 22.6376 35.4198 23.1107 35.4927C23.2833 35.5192 23.3796 35.7363 23.3364 35.8904C23.285 36.076 23.1107 36.144 22.9364 36.1175Z' fill='black'/%3E%3Cpath d='M53.5928 9.6519C53.5928 9.6519 51.6125 24.4199 48.1816 29.7293C48.1816 29.7293 44.6842 34.7553 38.6406 31.9133C38.6406 31.9133 30.4607 26.8327 23.9175 17.422C23.9175 17.422 22.1796 12.5468 29.8001 9.02054C29.8001 9.02054 35.0569 6.6161 37.6347 5.70635C43.3447 3.68967 48.6181 3.27539 48.6181 3.27539C48.6181 3.27539 53.5828 3.4063 53.5928 9.6519Z' fill='white'/%3E%3Cpath d='M42.2508 33.0794C43.7297 33.0794 44.9365 32.6402 45.8245 32.1497C47.496 31.2251 48.3923 29.9541 48.4305 29.9011C49.8796 27.659 51.2357 23.5792 52.4706 17.7628C53.3869 13.4461 53.8882 9.72923 53.8932 9.69277L53.8965 9.67289V9.653C53.8849 3.19033 48.6811 2.97822 48.628 2.97656H48.6114L48.5948 2.97822C48.5417 2.98319 43.2168 3.41901 37.5351 5.42575C34.9739 6.33053 29.7286 8.72669 29.6755 8.74989C27.4463 9.7806 24.6029 11.6084 23.7149 14.4569C23.1738 16.1919 23.6153 17.4728 23.6352 17.5259L23.6485 17.564L23.6718 17.5971C30.1752 26.9498 38.4015 32.1216 38.4829 32.1729L38.5144 32.1895C39.8954 32.8358 41.1486 33.0794 42.2508 33.0794ZM53.2923 9.63146C53.2076 10.2529 51.2274 24.4625 47.9292 29.5663C47.9259 29.5696 47.0677 30.781 45.5108 31.636C43.4475 32.7678 41.1851 32.7728 38.7849 31.651C38.3965 31.4057 30.4872 26.33 24.1896 17.2889C24.1299 17.0867 23.8494 16.0013 24.2992 14.5961C24.9631 12.5231 26.9085 10.6903 29.9245 9.29507C29.976 9.27187 35.198 6.88565 37.7326 5.99082C43.1786 4.06693 48.2911 3.6046 48.623 3.57643C48.965 3.59135 53.2724 3.89459 53.2923 9.63146Z' fill='black'/%3E%3Cpath d='M48.0314 3.59875L55.783 1.17111C56.8071 0.851285 58.5135 0.463525 59.5758 0.311072C59.5758 0.311072 62.3528 -0.0866313 62.22 4.06274C62.0175 10.3928 58.5948 15.7221 58.5948 15.7221C58.0155 16.6235 57.2586 16.5324 56.9134 15.5182C56.9134 15.5182 54.4152 8.19388 48.0314 3.59875Z' fill='white'/%3E%3Cpath d='M57.7368 16.6441C58.009 16.6441 58.4406 16.5215 58.8489 15.8852C58.8838 15.8305 62.3181 10.4118 62.5206 4.07172C62.572 2.47097 62.2102 1.31266 61.4466 0.629935C60.5968 -0.129015 59.5743 0.00686703 59.5311 0.0134954C58.4522 0.167605 56.7293 0.55868 55.6918 0.883471L47.3659 3.49008L47.8539 3.84139C54.0834 8.32383 56.6031 15.5421 56.628 15.6151C56.9069 16.432 57.375 16.606 57.6306 16.6375C57.6621 16.6408 57.697 16.6441 57.7368 16.6441ZM59.7751 0.600107C60.0374 0.600107 60.5818 0.658106 61.0533 1.08398C61.6724 1.64408 61.9645 2.64165 61.9197 4.05184C61.7222 10.2212 58.3759 15.5057 58.3427 15.5587C58.1352 15.8819 57.8962 16.0608 57.7053 16.0393C57.5144 16.0161 57.3252 15.7841 57.2007 15.4212C57.1758 15.3483 54.7275 8.32218 48.6872 3.70882L55.8744 1.45848C56.887 1.14198 58.5668 0.760846 59.6191 0.61005C59.6258 0.608393 59.6839 0.600107 59.7751 0.600107Z' fill='black'/%3E%3Cpath d='M30.8389 8.72021L25.1438 14.5035C24.3919 15.2674 23.0673 16.4108 22.2025 17.0438C22.2025 17.0438 19.9401 18.6992 18.101 14.9758C15.2958 9.29522 15.802 2.985 15.802 2.985C15.8883 1.91783 16.5988 1.64275 17.3822 2.37519C17.3822 2.37519 23.0391 7.66464 30.8389 8.72021Z' fill='black'/%3E%3Cpath d='M20.9795 17.7105C21.7895 17.7105 22.3522 17.3062 22.3821 17.2846C23.2602 16.6417 24.5964 15.4883 25.3599 14.7128L31.4766 8.50035L30.8807 8.41916C23.2718 7.3901 17.6448 2.20505 17.59 2.15368C16.9593 1.56375 16.463 1.63003 16.2239 1.72283C15.9849 1.81563 15.5733 2.09899 15.5035 2.95902C15.4986 3.02365 15.0222 9.41839 17.8324 15.1072C18.5428 16.5439 19.4076 17.3956 20.4019 17.6392C20.6044 17.6906 20.7986 17.7105 20.9795 17.7105ZM30.2101 8.92789L24.93 14.2902C24.1847 15.0459 22.8817 16.1711 22.0252 16.7991C22.0003 16.8173 21.3662 17.2614 20.5346 17.0526C19.7246 16.8505 18.9959 16.1064 18.3718 14.8404C15.638 9.30405 16.0978 3.06839 16.1028 3.00708C16.1343 2.62429 16.2588 2.35253 16.4397 2.28293C16.619 2.21333 16.8945 2.32933 17.1767 2.59115C17.2331 2.64583 22.7058 7.69501 30.2101 8.92789Z' fill='black'/%3E%3Cpath d='M52.285 9.57889C53.9996 8.97239 54.9889 10.0926 54.481 12.0695L52.3248 20.4743C51.8185 22.4512 50.0641 23.0643 48.4291 21.8397L41.5256 16.6663C39.889 15.44 39.9537 13.9404 41.67 13.3339L52.285 9.57889Z' fill='%237D86C1'/%3E%3Cpath d='M50.1217 22.7316C50.384 22.7316 50.6396 22.6885 50.8869 22.6023C51.7085 22.314 52.3077 21.5815 52.575 20.5392L54.7312 12.1328C55.0183 11.0159 54.859 10.0813 54.2946 9.56594C53.7983 9.11355 53.0547 9.03069 52.1982 9.33394L41.5833 13.0889C40.7284 13.3922 40.2006 13.9241 40.0977 14.5903C39.9815 15.3475 40.4446 16.1794 41.3692 16.8721L48.2726 22.0455C48.8768 22.4979 49.5125 22.7316 50.1217 22.7316ZM53.151 9.67365C53.473 9.67365 53.7435 9.76645 53.9444 9.94873C54.3627 10.3299 54.4673 11.0805 54.2299 12.0052L52.0737 20.41C51.8513 21.2783 51.3683 21.8831 50.7159 22.1135C50.0619 22.3421 49.305 22.1715 48.5846 21.6329L41.6812 16.4595C40.9143 15.8844 40.5243 15.2332 40.6106 14.6698C40.682 14.2025 41.0886 13.8147 41.7559 13.5794L52.3708 9.82444C52.653 9.7217 52.9153 9.67365 53.151 9.67365Z' fill='black'/%3E%3Cpath d='M52.285 9.57889C53.9996 8.97239 54.9889 10.0926 54.481 12.0695L52.3248 20.4743C51.8185 22.4512 50.0641 23.0643 48.4291 21.8397L41.5256 16.6663C39.889 15.44 39.9537 13.9404 41.67 13.3339L52.285 9.57889Z' fill='%238C3655'/%3E%3Cpath d='M50.1217 22.7316C50.384 22.7316 50.6396 22.6885 50.8869 22.6023C51.7085 22.314 52.3077 21.5815 52.575 20.5392L54.7312 12.1328C55.0183 11.0159 54.859 10.0813 54.2946 9.56594C53.7983 9.11355 53.0547 9.03069 52.1982 9.33394L41.5833 13.0889C40.7284 13.3922 40.2006 13.9241 40.0977 14.5903C39.9815 15.3475 40.4446 16.1794 41.3692 16.8721L48.2726 22.0455C48.8768 22.4979 49.5125 22.7316 50.1217 22.7316ZM53.151 9.67365C53.473 9.67365 53.7435 9.76645 53.9444 9.94873C54.3627 10.3299 54.4673 11.0805 54.2299 12.0052L52.0737 20.41C51.8513 21.2783 51.3683 21.8831 50.7159 22.1135C50.0619 22.3421 49.305 22.1715 48.5846 21.6329L41.6812 16.4595C40.9143 15.8844 40.5243 15.2332 40.6106 14.6698C40.682 14.2025 41.0886 13.8147 41.7559 13.5794L52.3708 9.82444C52.653 9.7217 52.9153 9.67365 53.151 9.67365Z' fill='black'/%3E%3Cpath d='M36.5408 15.1433C38.2555 14.5368 39.2448 15.657 38.7368 17.634L36.5807 26.0388C36.0744 28.0157 34.3199 28.6288 32.6849 27.4042L25.7815 22.2307C24.1449 21.0045 24.2096 19.5048 25.9259 18.8983L36.5408 15.1433Z' fill='%237D86C1'/%3E%3Cpath d='M34.3779 28.2963C34.6402 28.2963 34.8958 28.2532 35.1431 28.1671C35.9647 27.8787 36.564 27.1463 36.8312 26.104L38.9874 17.6992C39.2745 16.5823 39.1135 15.6477 38.5508 15.1323C38.0545 14.68 37.3109 14.5971 36.4544 14.9004L25.8395 18.6553C24.9847 18.9586 24.4568 19.4905 24.3539 20.1567C24.2377 20.914 24.7008 21.7458 25.6254 22.4385L32.5288 27.6119C33.133 28.0643 33.7687 28.2963 34.3779 28.2963ZM37.4088 15.2384C37.7309 15.2384 38.0014 15.3312 38.2023 15.5135C38.6206 15.8946 38.7251 16.6453 38.4878 17.5699L36.3316 25.9747C36.1092 26.843 35.6261 27.4479 34.9738 27.6782C34.3198 27.9069 33.5629 27.7362 32.8425 27.1977L25.9391 22.0242C25.1722 21.4492 24.7821 20.798 24.8685 20.2345C24.9398 19.7672 25.3465 19.3795 26.0138 19.1442L36.6287 15.3892C36.9109 15.2881 37.1731 15.2384 37.4088 15.2384Z' fill='black'/%3E%3Cpath d='M36.5408 15.1433C38.2555 14.5368 39.2448 15.657 38.7368 17.634L36.5807 26.0388C36.0744 28.0157 34.3199 28.6288 32.6849 27.4042L25.7815 22.2307C24.1449 21.0045 24.2096 19.5048 25.9259 18.8983L36.5408 15.1433Z' fill='%238C3655'/%3E%3Cpath d='M34.3779 28.2963C34.6402 28.2963 34.8958 28.2532 35.1431 28.1671C35.9647 27.8787 36.564 27.1463 36.8312 26.104L38.9874 17.6992C39.2745 16.5823 39.1135 15.6477 38.5508 15.1323C38.0545 14.68 37.3109 14.5971 36.4544 14.9004L25.8395 18.6553C24.9847 18.9586 24.4568 19.4905 24.3539 20.1567C24.2377 20.914 24.7008 21.7458 25.6254 22.4385L32.5288 27.6119C33.133 28.0643 33.7687 28.2963 34.3779 28.2963ZM37.4088 15.2384C37.7309 15.2384 38.0014 15.3312 38.2023 15.5135C38.6206 15.8946 38.7251 16.6453 38.4878 17.5699L36.3316 25.9747C36.1092 26.843 35.6261 27.4479 34.9738 27.6782C34.3198 27.9069 33.5629 27.7362 32.8425 27.1977L25.9391 22.0242C25.1722 21.4492 24.7821 20.798 24.8685 20.2345C24.9398 19.7672 25.3465 19.3795 26.0138 19.1442L36.6287 15.3892C36.9109 15.2881 37.1731 15.2384 37.4088 15.2384Z' fill='black'/%3E%3Cpath d='M44.8662 21.0338C44.8662 21.0338 44.4164 24.9694 43.7292 25.9106C43.7292 25.9106 43.1283 27.0242 41.8983 26.305C41.8983 26.305 39.8683 24.7606 38.6566 22.5069C38.6566 22.5069 38.2682 21.7099 39.87 21.1432C41.4518 20.5814 43.3707 19.8523 43.3707 19.8523C43.3707 19.8523 44.7616 19.4165 44.8662 21.0338Z' fill='black'/%3E%3Cpath d='M48.8477 23.9297C47.6243 27.6234 42.9103 26.1171 42.9103 26.1171C42.9103 26.1171 40.779 29.7047 37.3298 28.036' fill='white'/%3E%3Cpath d='M39.1286 28.7793C41.2284 28.7793 42.626 27.0542 43.041 26.4643C44.0236 26.7129 47.9907 27.4768 49.1344 24.0234C49.1858 23.866 49.1012 23.6953 48.9435 23.6439C48.7841 23.5926 48.6148 23.6771 48.5634 23.8345C48.1003 25.2347 47.0413 25.9987 45.4179 26.1064C44.1564 26.1925 43.0144 25.833 43.0044 25.8296L42.7754 25.7567L42.6525 25.9622C42.6476 25.9705 42.1313 26.8256 41.225 27.4668C40.0465 28.3004 38.78 28.4015 37.4638 27.7635C37.3144 27.6906 37.1334 27.7535 37.0604 27.9027C36.9874 28.0518 37.0505 28.2324 37.1998 28.3053C37.8937 28.6434 38.5394 28.7793 39.1286 28.7793Z' fill='black'/%3E%3Cpath d='M47.1508 14.8887C46.664 14.8887 46.2694 14.4948 46.2694 14.0088C46.2694 13.5229 46.664 13.1289 47.1508 13.1289C47.6376 13.1289 48.0322 13.5229 48.0322 14.0088C48.0322 14.4948 47.6376 14.8887 47.1508 14.8887Z' fill='black'/%3E%3Cpath d='M32.5785 20.0411C32.0917 20.0411 31.6971 19.6471 31.6971 19.1612C31.6971 18.6752 32.0917 18.2812 32.5785 18.2812C33.0653 18.2812 33.46 18.6752 33.46 19.1612C33.46 19.6471 33.0653 20.0411 32.5785 20.0411Z' fill='black'/%3E%3Cpath d='M36.4593 15.4168C36.5622 15.4168 36.6635 15.3638 36.7199 15.2677C37.1432 14.5469 37.7756 13.9901 38.5458 13.6587C39.5069 13.2444 40.5709 13.2295 41.5419 13.6156C41.6963 13.6769 41.8722 13.6007 41.9336 13.4465C41.995 13.2924 41.9203 13.1168 41.7643 13.0555C40.6422 12.6114 39.4156 12.6279 38.3068 13.1052C37.4171 13.488 36.6884 14.1309 36.2004 14.9628C36.1157 15.1053 36.1639 15.2909 36.3083 15.3737C36.3548 15.4036 36.4079 15.4168 36.4593 15.4168Z' fill='black'/%3E%3Cpath d='M65.2665 28.9835C65.3794 27.3861 64.4233 25.8483 63.019 25.1159C62.6356 24.9154 62.2106 24.7778 61.7807 24.7298C61.6064 24.7099 61.4571 24.5956 61.4571 24.4066C61.4571 24.2476 61.6064 24.0636 61.7807 24.0835C63.6348 24.294 65.21 25.6926 65.7429 27.4656C65.8906 27.9545 65.952 28.4748 65.9155 28.9852C65.9039 29.1592 65.7761 29.3083 65.5918 29.3083C65.4242 29.3067 65.2549 29.1575 65.2665 28.9835Z' fill='black'/%3E%3Cpath d='M67.2633 25.2284C67.3131 24.3154 66.9114 23.4371 66.181 22.8654C66.0432 22.7577 66.0681 22.5207 66.181 22.4081C66.3171 22.2722 66.5014 22.3003 66.6391 22.4081C67.484 23.0692 67.9704 24.1613 67.9123 25.2284C67.9024 25.4024 67.7696 25.5516 67.5886 25.5516C67.4193 25.5516 67.2533 25.4024 67.2633 25.2284Z' fill='black'/%3E%3Cpath d='M68.5019 20.83C68.1168 20.3477 67.73 19.8672 67.3449 19.385C67.2885 19.3154 67.2503 19.2491 67.2503 19.1563C67.2503 19.0767 67.2852 18.9823 67.3449 18.9276C67.4628 18.8199 67.6902 18.7868 67.8031 18.9276C68.1882 19.4098 68.575 19.8904 68.9601 20.3726C69.0165 20.4422 69.0547 20.5085 69.0547 20.6013C69.0547 20.6808 69.0198 20.7753 68.9601 20.83C68.8439 20.9377 68.6148 20.9725 68.5019 20.83Z' fill='black'/%3E%3Cpath d='M68.8461 35.831C70.1226 37.4152 70.7401 39.4948 70.521 41.5215C70.4596 42.0948 70.3384 42.6582 70.1475 43.2034C70.0894 43.3675 69.9251 43.4785 69.7491 43.4288C69.5881 43.384 69.4653 43.1968 69.5234 43.0311C70.1359 41.2812 70.0247 39.3026 69.2246 37.6289C68.9972 37.1533 68.72 36.6993 68.388 36.2883C68.2784 36.1525 68.2552 35.9635 68.388 35.831C68.5008 35.7166 68.7349 35.6934 68.8461 35.831Z' fill='black'/%3E%3Cpath d='M72.5399 37.5574C72.8403 39.0106 72.9316 40.502 72.8021 41.9802C72.7872 42.1542 72.6644 42.3033 72.4784 42.3033C72.3158 42.3033 72.1381 42.1542 72.1547 41.9802C72.2792 40.5584 72.2029 39.1266 71.9157 37.728C71.8809 37.5574 71.9655 37.3784 72.1415 37.3303C72.3025 37.2873 72.505 37.3867 72.5399 37.5574Z' fill='black'/%3E%3Cpath d='M75.9894 40.9108C75.8931 41.2953 75.7968 41.6814 75.7006 42.0658C75.6591 42.2299 75.4665 42.3442 75.3022 42.2912C75.1312 42.2365 75.0316 42.0691 75.0764 41.8935C75.1727 41.509 75.269 41.1229 75.3652 40.7385C75.4067 40.5744 75.5993 40.4601 75.7636 40.5131C75.9329 40.5678 76.0342 40.7352 75.9894 40.9108Z' fill='black'/%3E%3Cpath d='M19.8224 32.7502C18.853 32.7286 17.8836 33.36 17.55 34.2747C17.4902 34.4388 17.3292 34.5498 17.1516 34.5001C16.9939 34.457 16.8644 34.2664 16.9258 34.1024C17.3607 32.9142 18.5476 32.0741 19.8241 32.1023C20.2391 32.1122 20.2407 32.7601 19.8224 32.7502Z' fill='black'/%3E%3Cpath d='M17.0916 30.7084C16.0259 31.2636 15.1594 32.1286 14.6 33.1908C14.5187 33.3449 14.3029 33.3929 14.1568 33.3068C13.9991 33.2156 13.9593 33.0201 14.0406 32.8643C14.6465 31.7126 15.6093 30.7532 16.7646 30.15C16.919 30.0688 17.1165 30.1102 17.2078 30.266C17.2925 30.4118 17.2477 30.6273 17.0916 30.7084Z' fill='black'/%3E%3Cpath d='M45.7959 26.5469C45.7959 26.5469 45.0373 30.6747 40.8096 28.3564L45.7959 26.5469Z' fill='white'/%3E%3Cpath d='M43.1182 29.365C43.5481 29.365 43.9465 29.2789 44.31 29.1065C45.7408 28.4271 46.0777 26.6756 46.0927 26.6027C46.1226 26.4386 46.0147 26.2828 45.8503 26.253C45.6877 26.2232 45.53 26.3309 45.5001 26.4949C45.4951 26.5165 45.198 28.0244 44.0494 28.5663C43.2526 28.9425 42.2119 28.7851 40.9554 28.0957C40.8093 28.0162 40.6267 28.0692 40.547 28.215C40.4674 28.3608 40.5205 28.5431 40.6665 28.6227C41.5679 29.1165 42.3878 29.365 43.1182 29.365Z' fill='black'/%3E%3Cpath d='M42.8574 29.2421C42.8524 29.2753 42.8491 29.3101 42.8425 29.3432C42.7113 30.0757 42.2233 30.6026 41.7536 30.5181C41.2838 30.4336 41.0099 29.7708 41.141 29.0383C41.1776 28.8312 41.244 28.6423 41.3303 28.4766C41.8083 28.7931 42.3262 29.0549 42.8574 29.2421Z' fill='%23ED71A8'/%3E%3Cpath d='M41.8526 30.8285C42.4402 30.8285 42.9864 30.2353 43.1374 29.3968C43.144 29.3587 43.149 29.3189 43.154 29.2808L43.1855 29.0405L42.9565 28.9593C42.4585 28.7837 41.9671 28.5384 41.4957 28.2269L41.2168 28.043L41.0625 28.3396C40.9596 28.5384 40.8865 28.7555 40.845 28.9859C40.6807 29.8956 41.0575 30.6993 41.6999 30.8153C41.7514 30.8252 41.8028 30.8285 41.8526 30.8285ZM42.5133 29.4366C42.3755 29.9586 42.0468 30.2684 41.8061 30.2237C41.5439 30.1773 41.3281 29.7001 41.4376 29.0936C41.4476 29.0356 41.4609 28.9809 41.4758 28.9262C41.8144 29.1251 42.1614 29.2974 42.5133 29.4366Z' fill='black'/%3E%3Cpath d='M47.1508 15.7571C48.0787 15.7571 48.834 15.0031 48.834 14.0768C48.834 13.1505 48.0787 12.3965 47.1508 12.3965C46.2229 12.3965 45.4676 13.1505 45.4676 14.0768C45.4676 15.0031 46.2229 15.7571 47.1508 15.7571ZM47.1508 12.7478C47.8845 12.7478 48.4821 13.3443 48.4821 14.0768C48.4821 14.8092 47.8845 15.4058 47.1508 15.4058C46.4171 15.4058 45.8195 14.8092 45.8195 14.0768C45.8195 13.3443 46.4171 12.7478 47.1508 12.7478Z' fill='black'/%3E%3Cpath d='M32.5785 20.8411C33.5064 20.8411 34.2617 20.0871 34.2617 19.1608C34.2617 18.2344 33.5064 17.4805 32.5785 17.4805C31.6506 17.4805 30.8953 18.2344 30.8953 19.1608C30.897 20.0871 31.6506 20.8411 32.5785 20.8411ZM32.5785 17.8334C33.3122 17.8334 33.9098 18.43 33.9098 19.1624C33.9098 19.8949 33.3122 20.4914 32.5785 20.4914C31.8448 20.4914 31.2472 19.8949 31.2472 19.1624C31.2489 18.4283 31.8448 17.8334 32.5785 17.8334Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1574_8721'%3E%3Crect width='90' height='90' fill='white' transform='matrix(-1 0 0 1 90 0)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.smtdog3 {
    background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M75.879 80.1505C75.879 80.1505 74.5767 84.0757 73.5332 86.1698C72.4913 88.264 69.6098 87.6093 69.6098 87.6093C68.1617 87.0861 70.0145 84.8982 70.0145 84.8982C71.8394 82.8419 70.9269 79.3658 70.0145 77.4016C69.102 75.439 70.0145 70.2044 70.0145 70.2044L70.5665 65.697L74.9109 65.1738L77.5172 69.3605L75.879 80.1505Z' fill='%23FBF9FB'/%3E%3Cpath d='M70.6183 88.0694C70.004 88.0694 69.5535 87.9691 69.529 87.9642L69.4864 87.951C68.9851 87.77 68.8016 87.4328 68.7345 87.1811C68.4724 86.1941 69.6076 84.8155 69.7386 84.6609C71.3145 82.8842 70.6937 79.7224 69.6862 77.5542C68.7476 75.534 69.5994 70.4738 69.6567 70.1497L70.2415 65.3692L75.0954 64.7852L77.895 69.2828L76.2224 80.2652C76.1684 80.4265 74.8988 84.2397 73.8569 86.3323C73.3737 87.3028 72.4629 87.8918 71.2212 88.0349C71.0098 88.0596 70.8067 88.0694 70.6183 88.0694ZM69.7091 87.2584C69.9581 87.3078 72.3498 87.7306 73.2082 86.0065C74.1813 84.0538 75.4034 80.4265 75.5246 80.0629L77.1365 69.4374L74.7235 65.56L70.8886 66.0223L70.3693 70.2649C70.3611 70.3159 69.488 75.409 70.3415 77.2465C70.6773 77.9704 71.2638 79.4328 71.3997 81.0828C71.5406 82.7789 71.1655 84.1443 70.2825 85.1379C69.8615 85.6364 69.3127 86.5494 69.4323 86.9936C69.4552 87.0775 69.5077 87.1795 69.7091 87.2584Z' fill='%23190F19'/%3E%3Cpath d='M45.7754 50.0095C45.7754 50.0095 56.0695 50.1822 69.4925 50.0095C82.9155 49.8351 84.7387 63.1388 83.0449 64.5782C81.3511 66.0177 79.9177 75.5706 80.6991 80.412C81.4805 85.2534 79.9177 89.0486 77.7013 88.9187C75.4865 88.787 75.8764 87.6108 75.8764 87.6108C75.8764 87.6108 78.6137 82.3762 75.8764 80.1521C73.139 77.928 72.4887 68.505 72.4887 68.505C68.1902 70.8591 48.5127 69.9428 48.5127 69.9428C41.7357 68.7649 31.3122 75.7005 28.3144 78.1879C25.3166 80.6752 24.4058 78.1879 24.4058 78.1879C23.6244 72.8233 35.2831 67.9802 35.2831 67.9802C37.1768 66.6017 37.3144 64.2838 36.8393 62.0629C36.8393 62.0629 38.1875 50.1987 45.7754 50.0095Z' fill='%23FBF9FB'/%3E%3Cpath d='M77.8146 89.2841C77.7704 89.2841 77.7262 89.2824 77.6819 89.2808C76.6843 89.2216 76.0159 88.9485 75.6916 88.4681C75.3787 88.0042 75.5179 87.5453 75.5343 87.4943L75.5573 87.44C75.5835 87.3906 78.1226 82.4423 75.6506 80.432C74.4482 79.4532 73.4899 77.1418 72.8019 73.5605C72.4382 71.6671 72.2498 69.9003 72.1728 69.053C67.0553 71.1423 49.2748 70.3428 48.495 70.3066L48.4508 70.3017C45.6348 69.8131 41.7279 70.7508 37.1558 73.0177C33.1522 75.0033 29.8578 77.3771 28.544 78.4678C27.3613 79.4482 26.3178 79.825 25.4414 79.5881C24.4438 79.3183 24.0801 78.3543 24.0653 78.3131L24.0473 78.2407C23.2495 72.7676 34.2169 68.0347 35.1032 67.6613C36.571 66.5706 37.0346 64.7134 36.4858 62.1388L36.4727 62.0812L36.4792 62.022C36.494 61.8986 36.838 58.9688 38.1288 55.9632C39.8718 51.9114 42.5125 49.7284 45.7659 49.6462H45.7741H45.7823C45.8855 49.6478 56.2255 49.8173 69.4879 49.6462C69.578 49.6445 69.6665 49.6445 69.7549 49.6445C78.8712 49.6445 82.1377 55.7609 83.1239 58.4095C84.1493 61.1649 84.2181 64.057 83.2795 64.8548C82.5685 65.4586 81.792 67.9772 81.3022 71.2722C80.796 74.6742 80.7027 78.1536 81.0582 80.353C81.5971 83.6925 81.0582 86.8379 79.6821 88.3661C79.1415 88.9699 78.4977 89.2841 77.8146 89.2841ZM76.2191 87.7394C76.2109 87.7854 76.1978 87.9286 76.2977 88.07C76.4075 88.2263 76.74 88.4961 77.7245 88.5537C78.2373 88.5833 78.7156 88.3563 79.1448 87.8792C80.3783 86.5072 80.8485 83.5987 80.3423 80.4682C79.6002 75.8768 80.8829 65.9373 82.811 64.2988C83.2697 63.9089 83.5498 61.6289 82.4457 58.6628C81.5136 56.1557 78.4175 50.37 69.7517 50.37C69.6681 50.37 69.5829 50.37 69.4977 50.3717C56.3778 50.5411 46.1132 50.3766 45.7774 50.3717C42.791 50.449 40.4435 52.4231 38.7988 56.2363C37.6423 58.9194 37.259 61.6239 37.2049 62.0467C37.8045 64.9157 37.2279 67.0115 35.4947 68.2733L35.4603 68.298L35.421 68.3144C35.308 68.3621 24.0965 73.0818 24.7566 78.0894C24.814 78.2177 25.0794 78.7392 25.638 78.8856C26.2637 79.0518 27.1107 78.7129 28.0837 77.9052C30.5835 75.8324 41.3707 68.3506 48.5507 69.5795C49.3108 69.614 68.2167 70.4283 72.3154 68.1828L72.8101 67.9114L72.8494 68.4756C72.851 68.4987 73.0165 70.8462 73.5128 73.4273C74.1566 76.7849 75.0527 79.0106 76.1044 79.8644C78.9433 82.1741 76.4894 87.208 76.2191 87.7394Z' fill='%23190F19'/%3E%3Cpath d='M46.9484 70.2051C46.9484 70.2051 48.3818 81.329 46.9484 83.6848C46.9484 83.6848 43.1692 88.1413 45.2546 88.9227C47.34 89.7041 50.2067 87.3483 50.7277 85.5174C51.2486 83.6848 52.5526 70.2067 52.5526 70.2067' fill='%23FBF9FB'/%3E%3Cpath d='M46.1406 89.441C45.7851 89.441 45.446 89.3818 45.1282 89.2633C44.7023 89.1037 44.4205 88.801 44.314 88.3881C43.9078 86.8138 46.2896 83.9053 46.6533 83.4727C47.7541 81.5858 46.9826 73.2996 46.5894 70.2529C46.5632 70.0539 46.7041 69.8712 46.9023 69.8466C47.0989 69.8219 47.2824 69.9617 47.3069 70.1608C47.3659 70.6198 48.7403 81.4394 47.2561 83.8757L47.2234 83.9218C46.2405 85.0815 44.7711 87.2711 45.0135 88.2072C45.061 88.3898 45.1741 88.5066 45.3805 88.5839C46.2176 88.8981 47.1202 88.5954 47.7296 88.2861C48.9713 87.6577 50.0852 86.4519 50.3785 85.4188C50.8846 83.6388 52.1771 70.3072 52.1902 70.1723C52.2099 69.9732 52.3885 69.8252 52.585 69.8466C52.7833 69.8663 52.9291 70.044 52.9094 70.243C52.8553 70.7941 51.5972 83.7754 51.073 85.6195C50.7225 86.8483 49.4824 88.2121 48.0539 88.9359C47.3905 89.2699 46.7418 89.441 46.1406 89.441Z' fill='%23190F19'/%3E%3Cpath d='M80.7285 54.8707C80.7285 54.8707 90.8637 42.462 85.5217 26.365C85.5217 26.365 84.724 24.2708 87.078 25.7102C89.432 27.1497 93.914 53.2586 82.8761 58.7876L80.7285 54.8707Z' fill='%23190F19'/%3E%3Cpath d='M56.0469 70.1195L59.4542 69.8777C61.5838 69.5059 60.424 69.7346 64.9617 69.9369L68.1413 69.3184C68.1299 68.8808 69.1209 65.2863 68.9751 64.8569C68.0611 62.1672 67.3206 59.9859 61.533 61.9682C58.3354 63.0622 56.345 67.0959 56.0469 70.1195Z' fill='%23190F19'/%3E%3Cpath d='M43.7922 31.0783C43.7922 31.0783 46.423 48.8796 44.2328 56.187C44.2328 56.187 41.8706 63.1868 33.9518 61.9069C33.9518 61.9069 22.8206 58.7402 12.1399 50.0016C12.1399 50.0016 8.51138 44.9232 16.1304 38.2887C16.1304 38.2887 21.3954 33.7433 24.0672 31.8268C29.9842 27.5809 35.9307 25.3387 35.9307 25.3387C35.9307 25.3387 41.7003 23.8335 43.7922 31.0783Z' fill='%23FBF9FB'/%3E%3Cpath d='M35.8091 62.4241C35.2095 62.4241 34.5707 62.3747 33.8925 62.2645L33.8515 62.2546C33.7401 62.2234 22.527 58.9661 11.9102 50.2802L11.8725 50.2489L11.8446 50.2094C11.8053 50.1535 10.8683 48.8161 10.9158 46.6216C10.9944 43.0189 13.6646 39.9492 15.8925 38.0096C15.9466 37.9636 21.2017 33.4314 23.8555 31.5264C29.743 27.3019 35.7419 25.0169 35.8026 24.9938L35.8386 24.9823C35.8992 24.9659 41.9751 23.4771 44.1391 30.9737L44.1489 31.0214C44.1555 31.0658 44.8124 35.547 45.1941 40.8638C45.7068 48.0264 45.5004 53.2166 44.5781 56.2896C44.5486 56.3768 43.9376 58.1502 42.3158 59.7821C41.0545 61.0521 38.9609 62.4241 35.8091 62.4241ZM34.0284 61.5522C37.1688 62.0539 39.78 61.2939 41.7834 59.2919C43.2954 57.78 43.8835 56.0889 43.8885 56.0708C45.9918 49.0595 43.5444 31.9081 43.4363 31.1563C41.5049 24.5086 36.4382 25.5877 36.0368 25.6864C35.6633 25.8312 29.9183 28.0718 24.2749 32.1219C21.6473 34.0072 16.4167 38.518 16.3643 38.564C9.41035 44.6195 12.1182 49.3014 12.4082 49.7538C22.6892 58.1485 33.4977 61.3959 34.0284 61.5522Z' fill='%23190F19'/%3E%3Cpath d='M28.2891 29.4986L33.2412 21.0594C33.8948 19.944 35.1054 18.2183 35.9294 17.2247C35.9294 17.2247 38.0835 14.6239 41.3091 18.4503C46.2301 24.2886 47.475 31.8329 47.475 31.8329C47.6864 33.1095 46.9377 33.6376 45.8123 33.0092C45.8123 33.0092 37.6822 28.4605 28.2891 29.4986Z' fill='%23FBF9FB'/%3E%3Cpath d='M46.6692 33.6401C46.3957 33.6401 46.0533 33.5611 45.6356 33.3275C45.5553 33.2831 37.4923 28.848 28.3269 29.8613L27.6094 29.9403L32.9284 20.876C33.5919 19.7458 34.8123 18.0037 35.6494 16.9936C35.6822 16.9525 36.4832 16.0049 37.8527 16C37.8576 16 37.8609 16 37.8658 16C39.0928 16 40.3427 16.7469 41.5844 18.2176C46.5136 24.0658 47.8192 31.6989 47.8323 31.7746C48.0027 32.8027 47.6046 33.2551 47.3523 33.4344C47.218 33.5315 46.9919 33.6401 46.6692 33.6401ZM31.097 28.9845C39.2566 28.9845 45.914 32.6514 45.9894 32.6925C46.394 32.9179 46.7479 32.9738 46.9379 32.8406C47.1279 32.7073 47.1951 32.3536 47.1197 31.8946C47.1066 31.8206 45.8305 24.3783 41.034 18.688C39.9381 17.3884 38.8733 16.7271 37.8691 16.7271H37.8675C36.8387 16.7271 36.231 17.4312 36.2064 17.4608C35.3922 18.4446 34.2013 20.1439 33.5542 21.2461L28.9625 29.0717C29.6816 29.0125 30.3959 28.9845 31.097 28.9845Z' fill='%23190F19'/%3E%3Cpath d='M14.7948 39.0605L5.72926 42.6764C4.53177 43.1535 2.6479 44.0879 1.54215 44.7525C1.54215 44.7525 -1.34918 46.4897 1.92056 50.2799C6.90872 56.0623 14.1379 58.4592 14.1379 58.4592C15.3616 58.8655 15.9972 58.2042 15.55 56.9901C15.55 56.9901 12.3261 48.2219 14.7948 39.0605Z' fill='%23190F19'/%3E%3Cpath d='M14.7984 58.9431C14.5822 58.9431 14.3266 58.9036 14.0252 58.8049C13.9515 58.7802 6.64208 56.3093 1.64737 50.5187C0.385992 49.0562 -0.156235 47.6957 0.0387048 46.4751C0.25494 45.1179 1.31155 44.4681 1.35578 44.4418C2.47791 43.7673 4.37816 42.8247 5.5953 42.3394L15.3325 38.457L15.1441 39.1578C12.736 48.0955 15.8583 56.7798 15.8911 56.8653C16.2515 57.8442 15.9451 58.3623 15.7322 58.5861C15.5831 58.7391 15.2915 58.9431 14.7984 58.9431ZM14.2693 39.6612L5.86232 43.0139C4.6763 43.4876 2.82192 44.4072 1.72764 45.0636C1.69651 45.0834 0.908561 45.5785 0.751299 46.6001C0.597313 47.5954 1.08221 48.7535 2.19287 50.0416C7.05326 55.6776 14.1792 58.0893 14.2513 58.1139C14.6903 58.2587 15.0491 58.2472 15.2096 58.0794C15.3701 57.9116 15.3718 57.5513 15.2112 57.1154C15.1801 57.0298 12.1364 48.5791 14.2693 39.6612Z' fill='%23190F19'/%3E%3Cpath d='M42.2554 31.4278C44.0328 30.1512 45.5464 31.1218 45.6185 33.5861L45.9281 44.0619C46.0002 46.5246 44.1818 47.8225 41.8868 46.9457L32.2004 43.2443C29.9054 42.3675 29.4811 40.6056 31.2568 39.329L42.2554 31.4278Z' fill='%237F85C0'/%3E%3Cpath d='M43.2758 47.5325C42.8008 47.5325 42.2962 47.4338 41.7769 47.2364L32.0906 43.535C30.7932 43.0398 29.9823 42.2288 29.8627 41.3108C29.7595 40.5047 30.1903 39.7102 31.0766 39.0735L42.0751 31.1723C42.963 30.5356 43.8492 30.381 44.5716 30.7413C45.394 31.1509 45.8887 32.184 45.9313 33.5741L46.2409 44.0499C46.2786 45.3478 45.8314 46.399 44.9795 47.0077C44.4913 47.3581 43.9098 47.5325 43.2758 47.5325ZM42.4371 31.6822L31.4386 39.5835C30.7473 40.0803 30.4065 40.666 30.4803 41.2319C30.5687 41.9146 31.2355 42.5413 32.3117 42.9526L41.9981 46.654C43.0088 47.0406 43.9393 46.9863 44.6175 46.501C45.294 46.0174 45.6495 45.1537 45.6184 44.0713L45.3088 33.5955C45.2744 32.4423 44.9058 31.6066 44.2964 31.3039C43.7886 31.0505 43.1284 31.1854 42.4371 31.6822Z' fill='%23190F19'/%3E%3Cpath d='M42.2554 31.4278C44.0328 30.1512 45.5464 31.1218 45.6185 33.5861L45.9281 44.0619C46.0002 46.5246 44.1818 47.8225 41.8868 46.9457L32.2004 43.2443C29.9054 42.3675 29.4811 40.6056 31.2568 39.329L42.2554 31.4278Z' fill='%238C3655'/%3E%3Cpath d='M43.2758 47.5325C42.8008 47.5325 42.2962 47.4338 41.7769 47.2364L32.0906 43.535C30.7932 43.0398 29.9823 42.2288 29.8627 41.3108C29.7595 40.5047 30.1903 39.7102 31.0766 39.0735L42.0751 31.1723C42.963 30.5356 43.8492 30.381 44.5716 30.7413C45.394 31.1509 45.8887 32.184 45.9313 33.5741L46.2409 44.0499C46.2786 45.3478 45.8314 46.399 44.9795 47.0077C44.4913 47.3581 43.9098 47.5325 43.2758 47.5325ZM42.4371 31.6822L31.4386 39.5835C30.7473 40.0803 30.4065 40.666 30.4803 41.2319C30.5687 41.9146 31.2355 42.5413 32.3117 42.9526L41.9981 46.654C43.0088 47.0406 43.9393 46.9863 44.6175 46.501C45.294 46.0174 45.6495 45.1537 45.6184 44.0713L45.3088 33.5955C45.2744 32.4423 44.9058 31.6066 44.2964 31.3039C43.7886 31.0505 43.1284 31.1854 42.4371 31.6822Z' fill='%23190F19'/%3E%3Cpath d='M25.9448 43.1446C27.7222 41.868 29.2359 42.8386 29.3079 45.3029L29.6175 55.7787C29.6896 58.2413 27.8713 59.5393 25.5762 58.6625L15.8899 54.9611C13.5948 54.0843 13.1705 52.3224 14.9463 51.0458L25.9448 43.1446Z' fill='%237F85C0'/%3E%3Cpath d='M26.9653 59.2505C26.4902 59.2505 25.9857 59.1518 25.4664 58.9544L15.78 55.253C14.4826 54.7578 13.6717 53.9468 13.5521 53.0289C13.4489 52.2228 13.8798 51.4282 14.766 50.7916L25.7645 42.8903C26.6524 42.2537 27.5386 42.1007 28.2611 42.4593C29.0834 42.8689 29.5781 43.902 29.6191 45.2921L29.9287 55.7662C29.9664 57.0642 29.5192 58.1154 28.6673 58.7241C28.1808 59.0745 27.5993 59.2505 26.9653 59.2505ZM26.1266 43.3986L15.128 51.2999C14.4367 51.7967 14.096 52.3823 14.1697 52.9482C14.2582 53.6309 14.9249 54.2577 16.0012 54.669L25.6875 58.3704C26.6983 58.757 27.6287 58.7027 28.3069 58.2174C28.9835 57.7337 29.339 56.8701 29.3078 55.7876L28.9982 45.3118C28.9638 44.1586 28.5953 43.323 27.9859 43.0203C27.478 42.7669 26.8179 42.9035 26.1266 43.3986Z' fill='%23190F19'/%3E%3Cpath d='M25.9448 43.1446C27.7222 41.868 29.2359 42.8386 29.3079 45.3029L29.6175 55.7787C29.6896 58.2413 27.8713 59.5393 25.5762 58.6625L15.8899 54.9611C13.5948 54.0843 13.1705 52.3224 14.9463 51.0458L25.9448 43.1446Z' fill='%238C3655'/%3E%3Cpath d='M26.9653 59.2505C26.4902 59.2505 25.9857 59.1518 25.4664 58.9544L15.78 55.253C14.4826 54.7578 13.6717 53.9468 13.5521 53.0289C13.4489 52.2228 13.8798 51.4282 14.766 50.7916L25.7645 42.8903C26.6524 42.2537 27.5386 42.1007 28.2611 42.4593C29.0834 42.8689 29.5781 43.902 29.6191 45.2921L29.9287 55.7662C29.9664 57.0642 29.5192 58.1154 28.6673 58.7241C28.1808 59.0745 27.5993 59.2505 26.9653 59.2505ZM26.1266 43.3986L15.128 51.2999C14.4367 51.7967 14.096 52.3823 14.1697 52.9482C14.2582 53.6309 14.9249 54.2577 16.0012 54.669L25.6875 58.3704C26.6983 58.757 27.6287 58.7027 28.3069 58.2174C28.9835 57.7337 29.339 56.8701 29.3078 55.7876L28.9982 45.3118C28.9638 44.1586 28.5953 43.323 27.9859 43.0203C27.478 42.7669 26.8179 42.9035 26.1266 43.3986Z' fill='%23190F19'/%3E%3Cpath d='M37.5112 47.2016C37.5112 47.2016 38.3025 51.9196 37.8225 53.2423C37.8225 53.2423 37.4998 54.7343 35.842 54.3116C35.842 54.3116 32.985 53.1979 30.8374 50.9852C30.8374 50.9852 30.1232 50.1907 31.7826 48.9963C33.4208 47.8168 35.3915 46.3297 35.3915 46.3297C35.3915 46.3297 36.8527 45.3591 37.5112 47.2016Z' fill='%23190F19'/%3E%3Cpath d='M39.5658 47.9043C42.5865 51.4938 37.8244 53.1109 37.8244 53.1109C37.8244 53.1109 41.3645 55.2726 37.4902 57.7648' fill='%23FBF9FB'/%3E%3Cpath d='M37.4906 58.1294C37.371 58.1294 37.2547 58.0702 37.1859 57.9617C37.0778 57.7922 37.127 57.5685 37.2957 57.4599C38.3965 56.7509 38.9502 56.0271 38.942 55.3098C38.9289 54.2405 37.6495 53.4295 37.6381 53.4229L36.9746 53.0182L37.7101 52.7682C37.7298 52.7616 39.7545 52.0542 40.1444 50.6411C40.3492 49.8975 40.0625 49.0569 39.291 48.1406C39.1615 47.9876 39.1812 47.7573 39.3335 47.629C39.4859 47.499 39.7152 47.5188 39.843 47.6718C40.7784 48.7838 41.1142 49.8482 40.8406 50.8385C40.4983 52.074 39.286 52.8389 38.5407 53.2025C39.0207 53.6253 39.6546 54.3622 39.6644 55.3032C39.6759 56.2886 39.0108 57.2214 37.6839 58.0735C37.625 58.1114 37.5578 58.1294 37.4906 58.1294Z' fill='%23190F19'/%3E%3Cpath d='M34.4723 41.983C35.0568 41.983 35.5305 41.5071 35.5305 40.9202C35.5305 40.3332 35.0568 39.8574 34.4723 39.8574C33.8879 39.8574 33.4141 40.3332 33.4141 40.9202C33.4141 41.5071 33.8879 41.983 34.4723 41.983Z' fill='%23190F19'/%3E%3Cpath d='M21.3942 54.813C21.9786 54.813 22.4524 54.3372 22.4524 53.7503C22.4524 53.1633 21.9786 52.6875 21.3942 52.6875C20.8097 52.6875 20.3359 53.1633 20.3359 53.7503C20.3359 54.3372 20.8097 54.813 21.3942 54.813Z' fill='%23190F19'/%3E%3Cpath d='M25.8428 43.5031C25.8133 43.5031 25.7839 43.4998 25.7527 43.4916C25.5594 43.4423 25.4415 43.2449 25.4923 43.0491C25.7789 41.9206 26.4064 40.9319 27.3057 40.19C28.4262 39.2671 29.8383 38.8361 31.2799 38.9775C31.4781 38.9973 31.6239 39.175 31.6042 39.374C31.5845 39.5731 31.4093 39.7195 31.2094 39.6997C29.9595 39.5764 28.7358 39.9498 27.766 40.7493C26.9863 41.3925 26.444 42.2479 26.195 43.2268C26.1508 43.3946 26.0034 43.5031 25.8428 43.5031Z' fill='%23190F19'/%3E%3Cpath d='M28.3697 84.3314C26.9773 83.3411 25.2834 82.8903 23.6174 82.5136C20.0741 81.7141 16.4784 81.1745 12.8859 80.6333C12.6926 80.6037 12.4797 80.579 12.3126 80.681C12.1439 80.7847 12.0701 80.9886 12.0079 81.1778C11.41 83.0252 10.8825 84.894 10.4303 86.7826C10.3501 87.1165 10.2813 87.4998 10.4811 87.7795C10.6826 88.0624 11.0741 88.1167 11.4198 88.1381C13.705 88.2862 16.0017 88.1233 18.2853 88.3026C22.2594 88.6135 26.1861 89.9543 30.1504 89.5282C29.3215 87.8239 28.7039 86.0176 28.3157 84.162' fill='%23FBF9FB'/%3E%3Cpath d='M28.5648 83.9918C27.4492 83.2071 26.1469 82.7448 24.838 82.4043C23.3915 82.0276 21.9188 81.7397 20.4494 81.4666C18.9407 81.1853 17.4254 80.9369 15.9085 80.7C15.1369 80.5799 14.3653 80.4631 13.5938 80.3463C12.9336 80.2476 12.0981 80.0042 11.7459 80.7724C11.5969 81.0965 11.5084 81.4535 11.4019 81.794C11.2889 82.1543 11.1791 82.5162 11.071 82.8797C10.8564 83.6052 10.6516 84.334 10.46 85.0644C10.3633 85.4296 10.27 85.7964 10.1799 86.1633C10.0947 86.5071 9.99147 86.8542 9.96526 87.2079C9.93905 87.5435 10.0308 87.8939 10.2749 88.1357C10.4944 88.3545 10.7942 88.4516 11.0939 88.4927C11.8459 88.5996 12.6273 88.5848 13.3857 88.5931C14.1573 88.6013 14.9305 88.5947 15.7021 88.5996C17.2108 88.6095 18.7081 88.6918 20.202 88.9106C23.1376 89.3399 26.0633 90.0851 29.0497 89.9914C29.4166 89.9799 29.7836 89.9552 30.1505 89.9157C30.4536 89.8844 30.6239 89.6114 30.4863 89.3284C29.6755 87.6521 29.0759 85.8787 28.6909 84.056C28.5877 83.5641 27.8375 83.773 27.9407 84.2632C28.3404 86.1534 28.9743 87.986 29.8147 89.7232C29.9261 89.5275 30.0391 89.3317 30.1505 89.1359C27.328 89.432 24.5349 88.8448 21.7648 88.3743C20.3446 88.1341 18.9177 87.9285 17.4762 87.861C15.9986 87.7919 14.5177 87.833 13.0384 87.8084C12.6649 87.8018 12.2931 87.7919 11.9196 87.7738C11.6329 87.7607 11.3298 87.7672 11.0514 87.6932C10.8236 87.6323 10.7319 87.5106 10.7385 87.2688C10.7483 86.9562 10.863 86.6354 10.9383 86.3327C11.2872 84.9262 11.6771 83.5279 12.108 82.1444C12.2079 81.822 12.2947 81.4897 12.4176 81.1755C12.4389 81.1195 12.4651 81.0389 12.5208 81.0077C12.6141 80.955 12.796 81.0093 12.8959 81.0241C13.6298 81.1343 14.3637 81.2445 15.0959 81.3581C16.5506 81.5818 18.002 81.8137 19.4501 82.0737C20.8753 82.3286 22.2972 82.6083 23.7093 82.9324C24.9543 83.2186 26.2108 83.5476 27.3427 84.1547C27.6294 84.3077 27.9046 84.4787 28.17 84.6663C28.342 84.788 28.6025 84.6975 28.7024 84.5265C28.8187 84.3323 28.7384 84.1135 28.5648 83.9918Z' fill='%23190F19'/%3E%3Cpath d='M23.7282 70.174C23.9379 71.7171 24.3392 73.2256 24.9257 74.6667C25.0059 74.8625 25.1845 75.0006 25.404 74.9398C25.5875 74.8888 25.7562 74.6552 25.6759 74.4594C25.0895 73.0183 24.6865 71.5098 24.4785 69.9667C24.4506 69.7578 24.1836 69.6427 24.0001 69.6937C23.7757 69.7545 23.7003 69.9634 23.7282 70.174Z' fill='%23190F19'/%3E%3Cpath d='M27.0599 79.0695C27.2008 79.8789 27.3417 80.6899 27.4825 81.4993C27.517 81.7016 27.7741 81.8333 27.9609 81.7724C28.1771 81.7016 28.2705 81.5075 28.2328 81.292C28.0919 80.4827 27.9511 79.6716 27.8102 78.8623C27.7758 78.6599 27.5186 78.5283 27.3318 78.5892C27.1156 78.6599 27.0222 78.854 27.0599 79.0695Z' fill='%23190F19'/%3E%3Cpath d='M14.1386 85.658C14.1353 85.6367 14.132 85.6153 14.1287 85.5939C14.1353 85.6399 14.1353 85.6465 14.132 85.6186C14.1287 85.5807 14.1238 85.5445 14.1206 85.5067C14.114 85.4425 14.1107 85.3784 14.1074 85.3142C14.1025 85.1694 14.1042 85.0247 14.1156 84.8799C14.1189 84.8421 14.1222 84.8042 14.1255 84.768C14.1271 84.7466 14.1353 84.6479 14.1271 84.7433C14.132 84.6742 14.1484 84.6052 14.1615 84.5361C14.1894 84.3929 14.227 84.2531 14.2696 84.1149C14.3319 83.9208 14.1975 83.6806 13.9977 83.6345C13.7847 83.5852 13.5849 83.6987 13.5194 83.9076C13.3179 84.5443 13.2835 85.2106 13.3867 85.867C13.4178 86.0693 13.6815 86.1993 13.865 86.1401C14.0862 86.0677 14.173 85.8752 14.1386 85.658Z' fill='%23190F19'/%3E%3Cpath d='M15.4972 85.8647C15.6086 85.2823 15.7217 84.6999 15.833 84.1176C15.8724 83.9169 15.7773 83.6865 15.5611 83.6372C15.3694 83.5928 15.1237 83.6948 15.0828 83.9103C14.9714 84.4927 14.8583 85.075 14.747 85.6574C14.7076 85.8581 14.8026 86.0885 15.0189 86.1378C15.2105 86.1806 15.4563 86.0786 15.4972 85.8647Z' fill='%23190F19'/%3E%3Cpath d='M16.905 85.1685C16.9624 84.8197 17.0213 84.4709 17.0787 84.1221C17.0967 84.0152 17.095 83.9181 17.0394 83.8211C16.9918 83.7405 16.9001 83.6631 16.8067 83.6418C16.7068 83.6187 16.5954 83.6237 16.507 83.6812C16.4267 83.7339 16.3448 83.8161 16.3284 83.9149C16.2711 84.2636 16.2121 84.6124 16.1548 84.9612C16.1367 85.0681 16.1384 85.1652 16.1941 85.2622C16.2416 85.3428 16.3333 85.4202 16.4267 85.4416C16.5266 85.4646 16.638 85.4596 16.7265 85.4021C16.8067 85.3511 16.8886 85.2672 16.905 85.1685Z' fill='%23190F19'/%3E%3Cpath d='M18.6416 84.9942C18.7644 84.5895 18.8873 84.1848 19.0101 83.7784C19.0691 83.5826 18.9397 83.3441 18.7382 83.298C18.5285 83.2503 18.3221 83.3622 18.2599 83.5711C18.137 83.9758 18.0141 84.3805 17.8913 84.7869C17.8323 84.9827 17.9617 85.2212 18.1632 85.2673C18.3729 85.315 18.5777 85.2031 18.6416 84.9942Z' fill='%23190F19'/%3E%3Cpath d='M17.0128 77.5721C16.7982 75.4203 17.3765 73.2571 18.6346 71.5018C18.7575 71.3307 18.6641 71.0658 18.4954 70.9671C18.2988 70.852 18.0858 70.9359 17.963 71.107C16.6361 72.9577 16.0087 75.3019 16.2347 77.5721C16.256 77.7826 16.3985 77.9636 16.6246 77.9636C16.8179 77.962 17.0325 77.7826 17.0128 77.5721Z' fill='%23190F19'/%3E%3Cpath d='M13.3312 76.603C13.6539 74.5977 14.432 72.7009 15.6115 71.0526C15.7344 70.8815 15.641 70.6166 15.4723 70.5179C15.2757 70.4028 15.0627 70.4867 14.9399 70.6577C13.726 72.3538 12.9118 74.3345 12.5809 76.3957C12.5482 76.603 12.635 76.8169 12.8529 76.8761C13.038 76.9271 13.2968 76.8136 13.3312 76.603Z' fill='%23190F19'/%3E%3C/svg%3E%0A");
}



.simpleimagetext .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}
.module .simpleimagetext .img.lottie {
    background-image: url("data:image/svg+xml,%3Csvg width='743' height='743' viewBox='0 0 743 743' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M589.421 743L371.547 114.886L153.672 743H0L269.442 0H472.435L743 743H589.421Z' fill='%23CA8B02'/%3E%3C/svg%3E%0A");
    height: 400px;
    display: flex;
    align-items: end;
    justify-content: center;
    width: 600px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.simpleimagetext .right {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: 350px;
}
.simpleimagetext .left {
    position: sticky;
    top: 90px;
}
.simpleimagetext .right {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: 350px;
    width: calc(100% - 600px - 24px);
}
section.colorcards h2 {
    text-align: center;
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 10px;
}
section.colorcards .wrap > p {
    display: block;
    max-width: 880px;
    font-size: 23px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 48px;
}
.colorcards .items {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-evenly;
    counter-reset: smartMARVI-item;
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
}
.colorcards .items .item {
    width: 100%;
    border-radius: 40px;
    padding: 40px 32px;
    height: auto;
    color: #fbf9fb;
    background: #007347;
    padding-right: 140px;
    width: calc(50% - 14px);
    min-height: 350px;
    display: flex;
    flex-direction: column;
}
.colorcards .items .item h3 {
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
}
.colorcards .items .item:after {
    position: absolute;
    right: 24px;
    transform: translateY(-50%);
    line-height: .7;
    opacity: .5;
    top: 48px;
    font-size: clamp(42px, 5.81vw, 140px);
    counter-increment: smartMARVI-item;
    content: "0" counter(smartMARVI-item);
}
.colorcards .items .item:nth-child(2) {
    background: #593399;
}
.colorcards .items .item:nth-child(3) {
    background: #8c3655;
}
.colorcards .items .item:nth-child(4) {
    background: #86368c;
}
.colorcards .items .item:nth-child(5) {
    background: #ca8b02;
}

.colorcards .items .item:nth-child(6) {
    background: #007347;
}
.colorcards .items .item:nth-child(7) {
    background: #593399;
}
.colorcards .items .item:nth-child(8) {
    background: #8c3655;
}
.colorcards .items .item:nth-child(9) {
    background: #ca8b02;
}
.colorcards .items .item:nth-child(10) {
    background: #007347;
}
.colorcards .items .item:nth-child(11) {
    background: #86368c;
}
.colorcards .items .item:nth-child(12) {
    background: #593399;
}

.colorcards .items .item p {
    margin: 0;
    margin-top: auto;
}


.sec_home_3.texter h2 {
    display: block;
    font-size: 32px;
    text-align: center;
}
.sec_home_3.texter .right {
    display: flex;
    align-items: center;
    padding: 40px;
    flex: 1 1 calc(50% - 24px);
    height: auto;
    max-width: 50%;
    position: relative;
}
.sec_home_3.texter .left {
    display: flex;
    flex: 1 1 calc(50% - 24px);
    flex-direction: column;
    font-size: 19px;
    gap: 24px;
}
.sec_home_3.texter .intro {
    font-size: 20px;
}
.sec_home_3.texter .pinkblock {
    background-color: #F6EEF7;
    padding: 24px;
    border-radius: 24px;
}
.sec_home_3.texter .duo { 
    align-items: center;
}
.sec_home_3.texter .right .img.mac img {
    display: block;
    max-width: 100%;
    height: auto;
    box-shadow: 0px 0px 10px 0px #86368C40;
    object-fit: contain;
    aspect-ratio: unset;
}
.sec_home_3.texter .right .img.mac span {
    background-color: #CA8B02;
    box-shadow: 0px 0px 60px 0px #86368c36;
    border-radius: 10px;
    padding: 8px 24px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: all 0.6s ease;
    position: absolute;
}
.innerform.blue {
    background-color: #36498C;
}


.pricestabs .wrap > p {
    display: block;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    text-align: center;
}

.pricestabs .tabes .tablinks {
    width: fit-content;
    margin: 0 auto 25px;
    background: #fbf9fb;
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    border-radius: 16px;
    padding: 5px;
    height: 51px;
    display: flex;
    gap: 8px;
}
.pricestabs .tabes {
    padding: 0;
    background: transparent;
    color: #212529;
}
.pricestabs .tabes .tablinks span {
    cursor: pointer;
    padding: 0 20px;
    color: #190f19;
    background: #fbf9fb;
    transition: all ease-in-out .3s;
    font-size: 15px;
    border-radius: 16px;
    min-height: 42px;
    align-items: center;
    display: flex;
}
.pricestabs .tabes .tablinks span:not(.active):hover {
	background: #f6eef7;
}
.pricestabs .tabes .tablinks span.active {
    background: #02ab6b;
    color: #fff;
}


.pricestabs .tabes .tabdata {
    min-height: 475px;
}
.pricestabs .tabes .tabdata .tab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(50px);
}
.pricestabs .tabes .tabdata .tab.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.pricestabs .priceitem {
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    padding: 40px 20px 20px;
    height: auto;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
}
.pricestabs .priceitem .prc {
    display: block;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
}
.pricestabs .priceitem .tit {
    display: block;
    margin: 14px 0;
    font-weight: 400;
    font-size: 29px;
    line-height: 1.2;
    text-align: center;
}
.pricestabs .priceitem p {
    margin: 0;
    font-size: 17px;
    margin-bottom: 20px;
}
.pricestabs .priceitem .btns {
    margin-top: auto;
}
.btn-green {
    background: #02ab6b;
}
.pricestabs .priceitem .btns .btn {
    width: 100%;
    text-align: center;
}
.pricestabs .prcies_i {
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    border-radius: 40px;
    margin-top: 30px;
    margin-bottom: 0;
    padding: 40px;
    text-align: center;
    font-size: 20px;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.pricestabs .prices_prof {
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    margin-top: 30px;
    padding: 60px 60px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
    border-radius: 40px;
}
.pricestabs .prices_prof div {
    display: flex;
    gap: 20px;
}
.pricestabs .prices_prof div b {
    display: block;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
}
.pricestabs .prices_prof div i {
    font-style: normal;
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
}
.pricestabs .prices_prof > b {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2; 
}
.pricestabs .prices_prof div p {
    width: 33.333%;
    text-align: center;
    min-width: 190px;
    margin: 0;
}

.pricestable .trow {
    display: grid;
    grid-template-columns: 312fr 612fr 100fr 100fr 100fr;
    gap: 40px;
    padding: 20px;
    align-items: center;
    font-size: 17px;
}
.pricestable .trows .items .trow:nth-child(2n) {
    background: #f6eef7;
}
.pricestable .trows h2 {
    background: #02ab6b;
    color: #fbf9fb;
    text-align: left;
    padding: 20px 20px 20px 20px;
    border-radius: 16px;
    display: flex;
    font-size: 26px;
    cursor: pointer;
    margin: 0;
    justify-content: space-between;
}
.pricestable .trows h2:after {
    content: '';
    background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 8.625L12 15.375L18.75 8.625' stroke='%23FBF9FB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    width: 40px;
    height: 40px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.6s ease;
}
.pricestable .trows.active h2:after {
    transform: scaleY(-1);
}
.pricestable .trows .trow {
    display: none;
}
.pricestable .trows {
    margin-bottom: 20px;
}
.pricestable .trow.thed {
    background: #fbf9fb;
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}
.pricestable .trows.active .trow {
    display: grid;
}
.pricestable .trows .trow .sim {
    background-image: url("data:image/svg+xml,%0A%3Csvg viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M46.875 5.625H13.125C11.1365 5.62717 9.23015 6.41805 7.8241 7.8241C6.41805 9.23015 5.62717 11.1365 5.625 13.125V46.875C5.62717 48.8635 6.41805 50.7699 7.8241 52.1759C9.23015 53.582 11.1365 54.3728 13.125 54.375H46.875C48.8635 54.3728 50.7699 53.582 52.1759 52.1759C53.582 50.7699 54.3728 48.8635 54.375 46.875V13.125C54.3728 11.1365 53.582 9.23015 52.1759 7.8241C50.7699 6.41805 48.8635 5.62717 46.875 5.625ZM17.2929 42.7071C16.9024 42.3166 16.9024 41.6834 17.2929 41.2929L28.5858 30L17.2929 18.7071C16.9024 18.3166 16.9024 17.6834 17.2929 17.2929C17.6834 16.9024 18.3166 16.9024 18.7071 17.2929L30 28.5858L41.2929 17.2929C41.6834 16.9024 42.3166 16.9024 42.7071 17.2929C43.0977 17.6834 43.0977 18.3166 42.7071 18.7071L31.4142 30L42.7071 41.2929C43.0976 41.6834 43.0976 42.3166 42.7071 42.7071C42.3166 43.0976 41.6834 43.0976 41.2929 42.7071L30 31.4142L18.7071 42.7071C18.3166 43.0976 17.6834 43.0976 17.2929 42.7071Z' fill='%23ccc'/%3E%3C/svg%3E%0A");
    width: 60px;
    height: 60px;
}
.pricestable .trow .sim.ok {
    background-image: url("data:image/svg+xml,%0A%3Csvg viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M46.875 5.625H13.125C11.1365 5.62717 9.23015 6.41805 7.8241 7.8241C6.41805 9.23015 5.62717 11.1365 5.625 13.125V46.875C5.62717 48.8635 6.41805 50.7699 7.8241 52.1759C9.23015 53.582 11.1365 54.3728 13.125 54.375H46.875C48.8635 54.3728 50.7699 53.582 52.1759 52.1759C53.582 50.7699 54.3728 48.8635 54.375 46.875V13.125C54.3728 11.1365 53.582 9.23015 52.1759 7.8241C50.7699 6.41805 48.8635 5.62717 46.875 5.625ZM42.6855 21.8309L26.9355 40.5809C26.7628 40.7866 26.5478 40.9529 26.3052 41.0683C26.0626 41.1838 25.798 41.2457 25.5293 41.25H25.4977C25.2348 41.2499 24.975 41.1946 24.735 41.0876C24.4949 40.9806 24.2801 40.8243 24.1043 40.6289L17.3543 33.1289C17.1829 32.9471 17.0495 32.7328 16.9621 32.4987C16.8746 32.2646 16.8349 32.0154 16.8451 31.7658C16.8554 31.5161 16.9154 31.271 17.0218 31.0448C17.1281 30.8187 17.2786 30.6161 17.4643 30.4489C17.6501 30.2818 17.8673 30.1534 18.1034 30.0714C18.3395 29.9894 18.5895 29.9555 18.8389 29.9715C19.0883 29.9876 19.3319 30.0533 19.5555 30.1648C19.7792 30.2764 19.9782 30.4315 20.141 30.6211L25.4484 36.518L39.8145 19.4191C40.1367 19.0466 40.5926 18.8158 41.0836 18.7767C41.5747 18.7375 42.0614 18.8932 42.4386 19.21C42.8157 19.5269 43.0531 19.9794 43.0993 20.4698C43.1455 20.9602 42.9969 21.4491 42.6855 21.8309Z' fill='%2302AB6B'/%3E%3C/svg%3E%0A");
}


.demorules {
    min-height: 100vh;
    padding: 80px 0;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.demorules > .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.demorules > .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}
.demorules .wrap {
    background: #fbf9fb;
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    padding: 40px;
    border-radius: 40px;
    max-width: 660px;
    margin: 0;
    margin-left: 40px;
}
.demorules .wrap h2 {
    font-size: 42px;
    text-align: center;
}


.customs .wn {
    background: #fbf9fb;
    -webkit-box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    border-radius: 40px;
    padding: 40px;
    max-width: 560px;
    font-size: 18px;
}
.customs .wn h2 {
    font-weight: 400;
    font-size: 50px;
    text-align: center;
    line-height: 1.2;
}
.customs .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.prices .section-cards .items {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.prices .section-cards .items .card {
    flex: 0 0 auto;
    width: calc(100% / 3 - 16px);
}
.prices .section-cards .items .card:nth-child(4), .prices .section-cards .items .card:nth-child(5) {
    width: calc(100% / 2 - 12px);
}
.prices .section-cards .items .card p {
    margin-top: 60px;
}
.adnot {
    padding: 40px;
    background: #86368c;
    border-radius: 40px;
    color: #fbf9fb;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.adnot b {
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    display: block;
    margin-bottom: 20px;
}
.adnot p {
    margin: 0 auto;
    max-width: 900px;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
}
.adnot .tel {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.adnot .tel a {
    color: inherit;
    text-decoration: none;
}
.whiteblock .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    box-shadow: 0 0 10px rgba(134, 54, 140, .25);
    border-radius: 40px;
    padding: 40px;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.whiteblock .wrap .txt {
    max-width: 555px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.whiteblock h2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
}
.whiteblock p {
    margin: 0;
    margin-bottom: 20px;
}

.whiteblock .btns .btn {
    margin: 0;
}
.whiteblock .btns {
    width: 100%;
    justify-content: flex-start;
}
.simpleimagetext .wrap .img {
    width: 100%;
    max-width: 500px;
    margin-right: 40px;
}
.simpleimagetext .wrap .right h2 {
    font-size: 60px;
}
.simpleimagetext .wrap .right h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
}
.simpleimagetext .wrap .right p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 19px;
}





.bigtextarticle {}
.bigtextarticle .article {}
.bigtextarticle .article .wrap {
    max-width: 970px;
    text-align: center;
}
.bigtextarticle .article h2 {
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    display: block;
    margin-bottom: 40px;
}
.bigtextarticle .article p {
    margin: 0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 40px;
}
.bigtextarticle .article .img {
    width: 100%;
    box-shadow: 0 0 60px rgba(134, 54, 140, .45);
    overflow: hidden;
    border-radius: 40px;
    margin-bottom: 100px;
}
.bigtextarticle .article .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
        display: block;
 
}
.bigtextarticle .article .img:hover img {
	
	   scale: 1.1;
	   
}
.section-mini.green .wrap.duo {
    background: #02ab6b;
    box-shadow: none;
    color: #fbf9fb;
}
.section-mini .right .img {
    max-width: 500px;
    max-height: 410px;
    margin-left: auto;
}






.faq {}
section.faq .wrap {
    max-width: 890px;
}
.faq .items {}
.faq .faq-item {
    background: #f6eef7;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}
.faq .faq-item .th2 {
    text-align: left;
    padding: 20px 24px;
    border: 0;
    background: 0 0;
    margin-bottom: 0;
    width: 100%;
    position: relative;
    color: #190f19;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    line-height: 1.2;
}
.faq .faq-item .th2:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 8.625L12 15.375L18.75 8.625' stroke='%23190f19' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    width: 40px;
    height: 40px;
    transition: all 0.6s ease;
    display: block;
    background-size: 32px;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 40px;
}
.faq .faq-item.active .th2:after {
	    transform: scaleY(-1);
}
.faq .faq-item .ch2 {
    padding: 20px;
    font-size: 18px;
    display: none;
}
.faq .faq-item.active .ch2 {
	display:block;
}







.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px; 
    margin-bottom: 0;
}
.social a {
    width: 40px;
    height: 40px;
        transition: all ease-in-out .3s;
}
.social a svg {
    max-width: 100%;
    max-height: 100%;
    fill: #fbf9fb;
}
.social a:focus-visible, .social a:hover { 
    transform: scale(1.1);
}

    
.contactscards .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.contactscards .ccitem {
    color: #fbf9fb;
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-radius: 40px; 
    height: 100%;
}
.contactscards .ccitem b {
    display: block;
    font-weight: normal;
    margin-bottom: 20px;
    font-size: 19px;
}
.contactscards .ccitem a {
    margin-bottom: 20px;
    text-decoration: none;
    color: inherit;
    font-size: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}
.contactscards .ccitem svg {
    width: 30px;
    height: 30px;
}
.contactscards .ccitem .sssocs {
    justify-content: center;
    padding-top: 20px;
    margin-top: auto;
    display: flex;
    gap: 10px;
}
section.freeform textarea {
    border-radius: 16px;
    padding: 12px 10px;
    border: 0;
    background: #fbf9fb;
    width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    transition: all ease-in-out .3s;
    min-height: 100px;
    outline: none;
    padding: 10xp 20px;
    font-size: inherit;
}
section.freeform textarea:hover {
	box-shadow: 0 5px 25px rgba(134, 54, 140, .15);
}
.freeform.simp .fieldscol {
    grid-template-columns: 1fr;
}
.innerform.pink {
    background: #f6eef7;
    color: #190f19;
}

.innerform.pink .demoform  b {
    font-size: 25px;
    margin-bottom: 40px;
}





.events {}
.events h2 {
    font-size: 46px;
    line-height: 72px;
    height: 72px;
    text-align: center;
}
.events .eventsitems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.events .eventsitems .ev_item {
    display: block;
    vertical-align: top;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    padding: 10px 24px;
    height: auto;
    aspect-ratio: 510 / 320;
    text-decoration: none;
    color: #fff;
    position: relative;
    max-width: 510px;
}
.events .eventsitems .ev_item .img {
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    object-fit: cover;
    transition: all ease-in-out .3s;
}
.events .eventsitems .ev_item .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out .3s;
}
.events .eventsitems .ev_item:after {
    content: '';
    background: linear-gradient(180deg, rgba(25, 15, 25, 0.3) 0%, rgba(25, 15, 25, 0.65) 100%);
    display: block;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    position: absolute;
    z-index: 0;
    transition: all ease-in-out .3s;
}
.events .eventsitems .ev_item b {
    font-weight: 400;
    color: #FBF9FB;
    z-index: 1;
    text-align: left;
    display: block;
    position: absolute;
    font-size: 22px;
    line-height: 1.3em;
    bottom: 32px;
    left: 24px;
}
.events .eventsitems .ev_item .scht {
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    color: #FBF9FB;
    z-index: 1;
    font-size: 15px;
}
.events .eventsitems .ev_item .scht span {
    display: inline-block;
    vertical-align: top;
    margin-right: 16px;
    padding-left: 0;
}
.events .eventsitems .ev_item .scht .date {}
.events .eventsitems .ev_item .scht .time {}
.events .eventsitems .ev_item .scht .long {}
.events .eventsitems .ev_item .tag {
    color: #190f19;
    font-weight: 400;
    text-align: left;
    background: #02AB6B;
    padding: 0 24px;
    display: inline-block;
    border-radius: 10px;
    z-index: 1;
    position: absolute;
    top: 12px;
    right: 24px;
    font-size: 15px;
    height: 32px;
    line-height: 32px;
}
.events .eventsitems .ev_item ins {}
.events .tabbedevents {}
.events .tabbedevents .tabs {
    margin-bottom: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.events .tabbedevents .tabs a {
    font-weight: 400;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    padding: 0 24px;
    margin: 0 12px;
    color: #190F19;
    background-color: #F6EEF7;
    border-radius: 12px;
    transition: all 0.6s ease;
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    text-decoration: none;
}
.events .tabbedevents .tabs a:hover,
.events .tabbedevents .tabs a.active {
    background-color: #007347;
    color: #fbf9fb;
}
.events .eventsitems .ev_item .scht span:before {
    content: '';
    display: inline-block;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 8px;
    background-size: auto 20px;
    width: 20px;
    height: 25px;
}
.events .eventsitems .ev_item .scht .time:before {
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.99923 6.47227C9.12241 6.35037 9.219 6.20427 9.2829 6.04319C9.34681 5.88211 9.37665 5.70953 9.37054 5.53634C9.36443 5.36315 9.3225 5.1931 9.2474 5.03692C9.1723 4.88074 9.06565 4.74182 8.93419 4.62891C8.2726 4.06428 7.43208 3.75282 6.56231 3.75L6.37071 3.75527H6.34259C4.35919 3.87598 2.81231 5.59863 2.81641 7.67578C2.81641 8.78906 3.28516 9.37852 3.65548 9.8502C3.75939 9.98206 3.88966 10.0908 4.03796 10.1695C4.18627 10.2482 4.34935 10.2951 4.5168 10.3072C4.53204 10.3072 4.55782 10.3102 4.63399 10.3102C4.78462 10.3099 4.93364 10.2792 5.0721 10.2199C5.21055 10.1606 5.33558 10.0739 5.43966 9.96504L8.99923 6.47227ZM23.6594 3.75645L23.4678 3.75059H23.4373C22.5667 3.75285 21.7253 4.06435 21.0631 4.62949C20.9318 4.7424 20.8253 4.88126 20.7503 5.03733C20.6754 5.1934 20.6335 5.36331 20.6274 5.53635C20.6213 5.7094 20.6511 5.88183 20.7148 6.0428C20.7786 6.20378 20.8751 6.3498 20.9981 6.47168L24.5588 9.9668C24.6631 10.0761 24.7885 10.1631 24.9274 10.2225C25.0662 10.2819 25.2157 10.3125 25.3668 10.3125C25.4418 10.3125 25.4676 10.3125 25.484 10.3096C25.6513 10.2974 25.8143 10.2504 25.9625 10.1717C26.1107 10.093 26.2409 9.98434 26.3447 9.85254C26.7174 9.38086 27.1815 8.79316 27.1838 7.67812C27.1873 5.59863 25.6404 3.87598 23.6594 3.75645Z' fill='%23FBF9FB'/%3E%3Cpath d='M15.0055 5.625C9.32189 5.625 4.69299 10.251 4.69299 15.9375C4.69097 18.3485 5.53749 20.6833 7.0842 22.5328L4.96779 24.6498C4.87867 24.7364 4.80765 24.8399 4.75886 24.9541C4.71007 25.0684 4.6845 25.1913 4.68362 25.3155C4.68274 25.4398 4.70657 25.563 4.75373 25.678C4.80089 25.793 4.87044 25.8974 4.95833 25.9853C5.04622 26.0731 5.1507 26.1426 5.26569 26.1897C5.38068 26.2368 5.50389 26.2606 5.62815 26.2597C5.75242 26.2587 5.87525 26.2331 5.98952 26.1843C6.10379 26.1354 6.20721 26.0644 6.29377 25.9752L8.41017 23.8588C10.2607 25.4038 12.5948 26.2501 15.0055 26.2501C17.4161 26.2501 19.7503 25.4038 21.6008 23.8588L23.7178 25.9752C23.8043 26.0644 23.9078 26.1354 24.022 26.1843C24.1363 26.2331 24.2591 26.2587 24.3834 26.2597C24.5077 26.2606 24.6309 26.2368 24.7459 26.1897C24.8609 26.1426 24.9653 26.0731 25.0532 25.9853C25.1411 25.8974 25.2107 25.793 25.2578 25.678C25.305 25.563 25.3288 25.4398 25.3279 25.3155C25.3271 25.1913 25.3015 25.0684 25.2527 24.9541C25.2039 24.8399 25.1329 24.7364 25.0438 24.6498L22.9268 22.5328C24.4737 20.6835 25.3203 18.3486 25.318 15.9375C25.318 10.2539 20.692 5.625 15.0055 5.625ZM15.943 15.9375C15.943 16.1861 15.8442 16.4246 15.6684 16.6004C15.4926 16.7762 15.2541 16.875 15.0055 16.875H10.318C10.0693 16.875 9.83089 16.7762 9.65507 16.6004C9.47926 16.4246 9.38049 16.1861 9.38049 15.9375C9.38049 15.6889 9.47926 15.4504 9.65507 15.2746C9.83089 15.0988 10.0693 15 10.318 15H14.068V9.375C14.068 9.12636 14.1668 8.8879 14.3426 8.71209C14.5184 8.53627 14.7568 8.4375 15.0055 8.4375C15.2541 8.4375 15.4926 8.53627 15.6684 8.71209C15.8442 8.8879 15.943 9.12636 15.943 9.375V15.9375Z' fill='%23FBF9FB'/%3E%3C/svg%3E%0A");
}
.events .eventsitems .ev_item .scht .date:before {
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.125 7.49998C28.125 6.50541 27.7299 5.55159 27.0266 4.84832C26.3234 4.14506 25.3696 3.74998 24.375 3.74998H23.4375V2.83884C23.4375 2.33435 23.0496 1.90134 22.5451 1.87615C22.4184 1.87004 22.2917 1.88973 22.1728 1.93403C22.0538 1.97833 21.9451 2.04631 21.8533 2.13386C21.7614 2.2214 21.6882 2.32669 21.6383 2.44334C21.5883 2.55999 21.5625 2.68557 21.5625 2.81248V3.74998H8.4375V2.83884C8.4375 2.33435 8.04961 1.90134 7.54512 1.87615C7.41836 1.87004 7.29168 1.88973 7.17276 1.93403C7.05383 1.97833 6.94514 2.04631 6.85327 2.13386C6.76139 2.2214 6.68825 2.32669 6.63827 2.44334C6.58829 2.55999 6.56251 2.68557 6.5625 2.81248V3.74998H5.625C4.63044 3.74998 3.67661 4.14506 2.97335 4.84832C2.27009 5.55159 1.875 6.50541 1.875 7.49998V8.2031C1.875 8.26526 1.89969 8.32488 1.94365 8.36883C1.9876 8.41278 2.04721 8.43748 2.10938 8.43748H27.8906C27.9528 8.43748 28.0124 8.41278 28.0564 8.36883C28.1003 8.32488 28.125 8.26526 28.125 8.2031V7.49998ZM1.875 24.375C1.875 25.3695 2.27009 26.3234 2.97335 27.0266C3.67661 27.7299 4.63044 28.125 5.625 28.125H24.375C25.3696 28.125 26.3234 27.7299 27.0266 27.0266C27.7299 26.3234 28.125 25.3695 28.125 24.375V10.4883C28.125 10.4416 28.1065 10.3969 28.0735 10.364C28.0405 10.331 27.9958 10.3125 27.9492 10.3125H2.05078C2.00416 10.3125 1.95945 10.331 1.92649 10.364C1.89352 10.3969 1.875 10.4416 1.875 10.4883V24.375ZM22.0312 12.1875C22.3094 12.1875 22.5813 12.2699 22.8125 12.4245C23.0438 12.579 23.224 12.7986 23.3305 13.0556C23.4369 13.3125 23.4647 13.5953 23.4105 13.8681C23.3562 14.1409 23.2223 14.3914 23.0256 14.5881C22.829 14.7848 22.5784 14.9187 22.3056 14.973C22.0328 15.0272 21.7501 14.9994 21.4931 14.8929C21.2361 14.7865 21.0165 14.6063 20.862 14.375C20.7075 14.1437 20.625 13.8719 20.625 13.5937C20.625 13.2208 20.7732 12.8631 21.0369 12.5994C21.3006 12.3356 21.6583 12.1875 22.0312 12.1875ZM22.0312 16.875C22.3094 16.875 22.5813 16.9575 22.8125 17.112C23.0438 17.2665 23.224 17.4861 23.3305 17.7431C23.4369 18 23.4647 18.2828 23.4105 18.5556C23.3562 18.8284 23.2223 19.0789 23.0256 19.2756C22.829 19.4723 22.5784 19.6062 22.3056 19.6605C22.0328 19.7147 21.7501 19.6869 21.4931 19.5804C21.2361 19.474 21.0165 19.2938 20.862 19.0625C20.7075 18.8312 20.625 18.5594 20.625 18.2812C20.625 17.9083 20.7732 17.5506 21.0369 17.2869C21.3006 17.0231 21.6583 16.875 22.0312 16.875ZM17.3438 12.1875C17.6219 12.1875 17.8938 12.2699 18.125 12.4245C18.3563 12.579 18.5365 12.7986 18.643 13.0556C18.7494 13.3125 18.7772 13.5953 18.723 13.8681C18.6687 14.1409 18.5348 14.3914 18.3381 14.5881C18.1415 14.7848 17.8909 14.9187 17.6181 14.973C17.3453 15.0272 17.0626 14.9994 16.8056 14.8929C16.5486 14.7865 16.329 14.6063 16.1745 14.375C16.02 14.1437 15.9375 13.8719 15.9375 13.5937C15.9375 13.2208 16.0857 12.8631 16.3494 12.5994C16.6131 12.3356 16.9708 12.1875 17.3438 12.1875ZM17.3438 16.875C17.6219 16.875 17.8938 16.9575 18.125 17.112C18.3563 17.2665 18.5365 17.4861 18.643 17.7431C18.7494 18 18.7772 18.2828 18.723 18.5556C18.6687 18.8284 18.5348 19.0789 18.3381 19.2756C18.1415 19.4723 17.8909 19.6062 17.6181 19.6605C17.3453 19.7147 17.0626 19.6869 16.8056 19.5804C16.5486 19.474 16.329 19.2938 16.1745 19.0625C16.02 18.8312 15.9375 18.5594 15.9375 18.2812C15.9375 17.9083 16.0857 17.5506 16.3494 17.2869C16.6131 17.0231 16.9708 16.875 17.3438 16.875ZM17.3438 21.5625C17.6219 21.5625 17.8938 21.645 18.125 21.7995C18.3563 21.954 18.5365 22.1736 18.643 22.4306C18.7494 22.6875 18.7772 22.9703 18.723 23.2431C18.6687 23.5159 18.5348 23.7664 18.3381 23.9631C18.1415 24.1598 17.8909 24.2937 17.6181 24.348C17.3453 24.4022 17.0626 24.3744 16.8056 24.2679C16.5486 24.1615 16.329 23.9813 16.1745 23.75C16.02 23.5187 15.9375 23.2469 15.9375 22.9687C15.9375 22.5958 16.0857 22.2381 16.3494 21.9744C16.6131 21.7106 16.9708 21.5625 17.3438 21.5625ZM12.6562 16.875C12.9344 16.875 13.2063 16.9575 13.4375 17.112C13.6688 17.2665 13.849 17.4861 13.9555 17.7431C14.0619 18 14.0897 18.2828 14.0355 18.5556C13.9812 18.8284 13.8473 19.0789 13.6506 19.2756C13.454 19.4723 13.2034 19.6062 12.9306 19.6605C12.6578 19.7147 12.3751 19.6869 12.1181 19.5804C11.8611 19.474 11.6415 19.2938 11.487 19.0625C11.3325 18.8312 11.25 18.5594 11.25 18.2812C11.25 17.9083 11.3982 17.5506 11.6619 17.2869C11.9256 17.0231 12.2833 16.875 12.6562 16.875ZM12.6562 21.5625C12.9344 21.5625 13.2063 21.645 13.4375 21.7995C13.6688 21.954 13.849 22.1736 13.9555 22.4306C14.0619 22.6875 14.0897 22.9703 14.0355 23.2431C13.9812 23.5159 13.8473 23.7664 13.6506 23.9631C13.454 24.1598 13.2034 24.2937 12.9306 24.348C12.6578 24.4022 12.3751 24.3744 12.1181 24.2679C11.8611 24.1615 11.6415 23.9813 11.487 23.75C11.3325 23.5187 11.25 23.2469 11.25 22.9687C11.25 22.5958 11.3982 22.2381 11.6619 21.9744C11.9256 21.7106 12.2833 21.5625 12.6562 21.5625ZM7.96875 16.875C8.24688 16.875 8.51876 16.9575 8.75002 17.112C8.98128 17.2665 9.16152 17.4861 9.26796 17.7431C9.37439 18 9.40224 18.2828 9.34798 18.5556C9.29372 18.8284 9.15979 19.0789 8.96312 19.2756C8.76645 19.4723 8.51588 19.6062 8.2431 19.6605C7.97031 19.7147 7.68756 19.6869 7.4306 19.5804C7.17364 19.474 6.95402 19.2938 6.7995 19.0625C6.64498 18.8312 6.5625 18.5594 6.5625 18.2812C6.5625 17.9083 6.71066 17.5506 6.97438 17.2869C7.2381 17.0231 7.59579 16.875 7.96875 16.875ZM7.96875 21.5625C8.24688 21.5625 8.51876 21.645 8.75002 21.7995C8.98128 21.954 9.16152 22.1736 9.26796 22.4306C9.37439 22.6875 9.40224 22.9703 9.34798 23.2431C9.29372 23.5159 9.15979 23.7664 8.96312 23.9631C8.76645 24.1598 8.51588 24.2937 8.2431 24.348C7.97031 24.4022 7.68756 24.3744 7.4306 24.2679C7.17364 24.1615 6.95402 23.9813 6.7995 23.75C6.64498 23.5187 6.5625 23.2469 6.5625 22.9687C6.5625 22.5958 6.71066 22.2381 6.97438 21.9744C7.2381 21.7106 7.59579 21.5625 7.96875 21.5625Z' fill='%23FBF9FB'/%3E%3C/svg%3E%0A");
}
.events .eventsitems .ev_item .scht .long:before {
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 2.8125C8.26934 2.8125 2.8125 8.26934 2.8125 15C2.8125 21.7307 8.26934 27.1875 15 27.1875C21.7307 27.1875 27.1875 21.7307 27.1875 15C27.1875 8.26934 21.7307 2.8125 15 2.8125ZM20.625 16.875H15C14.7514 16.875 14.5129 16.7762 14.3371 16.6004C14.1613 16.4246 14.0625 16.1861 14.0625 15.9375V7.5C14.0625 7.25136 14.1613 7.0129 14.3371 6.83709C14.5129 6.66127 14.7514 6.5625 15 6.5625C15.2486 6.5625 15.4871 6.66127 15.6629 6.83709C15.8387 7.0129 15.9375 7.25136 15.9375 7.5V15H20.625C20.8736 15 21.1121 15.0988 21.2879 15.2746C21.4637 15.4504 21.5625 15.6889 21.5625 15.9375C21.5625 16.1861 21.4637 16.4246 21.2879 16.6004C21.1121 16.7762 20.8736 16.875 20.625 16.875Z' fill='%23FBF9FB'/%3E%3C/svg%3E%0A");
}
.events .eventsitems .ev_item:hover .img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.events .eventsitems .ev_item:hover:after {
    opacity: 0.6;
}






.blogitems {}
.blogitems .blogsnav {
    overflow: auto;
    padding-top: 10px;
    margin-bottom: 80px;
}
.blogitems .blogsnav .newstags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.blogitems .blogsnav .newstags li:before {display:none;}
.blogitems .blogsnav .newstags li {
    margin: 0;
}
.blogitems .blogsnav .newstags li.active {}
.blogitems .blogsnav .newstags li a {
    padding: 12px 20px;
    background: #f6eef7;
    color: #190f19;
    font-size: 15px;
    transition:all 0.6s ease;
}
.blogitems .blogsnav .newstags li:hover a {
        background: #85c3ff;
        color: #fbf9fb;
        transform: translateY(-7px);
}
.blogitems .blogsnav .newstags li.active a {
	background: #86368c;
    color: #fbf9fb;
}

.blogitems .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blogitems .items .blog-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(25, 15, 25, .15);
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: #121212;
}
.blogitems .items .blog-item .img {
    object-fit: cover;
    height: 250px;
}
.blogitems .items .blog-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogitems .items .blog-item .inf {
    display: flex;
    gap: 12px;
    flex-direction: column;
    padding: 20px;
}
.blogitems .items .blog-item .inf .title {
    font-size: 17px;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    height: 44px;
}
.blogitems .items .blog-item .inf .text {
    font-size: 15px;
    margin-bottom: 10px; 
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    height: 40px;
}
.blogitems .items .blog-item .inf .footr {}
.blogitems .items .blog-item .inf .date {
    font-size: 11px;
    font-style: italic;
}
.blogitems .items .blog-item .inf .readMore {
    color: #86368c;
    position: relative;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
    font-size: 17px;
    background: linear-gradient(0deg, #86368c, #86368c) no-repeat right bottom / 0 1px;
    transition: background-size .3s;
}
.blogitems .items .blog-item .inf .readMore:hover {
    background-size: 100% 1px;
    background-position-x: left;
    width: auto;
}
.blogitems .items .blog-item .inf .readMore:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.375 8.75L25.625 20L14.375 31.25' stroke='%2386368c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    width: 20px;
    height: 20px;
    display: block;
    transition: all 0.6s ease;
}
.blogitems .items .blog-item .inf .footr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blogitem .aboutpromo h1 {
    text-align: center;
    max-width: 990px;
}

.article .wrap {
    max-width: 980px;
}
.article article h2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
}
.article article h3 {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
}


.btn.btn-pink {
    color: #190f19;
    background: #f6eef7;
}
.btn.btn-pink:hover {
    background: #85c3ff;
    color: #fbf9fb;
    transform: translateY(-7px);
}

.articlecontrols .btn {
    transition: all 0.6s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.articlecontrols {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.articlecontrols .btn-pink svg {
    transform: rotate(90deg);
}
.articlecontrols .btn-violet svg {
    transform: rotate(-90deg);
}


article a {
    color: #86368c;
    background: linear-gradient(0deg, #86368c, #86368c) no-repeat right bottom / 0 2px;
    transition: background-size .3s;
    background-size: 100% 2px;
    text-decoration: none;
}
article a:hover {
    background-size: 0 2px;
    background-position-x: right;
}

.section-marviclients li:before {display:none !important;}


.pricestable .trows .trow .sim.val {
    background: none;
    font-size: 25px;
    text-align: center;
}



.aboutpromo ul li:before {display:none;}
.aboutpromo ul li {
    display: block;
}
section.modulespromo .left .btns { 
    margin-top: 24px;
}

section.modulespromo .right img {
    position: absolute;
    transition: all 0.6s ease;
    opacity: 0;
}
section.modulespromo .right img.active {
    
    opacity: 1;
}
section.modulespromo .left h1 { 
    font-size: 44px;
    line-height: 1; 
}
section.modulespromo .left .intro {
    font-size: 22px;
    padding-right: 24px;
}

.sec_home_3 ul li {
    flex-wrap: wrap;
}
.sec_home_3 ul li ul {
    padding-left: 24px;
}

.home .sec_home_3 ul li {
    flex-wrap: nowrap;
}
.section-marviclients li.hidden {
    display: none;
}



.newscontainer .items .newsitem .img {
    height: 220px;
    overflow: hidden;
}
.newscontainer .items .newsitem img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: all ease-in-out .3s;
}

.newscontainer .items .newsitem:hover img {
-webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
}
.blogitems .blogsnav .newstags li a {
background: #f6eef7;
    color: #190f19;
}
.blogitems .blogsnav .newstags li.active a {
    color: #fbf9fb;
    background: #86368c;
}
.events .eventsitems .ev_item .tag {
    text-transform: capitalize;
    color: #fff;
}

.events .eventsitems .ev_item.ev_item_mini {
    max-width: 330px;
    width: 100%;
    padding: 0;
    border: 1px solid #FBF9FB;
    box-shadow: 0px 0px 5px 0px #190F1926;
    height: auto;
    aspect-ratio: unset;
}
.events .eventsitems .ev_item.ev_item_mini .img {
    height: 250px;
    position: relative;
    width: 100%;
}
.events .eventsitems .ev_item.ev_item_mini::after {display:none;}

.events .eventsitems .ev_item.ev_item_mini .descr {
    padding: 20px 24px;
    height: auto;
}
.events .eventsitems .ev_item.ev_item_mini .descr b {
    display: block;
    height: 62px;
    overflow: hidden;
    font-size: 26px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
    color: #131313;
    position: relative;
    bottom: 0;
    left: 0;
    padding: 0;
}
.events .eventsitems .ev_item.ev_item_mini .scht .date {
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    text-align: left;
    display: block;
    line-height: 32px;
    color: #190F19;
}
.events .eventsitems .ev_item.ev_item_mini .scht .link {
    font-weight: 400;
    text-align: left;
    color: #86368C;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    text-decoration: none;
    display: flex;
        gap: 2px;
    align-items: center;
}
.events .eventsitems .ev_item.ev_item_mini .scht .link i {
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 13L6.625 7.375L1 1.75' stroke='%2386368C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    width: 24px;
    height: 32px;
    display: block;
    background-size: contain;
    background-size: 6px auto;
    background-position: center 10px;
    background-repeat: no-repeat;
}
.events .eventsitems .ev_item.ev_item_mini .scht {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-right: 20px;
}
.events .eventsitems .ev_item.ev_item_mini .scht .link span {
    margin: 0;
}
.webinar .intro .btn {
    margin-top: 8px;
    display: inline-flex;
}


.scrolledW.scrolled header {
    transform: translateY(-64px);
}
.scrolledW.scrolled.scroll-up header {
    transform: none;
} 
 
.section-marviclients .more { 
    justify-content: center;
}

.optical .sec_home_3 ul li {
    flex-wrap: nowrap;
}
.sec_home_3.texter ul li {
    flex-wrap: nowrap;
}

.blogitem ul.ok li p {
    margin: 0;
}
#chatButton {
    position: fixed;
    left: 40px;
    bottom: 40px;
    z-index: 9;
    width: 80px;
    height: 80px;
    border: 0;
    background: 0 0;
    cursor: pointer;
}
.modaled {
    overflow: hidden;
    height: 100vh;
    height: 100svh;
}
.modal {
    width: 100%;
    height: 100vh;
    height: 100svh; 
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.6s ease;
    transform: scale(0);
    pointer-events: none;
    opacity: 0;
    background: #0000002e;
	display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.modal.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}
.modal .win {
    padding: 80px 80px 40px;
    background: #f6eef7;
    border: 0;
    border-radius: 40px;
    transition: all 0.6s ease;
    transform: rotate3d(1, 1, 0, 90deg);
    opacity: 0;
    width: 90%;
    max-width: 700px;
}
.modal.visible .win {
    transform: none;
    opacity: 1;
}
.modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    cursor: pointer;
}
.modal .close svg {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    transition: all 0.6s ease;
}
.modal .close:hover svg {
    opacity: 0.7;
}
.demoform .fieldsrow .fieldscol.single {
    grid-template-columns: 1fr;
}
.demoform .fieldsrow .fieldscol textarea {
    border-radius: 16px;
    padding: 12px 10px;
    border: 0;
    background: #fbf9fb;
    width: 100%;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    min-height: 50px;
    outline: none;
    padding: 0 20px;
    font-size: inherit;
    height: 80px;
    padding: 10px;
    resize: none;
}
.footerinf b, .footernav b, .demoform b { 
    text-align: center;
}
input.phone.error {
    border: 1px solid #cc00004d !important;
    box-shadow: 0px 0px 8px -2px #cc0000;
}



.colorcards .items .item p { 
    font-size: 17px;
}
.colorcards .items .item h3 { 
    font-size: 32px;
    line-height: 1.2;
}
.demoform .fieldsrow .fieldscol.btns {
    flex-direction: column;
}
span.err {
    color: #cc0000;
    font-size: 15px;
}
span.okey {
    color: #86368c;
    font-size: 19px;
}


.separateform span.err, .innerform.red span.err {
    color: #fff;
}
.separateform span.okey, .innerform.red span.okey {
    color: #fff;
}
.contacts .separateform span.err, .contacts .innerform.red span.err {
	color: #cc0000;
}
.contacts .separateform span.okey, .contacts .innerform.red span.okey {
	color: #86368c;
}
