html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
     scroll-behavior: smooth;
}
body {
	line-height: 1.3;
	font-family: Helvetica, sans-serif;
	color:var(--gray-1);
   
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

::-webkit-scrollbar {
  width: 16px;
}
 
::-webkit-scrollbar-track {
  background-color: #4E72B5;
}
 
::-webkit-scrollbar-thumb {
  background-color: white;
  
}



:root {
  --blue-1: #4E72B5;
  --blue-2: #454683;
  --gray-1: #747474;
  --gray-2: #F2F2F2;
} 

section {
	position: relative;
   
}
a {
	text-decoration: none;
	transition: 0.3s;
}
.container {
	max-width: 1240px;
	padding: 0 20px;
	margin: auto;
}
p {
	font-size: 16px;
	color: var(--gray-1);
	margin-bottom: 16px;
}
#header {
	padding: 24px 0;
	position: fixed;
	top:-100px;
	width: 100%;
	transition: 0.3s ease;
	z-index: 100;
	 -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(0,0,0,0);
}

#header #mob-burger {
    position: absolute;
    height: 14px;
    width: 24px;
    display: none;
}
#header #mob-burger span {
    width: 24px;
    height: 2px;
    background-color: var(--blue-1);
    transition: 0.3s;
    position: absolute;
}
#header.header-scrolled #mob-burger span {
    background-color: white;
}
#header #mob-burger.active span:nth-child(1)  {
      transform: rotate(-45deg);
      top:6px;
}
#header #mob-burger.active span:nth-child(3)  {
      transform: rotate(45deg);
      top:6px;
}
#header #mob-burger.active span:nth-child(2)  {
  opacity: 0;
}
#header #mob-burger span:nth-child(1) {
    top:0;
}
#header #mob-burger span:nth-child(2) {
    top:6px;
}
#header #mob-burger span:nth-child(3) {
    bottom: 0;
}
#header.appeared {
    top:0px;
}
#header.header-scrolled {
	background-color: var(--blue-1);
}
#header.header-scrolled .logo {
        filter: grayscale(1) brightness(4.5);
}
#header .container {
	     display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 48px;
}

#header .logo {
	width: 120px;
    height: auto;
    transition: 0.3s ease;
    position: relative;
}
.logo-wrap {
    position: relative;
    height: 42px;
    display: flex;
}

.logo-wrap > span {
        position: absolute;
    font-size: 12px;
    width: 170px;
    right: -191px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    border-left: 1px solid var(--blue-1);
    padding-left: 10px;
    text-transform: uppercase;
    transition: 0.3s ease;
}
 
#header.header-scrolled .logo-wrap > span {
    color:white;
    border-left: 1px solid white;
}
.logo-wrap img:nth-child(2) {
        width: 20px;
    position: absolute;
    right: 0px;
    top: 3px;
}
#header #menu {
	display: flex;
    gap: 24px;
}

#header #menu a {
	text-transform: uppercase;
	color: var(--gray-1);
	position: relative;
	font-size: 14px;

}
#header.header-scrolled #menu a {
    color:white;
}
#header.header-scrolled #menu a:hover {
    color:white;

}
#header.header-scrolled #menu a:hover:before {
   background-color:white;
    
}
#header #menu a:before {
	    content: '';
    transition: 0.3s;
    opacity: 0;
    width: 8px;
    height: 8px;
    background-color: var(--blue-1);
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
}
#header #menu a:hover {
	color:var(--blue-1) ;
}
#header #menu a:hover:before {
	opacity: 1;
	top: -13px;
}
#screen-1 {
	height: 100vh;
	background: #E2E3E5;
background: linear-gradient(90deg,rgba(226, 227, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(224, 225, 227, 1) 100%);
overflow: hidden;
}
#screen-1 img:nth-child(1) {
	    height: 80%;
    left: 15px;
    position: absolute;
    right: 0;
    margin: 0 auto;
   z-index: 2;
    bottom: 0px;
    transform: scale(0) translateY(-90px);
    transition: 0.5s;
}
#screen-1 img:nth-child(1).appeared {
transform: scale(1) translateY(-90px);
}

