/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

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

/* Links */

a, a:link, a:visited  {
    /* color: inherit; */
    text-decoration: none;
    /* display: inline-block; */
}

a:hover  {
    /* color: inherit; */
    text-decoration: none;
}

/* Common */

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

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

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

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

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

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

label {
	cursor: pointer;
}

legend {
	display: block;
}

/* ================================== */

body, 
html {
  height: 100%;
  color: #000;
  scroll-behavior: smooth;
}

body.blocked {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

.main {
  flex: 1 1 auto;
}

.header-child {
  background: url('../img/header-child.png') no-repeat;
  background-size: cover;
  background-position: center;
}

.header-child-cont__outside {
  max-width: 2100px;
  margin: 0 auto;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2d312d;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
  opacity: 0;
  z-index: -1000;
  pointer-events: none;
}

.preloader.active  {
  opacity: 1;
  z-index: 200;
  transition: 1s;
}

.preloader__img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/*
  Технические газы
*/

.technical-gases__item {
  position: relative;
  min-width: 370px;
  min-height: 510px;
  margin-right: 15px;
  margin-bottom: 30px;
}

.technical-gases__item-front,
.technical-gases__item-back {
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 30px;
  backface-visibility: hidden;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(255, 144, 46, 1) inset;
  -moz-box-shadow: 0px 4px 0px 0px rgba(255, 144, 46, 1) inset;
  box-shadow: 0px 4px 0px 0px rgba(255, 144, 46, 1) inset;
  transition: transform 0.8s linear;
}

.technical-gases__item-front {
  transform: perspective(600px) rotateY(0deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.technical-gases__item-back {
  transform: perspective(600px) rotateY(180deg);
}

.technical-gases__item-front.active{
  transform: perspective(600px) rotateY(-180deg);
}

.technical-gases__item-back.active{
  transform: perspective(600px) rotateY(0deg);
}

.technical-gases__front-top {
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 0 20px;
  margin: 0 0 20px 0;
}

.technical-gases__i-more,
.technical-gases__i-turn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: url('../img/icons/i.svg'); 
}

.technical-gases__front-product-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.technical-gases__front-title {
  font-family: 'Montserrat';
  font-style: bold;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #000000;
  text-align: center;
  margin-bottom: 10px;
}

.technical-gases__product-wrap {
  position: relative;
  width: 70%;
}

.technical-gases__product-price-wrap {
  display: flex;
}

.empty-price .technical-gases__product-currency {
    display:none;
}

.technical-gases__product-wrap::after {
  content: '';
  position: absolute;
  width: 21px;
  height: 21px;
  top: 10px;
  right: 10px;
  pointer-events: none;
  background: url('../img/icons/arrow-bottom.svg');
  background-repeat: no-repeat;  
}

.technical-gases__product {
  width: 100%;
  text-align: start;  
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;  
  color: #2E3151;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  
  border: 1px solid #DFDFDF;
  background: #F6F6F4;
  padding: 14px 5px;
  margin-bottom: 10px;
}

.technical-gases__product-price,
.technical-gases__product-currency {
  margin-right: 5px;
  font-family: 'Montserrat';
  font-style: bold;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #000000;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.technical-gases__front-order {
  display: flex;
}

.technical-gases__front-order-count {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 50%;
  background: #F6F6F4;;
}

.technical-gases__front-order-minus {
  position: relative;
  height: 100%;
  width: 17px;
}

.technical-gases__front-order-minus::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 17px;
  height: 2px;
  background: url('../img/icons/minus.svg');
}

.technical-gases__front-count {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.technical-gases__front-order-plus {
  position: relative;
  height: 100%;
  width: 17px;
}

.technical-gases__front-order-plus::before {
  content: '';
  position: absolute;
  top: calc(50% - 8.5px);
  left: 0;
  width: 17px;
  height: 17px;
  background: url('../img/icons/plus.svg'); 
}

.technical-gases__front-order-btn {
  width: 50%;
  border-bottom-right-radius: 30px;

  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  background-color: #0069a9;

  padding: 20px 0;
}

.technical-gases__item-back-more {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;  
  color: #2E3151;
  padding: 0 20px;
  text-align: center;
}

.technical-gases__more-wrap {
  display: flex;
  justify-content: center;
}

.technical-gases__more-link {
  position: relative;
  font-family: 'Montserrat';
  font-style: bold;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  cursor: pointer;
  padding: 24px 80px;
  border-radius: 10px;
  background-color: #0069a9;
}

.technical-gases__more-link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 81px;
  width: 114px;
  height: 1px;
  background-color: #fff;
}

/* 
  Карта
*/

.container__map-outside {
  max-width: 2100px;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
}

.map-menu__container-inside {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.map-menu__btn-open-mobile {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  
  padding: 10px 20px;
  background: #25263A;
  font-family: 'Montserrat';
  font-style: semibold;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #FFFFFF; 

  opacity: 0;
  transition: .5s;
}

.map-menu__btn-open-mobile.active {
  opacity: 0;
}

.map-menu {
  position: relative;
  z-index: 5;
  max-width: 500px;
  padding: 50px 0 50px 50px;
  background-color: #25263A;
  border-left: 1px solid rgba(255, 144, 46, 1);
  transition: transform .5s ease-in-out;
}

.map-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 18px;
  margin-bottom: 50px;
  position: relative;
}

.mouse {
  border: 2px solid #ffffff;
  border-radius: 13px;
  bottom: 40px;
  display: block;
  height: 46px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto 0 -26px;
  position: absolute;
  width: 26px;
}
.mouse span {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: scroll;
  background: none repeat scroll 0 0 #ffffff;
  border: 1px solid transparent;
  border-radius: 4px;
  display: block;
  height: 4px;
  margin: 6px auto;
  width: 4px;
}
@keyframes scroll {
0% {
  opacity: 1;
  transform: translateY(0px);
}
100% {
  opacity: 0;
  transform: translateY(20px);
}
}


.map-menu__title {
  font-family: 'Montserrat';
  font-style: semibold;
  font-weight: 600;
  font-size: 40px;
  line-height: 49px;
  text-transform: uppercase;
  color: #FFFFFF; 
}

.map-menu__desc {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;  
  margin-left: 3px;
  margin-bottom: 20px;
}

.map-menu__list {
  max-height: 400px;
  margin-left: -15px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.map-menu__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.map-menu__item {
  position: relative;
  width: 100%;
  text-align: start;
  padding: 20px 30px 20px 40px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;  
  color: #FFFFFF;
  transition: background 1s;
}

.map-menu__item::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 18px;
  width: 8px;
  height: 11px;
  background: url('../img/icons/map-address.svg') no-repeat;
}

.map-menu__item::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  right: 20px;
  top: 20px;
  background: url('../img/icons/arrow-bottom.svg') no-repeat;
  background-size: contain;
  transform: rotate(270deg);
}
.map-menu__item:hover {
  background: #2E3151;
}

