/*
	Theme Name: IrisTech
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: A plain-vanilla & lightweight theme for Elementor page builder
	Version: 2.6.1
	Stable tag: 2.6.1
	Requires at least: 4.7
	Tested up to: 5.9
	Requires PHP: 5.6
	License: GNU General Public License v3 or later.
*/



@charset "UTF-8";

@font-face {
  font-family: "LiberationSans";
  font-weight: 700;
  src: url("../fonts/LiberationSans-Bold.ttf");
}

@font-face {
  font-family: "LiberationSans";
  font-weight: 400;
  src: url("../fonts/LiberationSans-Regular.ttf");
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
  scroll-behavior: smooth;
  transition: 0.5s;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  font-weight: 400;
  font-family: "LiberationSans";
  color: var(--clr-black);
  text-rendering: optimizeLegibility;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  color: inherit;
}

textarea {
  resize: none;
}

/* Для браузеров, использующих WebKit (Chrome, Safari) */
textarea::-webkit-scrollbar {
  width: 0;
}

/* Для остальных браузеров */
textarea {
  scrollbar-width: none;
}

input::-ms-clear {
  display: none;
}

input::placeholder {
  color: #a8a8a8;
}

button {
  cursor: pointer;
  font-family: inherit;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

:root {
  --clr-black: #3f3e3e;
  --clr-gray: #676767;
  --clr-lightGray: #f9f9f9;
  --clr-violet: #4d388f;
  --clr-lightViolet: #edebf3;
  --clr-green: #5ccd89;
}

.container-mn {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.container-bg {
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

._btn-green:hover {
  opacity: 0.7;
}

@media (max-width: 110em) {
  .container-bg {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 83.75em) {
  .container-mn {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 48.0625em) {

  .container-bg,
  .container-mn {
    padding-left: 23px;
    padding-right: 23px;
  }
}

.section__number {
  font-weight: 400;
  font-size: 21px;
  line-height: 100%;
  color: var(--clr-green);
  text-align: center;
  margin-bottom: 24px;
  padding-top: 120px;
}

.title-lvl-1 {
  text-align: center;
  font-weight: 400;
  font-size: 50px;
  line-height: 124%;
  color: var(--clr-violet);
}

.title__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 135%;
  text-align: center;
}

@media (max-width: 48.0625em) {
  .section__number {
    padding-top: 70px;
  }

  .title-lvl-1 {
    font-size: 32px;
  }

  .title__text {
    font-size: 20px;
  }
}

.header {
  background-color: white;
  padding: 20px 0 40px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 16;
	box-shadow: 0 1px 8px 0 rgb(227 227 227);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  color: var(--clr-violet);
}

.header__logo {
  width: 133px;
  height: 57px;
}

.header__logo img {
  width: 100%;
  object-fit: cover;
}

.header__left {
  display: flex;
  gap: 65px;
}

.header__navigate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 100%;
}

.header__navigate-btns {
  display: none;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 80px;
}

.header__link {
  line-height: 125%;
  position: relative;
}

.header__link._email {
  font-size: 20px;
}

.header__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  background-color: var(--clr-violet);
  height: 1px;
  transition: 0.5s;
}

@media (min-width: 85.375em) {
  .header__link:hover::before {
    width: 100%;
    left: 0;
    transition: 0.2s;
  }
}

.header__contact {
  padding: 10px 30px;
  border-radius: 3px;
  background-color: var(--clr-green);
}


@media (max-width: 110em) {
  .header__content {
    gap: 40px;
  }

  .header__left {
    gap: 30px;
  }

  .header__right {
    gap: 40px;
  }
}


@media (max-width: 85.375em) {
    .header {
        padding-top: 20px;
        padding-bottom: 20px;
    }

	.header__content{
        position: relative;
	}
	
    .header__left {
        gap: 20px;
    }
	
	.header__link {
        font-size: 14px;
    }

    .header__right, .header__content {
        gap: 20px;
    }
	
	.header__link._email{
	font-size: 16px;
	}
	
	.header__logo{
		width: 110px;
		height: 45px;
	}
}

@media (max-width: 1100px) {
    .header__navigate {
        position: absolute;
        right: 0;
        top: 99%;
        width: 100%;
        background-color: white;
        z-index: 20;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        overflow: hidden;
        transform: scaleY(0);
        transform-origin: top center;
        max-height: 0;
		box-shadow: 0 5px 10px 0 rgb(240 240 240);
    }

    .header__navigate-btns {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__navigate-close {
        display: none;
    }

    .header__navigate._active {
        transform: scaleY(1);
        max-height: 90vh;
        visibility: visible;
    }

    .header__navigate-top {
        display: block;
    }

    .header__navigate-top {
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .header__link {
        font-size: 16px;
        position: relative;
        padding: 10px 20px;
        z-index: 10;
        text-align: center;
        border-top: 1px solid var(--clr-green);
    }

    .header__link:first-child {
        border-top: none;
        padding: 0 20px 10px 20px;
    }

    .header__link._email {
        font-size: 24px;
        position: relative;
        z-index: 10;
    }

    .header__contact {
        font-size: 24px;
        position: relative;
        z-index: 10;
    }

    .header__right {
        display: none;
    }

    .header__left {
        gap: 0px;
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }
}





/* 
@media (max-width: 85.375em) {
  .header {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .header__navigate {
    position: absolute;
    right: 0;
    top: 99%;
    width: 100%;
    background-color: white;
    z-index: 20;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top center;
    max-height: 0;
  }

  .header__navigate-btns {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__navigate-close {
    display: none;
  }

  .header__navigate._active {
    transform: scaleY(1);
    max-height: 90vh;
    visibility: visible;
  }

  .header__navigate-top {
    display: block;
  }

  .header__navigate-top {
    position: absolute;
    top: 25px;
    right: 25px;
  }

  .header__link {
    font-size: 16px;
    position: relative;
    padding: 10px 20px;
    z-index: 10;
    text-align: center;
    border-top: 1px solid var(--clr-green);
  }

  .header__link:first-child {
    border-top: none;
    padding: 0 20px 10px 20px;
  }

  .header__link._email {
    font-size: 24px;
    position: relative;
    z-index: 10;
  }

  .header__contact {
    font-size: 24px;
    position: relative;
    z-index: 10;
  }

  .header__right {
    display: none;
  }

  .header__left {
    gap: 0px;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }
}
 */





.margin-top{
	margin-top: 97px;
}

@media (max-width: 85.375em) {
	.margin-top{
        margin-top: 65px;
	}
}



.banner__background {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 240px;
  overflow: hidden;
}

.banner__video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
	z-index: 1;
	object-position: top;
}

.banner__content {
  position: relative;
}

.banner__glare{
  	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
	top: 0;
	left: 0;
}

.banner__glare img{ 
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.banner__text {
  position: absolute;
  max-width: 590px;
  right: 5.4054054054%;
  top: 120px;
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  color: var(--clr-violet);
z-index: 3;
}


@media (max-height: 890px) {
    .banner__text {
        right: 1.405405%;
        top: 50px;
    }
}


@media (max-width: 73.125em) {
  .banner__text {
    right: 1.8018018018%;
    top: 60px;
    font-size: 24px;
    max-width: 390px;
  }
}


@media (max-width: 61.9375em) {
  .banner__fon {
    height: fit-content;
  }

  .banner__video {
    position: static;
    height: 60vh;
    min-height: 240px;
  }

.banner__glare{
	display: none;
}
	
  .banner__text {
    margin-top: 24px;
    position: static;
    max-width: 590px;
    z-index: 20;
  }
}

.what__title {
  margin-bottom: 24px;
}

.what__text {
  max-width: 788px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.what__dras {
  background-color: var(--clr-lightViolet);
}

.wd {
  padding: 40px 0;
}

.wd__panel {
  width: fit-content;
  background-color: white;
  padding: 27px 32px 27px 55px;
  display: grid;
  grid-template-columns: auto 2fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 16px;
  column-gap: 16px;
}

.wd__panel-text {
  color: var(--clr-gray);
}

.wd__scheme {
  padding-bottom: 120px;
  position: relative;
}

.wd__scheme-info {
  position: relative;
}

.wd__scheme-info._top .wd__scheme-text:nth-child(1) {
  left: calc(50% - 103.135px - 192.86px);
  bottom: 65%;
  max-width: 206.27px;
}

.wd__scheme-info._top .wd__scheme-text:nth-child(2) {
  left: calc(50% - 76.625px + 166.62px);
  bottom: 65%;
  max-width: 153.25px;
}

.wd__scheme-info._top .wd__scheme-text:nth-child(3) {
  left: calc(50% - 93.68px + 388.68px);
  top: -50px;
  text-align: right;
  max-width: 187.36px;
}

.wd__scheme-info._bottom .wd__scheme-text:nth-child(1) {
  max-width: 209.71px;
  left: calc(50% - 104.855px - 232.8px);
  top: 0;
}

.wd__scheme-info._bottom .wd__scheme-text:nth-child(2) {
  max-width: 209.71px;
  left: calc(50% - 104.855px + 107.15px);
  top: 0;
}

.wd__scheme-info._bottom .wd__scheme-text:nth-child(3) {
  max-width: 200px;
  left: calc(50% - 100px + 344px);
  top: 0;
  text-align: right;
}

.wd__scheme-text {
  position: absolute;
}

.wd__scheme-descr {
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  color: #676767;
}

.wd__scheme-number {
  display: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  color: var(--clr-violet);
}

.wd__scheme-img {
  display: flex;
  justify-content: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.wd__scheme-img img {
  width: 100%;
}

.wd__scheme-items {
  display: none;
}

.wd__scheme-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.wd__scheme-item:last-child {
  margin-bottom: 0px;
}

.wp {
  margin-top: 80px;
}

.wp__title {
  max-width: 762px;
  font-weight: 700;
  font-size: 28px;
  line-height: 135%;
  text-align: center;
  margin: 0 auto 40px auto;
}

.wp__items {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.wp__item {
	padding-top: calc(20px + 36 * (100vw - 320px) / 1600);
	padding-left: calc(20px + 80 * (100vw - 320px) / 1600);
	padding-right: calc(20px + 60 * (100vw - 320px) / 1600);
	padding-bottom: calc(20px + 36 * (100vw - 320px) / 1600);
	  background-color: #f9f9f9;
	
	display:flex;
	flex-direction: column;
	justify-content: space-between;
}

.wp__item-title {
  font-weight: 700;
  font-size: 42px;
  line-height: 115%;
  color: #7f7f7f;
  text-align: center;
}

.wp__item-title._green {
  color: var(--clr-green);
}

.wp__item-text {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 35px;
  font-weight: 400;
  font-size: 24px;
  line-height: 115%;
  color: #7f7f7f;
}

.wp__img {
  width: 100%;
}

.wp__img img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 85.375em) {
  .wd {
    padding: 40px 0;
  }

  .wd__panel {
    width: fit-content;
    background-color: white;
    padding: 20px 20px 20px 20px;
    display: grid;
    grid-template-columns: auto 2fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 16px;
    column-gap: 16px;
  }

  .wd__scheme {
    padding-top: 55px;
  }

  .wd__scheme-img {
    display: flex;
    justify-content: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .wd__scheme-img img {
    width: 100%;
  }

  .wd__scheme-info._top .wd__scheme-text:nth-child(1) {
    left: calc(48% - 103.135px - 192.86px);
  }

  .wd__scheme-info._top .wd__scheme-text:nth-child(2) {
    left: calc(48% - 76.625px + 166.62px);
  }

  .wd__scheme-info._top .wd__scheme-text:nth-child(3) {
    left: calc(52% - 93.68px + 388.68px);
  }

  .wd__scheme-info._bottom .wd__scheme-text:nth-child(1) {
    left: calc(48% - 104.855px - 232.8px);
  }

  .wd__scheme-info._bottom .wd__scheme-text:nth-child(3) {
    left: calc(52% - 100px + 344px);
  }
}

@media (max-width: 61.9375em) {
  .wd__scheme {
    padding-bottom: 40px;
  }

  .wd__scheme-img {
    width: 100%;
  }

  .wd__scheme-info._top .wd__scheme-text:nth-child(1) {
    left: 20%;
    bottom: 65%;
  }

  .wd__scheme-info._top .wd__scheme-text:nth-child(2) {
    left: 58%;
    bottom: 65%;
  }

  .wd__scheme-info._top .wd__scheme-text:nth-child(3) {
    left: 95%;
    top: 10px;
  }

  .wd__scheme-info._bottom .wd__scheme-text:nth-child(1) {
    left: 16%;
    top: 5px;
  }

  .wd__scheme-info._bottom .wd__scheme-text:nth-child(2) {
    left: 50%;
    top: 0;
  }

  .wd__scheme-info._bottom .wd__scheme-text:nth-child(3) {
    left: 92%;
    top: 0;
  }

  .wd__scheme-text>.wd__scheme-descr {
    display: none;
  }

  .wd__scheme-number {
    display: block;
  }

  .wd__scheme-items {
    display: block;
    margin-top: 70px;
  }
}

@media (max-width: 48.0625em) {
  .what__title {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .what__text {
    margin-bottom: 24px;
  }

  .wd__scheme-info._top .wd__scheme-text:nth-child(1) {
    left: 19%;
    bottom: 10px;
  }

  .wd__scheme-info._top .wd__scheme-text:nth-child(2) {
    left: 58%;
    bottom: 10px;
  }

  .wd__scheme-info._top .wd__scheme-text:nth-child(3) {
    left: 95%;
    top: 0;
  }

  .wd__scheme-info._bottom .wd__scheme-text:nth-child(1) {
    left: 16%;
    top: 10px;
  }

  .wd__scheme-info._bottom .wd__scheme-text:nth-child(2) {
    left: 49%;
    top: 10px;
  }

  .wd__scheme-info._bottom .wd__scheme-text:nth-child(3) {
    left: 92%;
    top: 10px;
  }

  .wp__items {
    gap: 8px;
	 flex-wrap: wrap;
  }

  .wp__item {
    padding: 30px 40px 40px 60px;
  }

  .wp__img img {
    width: 100%;
  }
}

@media (max-width: 29.25em) {
  .wd__panel {
    width: 100%;
    padding: 15px 16px;
  }

  .wp__item {
    padding: 20px;
  }
}

.infoBlock {
  background-color: var(--clr-lightViolet);
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  padding: 26px 24px;
  margin-top: 16px;
}

.infoBlock__logo {
  width: 146.36px;
  min-width: 146.36px;
}

.infoBlock__logo img {
  width: 100%;
  object-fit: cover;
}

.infoBlock__text {
  font-weight: 700;
  font-size: 24px;
  line-height: 115%;
	 max-width: 839px;
	color: var(--clr-violet);
	
}

.infoBlock__text span {
  color: var(--clr-green);
}

@media (max-width: 48.0625em) {
  .infoBlock {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 26px 24px 32px 22px;
    margin-top: 8px;
  }

  .infoBlock__logo {
    width: 107px;
  }

  .infoBlock__text {
    font-size: 20px;
  }
}

.benefits__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
}

.benefits__item {
  padding: 30px 40px;
  background-color: #f9f9f9;
  width: 100%;
  height: 100%;
	
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
}

.benefits__imgContainer{
	height: 68px;
  	margin-bottom: 15px;
	
	display: flex;
	justify-content: center;
	align-items: end;
}

.benefits__img {
  text-align: center;
}

.benefits__img img {
  max-height: 76px;
  height: 100%;
  object-fit: cover;
}

.benefits__text {
  text-align: center;
}

.application {
  background-image: url("../media/application__fon.png");
  background-size: 90%;
  background-color: var(--clr-lightViolet);
  background-repeat: no-repeat;
    background-position: center;
  margin-top: 120px;
  padding-bottom: 160px;
}

.application__number {
  margin-top: -20px;
}

.application__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 70px;
  margin-top: 48px;
}

.application__item {
  padding: 25px 20px 20px 20px;
  width: 33%;
  border-left: 1px solid #c7c0db;
}

@media (min-width: 48.0625em) {

  .application__item:nth-child(3n+1),
  .application__item:first-child {
    border-left: none;
  }
}

.application__img {
  width: 77px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  position: relative;
}

.application__img-number {
  font-size: 48px;
  font-weight: 600;
  bottom: 6px;
  width: 100%;
  text-align: center;
  padding-right: 17px;
  position: absolute;
  color: white;
}

.application__text {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 48.0625em) {
  .application {
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    padding-bottom: 40px;
  }

  .application__number {
    margin-top: -30px;
  }

  .application__items {
    row-gap: 35px;
    margin-top: 24px;
  }

  .application__item {
    padding: 24px 20px;
    width: 50%;
    max-width: 350px;
  }

  .application__item:nth-child(2n+1) {
    border-left: none;
  }

  .application__text {
    font-size: 18px;
  }
}

@media (max-width: 29.25em) {

  .application__items {
    row-gap: 35px;
    row-gap: 0;
  }

  .application__item {
    width: 100%;
    border-bottom: 1px solid #c7c0db;
    border-left: none;
  }

  .application__item:last-child {
    border-bottom: none;
  }
}

.equipment__title {
  margin-bottom: 14px;
}

.equipment__text {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  max-width: 857px;
}

.equipment__content {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.equipment__img {
  width: 48%;
}

.equipment__img img {
  width: 100%;
  object-fit: contain;
}

.equipment__items {
  width: 45%;
}

.equipment__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.equipment__item:nth-child(n+2) {
  margin-top: 33px;
}

.equipment__item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 135%;
}

.equipment__item-desc {
  margin-top: 4px;
  font-weight: 400;
  font-size: 18px;
  line-height: 115%;
}

@media (max-width: 48.0625em) {
  .equipment__title {
    margin-bottom: 16px;
  }

  .equipment__text {
    margin-bottom: 24px;
  }

  .equipment__content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .equipment__img {
    width: 100%;
    max-width: 450px;
  }

  .equipment__items {
    max-width: 450px;
    width: 100%;
  }
}

.service__items {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 18px;
}

.service__item {
  background-color: #f9f9f9;
  padding: 32px 32px 24px 24px;
  width: calc(50% - 18px);
  border-left: 1px solid var(--clr-violet);
}

.service__item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 115%;
  margin-bottom: 8px;
}

.service__item-bottom {
  display: flex;
  gap: 10px;
}

.service__item-text {
  flex: 1 1 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 115%;
}

.service__item-right {
  height: 100%;
}

.service__item-icon {
  margin-top: 40px;
  overflow: hidden;
}

.service__item-icon img {
  max-width: 66px;
  max-height: 74px;
}

@media (max-width: 48.0625em) {
  .service__items {
    margin-top: 24px;
    gap: 12px;
  }

  .service__item {
    padding: 24px;
    width: 100%;
  }

  .service__item-bottom {
    gap: 24px;
    flex-direction: column;
  }

  .service__item-text {
    font-size: 18px;
  }

  .service__item-right {
    height: auto;
  }

  .service__item-icon {
    margin-top: 0;
  }
}

.about__title{
	margin-bottom: 24px;
}

.about__text {
  margin-bottom: 40px;
	max-width: 764px;
	margin-left: auto;
	margin-right: auto;
}

.about__mobile {
  display: none;
}

.about__info,
.about__arrows {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.about__info._top .about__item:nth-child(4) {
  grid-column-start: 5;
}

.about__info._bottom .about__item:nth-child(1) {
  grid-column-start: 2;
}

.about__info._bottom .about__item:nth-child(2) {
  grid-column-start: 3;
}

.about__info._bottom .about__item:nth-child(3) {
  grid-column-start: 4;
}

.about__info._bottom .about__item:nth-child(4) {
  grid-column-start: 5;
}

.about__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about__item._bottom::before,
.about__item._top::after {
  content: "";
  display: block;
  width: 2px;
  height: 47.45px;
  background: #5bcc89;
  margin-left: auto;
  margin-right: auto;
}

.about__item._bottom::before {
  margin-top: 20px;
  margin-bottom: 10px;
}

.about__item._top::after {
  margin-bottom: 20px;
  margin-top: 10px;
}

.about__item-icon {
  overflow: hidden;
}

.about__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 120px;
  max-height: 85px;
}

.about__item-name {
  font-weight: 700;
  font-size: 19.201px;
  line-height: 115%;
  max-width: 210px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.about__arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
}

.about__arrow._first {
 opacity: 0.7
}

.about__arrow._second {
 opacity: 0.8
}

.about__arrow._third {
 opacity: 0.9
}


.about__arrow-img {
  position: absolute;
  left: 0;
}

.about__arrow-img img {
  width: 100%;
  object-fit: cover;
}

.about__arrow-date {
  z-index: 15;
  font-weight: 600;
  font-size: 19.201px;
  line-height: 115%;
  color: #ffffff;
}

@media (max-width: 61.9375em) {
  .about-name {
    font-size: 16px;
  }
}

@media (max-width: 48.0625em) {
	
	.about__title{
		margin-bottom: 16px;
	}
	
  .about__desktop {
    display: none;
  }

  .about__mobile {
    display: block;
  }

  .about__mobile-cards {
    display: grid;
    gap: 16px;
  }

  .about__mobile-card {
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 24px 14px;
  }

  .about__mobile-arrow {
    position: relative;
	  text-align: center;
  }

  .about__mobile-arrow img {
    width: 60%;
    object-fit: cover;
  }

  .about__mobile-text {
    position: absolute;
    top: 38%;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
  }

  .about__mobile-name {
    font-weight: 700;
    font-size: 19.201px;
    line-height: 115%;
    text-align: center;
    max-width: 350px;
  }

  .about__mobile-name::after {
    content: "";
    display: block;
    width: 2px;
    height: 47.45px;
    background: #5bcc89;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .about__mobile-icons {
    display: flex;
    gap: 18px;
  }

  .about__mobile-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 120px;
    max-height: 85px;
  }
}

.footer {
  background-color: var(--clr-violet);
  margin-top: 120px;
}

.footer__contact {
  max-width: 846px;
}

.footer__bottom {
  text-align: center;
  padding: 120px 0 90px 0;
}

.footer__logo {
  margin-bottom: 40px;
}

.footer__text {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #c1c1c1;
}

.contact {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
}

.contact__number {
  columns: var(--clr-green);
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.contact__title {
  color: white;
  position: relative;
  z-index: 2;
}

.contact__fon {
  position: absolute;
  top: 10%;
  right: 75%;
  z-index: 1;
}

.contact__fon img {
  width: calc(150px + 350 * (100vw - 320px) / 1600);
  max-width: 500px;
  min-width: 150px;
  height: calc(150px + 350 * (100vw - 320px) / 1600);
  max-height: 500px;
  min-height: 150px;
}

.contact__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
  margin-top: 38px;
}

.contact__inp {
  width: 100%;
  background-color: white;
  border-radius: 5px;
  padding: 20px;
  font-family: inherit;
  font-size: 18px;
}

.contact__inp._textarea {
  grid-column-start: 2;
  grid-row-start: 3;
  grid-row-end: 5;
}

.contact__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  color: #c6bfdb;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
}

.contact__text a {
  color: var(--clr-green);
}

.contact__btns {
  display: flex;
  justify-content: start;
  align-items: start;
  position: relative;
}

.contact__bottom {
  margin-top: 30px;
  grid-column-start: 1;
  grid-column-end: 3;
}

.contact__btn {
  color: var(--clr-violet);
  background-color: var(--clr-green);
  border-radius: 5px;
  padding: 20px 60px;
}

@media (max-width: 48.0625em) {
  .footer {
    margin-top: 70px;
  }

  .footer__bottom {
    padding-top: 40px;
    padding-bottom: 35px;
    border-top: 1px solid white;
  }

  .footer__logo {
    margin-bottom: 30px;
  }

  .footer__text {
    margin-top: 5px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact {
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .contact__fon {
    top: 3%;
    right: 65%;
  }

  .contact__form {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 30px;
  }

  .contact__inp {
    padding: 20px;
  }

  .contact__inp._textarea,
  .contact__bottom {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: auto;
    grid-row-end: auto;
  }

  .contact__bottom {
    margin-top: 0;
  }

  .contact__text {
    margin-bottom: 40px;
    text-align: center;
  }

  .contact__btns {
    flex-direction: column;
    gap: 40px;
  }
}

.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  width: 100%;
  background-color: white;
  border-radius: 5px;
  padding: 20px;
  font-family: inherit;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 1366) {
  .select__title {
    font-size: 18px;
  }
}

.select__value {
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 16px;
  height: 8px;
  background: url("../media/contact__arrow.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  position: absolute;
  top: 90%;
  border-radius: 0 0 5px 5px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 16px;
  padding: 10px 0px 5px 0px;
  z-index: 3;
}

@media (max-width: 1366) {
  .select__options {
    font-size: 18px;
  }
}

.select__option {
	cursor: pointer;
    padding: 20px 0;
    margin: 0 20px;
}

.select__option.hidden{
	display: none !important;
}


@media (min-width: 992px) {
  .select__option:hover p  {
	  color: var(--clr-green);
	  transition: 0.2s;
  }
}

.select._active {
  z-index: 5;
}

.select._active .select__value:before {
  transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}


.privacyPolicePages__title{
	background-color: var(--clr-violet);
	width: 100%;
	font-size: 30px;
	color: white;
	padding: 100px 0;
	text-align: center;	
}

.privacyPolicePages__content{
	margin-top: 70px;
	max-width: 1140px;
	padding-right: 20px;
	padding-left: 20px;
	
	margin-left: auto;
	margin-right: auto;
}

.privacyPolicePages__content > h2{
	color: var(--clr-violet);
	font-size: 34px;
	margin-top: 100px;
	margin-bottom: 20px;
}

.privacyPolicePages__content > p{
	font-size: 18px;
	line-height: 1.5em;
}

.privacyPolicePages__content > p > a{
	color: var(--clr-violet);
}

@media (max-width: 991px) {
    .privacyPolicePages h1 {
        font-size: 48px;
    }

    .privacyPolicePages__title {
        font-size: 24px;
        padding: 50px 0;
    }
    .privacyPolicePages__content > h2 {
        font-size: 28px;
        margin-top: 70px;
    }
}

@media (max-width: 468px) {
    .privacyPolicePages h1 {
        font-size: 32px;
    }

    .privacyPolicePages__title {
        padding: 40px 0;
    }
    .privacyPolicePages__content > h2 {
        font-size: 24px;
        margin-top: 50px;
		margin-bottom: 10px;
    }

    .privacyPolicePages__content {
        margin-top: 50px;
    }
    .privacyPolicePages__content > p {
        font-size: 16px;
    }
}



/* POPUP MESSAGE */
.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.221);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  width: 100%;
}
.popup__body._message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding-top: 86px;
  padding-bottom: 114px;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1080px;
}
.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 32px;
  right: 32px;
  cursor: pointer;
  z-index: 30;
}

.popup__message-title {
  font-weight: 400;
  font-size: 50px;
  line-height: 124%;
  color: var(--clr-violet);
  max-width: 600px;
}

.popup__message-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 135%;
  color: #3f3e3e;
  margin-top: 24px;
}

@media (max-width: 48.0625em) {
  .popup__message-title {
    font-size: 32px;
    max-width: 350px;
  }
  .popup__message-text {
    font-size: 18px;
    margin-top: 16px;
    max-width: 175px;
  }
}