#screen-1 img:nth-child(3) {
height: 100px;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    left: -555px;
     z-index: 2;
     transition: 0.5s ease;
}
#screen-1 img:nth-child(3).appeared {
     left: calc(50% - 555px);
}
#screen-1 img:nth-child(2) {
       height: 130px;
    position: absolute;
    bottom: 0;
    top: -26px;
    right:-590px;
    margin: auto;
    transition: 0.7s ease;
     z-index: 2;
}


#screen-1 .decor-circle-1, #screen-1 .decor-circle-2, #screen-1 .decor-circle-3, #screen-1 .decor-circle-4 {
    opacity: 0;
    transition: 0.5s ease;
}

#screen-1 .decor-circle-1.appeared, #screen-1 .decor-circle-2.appeared, #screen-1 .decor-circle-3.appeared, #screen-1 .decor-circle-4.appeared {
    opacity: 1;
}

#screen-1 img:nth-child(2).appeared {
       right: calc(50% - 590px);
}
#screen-1 .decor-circle-1 {
        width: 400px;
    height: 400px;
    position: absolute;
    background-color: white;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    z-index: 0;
    animation: screen-1-decor-circle-1 10s ease infinite ;
}

@keyframes screen-1-decor-circle-1 {
    0% {
        transform: scale(1);
    }
    50% {
       transform: scale(1.2); 
    }
    100% {
         transform: scale(1);
    }
}

#screen-1:after {
	    content: '';
    width: 400px;
    position: absolute;
    bottom: -200px;
    background-color: white;
    height: 300px;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 50%;
    max-width: 100%;
}

b {
	color:var(--blue-1);
}

.text-18 {
	font-size: 18px;
	color:var(--gray-1);

}
.text-18:before {
	    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--blue-1);
    border-radius: 50%;
    position: absolute;
    left: -19px;
    top:8px;
}
#screen-1 .text-18:nth-child(4) {
    max-width: 500px;
    top: 250px;
    position: absolute;
    left: 10%;
    text-align: justify;
     z-index: 2;
     transition: 0.5s ease;
     opacity: 0;
}
#screen-1 .text-18:nth-child(4).appeared {
    opacity: 1;
    top: 200px;
}
#screen-1 .text-18:nth-child(5) {
	    max-width: 420px;
    bottom: 150px;
    position: absolute;
    right: 10%;
    text-align: justify;
    z-index: 2;
      transition: 0.5s ease;
     opacity: 0;
}
#screen-1 .text-18:nth-child(5).appeared {
    opacity: 1;
    bottom: 200px;
}



.button-1 {
	transition: 0.3s;
	color:white;
	background-color: var(--blue-1);
	text-transform: uppercase;
}

.button-1:hover {
	background-color: var(--blue-2);
}

#screen-1 .button-1 {
	    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    width: fit-content;
    bottom: 30px;
    z-index: 1;
    padding: 8px 24px;
    border-radius: 24px;
    font-size:14px;
    box-shadow: rgb(226, 226, 226) 0px 0px 10px;
    transition: 0.5s ease;
    opacity: 0;
}
#screen-1 .button-1.appeared {
  opacity: 1;
}
.button-1:after {
        content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    -webkit-animation: shine 3s ease-in-out infinite;
    animation: button-shine 3s ease-in-out infinite;
}

@keyframes button-shine {
    0% {
    left: -100%;
    transition-property: left;
}
10% {
    left: 100%;
    transition-property: left;
}
100% {
    left: 100%;
    transition-property: left;
}
}





#screen-1-2 {
    padding-top: 96px;
}

#screen-1-2 .container {
    display: flex;
    gap:24px;
}

#screen-1-2 .container .item {
    padding: 20px;
    background-color: var(--blue-1);
    border-radius: 16px;
    color: white;
    flex: 20%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* justify-content: space-between; */
    gap: 16px;
    font-size: 15px;
}

#screen-1-2 .container .item span:nth-child(1) {
        width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: white;
    color: var(--blue-1);
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

#screen-1-2 .container .item span:nth-child(2) {

}









#screen-2 {

	padding: 96px 0;
}

#screen-2-grid {
	display: grid;
    grid-template-columns: auto;
    grid-template-rows: repeat(3 , 295px);
    grid-gap: 24px;
}
#screen-2-grid  img {
	position: absolute;
	transition:0.3s ease;
}