.map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


[class*="copyrights-pane"] {
  display: none !important;
}

[class*="ymaps-2-1"][class*="-ground-pane"] {
  filter: grayscale(1) brightness(1) invert(1);
}

[class*="ymaps-2-1"][class*="-balloon"] {
  background: transparent;
  box-shadow: none;
}
[class*="ymaps-2-1"][class*="-balloon"]::after {
  display: none;
}

.text-ballon {
  max-width: 300px;
  display: flex;
  flex-wrap: wrap;
  word-wrap: break-word;
  font-family: 'Montserrat';
  font-style: semibold;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
}

.number-span-ballon {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #006FB7;
}

.number-ballon {
  font-family: 'Montserrat';
  font-style: medium;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #FFFFFF;  
}


@media (max-width: 1200px) {
  .map-menu__btn-open-mobile {
    opacity: 1;
  }

  .map-menu {
    transform: translateX(-300%);
  }

  .map-menu.open {
    transform: translateX(0%);
  }
}

/*
  Хлебные крошки
*/

.bread-crumbs {
  padding: 30px 0;

  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #2E3151;  
}



/* Кастомный чекбокс */

.real-checkbox {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.custom-checkbox {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #F6F6F4;
  border: 1px solid #FF902E;
  vertical-align: sub;
  margin-right: 10px;
}

.custom-checkbox::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s ease-in;
  
  content: '';
  display: inline-block;
  width: 17px;
  height: 22px;
  background: url('../img/icons/arrow-checkbox-custom.svg') no-repeat;
  background-size: contain;
  background-position: center;
}