#screen-2-grid .item {
	background-color: var(--gray-2);
	border-radius: 24px;
	position: relative;
	overflow: hidden;
}
#screen-2-grid .item span {
	transition:0.3s ease;
}
#screen-2-grid .item:hover span {
	color: var(--blue-1) !important;
}
#screen-2-grid .item:hover img {
	transform: scale(1.1);
}
#screen-2-grid .item:nth-child(1) {
	    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

#screen-2-grid .item:nth-child(1) img {
	     bottom: 0;
    left: -25px;
    right: 0;
    margin: auto;
    height: 90%;
}

#screen-2-grid .item:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

#screen-2-grid .item:nth-child(2) img {
	    right: 0;
    margin: auto;
    bottom: 0;
    width: 100%;

}
#screen-2-grid .item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
#screen-2-grid .item:nth-child(3) img {
	    margin: auto;
    
    right: 0;
    bottom: 0;
    height: 90%;
}

#screen-2-grid .item:nth-child(4) {
 grid-column: 3 / 4;
    grid-row: 2 / 3;
}

#screen-2-grid .item:nth-child(4) img {
	left: 0;
	right: 0;
	margin: auto;
	height: 100%;
}
#screen-2-grid .item:nth-child(5) {
 grid-column: 1 / 3;
    grid-row: 3 / 4;
}

#screen-2-grid .item:nth-child(5) img {
width: 100%;
    height: 100%;
    object-fit: cover;
}

#screen-2-grid .item:nth-child(6) {
		 grid-column: 3 / 4;
    grid-row: 3 / 4;
}
#screen-2-grid .item:nth-child(6) img {
	    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    width: 125px;
}

#screen-2-grid .item span:nth-child(2) {
color: var(--gray-1);
    font-size: 26px;
    line-height: 1.1;
    position: absolute;
}

#screen-2-grid .item span:nth-child(3) {
	font-size: 20px;
    color: var(--gray-1);
     position: absolute;
}

#screen-2-grid .item:nth-child(2)  span:nth-child(2) {
    left: 48px;
    top: 48px;
}

#screen-2-grid .item:nth-child(2)  span:nth-child(3) {
	left: 48px;
    top: 124px;

}

#screen-2-grid .item:nth-child(3)  span:nth-child(2) {
    left: 48px;
    top: 48px;
}

#screen-2-grid .item:nth-child(3)  span:nth-child(3) {
	left: 48px;
    top: 154px;

}

#screen-2-grid .item:nth-child(5)  span:nth-child(2) {
    left: 48px;
    top: 48px;
}

#screen-2-grid .item:nth-child(5)  span:nth-child(3) {
	left: 48px;
    top: 124px;

}

#screen-2-grid .item:nth-child(6)  span:nth-child(2) {
    left: 0px;
    right:0;
    bottom: 60px;
    margin: auto;
    height: fit-content;
    text-align: center;
    max-width: 230px;
}

#screen-2-grid .item:nth-child(6)  span:nth-child(3) {
	    left: 0;
    bottom: 24px;
    right: 0;
    margin: auto;
    width: fit-content;

}

#screen-3 {
	height: 600px;
	    background: #E2E3E5;
    background: linear-gradient(90deg, rgba(226, 227, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(224, 225, 227, 1) 100%);
}

#screen-3 img {
	position: absolute;
	right: 0;
	bottom: 0;
}

#screen-3 .container {
	height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
#screen-3 .decor-circle-2 {
        top: 0;
    bottom: 0;
    margin: auto;
    left: -100px;
}
#screen-3 .wrap {
	    display: flex;
    flex-direction: column;
    gap: 12px;
    height: auto;
}
#screen-3 .wrap .item {
	color:var(--gray-1);
}
#screen-3 .wrap .item:nth-child(1) {
	font-size: 32px;
}

#screen-3 .wrap .item:nth-child(2) {
	    display: flex;
    align-items: center;
    gap: 12px;
}

#screen-3 .wrap .item:nth-child(2) span:nth-child(1) {
	    font-size: 24px;
}

#screen-3 .wrap .item:nth-child(2) span:nth-child(2) {
	       font-size: 64px;
    color: var(--blue-1);
    font-weight: 300;
}

#screen-3 .wrap .item:nth-child(3) {
	    font-size: 32px;
	        font-weight: 300;
}

#screen-3 .wrap .item:nth-child(3) b {
	
}

#screen-4 {
	padding: 96px 0;
}

#screen-4 .container {
display: flex;
    flex-direction: row;
    gap: 64px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#screen-4 .container .item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    flex: 17%;
        max-width: 240px;
}

#screen-4 .container .item img {

}

#screen-4 .container .item span {
text-align: center;
    line-height: 24px;
}


#screen-5 {
    background: #E2E3E5;
    background: linear-gradient(90deg, rgba(226, 227, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(224, 225, 227, 1) 100%);
    padding: 96px 0 0 0;
}
#screen-5 h2 {
        background: linear-gradient(90deg, rgba(242, 242, 242, 1) 0%, rgba(215, 1, 37, 1) 0%, rgba(219, 165, 116, 1) 32%, rgba(182, 182, 182, 1) 51%, rgba(229, 179, 242, 1) 68%, rgba(139, 166, 200, 1) 81%, rgba(50, 120, 208, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* width: 100%; */
    margin: auto;
    font-weight: 300;
    font-size: 48px;
    padding: 0;
}
h2 {
	text-transform: uppercase;
    color: white;
    padding: 6px 12px;
    width: fit-content;
    background: #4E72B5;
    background: linear-gradient(90deg, rgba(78, 114, 181, 1) 0%, rgba(69, 70, 131, 1) 100%);
    margin-bottom: 36px;
}
#colors-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin: 96px 0 64px 0;
    align-items: center;
    justify-content: center;
}

#colors-list .item {
	    background-color: white;
    border-radius: 24px;
    width: fit-content;
    padding: 8px 16px 8px 36px;
    opacity: 0.3;
    box-shadow: 0px 0px 10px #e2e2e2;
    cursor: pointer;
    transition:0.3s;
    position: relative;
}

#colors-list .item:before {
	content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: red;
    left: 12px;
    top: 0;
    bottom: 0px;
    margin: auto;
}

#colors-list .item.visible {
	opacity: 1;
}

#colors-list .item#color-item-1:before {
	background-color: #f2f2f2;
}
#colors-list .item#color-item-2:before {
	background-color: #d70125;
}
#colors-list .item#color-item-3:before {
	background-color: #dba574;
}
#colors-list .item#color-item-4:before {
	background-color: #b6b6b6;
}
#colors-list .item#color-item-5:before {
	background-color: #e5b3f2;
}
#colors-list .item#color-item-6:before {
	background-color: #8ba6c8;
}
#colors-list .item#color-item-7:before {
	background-color: #3278d0;
}

#colors-images {
	display: flex;
    flex-direction: row;
        gap: 36px;
            justify-content: center;
}

#colors-images img {
	    width: 60px;
	    transition: 0.3s ease;
	    opacity: 0.3;
}

#colors-images img.visible {
	opacity: 1;
}

#screen-6 {
	padding: 96px 0;
}
#screen-6 .decor-circle-3 {
    right: 100px;
    top: 100px;
}
#screen-6 .container {
	display: flex;
    flex-direction: column;
   
}
#screen-6 .container .double-section:nth-child(2) {
	margin-bottom: 64px;
}
.double-section {
	display: flex;
	flex-direction: row;
	gap:48px;
	align-items: center;
}
.double-section .left {
	flex:45%;
}

.double-section .right {
flex:45%;
}
.double-section .right img {
	width: 100%;
	border-radius: 24px;
}

.double-section .left img {
	width: 100%;
	border-radius: 24px;
}


ul li {
	    position: relative;
    margin-bottom: 16px;
    padding-left: 16px;
}

ul li:before {
	    content: '';
    transition: 0.3s;
    width: 8px;
    height: 8px;
    background-color: var(--blue-1);
    border-radius: 50%;
    position: absolute;
    left: 0;

    margin: auto;
    top: 6px;
}

#screen-7 {
	    background: #E2E3E5;
    background: linear-gradient(90deg, rgba(226, 227, 229, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(224, 225, 227, 1) 100%);
    padding: 96px 0;
}