.real-checkbox:checked + .custom-checkbox::before {
  transform: translate(-50%, -50%) scale(1);
}


/* FILTER POPUP MOBILE */
.filter-popup {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: .5s ease-in;
}

.filter-popup.open {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

.filter-popup::-webkit-scrollbar {
  width: 0;
}

.filter-popup__container {
  max-width: 1200px;
  min-height: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  background-color: #000000a8;
}

.filter-popup__body {
  max-width: 100%;
  transform: translateX(100%);
  background-color: #fff;
  transition: .5s ease-in;
  border-left: 2px solid #ff902e;
}

.filter-popup.open .filter-popup__body {
  transform: translateX(0%);
}

/* Выбор города */
.location-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);

  transition: 0.25s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.location-popup.active {
  opacity: 1;
  pointer-events: all;
}

.location-popup__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.location-popup__body {
  min-width: 400px;
  padding: 20px;
  background: #fff;
  border-radius: 7px;
  transform: scale(0);
  transition: transform 1s;
}

.location-popup__body.active {
  transform: scale(1);
  transition: transform 0.3s;
}

.location-popup__search {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.location-popup__search-input {
 height: 53px;
 width: 100%;
 font-size: 17px; 
 padding: 0 15px 0 43px;
 margin-right: 15px;
 border: 1px solid #b3b3b3;
 border-radius: 5px;

 font-family: 'Montserrat';
 font-weight: 500;
 font-style: medium;
}

.location-popup__search .uil-search {
  position: absolute;
  left: 15px;
  line-height: 53px;
  font-size: 20px;
  color: #999;
}

.location-popup__search .uil-multiply {
  line-height: 53px;
  font-size: 20px;
  color: #999;
  padding: 0 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.50s ease-in;
}

.location-popup__search .uil-multiply:hover {
  color: #fff;
  background-color: #ccc;  
}

.location-popup__list {
  max-height: 250px;
  overflow: auto;
}

.location-popup__list::-webkit-scrollbar {
  width: 7px;
}

.location-popup__list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 25px;
}

.location-popup__list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}

.location-popup__list li {
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 13px;
  
  font-size: 21px;
  font-family: 'Montserrat';
  font-weight: 500;
  font-style: medium;
}

.location-popup__list li:hover {
  background: #f2f2f2;
}

@media (max-width: 440px) {
  .location-popup__body {
    min-width: auto;
    max-width: 80vw;
  }
}

/* Прайс попап */
.price-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: rgba(7, 28, 84, 0.7);
  transition: 0.25s ease-in-out;
  opacity: 0;
  pointer-events: none;  
}

.price-popup.active {
  opacity: 1;
  pointer-events: all;  
}

.price-popup__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 100px;
}

.price-popup__body {
  min-width: 850px;
  max-width: 850px;
  position: relative;
  padding: 20px 50px 50px 150px;
  background: #fff;
}

.price-popup__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #FF902E;
}

.price-popup__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background: url('../img/icons/price-popup-close.svg') no-repeat;
  background-size: contain;
}

.price-popup__ballon {
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 300px;
  transform: translate(-45%, -29%);
  background: url('../img/price-balloon.png') no-repeat;
  background-size: contain;
}

.price-popup__title-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  margin-left: -4px;
}

.price-popup__title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-size: 100px;
  text-transform: uppercase;
  background-image: url('../img/text-back.png');
  background-size: contain;
  background-clip: text;
  -webkit-background-clip: text;
  background-position: -59px 14px;
  color: transparent;
}

.price-popup__title-desc {
  margin: -20px 0 0 4px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #151937;  
}

.price-popup__table-wrap {
  min-height: 200px;
  max-height: 550px;
  padding-right: 90px;
  overflow: auto;
}