#screen-7 .container {
	display: flex;
    flex-direction: column;

}
#screen-7 .container .double-section:nth-child(2) {
	margin-bottom: 64px;
}
#screen-7 .decor-circle-4 {
    left: -100px;
    bottom: 50px;
}
#screen-8 {
	padding: 96px 0;
}

#screen-8 .scanner-wrap-section {
	display: flex;
	flex-direction: row;
	gap:24px;
}

#screen-8 .scanner-wrap-section .left {
	width:800px;
    height: 640px;
}

#screen-8 .scanner-wrap-section .right {
	flex:30%;
}
#screen-8 .scanner-wrap-section .right thead tr th:nth-child(1) {
    background-color: var(--gray-2);
}

#screen-8 .scanner-wrap-section .right thead tr th:nth-child(2) {
    background-color: var(--blue-1);
    color:white;
}

#screen-8 .scanner-wrap-section .right th {
	padding: 8px 12px;
    text-align: left;
}

#screen-8 .scanner-wrap-section .right td {
	padding: 8px 12px;
    text-align: left;
        vertical-align: middle;
        border: 1px solid var(--gray-2);
        font-size: 14px;
}

#screen-8 .scanner-wrap-section .right tbody tr:nth-child(odd) {

}

#screen-8 .scanner-wrap-section .right tbody tr:nth-child(even) {
	background-color: var(--gray-2);
}

#screen-8 .scanner-wrap-section .right tbody tr:nth-child(even) td {
	border: 1px solid white;
}

#screen-8 .scanner-wrap {
	    position: sticky;
    top: 100px;
}

#screen-8 .scanner-wrap img {
	position: absolute;
	max-width: 100%;
	top:170px;
}

#screen-8 .scanner-wrap .text span:nth-child(2) {
	    color: var(--blue-1);
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

#screen-8 .scanner-wrap .text span:nth-child(3) {
	
	font-size: 14px;
}

#screen-8 .scanner-wrap .text:nth-child(2) {
	    max-width: 580px;
    position: absolute;
    left: 50px;
}

#screen-8 .scanner-wrap .text:nth-child(5) {
max-width: 325px;
    position: absolute;
    top: 290px;
    text-align: left;
}

#screen-8 .scanner-wrap .text:nth-child(4) {
	       max-width: 693px;
    position: absolute;
    left: 20px;
    top: 475px;
    text-align: left;
}

#screen-8 .scanner-wrap .text:nth-child(3) {
	   max-width: 350px;
    position: absolute;
    right: 50px;
    top: 320px;
    text-align: right;
}
#screen-8 .scanner-wrap .text:nth-child(2) .scaner-decor-1 {
	    position: absolute;
    bottom: -50px;
    left: 290px;
}
#screen-8 .scanner-wrap .text:nth-child(2) .scaner-decor-1:before {
	content: '';
	width: 2px;
	height: 45px;
	background-color: var(--blue-1);
	display: block;
}
#screen-8 .scanner-wrap .text:nth-child(2) .scaner-decor-1:after {
	    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--blue-1);
    display: block;
    border-radius: 50%;
    bottom: -20px;
    left: -3px;
    position: absolute;
    right: 0;
    margin: auto;
    animation: scaner-decor-circle 2s ease infinite;
} 

@keyframes scaner-decor-circle {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	80% {
transform: scale(3);
opacity: 0;
	}

	100% {
transform: scale(3);
opacity: 0;
	}
}


#screen-8 .scanner-wrap .text:nth-child(3) .scaner-decor-1 {
	    position: absolute;
       top: -55px;
    right: 60px;
}
#screen-8 .scanner-wrap .text:nth-child(3) .scaner-decor-1:before {
	content: '';
	width: 2px;
	height: 50px;
	background-color: var(--blue-1);
	display: block;
}
#screen-8 .scanner-wrap .text:nth-child(3) .scaner-decor-1:after {
	    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--blue-1);
    display: block;
    border-radius: 50%;
    top: -15px;
    left: -3px;
    position: absolute;
    right: 0;
    margin: auto;
    animation: scaner-decor-circle 2s ease infinite;
} 