.preloader-get {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, 0);
  width: 100px;
  height: 100px;
  background: url('../img/preloader.svg') no-repeat;
  background-size: contain;
}

.price-popup__table {
  width: 100%;
  border-spacing: 0 0;
}

.price-popup__table-thead {

}
.price-popup__table-name {
  width: 70%;
}

.price-popup__table-value {
}

.price-popup__table-title {
  text-align: start;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #151937;  
  padding: 20px 0 20px 20px;
}

.price-popup__table-body {
}

.price-popup__table-tr {}

.price-popup__table-tr:nth-child(2n - 1) {
  background-color: rgba(0, 111, 183, 0.05);;
}

.price-popup__table-tr .price-popup__table-td:last-child {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #006FB7;
}

.price-popup__table-td {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #000000;  
  padding: 20px 0 20px 20px;
}

@media (max-width: 1100px) {
  .price-popup__ballon {
    display: none;
  }
}

@media (max-width: 900px) {
  .price-popup__body {
    min-width: auto;
    padding: 20px;
  }
  
  .price-popup__table-wrap {
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .technical-gases__product-price {
    margin-right: 0;
  }
}

@media (max-width: 630px) {
  .price-popup__title {
    font-size: 70px;
  }

  .price-popup__title-desc {
    margin: 0;
  }
}

@media (max-height: 850px) {
  .map-menu__list {
    max-height: 180px;
  }
}

/* Обратный звонок */
.call-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: rgba(7, 28, 84, 0.7);
  transition: 0.25s ease-in-out;
  opacity: 0;
  pointer-events: none; 
}

.call-popup.active {
  opacity: 1;
  pointer-events: all;  
}

.call-popup__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-popup__body {
  min-width: 300px;
  min-height: 250px;
  position: relative;
  padding: 20px 20px 20px 20px;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}

.call-popup__body::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  background-image: url('../img/call-background.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.call-popup__close {
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: url('../img/icons/close-call.svg') no-repeat;
  background-size: contain;
}

.call-popup__content {
  margin-top: 100px;
  position: relative;
  z-index: 5;
}

.call-popup__title {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.call-popup__form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.call-popup__name-wrap {
  position: relative;
  margin-bottom: 20px;
}

.call-popup__name {
  font-family: 'Montserrat';
  border-radius: 28px;
  border: 2px solid #e0e0e0;
  font-size: 20px;
  padding: 10px 40px 10px 20px;
  color: #11274c;
  transition: all .375s;
}

.call-popup__name-wrap::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: url('../img/icons/user-input.svg') no-repeat;
  background-size: contain;
  background-position: center;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.call-popup__phone-wrap {
  position: relative;
  margin-bottom: 50px; 
}

.call-popup__phone {
  font-family: 'Montserrat';
  border-radius: 28px;
  border: 2px solid #e0e0e0;
  font-size: 20px;
  padding: 10px 40px 10px 20px;
  color: #11274c;
  transition: all .375s;
}

.call-popup__phone-wrap::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 22px;
  background: url('../img/icons/phone-input.svg') no-repeat;
  background-size: contain;
  background-position: center;
  right: 15px;
  top: 50%;
  transform: translateY(-50%); 
}

.call-popup__name-wrap:hover input,
.call-popup__name-wrap > input:focus,
.call-popup__phone-wrap:hover input,
.call-popup__phone-wrap > input:focus {
  border: 2px solid #000;
}

.call-popup__send-btn {
  font-family: 'Montserrat';
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 28px;
  padding: 10px 25px;
  font-size: 20px;
  color: #fff;
  background: #0b2e70e3;
  transition: all .375s;
}

.call-popup__send-btn:hover {
  background: #11274c;
  border-radius: 5px;
}

/* development */
.development {
  background-color: #25263a;
}

.development__text {
  font-family: 'Montserrat';
  font-weight: 500;
  width: 100%;
  display: inline-block;
  padding: 5px 0;
  text-align: center;
  color: rgb(0 0 0);
}

.development__text-span {
  transition: .75s;
}

.development__text:hover .development__text-span {
  color: rgb(220 217 241 / 89%);
}