#screen-8 .scanner-wrap .text:nth-child(4) .scaner-decor-1 {
	    position: absolute;
       top: -210px;
    right: 340px;
}
#screen-8 .scanner-wrap .text:nth-child(4) .scaner-decor-1:before {
	content: '';
	width: 2px;
	height: 200px;
	background-color: var(--blue-1);
	display: block;
}
#screen-8 .scanner-wrap .text:nth-child(4) .scaner-decor-1:after {
	    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--blue-1);
    display: block;
    border-radius: 50%;
    top: -15px;
    left: -3px;
    position: absolute;
    right: 0;
    margin: auto;
    animation: scaner-decor-circle 2s ease infinite;
} 



#screen-8 .scanner-wrap .text:nth-child(5) .scaner-decor-1 {
	    position: absolute;
       top: -25px;
    left: 40px;
}
#screen-8 .scanner-wrap .text:nth-child(5) .scaner-decor-1:before {
	content: '';
	width: 2px;
	height: 20px;
	background-color: var(--blue-1);
	display: block;
}
#screen-8 .scanner-wrap .text:nth-child(5) .scaner-decor-1:after {
	    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--blue-1);
    display: block;
    border-radius: 50%;
    top: -15px;
    left: -3px;
    position: absolute;
    right: 0;
    margin: auto;
    animation: scaner-decor-circle 2s ease infinite;
} 


#footer {
    padding: 96px 0 0 0; 
    background-color: var(--blue-1);
}
#footer .container {
        display: flex;
    flex-direction: column;
    color: white;
        align-items: center;
    gap: 48px;
}

#footer .container span:nth-child(1) {
        font-size: 36px;
    text-transform: uppercase;
}

#footer .container span:nth-child(2) {
        font-size: 20px;
   
}

#footer #order-socials {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

#footer #order-socials a {
       box-shadow: 0px 0px 10px #e2e2e2;
    border-radius: 24px;
    background-color: white;
    transition: 0.3s;
    display: flex
;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 4px 16px 4px 12px;
    width: 150px;
    box-sizing: border-box;
    justify-content: center;


}
#footer #order-socials a:hover {
    opacity: 0.7;
}
#footer #order-socials a img {
width: 36px;
}

#footer #order-socials a span {
   text-transform: uppercase;
    font-size: 14px;
    color: var(--blue-1);
}

#footer .container span:nth-child(4) {
        font-size: 20px;
   
}
#footer #footer-contacts {
display: flex;
    flex-direction: row;
    gap: 48px;
        width: 100%;
    justify-content: space-evenly;
    align-items: center;
}

#footer #footer-contacts .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
        min-width: 175px;
}
#footer #footer-contacts a.item {
    color:white;
    transition: 0.3s ease;
}
#footer #footer-contacts a.item:hover {
    opacity: 0.7;
}
#footer #footer-contacts .item img {
height: 24px;
}

#footer #footer-contacts .item span {
    font-size: 16px;
    text-align: center;
}
#footer #copyright {
    padding: 24px 0;
    border-top:1px solid rgba(255,255,255,0.5);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap:24px;
    width: 100%;
        align-items: center;
        font-size:14px;
}

#footer #copyright img:nth-child(1) {
        width: 120px;
    filter: grayscale(1) brightness(4.5);

}
#footer #copyright img:nth-child(2) {
        width: 18px;
    

}
#footer #copyright a {
    transition: 0.5s;
    opacity: 0.7;
}
#footer #copyright a:hover {
opacity: 1;
}
#footer #copyright a > img {
    width: 120px;
}

#footer #copyright div:nth-child(3) {
    width: 210px;
    text-align: right;
}

.decor-circle-2 {
    background: #E2E3E5;
background: rgba(78, 114, 181, 0.1);
background: linear-gradient(54deg,rgba(78, 114, 181, 0.1) 0%, rgba(69, 70, 131, 0.1) 100%);
border-radius: 50%;
width: 500px;
height: 500px;
position: absolute;
animation: decor-circle-2 25s ease infinite;
}
@keyframes decor-circle-2 {
    0% {
        transform: scale(1);
    }
    50% {
 transform: scale(1.2);
    }
    100% {
 transform: scale(1);
    }
}




.decor-circle-3 {
    background: #E2E3E5;
background: rgba(78, 114, 181, 0.1);
background: linear-gradient(210deg,rgba(78, 114, 181, 0.1) 0%, rgba(69, 70, 131, 0.1) 100%);
border-radius: 50%;
width: 100px;
height: 100px;
position: absolute;
animation: decor-circle-3 15s ease infinite;
}
@keyframes decor-circle-3 {
    0% {
        transform: scale(1);
    }
    50% {
 transform: scale(1.5);
    }
    100% {
 transform: scale(1);
    }
}


.decor-circle-4 {
    background: #E2E3E5;
background: #FFF8F8;
background: linear-gradient(54deg,rgba(255, 248, 248, 0.3) 0%, rgba(153, 149, 149, 0.3) 100%);
border-radius: 50%;
width: 300px;
height: 300px;
position: absolute;
animation: decor-circle-4 20s ease infinite;
}
@keyframes decor-circle-4 {
    0% {
        transform: scale(1);
    }
    50% {
 transform: scale(1.3);
    }
    100% {
 transform: scale(1);
    }
}





#screen-1 .decor-circle-2 {
    left: -200px;
    bottom: 50px ;
}

#screen-1 .decor-circle-3 {
    right: 150px;
    top: 150px ;
}

#screen-1 .decor-circle-4 {
    right: -100px;
    bottom: -100px ;
}



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

#screen-3 img {
    width: 60%;
}

#screen-1 .text-18:nth-child(4) {
    left:5%;

    top:150px;
}

#screen-1 .text-18:nth-child(5) {
    right:5%;
    bottom: 150px;
}

 }

@media screen and (max-width: 1400px) {
    #screen-1 .text-18:nth-child(4) {
            font-size: 14px;
        max-width: 400px;
    }
        #screen-1 .text-18:nth-child(5) {
            font-size: 14px;
        max-width: 350px;
    }
}

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


#screen-1-2 {
    padding-top: 48px;
}

#screen-1-2 .container {
        flex-wrap: wrap;
}

#header .container {
    padding: 0 12px;
}
#header #menu {
    gap:12px;
}
#screen-8 .scanner-wrap-section {
    flex-direction: column;
}
#screen-8 .scanner-wrap-section .left {
    width: 100%;
    height: 640px;
}
#screen-4 {
    padding: 48px 0;
}
#screen-5 {
    padding: 48px 0 0 0;
}
#colors-list {
    margin: 48px 0;
}
#colors-list {
    flex-wrap: wrap;
}
    #screen-3 {
        height: 500px;
    }

    #screen-5 h2 {
        font-size: 36px;
        text-align: center;
    }

#screen-2 {
        padding: 48px 0;
}

#screen-2-grid {
    display: flex;
    flex-direction: column;
}

#screen-2-grid .item {
    height: 250px;
}

#screen-2-grid .item:nth-child(1) {
    order: 1;
}

#screen-2-grid .item:nth-child(2) {
    order: 2;
}

#screen-2-grid .item:nth-child(3) {
    order: 3;
}

#screen-2-grid .item:nth-child(4) {
    order: 5;
}

#screen-2-grid .item:nth-child(5) {
    order: 4;
}

#screen-2-grid .item:nth-child(6) {
    order: 6;
}

#screen-2-grid .item span:nth-child(2) {
    font-size: 18px;
}

#screen-2-grid .item span:nth-child(3) {
        font-size: 18px;
}
#screen-2-grid .item:nth-child(2) span:nth-child(3) {
        top:105px;
}
#screen-2-grid .item:nth-child(3) span:nth-child(3) {
        top:125px;
}
#screen-2-grid .item:nth-child(5) span:nth-child(3) {
        top:105px;
}

  #screen-1 .decor-circle-2.appeared, #screen-1 .decor-circle-3.appeared, #screen-1 .decor-circle-4.appeared {
        opacity: 0;
   }
   #screen-1 .text-18:nth-child(5).appeared {
    opacity: 0;
   }
     #screen-1 .text-18:nth-child(4).appeared {
    opacity: 0;
   }
    #screen-1 img:nth-child(3) {
     left: 0;
    right: 0;
    margin: 0 auto;
    top: 200px;
    max-width: 80%;
    height: auto;
    opacity: 0;
    }
   #screen-1 img:nth-child(3).appeared {
        left: 0;
    right: 0;
    margin: 0 auto;
    top: 200px;
    max-width: 80%;
    height: auto;
    opacity: 1;
   }

       #screen-1 img:nth-child(2) {
            left: 0;
        right: 0;
        /* margin: 0 auto; */
        bottom: 300px;
        max-width: 80%;
        height: auto;
        opacity: 0;
        top: unset;
    }
   #screen-1 img:nth-child(2).appeared {
            left: 0;
        right: 0;
        /* margin: 0 auto; */
        bottom: 300px;
        max-width: 80%;
        height: auto;
        opacity: 1;
        top: unset;

   }
   
   #screen-3 .decor-circle-2 {
           width: 300px;
    height: 300px;
   }
   

}







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




#header.header-scrolled #menu a {
    color:var(--blue-1);
}
#header.header-scrolled #menu a:hover {
     color:var(--blue-1);
}
#header.header-scrolled #menu a:hover:before {
     background-color:var(--blue-1);
}
#header #mob-burger {
    display: block;
    right: 24px;
}

#header #menu {
           position: absolute;
        right: 0;
        top: 56px;
        background-color: white;
        padding: 12px 12px 12px 24px;
        box-shadow: 0px 0px 10px #e2e2e2;
        display: flex;
        flex-direction: column;
        transition: 0.5s ease;
        opacity: 0;
        pointer-events: none;

}
#header #menu a {
      color:var(--blue-1);
}
#header #menu.active {
    opacity: 1;
    pointer-events: auto;
}
#header #menu a:before {
    left:-14px;
    right:unset;
}
#header #menu a:hover:before {
    top: 4px;
}

    #header {
        padding: 12px 0;
        overflow: visible;
    }
    #header .container {
        padding:  0 12px;
    }
    #header .logo {
        width: 90px;
    }

}

@media screen and (max-width: 768px) {
    
    .logo-wrap img:nth-child(2) {
            width: 14px;
            top:7px;
    }
    
    #screen-4 .container {
        flex-direction: column;
    }

#footer {
    padding: 48px 0 0 0;
}
#footer .container span:nth-child(1) {
    font-size: 28px;
    text-align: center;
}
#footer #order-socials {
    flex-direction: column;

}
#footer #footer-contacts .item span {
    color:white !important;
}
#footer #footer-contacts {
    flex-direction: column;
            gap: 24px;
}
#footer #copyright {
    flex-direction: column;
    text-align: center;
}
#footer #copyright div:nth-child(3) {
    width: auto;
}
#footer .container {
    gap:24px;
}
#screen-8 {
    padding: 48px 0;
}
#screen-8 .scanner-wrap {
    position: relative;
    top:0;
    display: flex;
        flex-direction: column;
        gap: 24px;
}
#screen-8 .scanner-wrap img {
    position: relative;
    top:0;
}
#screen-8 .scanner-wrap .text {
            position: relative !important;
        left: 0 !important;
        max-width: 100% !important;
        top: 0 !important;
        text-align: left !important;
}
#screen-8 .scanner-wrap .text .scaner-decor-1 {
    display: none;
}
#screen-8 .scanner-wrap-section .left {
    height: auto;
}

    #colors-images img {
        width: 25px;

    }
    #colors-images 
        {
          gap: 16px;  
        }

    #screen-1 .decor-circle-1 {
            width: 300px;
    height: 300px;
    }

#screen-6 {
    padding: 48px 0;
}
#screen-7 {
    padding: 48px 0;
}
    .double-section {
            flex-direction: column;
    }
    #screen-6 .decor-circle-3 {
        top:50px;
        right: 50px;
    }
    .double-section {
        gap: 24px;
    }
    #screen-6 .container .double-section:nth-child(2) {
        margin-bottom: 36px;
    }
    #screen-6 .container .double-section:nth-child(2) .left {
        order: 2;
    }
     #screen-6 .container .double-section:nth-child(2) .right {
        order: 1;
    }
       #screen-7 .container .double-section:nth-child(2) {
        margin-bottom: 36px;
    }
    #screen-7 .container .double-section:nth-child(2) .left {
        order: 2;
    }
     #screen-7 .container .double-section:nth-child(2) .right {
        order: 1;
    }
}