@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

.wrapper {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.header {
  z-index: 3000;
}

.main {
  z-index: 1000;
}

.footer {
  z-index: 1500;
}

.container {
  padding: 0px 0px;
  width: 1200px;
  margin: auto;
}
@media (max-width: 1230px) {
  .container {
    padding: 0px 20px;
    width: 100%;
  }
}
@media (max-width: 770px) {
  .container {
    padding: 0px 10px;
  }
}

.body.no-scroll {
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

.padding-header {
  margin: 108px 0px 0px;
}
@media (max-width: 1050px) {
  .padding-header {
    margin: 100px 0px 0px;
  }
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header.scroll .main-header::before {
  opacity: 1;
}
.header.scroll .main-header__body {
  padding: 15px 0px;
}

.main-header {
  width: 100%;
  position: relative;
  z-index: 1;
}
.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  opacity: 0;
  transition: 0.5s all;
  z-index: -1;
}

.main-header__body {
  padding: 30px 0px;
  display: flex;
  align-items: center;
  transition: 0.5s all;
}

.main-header__logo {
  flex: auto;
}

.main-header__menu {
  margin: 0px 40px 0px 0px;
  display: flex;
  align-items: center;
}

.main-header__menu-item {
  margin: 0px 30px 0px 0px;
}
.main-header__menu-item:last-child {
  margin: 0;
}

.main-header__menu-link {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.main-header__language {
  margin: 0px 10px 0px 0px;
  position: relative;
}
.main-header__language:hover .main-header__language-status {
  opacity: 0.5;
}
.main-header__language:hover .main-header__language-status-icon {
  transform: rotate(180deg);
}
.main-header__language:hover .main-header__language-submenu {
  top: 100%;
  opacity: 1;
}

.main-header__language-status {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}

.main-header__language-status-text {
  margin: 0px 5px 0px 0px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.main-header__language-status-icon {
  max-height: 100%;
  display: flex;
  align-items: center;
  transition: 0.5s all;
}
.main-header__language-status-icon svg {
  max-height: 100%;
}

.main-header__language-submenu {
  position: absolute;
  top: -1000px;
  left: 0;
  padding: 10px 0px 0px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.main-header__language-submmenu-list {
  padding: 25px;
  border: 1px solid #282F37;
  border-radius: 10px;
  background: #ffffff;
}

.main-header__language-submenu-item {
  margin: 0px 0px 10px;
}
.main-header__language-submenu-item:last-child {
  margin: 0;
}

.main-header__language-submenu-link {
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}
.main-header__language-submenu-link:hover {
  opacity: 0.5;
}

.main-header__submit {
  padding: 15px 20px;
  border: 2px solid #282F37;
  border-radius: 50px;
  background: #282F37;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}
.main-header__submit:hover {
  background: transparent;
  color: #282F37;
}

.main-header__burger {
  display: none;
}

.header__contact-info {
	display: none;
  position: relative;
  transition: 0.3s ease;
}

.header-call-icon {
  display: none;
}
.header__contact-list {
  background-color:  #282F37;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.header__contact-dropdown {
  position: absolute;
  top: 150%;
  left: 0;
  width: 100%;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s ease;
  z-index: 100;
}

.header__contact-dropdown.dropdown-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-call {
  font-size: 14px;
  line-height: 100%;
  font-weight: 510;
  font-family: "Montserrat", Arial, sans-serif;
  color: #fff;
  transition: 0.3s ease;
}

.header-call:focus,
.header-call:hover,
.header-call:active {
  color: #282F37;
}

.btn-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 510;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  padding: 10px;
  color: #fff;
  background-color: #282F37;
  transition: 0.3s ease;
  cursor: pointer;
  margin-right: 10px;
}

.btn-2:hover,
.btn-2:focus,
.btn-2:active {
  color: #fff;
  border: 1px solid #282F37;
  background-color: transparent;
}

.btn-2:hover svg path,
.btn-2:focus svg path,
.btn-2:active svg path {
  fill:#282F37; 
  stroke: #282F37;
}

.header__contact-info.btn-2{
	display: none;
}

@media(max-width:1050px){
	.header__contact-info {
		display: block;
	}
	
	.header-call-icon {
	  flex-shrink:0;
	  display: block;
	}
	
	.header__contact-info.btn-2{
		display: flex;
	}
	
	.header__contact-dropdown {
	    left: -87px;
	  }
	
	  .header__contact .header__contact-info p {
	    display: none;
	  }
}

@media (max-width: 1220px) {
  .main-header__menu {
    margin: 0px 20px 0px 0px;
  }
  .main-header__menu-item {
    margin: 0px 15px 0px 0px;
  }
  
  .main-header__menu-link {
    font-size: 15px;
  }
}

@media (max-width: 1100px) {
  .main-header__language {
    margin: 0px 20px 0px 0px;
  }
  
  .main-header__menu-link {
    font-size: 14px;
  }
}
@media (max-width: 1050px) {
  .main-header__menu {
    display: none;
  }
  .main-header__language {
    display: none;
  }
  .main-header__submit {
    display: none;
  }
  .main-header__burger {
    display: block;
  }
}
.smart-header {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  display: inline;
  overflow-y: auto;
  z-index: 10000;
  transition: 1s all;
}
.smart-header.active {
  right: 0;
}
.smart-header.active .container::before {
  right: 0;
  opacity: 0.5;
}
.smart-header.active .smart-header__content {
  right: 0;
}
.smart-header .container {
  padding: 20px;
  width: 100%;
  height: 100%;
  position: relative;
}
.smart-header .container::before {
  content: "";
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000000;
  opacity: 0;
  z-index: -1;
  transition: opacity 1s ease;
}

.smart-hedaer__body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
}

.smart-header__content {
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: auto;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.smart-header__exit {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: end;
}

.smart-header__exit-img {
  width: 30px;
  height: 30px;
  border: 2px solid #000000;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.smart-header__exit-img span {
  width: 20px;
  height: 2px;
  background: #000000;
  display: inline-block;
  position: relative;
  transform: rotate(45deg);
}
.smart-header__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: rotate(90deg);
}

.smart-header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-header__menu-item {
  margin: 0px 0px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-header__menu-link {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: #000000;
}

.smart-header__language {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.smart-header__language-item {
  margin: 0px 10px 0px 0px;
  display: flex;
  align-items: center;
}
.smart-header__language-item:last-child {
  margin: 0;
}
.smart-header__language-item:last-child .smart-header__language-icon {
  display: none;
}

.smart-header__language-link {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.smart-header__language-icon {
  padding: 0px 0px 0px 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.logo .logo__body {
  display: inline-block;
}
.logo .logo__img {
  max-width: 220px;
  width: 100%;
}
.logo .logo__img img {
  width: 100%;
}

.burger .burger__img {
  min-width: 40px;
  height: 40px;
  border: 2px solid #282f37;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: 0.5s all;
}
.burger .burger__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #282F37;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  opacity: 0;
}
.burger .burger__img:hover {
  opacity: 0.5;
}
.burger .burger__img span {
  width: 20px;
  height: 4px;
  display: inline-block;
  background: #282F37;
  position: relative;
  transition: 0.5s all;
}
.burger .burger__img span::before,
.burger .burger__img span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #282F37;
  transition: 0.5s all;
}
.burger .burger__img span::before {
  top: -7px;
}
.burger .burger__img span::after {
  bottom: -7px;
}

.slick-track {
  display: flex;
}

.title {
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  color: #282F37;
}
@media (max-width: 770px) {
  .title {
    padding: 0;
    font-size: 25px;
    line-height: 30px;
  }
}

.text-hover {
  position: relative;
}
.text-hover::before {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 0%;
  height: 2px;
  background: #282F37;
  transition: 1s all;
}
.text-hover:hover::before {
  width: 100%;
}

.social {
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 1600;
}
@media (max-width: 770px) {
  .social {
    right: 10px;
    bottom: 10px;
  }
}

.social__body {
  display: flex;
  flex-direction: column;
}

.social__link {
  margin: 0px 0px 10px;
  width: 70px;
  height: 70px;
  border: 2px solid #282F37;
  border-radius: 50%;
  background: #F5F6F1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.social__link:last-child {
  margin: 0;
}
.social__link img {
  width: 50%;
}
.social__link:hover {
  scale: 0.9;
  opacity: 0.6;
}
@media (max-width: 770px) {
  .social__link {
    width: 50px;
    height: 50px;
  }
  .social__link img,
  .social__link svg {
    width: 25px;
  }
}

.fancybox__container {
  z-index: 4000;
}

.modal {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.modal .container {
  height: 100%;
}
.modal.active {
  left: 0;
}
.modal.active .modal__fullscreen-exit {
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal__body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__fullscreen-exit {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
  z-index: 2;
}

.modal__content {
  padding: 50px;
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  background: #ffffff;
  position: relative;
  z-index: 3;
}

.modal__exit {
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal__exit-img {
  width: 30px;
  height: 30px;
  border: 2px solid #000000;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.modal__exit-img span {
  width: 20px;
  height: 3px;
  background: #000000;
  display: inline-block;
  position: relative;
  rotate: 45deg;
}
.modal__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  rotate: 90deg;
}
.modal__exit-img:hover {
  opacity: 0.5;
}

.modal__title {
  margin: 0px 0px 30px;
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 770px) {
  .modal__title {
    font-size: 25px;
  }
}

.modal__form {
  display: flex;
  flex-direction: column;
}

.modal__input {
  margin: 0px 0px 15px;
  padding: 20px 30px;
  position: relative;
  border-radius: 15px;
  background: rgba(154, 154, 154, 0.3019607843);
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
}
.modal__input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #333333;
}
.modal__input::placeholder {
  transition: 0.5s all;
  color: #333333;
}
.modal__input:focus::-moz-placeholder {
  opacity: 0.5;
}
.modal__input:focus::placeholder {
  opacity: 0.5;
}

.modal__submit {
  padding: 20px 30px;
  border: 2px solid #282F37;
  border-radius: 15px;
  background: #282F37;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.modal__submit:hover {
  background: transparent;
  color: #282F37;
}

@media (max-width: 770px) {
  .modal__title {
    margin: 0px 0px 20px;
  }
  .modal__input {
    margin: 0px 0px 15px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .modal__content {
    padding: 70px 20px 50px;
  }
}
.swiper-wrapper {
  transition-timing-function: linear;
}

.message {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 10000;
}
.message.active {
  animation: messageSlide 5s ease-in-out forwards;
}
@keyframes messageSlide {
  0% {
    bottom: -200px;
    opacity: 0;
  }
  15% {
    bottom: 20px;
    opacity: 1;
  }
  70% {
    bottom: 20px;
    opacity: 1;
  }
  100% {
    bottom: -200px;
    opacity: 0;
  }
}

.message__body {
  background: #4caf50;
  padding: 16px 24px;
  border-radius: 8px;
}

.message__text {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: white;
}

.fullscreen-home {
  margin: 0px 0px 40px;
  /* padding: 0px 0px 20px;
  height: calc(100vh - 108px); */
}
/* @media (max-width: 1050px) {
  .fullscreen-home {
    min-height: calc(100vh - 100px);
  }
} */
.fullscreen-home .container {
  height: 100%;
}

.fullscreen-home__body {
  padding: 179px 70px 145px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #F5F6F1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fullscreen-home__woman {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(40% - 20px);
  z-index: 1;
}
.fullscreen-home__woman img {
  width: 100%;
}

.fullscreen-home__content {
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  z-index: 2;
}

.fullscreen-home__content-title {
  margin: 0px 0px 30px;
  max-width: 550px;
  width: 100%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  color: #282F37;
}

.fullscreen-home__content-text {
  margin: 0px 0px 50px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}

.fullscreen-home__content-submit {
  padding: 15px 20px;
  /* border: 2px solid #282F37; */
  border-radius: 50px;
  /* background: #282F37; */
  background: rgba(37, 211, 102, 1);
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}
.fullscreen-home__content-submit:hover {
  border: 2px solid rgba(37, 211, 102, 1);
  background: transparent;
  color: #282F37;
}

.fullscreen-main__social {
  position: absolute;
  bottom: 20px;
  right: 70px;
  display: flex;
  align-items: center;
  z-index: 3;
}

.fullscreen-main__social-item {
  margin: 0px 10px 0px 0px;
}
.fullscreen-main__social-item:last-child {
  margin: 0;
}

.fullscreen-main__social-link {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #282F37;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.fullscreen-main__social-link path {
  transition: 0.5s all;
}
.fullscreen-main__social-link:hover {
  background: #F5F6F1;
}
.fullscreen-main__social-link:hover path {
  fill: #282F37;
}

@media (max-width: 770px) {
  /* .fullscreen-home {
    padding: 0px 0px 10px;
  } */
  .fullscreen-home__body {
    padding: 50px 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
  }
  .fullscreen-home__body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(40, 47, 55, 0.8);
    z-index: -1;
  }
  .fullscreen-home__body .fullscreen-home__woman {
    width: 30%;
    z-index: -2;
  }
  .fullscreen-home__content-title {
    margin: 0px 0px 10px;
    font-size: 22px;
    line-height: 28px;
    color: #ffffff;
  }
  .fullscreen-home__content-text {
    margin: 0px 0px 20px;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
  }
  .fullscreen-home__content-submit {
    padding: 12px 20px;
  }
  .fullscreen-main__social {
    right: 20px;
  }
}
@media (max-width: 580px) {
	.fullscreen-home{
		height:70vh;
	}
	
	
.fullscreen-home__body .fullscreen-home__woman {
    width: 50%;
    z-index: -2;
  }
  
  
}
.services-home {
  margin: 0px 0px 30px;
}

.services-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-home__title {
  margin: 0px 0px 30px;
  text-align: center;
}

.services-home__row {
 /*  width: calc(100% + 20px);
 display: grid;
 grid-template: repeat(1, 1fr)/repeat(3, 1fr);
 grid-template-areas: "col1 col2 col3" "col1 col4 col5" "col6 col7 col8"; */
 width: 100%;
 display: grid;
 grid-template-columns: repeat(4,1fr);
 gap: 20px;
}

.services-home__column {
 /*  padding: 0px 10px 20px; */
  width: 100%;
}



/* .services-home__column:nth-child(1) {
  grid-area: col1;
}
.services-home__column:nth-child(2) {
  grid-area: col2;
}
.services-home__column:nth-child(3) {
  grid-area: col3;
}
.services-home__column:nth-child(4) {
  grid-area: col4;
}
.services-home__column:nth-child(5) {
  grid-area: col5;
}
.services-home__column:nth-child(6) {
  grid-area: col6;
}
.services-home__column:nth-child(7) {
  grid-area: col7;
}
.services-home__column:nth-child(8) {
  grid-area: col8;
} */
/* .services-home__column:nth-child(1) .services-home__column-body {
  padding: 100px 25px 25px;
  justify-content: start;
}
.services-home__column:nth-child(2) .services-home__column-body {
  justify-content: start;
} */
.services-home__column:last-child .services-home__column-body {
  background: #282F37;
}
.services-home__column:last-child .services-home__column-title {
  /* margin: 0px 0px 10px; */
  color: #ffffff;
}

.services-home__column-body {
  padding: 25px;
  width: 100%;
  height: 100%;
  min-height: 250px;
  border-radius: 20px;
  overflow: hidden;
  background: #F6F5F3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid transparent;
  transition: 0.3s ease;
}

.services-home__column-body:focus,
.services-home__column-body:hover,
.services-home__column-body:active{
	border-color: #282F37;
}


.services-home__column-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  line-height: 30px;
  color: #282F37;
  z-index: 2;
  text-align: center;
}

.services-home__column-img {
  /* position: absolute;
  bottom: 0;
  right: 0;
  max-width: 100% ;
  z-index: 1; */
  width: 56px;
  height: 56px;
}
.services-home__column-img img {
  max-width: 100%;
}

/* .services-home__column-icon {
  margin: 0px 0px 10px;
} */

.services-home__column-submit {
  padding: 15px 20px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  background: #ffffff;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #282F37;
}
.services-home__column-submit:hover {
  background: transparent;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .services-home__row {
    /* grid-template: repeat(1, 1fr)/repeat(2, 1fr);
    grid-template-areas: "col1 col2" "col3 col4" "col5 col6" "col7 col8"; */
    grid-template-columns:1fr 1fr 1fr;
    gap: 15px;
  }
}
@media (max-width: 770px) {
  .services-home {
    margin: 0px 0px 40px;
  }
  .services-home__row {
    grid-template-columns:1fr 1fr;
    gap: 12px;
  }

  .services-home__column-body {
    border-radius: 10px;
    position: relative;
    z-index: 1;
  }
 /*  .services-home__column-body::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(40, 47, 55, 0.9);
   z-index: -1;
 } */
  .services-home__column-img {
    z-index: -2;
  }
  .services-home__column-title {
    font-size: 16px;
    line-height: 22px;
    /* color: #ffffff; */
  }
}

@media(max-width:580px){
	.services-home__row {
	    /* width: calc(100% + 0px);
	    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
	    grid-template-areas: "col1" "col2" "col3" "col4" "col5" "col6" "col7" "col8"; */
	    grid-template-columns:1fr ;
	  }

    
    .services-home__column-body {
	    min-height: 94px;
	}
	
	.services-home__column:nth-child(1) .services-home__column-body {
	    padding: 25px 25px;
	    justify-content: center;
	}
	

	
	.services-home__column:last-child .services-home__column-title {
	    color: #ffffff;
	}
	
	.services-home__column-submit {
	    padding: 12px 10px;
	}
}
@media (max-width: 500px) {

  

  .services-home__column:last-child {
    padding: 0;
  }
  .services-home__column-body::before {
    opacity: 0;
  }
  .services-home__column-title {
    color: #282F37;
  }
  
  .services-home__column-title br{
    display:none;
  }
  .services-home__column:nth-child(1) .services-home__column-body {
	    padding: 15px;
	}
	
	.services-home__column-body {
	    padding: 15px;
	}
  .services-home__column:nth-child(2) .services-home__column-body {
    justify-content: center;
	}

}
.why-home {
  margin: 0px 0px 30px;
}

.why-home__body {
  padding: 30px;
  border-radius: 20px;
  background: #282F37;
  display: flex;
  align-items: center;
}

.why-home__info {
  margin: 0px 20px 0px 0px;
  max-width: 250px;
  width: 100%;
  min-width: 250px;
}

.why-home__info-title {
  margin: 0px 0px 25px;
  color: #ffffff;
}

.why-home__info-text {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #F9F9F9;
}

.why-home__content {
  width: 100%;
  display: flex;
  align-items: center;
}

.why-home__content-row {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.why-home__content-column {
  padding: 0px 10px;
  width: 100%;
}

.why-home__content-column-body {
  padding: 70px 20px 50px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #F5F6F1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.5s all;
}
.why-home__content-column-body:hover {
  margin: -10px 0px 0px;
}

.why-home__content-column-icon {
  margin: 0px 0px 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-home__content-column-title {
  margin: 0px 0px 25px;
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: #282F37;
}

.why-home__content-column-content {
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}

@media (max-width: 1150px) {
  .why-home__body {
    flex-direction: column;
  }
  .why-home__info {
    margin: 0px 0px 40px;
    max-width: 400px;
  }
  .why-home__info-title {
    text-align: center;
  }
  .why-home__info-text {
    text-align: center;
  }
}
@media (max-width: 1000px) {
  .why-home__body {
    padding: 40px 5px 10px;
  }
  .why-home__content-row {
    width: calc(100% + 10px);
  }
  .why-home__content-column {
    padding: 0px 5px;
  }
}
@media (max-width: 770px) {
  .why-home__body {
    padding: 30px 15px 15px;
    border-radius: 10px;
  }
  .why-home__info {
    margin: 0px 0px 30px;
  }
  .why-home__info-title {
    margin: 0px 0px 10px;
  }
  .why-home__info-text {
    font-size: 14px;
    line-height: 20px;
  }
  .why-home__content-row {
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .why-home__content-column {
    padding: 0px 0px 15px;
  }
  .why-home__content-column:last-child {
    padding: 0px;
  }
  .why-home__content-column-body {
    padding: 30px 20px;
    border-radius: 5px;
  }
  .why-home__content-column-icon {
    margin: 0px 0px 20px;
  }
  .why-home__content-column-title {
    margin: 0px 0px 10px;
    font-size: 18px;
    line-height: 24px;
  }
  .why-home__content-column-content {
    font-size: 14px;
    line-height: 20px;
  }
}
.partners-home {
  margin: 0px 0px 30px;
}

.partners-home__body {
  padding: 35px;
  border-radius: 20px;
  overflow: hidden;
  background: #F5F6F1;
  display: flex;
  align-items: center;
}

.partners-home__info {
  margin: 0px 30px 0px 0px;
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.partners-home__info-title {
  margin: 0px 0px 25px;
}

.partners-home__info-text {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}

.partners-home__content {
  width: 70%;
  /* display: flex;
  flex-direction: column;
  align-items: center; */
}

.partners-home__content-row {
  width: calc(100% + 20px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.parners-home__content-column {
  padding: 0px 5px 10px;
  width: auto;
}

.partners-home__content-column-body {
  width: auto;
  height: 100%;
}

.partners-home__content-column-img {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.partners-home__content-column-img img {
  max-width: 100%;
}

.partners-home__item{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	height: 100px;
}

.partners-home__item img{
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

@media (max-width: 1000px) {
  .partners-home__content-column-body {
    max-width: 150px;
  }
}
@media (max-width: 770px) {
  .partners-home__body {
    border-radius: 10px;
    flex-direction: column;
  }
  .partners-home__info {
    margin: 0px 0px 20px;
    align-items: center;
  }
  .partners-home__info-title {
    margin: 0px 0px 10px;
    text-align: center;
  }
  .partners-home__info-text {
    text-align: center;
  }
  .partners-home__content-column-body {
    max-width: 100%;
  }
  
  .partners-home__content{
  	width:100%;
  }
}
@media (max-width: 500px) {
  .partners-home__body {
    padding: 30px 15px;
  }
}
.language-home {
  margin: 0px 0px 100px;
}

@media (max-width: 768px){
	.language-home {
	  margin: 0px 0px 70px;
	}	
}

.language-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.language-home__title {
  margin: 0px 0px 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.language-home__number {
  display: flex;
  align-items: center;
}

.catalog__number{
  display: flex;
  align-items: center;	
}

.btn-arrow{
  min-width: 30px;
  height: 30px;
  border: 2px solid #282F37;
  border-radius: 10px;
  background: #282F37;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;	
}

.language-home__number-arrow {
  min-width: 30px;
  height: 30px;
  border: 2px solid #282F37;
  border-radius: 10px;
  background: #282F37;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.language-home__number-arrow.left {
  margin: 0px 15px 0px 0px;
}

.btn-arrow.left {
  margin: 0px 15px 0px 0px;
}

.language-home__number-arrow path {
  transition: 0.5s all;
}
.language-home__number-arrow:hover {
  background: #F5F6F1;
}
.language-home__number-arrow:hover path {
  stroke: #282F37;
}

.btn-arrow path {
  transition: 0.5s all;
}
.btn-arrow:hover {
  background: #F5F6F1;
}
.btn-arrow:hover path {
  stroke: #282F37;
}

.language-home__number-current {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.language-home__number-slesh {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.language-home__number-result {
  margin: 0px 15px 0px 0px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.pag-current {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.pag-slesh {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.pag-result {
  margin: 0px 15px 0px 0px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.language-home__row {
  width: calc(100% + 20px);
}

.catalog-inner {
  width: calc(100% + 20px);
}

.catalog__img {
	transition: 0.3s ease;
	 overflow: hidden;
	border-radius: 20px;
}

.catalog__img img{
	object-fit: cover;
	width: 100%;
	border-radius: 20px; 
	transition: 0.3s ease;
	transform: scale(1);
}

.catalog__img:hover img,
.catalog__img:focus img,
.catalog__img:active img {
    transform: scale(1.05); 
}

.language-home__row .slick-list.draggable {
  overflow: hidden;
}

.language-home__column {
  padding: 0px 10px;
  width: 100%;
}

.language-home__column-body {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.language-home__column-language {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 2;
}

.language-home__column-img {
  padding-bottom: 100%;
  width: 100%;
  position: relative;
  z-index: -2;
}
.language-home__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.language-home__column-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.language-home__column-content-body {
  padding: 25px 15px;
  width: 100%;
  background: #282F37;
}

.language-home__column-content-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .language-home__row {
    width: calc(100% + 10px);
  }
  .catalog-inner {
    width: calc(100% + 5px);
	}
  
  .language-home__column {
    padding: 0px 5px;
  }
}
@media (max-width: 770px) {
  .language-home__title {
    flex-direction: column;
  }
  .language-home__title-text {
    margin: 0px 0px 10px;
  }
  .language-home__column-body {
    border-radius: 10px;
  }
  .language-home__column-content-body {
    padding: 15px;
  }
  .language-home__column-content-title {
    font-size: 14px;
    line-height: 20px;
  }
}
.bid-home {
  margin: 0px 0px 90px;
}

.bid-home__body {
  padding: 60px 90px 20px 30px;
  border-radius: 20px;
  background: #F5F6F1;
  display: flex;
}

.bid-home__info {
  margin: 0px 40px 0px 0px;
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.bid-home__info-title {
  margin: 0px 0px 30px;
}

.bid-home__info-content {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}

.info-home__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.info-home__form-input {
  margin: 0px 0px 20px;
  padding: 16px 30px;
  width: 100%;
  border-radius: 50px;
  background: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #282F37;
}
.info-home__form-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #282F37;
}
.info-home__form-input::placeholder {
  transition: 0.5s all;
  color: #282F37;
}
.info-home__form-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.info-home__form-input:focus::placeholder {
  opacity: 0.5;
}

.info-home__form-submit {
  padding: 16px 40px;
  border: 2px solid #282F37;
  border-radius: 50px;
  background: #282F37;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}
.info-home__form-submit:hover {
  background: transparent;
  color: #282F37;
}

@media (max-width: 770px) {
  .bid-home {
    margin: 0px 0px 50px;
  }
  .bid-home__body {
    padding: 50px;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
  }
  .bid-home__info {
    margin: 0px 0px 20px;
    max-width: 400px;
    align-items: center;
  }
  .bid-home__info-title {
    margin: 0px 0px 10px;
    text-align: center;
  }
  .bid-home__info-content {
    text-align: center;
  }
  .info-home__form {
    padding: 30px 20px;
    max-width: 400px;
  }
  .info-home__form-input {
    margin: 0px 0px 15px;
    font-size: 14px;
  }
  .info-home__form-submit {
    padding: 13px 30px;
  }
}
@media (max-width: 440px) {
  .bid-home__body {
    padding: 50px 25px;
  }
}
.about-home {
  margin: 0px 0px 30px;
}

.about-home__body {
  padding: 0px 60px 0px 30px;
  border-radius: 20px;
  background: #282F37;
  display: flex;
  justify-content: space-between;
}

.about-home__image {
  flex: 0 0 calc(45% - 35px);
  width: 100%;
}

.about-home__image-img {
  padding-bottom: 120%;
  width: 100%;
  height: 100%;
  position: relative;
}
.about-home__image-img img {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: calc(100% + 20px);
  border-radius: 30px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-home__content {
  flex: 0 0 calc(55% - 35px);
  padding: 40px 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.about-home__content-title {
  margin: 0px 0px 25px;
  color: #ffffff;
}

.about-home__content-content {
  margin: 0px 0px 30px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
.about-home__content-content p {
  margin: 0px 0px 15px;
}
.about-home__content-content p:last-child {
  margin: 0;
}

.about-home__content-submit {
  padding: 15px 40px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  background: #ffffff;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #282F37;
}
.about-home__content-submit:hover {
  background: transparent;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .about-home__body {
    padding: 0px 30px;
  }
  .about-home__image {
    flex: 0 0 calc(45% - 10px);
  }
  .about-home__content {
    flex: 0 0 calc(55% - 10px);
  }
}
@media (max-width: 770px) {
  .about-home__body {
    padding: 0px 20px 50px;
    border-radius: 10px;
    flex-direction: column;
  }
  .about-home__image-img {
    padding-bottom: 70%;
  }
  .about-home__image-img img {
    bottom: 25px;
    height: calc(100% + 0px);
    border-radius: 10px;
    -o-object-position: top;
       object-position: top;
  }
  .about-home__content {
    padding: 0px;
  }
  .about-home__content-title {
    margin: 0px 0px 10px;
    width: 100%;
    text-align: center;
  }
  .about-home__content-content {
    margin: 0px 0px 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .about-home__content-content p {
    margin: 0px 0px 10px;
  }
  .about-home__content-submit {
    padding: 13px 30px;
  }
}
.reviews-home {
  margin: 0px 0px 30px;
}

.reviews-home__body {
  display: flex;
}

.reviews-home__info {
  margin: 0px 20px 0px 0px;
  max-width: 280px;
  width: 100%;
  min-width: 280px;
}

.reviews-home__info-body {
  padding: 30px 20px;
  width: 100%;
  border-radius: 20px;
  background: #F5F6F1;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.reviews-home__info-title {
  margin: 0px 0px 40px;
  width: 100%;
  font-size: 25px;
  line-height: 30px;
}

.reviews-home__info-pagination {
  display: flex;
  align-items: center;
}

.reviews-home__info-pagination-arrow {
  min-width: 30px;
  height: 30px;
  border: 2px solid #282F37;
  border-radius: 10px;
  background: #282F37;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.reviews-home__info-pagination-arrow.left {
  margin: 0px 15px 0px 0px;
}
.reviews-home__info-pagination-arrow path {
  transition: 0.5s all;
}
.reviews-home__info-pagination-arrow:hover {
  background: transparent;
}
.reviews-home__info-pagination-arrow:hover path {
  stroke: #282F37;
}

.reviews-home__info-pagination-current {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.reviews-home__info-pagination-slesh {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.reviews-home__info-pagination-result {
  margin: 0px 15px 0px 0px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.reviews-home__content {
  width: calc(100% - 300px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-home__content-row {
  width: calc(100% + 20px);
  min-width: 0;
  height: 100%;
}
.reviews-home__content-row .slick-list.draggable {
  height: 100%;
  overflow: hidden;
}
.reviews-home__content-row .slick-track {
  height: 100%;
}

.reviews-home__content-column {
  padding: 0px 10px;
  width: 100%;
}

.reviews-home__content-column-body {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #F5F6F1;
}

.reviews-home__content-column-video {
  width: 100%;
  height: 100%;
}
.reviews-home__content-column-video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-home__content-column-info {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.reviews-home__content-column-info-content {
  margin: 0px 0px 10px;
  flex: auto;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #282F37;
}

.reviews-home__content-column-info-name {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}

@media (max-width: 1000px) {
  .reviews-home__content-row {
    width: calc(100% + 10px);
  }
  .reviews-home__content-column {
    padding: 0px 5px;
  }
}
@media (max-width: 770px) {
  .reviews-home__body {
    flex-direction: column;
  }
  .reviews-home__info {
    margin: 0px 0px 10px;
    max-width: 100%;
    min-width: auto;
  }
  .reviews-home__info-body {
    padding: 20px;
    border-radius: 10px;
  }
  .reviews-home__info-title {
    margin: 0px 0px 20px;
  }
  .reviews-home__content {
    width: calc(100% + 0px);
  }
  .reviews-home__content-column-body {
    border-radius: 10px;
  }
  .reviews-home__content-column-video {
    padding-bottom: 70%;
    width: 100%;
    position: relative;
  }
  .reviews-home__content-column-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .reviews-home__content-column-info-content {
    font-size: 14px;
    line-height: 20px;
  }
}
.portfile-home {
  margin: 0px 0px 30px;
}

.portfile-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfile-home__title {
  margin: 0px 0px 30px;
  width: 100%;
}

.portfile-home__row {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.portfile-home__column {
  padding: 0px 10px;
  width: 100%;
}

.portfile-home__column-body {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #282F37;
}

.portfile-home__column-img-and-video {
  padding-bottom: 60%;
  width: 100%;
  position: relative;
}
.portfile-home__column-img-and-video iframe,
.portfile-home__column-img-and-video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.portfile-home__column-content {
  padding: 20px 10px 40px 30px;
}

.portfile-home__column-content-title {
  margin: 0px 0px 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #ffffff;
}

.portfile-home__column-content-content {
  /* max-width: 290px; */
  width: 100%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .portfile-home__row {
    width: calc(100% + 10px);
  }
  .portfile-home__column {
    padding: 0px 5px;
  }
  .portfile-home__column-content {
    padding: 20px 15px 30px;
  }
  .portfile-home__column-content-title {
    margin: 0px 0px 10px;
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 770px) {
  .portfile-home__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .portfile-home__column-body {
    border-radius: 10px;
  }
  .portfile-home__column-content-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 660px) {
  .portfile-home__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .portfile-home__column {
    padding: 0px 0px 15px;
  }
  .portfile-home__column:last-child {
    padding: 0;
  }
}
.contact-home {
  margin: 0px 0px 50px;
}

.contact-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-home__row {
  margin: 0px 0px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.contact-home__info {
  flex: 0 0 calc(50% - 10px);
  width: 100%;
}

.contact-home__info-list {
  display: flex;
  flex-direction: column;
}

.contact-home__info-item {
  margin: 0px 0px 20px;
  padding: 30px;
  border-radius: 20px;
  background: #F5F6F1;
}
.contact-home__info-item:last-child {
  margin: 0;
}

.contact-home__info-title {
  margin: 0px 0px 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #282F37;
}

.contact-home__info-link {
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}
.contact-home__info-link:hover {
  opacity: 0.5;
}

.contact-home__form {
  flex: 0 0 calc(50% - 10px);
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  background: #F5F6F1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-home__form-title {
  margin: 0px 0px 20px;
}

.contact-home__form-content {
  margin: 0px 0px 20px;
  max-width: 300px;
  width: 100%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}

.contact-home__form-form {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.contact-home__form-input {
  margin: 0px 0px 20px;
  padding: 15px 30px;
  width: 100%;
  border-radius: 50px;
  background: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}
.contact-home__form-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #282F37;
}
.contact-home__form-input::placeholder {
  transition: 0.5s all;
  color: #282F37;
}
.contact-home__form-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.contact-home__form-input:focus::placeholder {
  opacity: 0.5;
}

.contact-home__form-submit {
  padding: 15px 40px;
  border: 2px solid #282F37;
  border-radius: 50px;
  background: #282F37;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}
.contact-home__form-submit:hover {
  background: transparent;
  color: #282F37;
}

.contact-home__social {
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  background: #282F37;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-home__social-phone {
  display: flex;
  align-items: center;
}

.contact-home__social-phone-text {
  margin: 0px 10px 0px 0px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #ffffff;
}

.contact-home__social-phone-link {
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
}
.contact-home__social-phone-link:hover {
  opacity: 0.5;
}

.contact-home__social-list {
  display: flex;
  align-items: center;
}

.contact-home__social-list-item {
  margin: 0px 10px 0px 0px;
}
.contact-home__social-list-item:last-child {
  margin: 0;
}

.contact-home__social-list-link {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.contact-home__social-list-link:hover {
  opacity: 0.5;
}

@media (max-width: 1000px) {
  .contact-home__row {
    margin: 0px 0px 10px;
  }
  .contact-home__info {
    flex: 0 0 calc(50% - 5px);
  }
  .contact-home__info-item {
    margin: 0px 0px 10px;
  }
  .contact-home__form {
    flex: 0 0 calc(50% - 5px);
  }
}
@media (max-width: 770px) {
  .contact-home__row {
    flex-direction: column;
  }
  .contact-home__info {
    margin: 0px 0px 10px;
  }
  .contact-home__info-item {
    border-radius: 10px;
  }
  .contact-home__info-title {
    margin: 0px 0px 10px;
    font-size: 20px;
    line-height: 25px;
  }
  .contact-home__info-link {
    font-size: 14px;
    line-height: 20px;
  }
  .contact-home__form {
    padding: 30px 20px;
    border-radius: 10px;
    align-items: center;
  }
  .contact-home__form-form {
    align-items: center;
  }
  .contact-home__form-title {
    margin: 0px 0px 10px;
  }
  .contact-home__form-content {
    max-width: 400px;
    text-align: center;
  }
  .contact-home__form-form {
    max-width: 400px;
    width: 100%;
  }
  .contact-home__social {
    border-radius: 10px;
    flex-direction: column;
  }
  .contact-home__social-phone {
    margin: 0px 0px 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-home__social-phone-text {
    margin: 0;
    font-size: 16px;
    line-height: 25px;
  }
  .contact-home__social-phone-link {
    font-size: 16px;
    line-height: 25px;
  }
}
.fullscreen-about {
  margin: 0px 0px 80px;
}
.fullscreen-about.services .fullscreen-about__woman {
  right: 140px;
  width: 25%;
}
@media (max-width: 900px) {
  .fullscreen-about.services .fullscreen-about__woman {
    right: 50px;
    width: 25%;
  }
}
@media (max-width: 770px) {
  .fullscreen-about.services .fullscreen-about__woman {
    right: 20px;
    width: 23%;
  }
}

@media (max-width: 770px) {
  .fullscreen-about.services .fullscreen-about__woman {
    right: 20px;
    width: 25%;
  }
}


@media (max-width: 400px) {
  .fullscreen-about.services .fullscreen-about__woman {
    right: 20px;
    width: 60%;
  }
}
.fullscreen-about.contact .fullscreen-about__woman {
  right: 140px;
  width: 35%;
}
@media (max-width: 900px) {
  .fullscreen-about.contact .fullscreen-about__woman {
    right: 50px;
    width: 40%;
  }
}
@media (max-width: 770px) {
  .fullscreen-about.contact .fullscreen-about__woman {
    right: 20px;
    width: 70%;
  }
}

.fullscreen-about__body {
  padding: 120px 120px 177px;
  border-radius: 20px;
  background: #F5F6F1;
  position: relative;
  overflow: hidden;
}

.fullscreen-about__woman {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 40%;
  z-index: 0;
}
.fullscreen-about__woman img {
  width: 100%;
}


.fullscreen-about__content-title {
  margin: 0px 0px 50px;
  max-width: 400px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  color: #282F37;
}

.fullscreen-about__content-list {
  display: flex;
  flex-direction: column;
}

.fullscreen-about__content-item {
  margin: 0px 0px 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.fullscreen-about__content-item:last-child {
  margin: 0;
}

@media (max-width: 1024px){
.fullscreen-about__body {
    padding: 100px 30px 100px;
	}
	
.fullscreen-about__woman {
    right: -45px;
}
}

@media (max-width: 770px) {
  .fullscreen-about {
    margin: 0px 0px 50px;
  }
  .fullscreen-about__body {
    /* padding: 50px 50px 270px; */
    border-radius: 10px;
  }
  
  
  .fullscreen-about__woman {
    max-width: 300px;
    width: 100%;
    right: -20px;
  }
  .fullscreen-about__content-title {
    margin: 0px 0px 20px;
    font-size: 25px;
    line-height: 30px;
  }
  .fullscreen-about__content-item {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 580px){
	.fullscreen-about__body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        background: rgba(40, 47, 55, 0.8);
        z-index: 1;
    }
    
    .fullscreen-about__content-title {
	    color: #fff;
	}
}

.fullscreen-about__content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

@media (max-width: 400px) {
  .fullscreen-about__body {
    padding: 50px 20px 200px;
  }
  
}
.content-about {
  margin: 0px 0px 30px;
}

.content-about__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-about__row {
  margin: 0px 0px 20px;
  display: flex;
  justify-content: space-between;
}

.content-about__image {
  flex: 0 0 calc(55% - 10px);
  width: 100%;
}

.content-about__image-img {
  padding-bottom: 70%;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.content-about__image-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-about__content {
  flex: 0 0 calc(45% - 10px);
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  background: #F5F6F1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-about__content-title {
  margin: 0px 0px 40px;
}

.content-about__content-content {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}

.content-about__advantages {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.content-about__advantages-column {
  padding: 0px 10px;
  width: 100%;
}

.content-about__advantages-column-body {
  padding: 50px 30px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #282F37;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.content-about__advantages-column-icon {
  margin: 0px 0px 25px;
  min-width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-about__advantages-column-icon img {
  max-width: 100%;
}

.content-about__advantages-column-title {
  margin: 0px 0px 25px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
  color: #ffffff;
}

.content-about__advnatages-column-content {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .content-about__content-title {
    font-size: 25px;
    line-height: 30px;
  }
  .content-about__advantages {
    width: calc(100% + 10px);
  }
  .content-about__advantages-column {
    padding: 0px 5px;
  }
  .content-about__advantages-column-body {
    padding: 30px 15px;
  }
  .content-about__advantages-column-icon {
    margin: 0px 0px 15px;
  }
  .content-about__advantages-column-title {
    margin: 0px 0px 15px;
    font-size: 20px;
    line-height: 25px;
  }
  .content-about__advnatages-column-content {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 770px) {
  .content-about__row {
    margin: 0px 0px 10px;
    flex-direction: column;
  }
  .content-about__image {
    margin: 0px 0px 10px;
  }
  .content-about__image-img {
    padding-bottom: 70%;
    border-radius: 10px;
  }
  .content-about__content {
    padding: 30px 15px;
    border-radius: 10px;
  }
  .content-about__content-title {
    margin: 0px 0px 10px;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
  }
  .content-about__content-content {
    font-size: 14px;
    line-height: 20px;
  }
  .content-about__advantages-column-body {
    border-radius: 10px;
  }
}
@media (max-width: 660px) {
  .content-about__advantages {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .content-about__advantages-column {
    padding: 0px 0px 10px;
  }
  .content-about__advantages-column:last-child {
    padding: 0;
  }
  .content-about__advantages-column-body {
    align-items: center;
  }
  .content-about__advantages-column-title {
    text-align: center;
  }
  .content-about__advnatages-column-content {
    text-align: center;
  }
}
.language-about {
  margin: 0px 0px 30px;
}

.language-about__body {
  padding: 60px 30px;
  border-radius: 20px;
  background: #F5F6F1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.language-about__title {
  margin: 0px 0px 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.language-about__title-pagination {
  display: flex;
  align-items: center;
}

.language-about__title-pagination-arrow {
  min-width: 30px;
  height: 30px;
  border: 2px solid #282F37;
  border-radius: 10px;
  background: #282F37;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.language-about__title-pagination-arrow path {
  transition: 0.5s all;
}
.language-about__title-pagination-arrow.left {
  margin: 0px 15px 0px 0px;
}
.language-about__title-pagination-arrow:hover {
  background: transparent;
}
.language-about__title-pagination-arrow:hover path {
  stroke: #282F37;
}

.language-about__title-pagination-current {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.language-about__title-pagination-slesh {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.language-about__title-pagination-result {
  margin: 0px 15px 0px 0px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.language-about__row {
  width: calc(100% + 20px);
}
.language-about__row .slick-list.draggable {
  overflow: hidden;
}

.language-about__column {
  padding: 0px 10px;
  width: 100%;
}

.language-about__column-body {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #282F37;
}

.language-about__column-img {
  padding-bottom: 70%;
  width: 100%;
  position: relative;
}
.language-about__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.language-about__column-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.language-about__column-content-name {
  margin: 0px 0px 15px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #ffffff;
}

.language-about__column-content-content {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #ffffff;
}

@media (max-width: 770px) {
  .language-about__body {
    padding: 30px 15px;
    border-radius: 10px;
  }
  .language-about__title {
    margin: 0px 0px 20px;
    flex-direction: column;
  }
  .language-about__title-text {
    margin: 0px 0px 10px;
  }
  .language-about__row {
    width: calc(100% + 10px);
  }
  .language-about__column {
    padding: 0px 5px;
  }
  .language-about__column-body {
    border-radius: 10px;
  }
  .language-about__column-content {
    padding: 20px;
  }
  .language-about__column-content-name {
    margin: 0px 0px 10px;
    font-size: 18px;
    line-height: 24px;
  }
  .language-about__column-content-content {
    font-size: 14px;
    line-height: 20px;
  }
}
.certifications-about {
  margin: 0px 0px 90px;
}

.certifications-about__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certifications-about__title {
  margin: 0px 0px 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.certifications-about__title-text {
  text-align: center;
}

.certifications-about__title-link {
  padding: 15px 40px;
  border: 2px solid #282F37;
  border-radius: 50px;
  background: #282F37;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}
.certifications-about__title-link:hover {
  background: transparent;
  color: #282F37;
}

.certifications-about__row {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
  grid-template-areas: "col1 col1 col2" "col3 col4 col4";
}

.certifications-about__column {
  padding: 0px 10px 20px;
  width: 100%;
}
.certifications-about__column:last-child .certifications-about__column-body {
  background: #282F37;
}
.certifications-about__column:last-child .certifications-about__column-content-info-title,
.certifications-about__column:last-child .certifications-about__column-contnet-info-content {
  color: #ffffff;
}
.certifications-about__column:nth-child(1) {
  grid-area: col1;
}
.certifications-about__column:nth-child(2) {
  grid-area: col2;
}
.certifications-about__column:nth-child(3) {
  grid-area: col3;
}
.certifications-about__column:nth-child(4) {
  grid-area: col4;
}

.certifications-about__column-body {
  padding: 30px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #F5F6F1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.certifications-about__column-content {
  display: flex;
  justify-content: space-between;
}

.certifications-about__column-content-info {
  flex: 0 0 calc(50% - 10px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.certifications-about__column-content-info-title {
  margin: 0px 0px 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  color: #282F37;
}

.certifications-about__column-contnet-info-content {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}

.certifications-about__column-content-image {
  flex: 0 0 calc(50% - 10px);
  width: 100%;
  display: flex;
  align-items: center;
}

.certifications-about__column-content-image-img {
  max-width: 100%;
  display: inline-block;
  transition: 0.5s all;
}
.certifications-about__column-content-image-img img {
  max-width: 100%;
}
.certifications-about__column-content-image-img:hover {
  scale: 1.05;
}

.certifications-about__column-image {
  max-width: 230px;
  width: 100%;
}

.certifications-about__column-img {
  max-width: 100%;
  display: inline-block;
  transition: 0.5s all;
}
.certifications-about__column-img img {
  max-width: 100%;
}
.certifications-about__column-img:hover {
  scale: 1.05;
}

@media (max-width: 1000px) {
  .certifications-about__row {
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
    grid-template-areas: "col1 col2" "col3 col4";
  }
  .certifications-about__column-content {
    flex-direction: column;
  }
  .certifications-about__column-content-info {
    flex: auto;
    order: 2;
  }
  .certifications-about__column-content-image {
    margin: 0px 0px 10px;
    flex: auto;
  }
}
@media (max-width: 770px) {
  .certifications-about {
    margin: 0px 0px 50px;
  }
  .certifications-about__title {
    margin: 0px 0px 20px;
    flex-direction: column;
  }
  .certifications-about__title-text {
    margin: 0px 0px 10px;
  }
  .certifications-about__row {
    width: calc(100% + 10px);
  }
  .certifications-about__column {
    padding: 0px 5px 10px;
  }
  .certifications-about__column-body {
    padding: 20px;
    border-radius: 10px;
  }
  .certifications-about__column-content-info-title {
    margin: 0px 0px 10px;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
  }
  .certifications-about__column-contnet-info-content {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 450px) {
  .certifications-about__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
    grid-template-areas: none;
  }
  .certifications-about__column {
    padding: 0px 0px 10px;
  }
  .certifications-about__column:last-child {
    padding: 0;
  }
  .certifications-about__column:nth-child(1) {
    grid-area: auto;
  }
  .certifications-about__column:nth-child(2) {
    grid-area: auto;
  }
  .certifications-about__column:nth-child(3) {
    grid-area: auto;
  }
  .certifications-about__column:nth-child(4) {
    grid-area: auto;
  }
}
.content-services {
  margin: 0px 0px 30px;
}

.content-services__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-services__row {
  margin: 0px 0px 30px;
  padding: 50px;
  border-radius: 20px;
  background: #F5F6F1;
  display: flex;
  justify-content: space-between;
}
.content-services__row:last-child {
  margin: 0;
}
.content-services__row:nth-child(even) {
  background: #282F37;
}
.content-services__row:nth-child(even) .content-services__image {
  order: 2;
}
.content-services__row:nth-child(even) .content-services__content {
  order: 1;
}
.content-services__row:nth-child(even) .content-services__content-title,
.content-services__row:nth-child(even) .content-services__content-content {
  color: #ffffff;
}
@media (max-width: 660px) {
  .content-services__row:nth-child(even) .content-services__image {
    order: 1;
  }
  .content-services__row:nth-child(even) .content-services__content {
    order: 2;
  }
}

.content-services__image {
  flex: 0 0 calc(42% - 30px);
  width: 100%;
}

.content-services__image-img {
  padding-bottom: 95%;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.content-services__image-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-services__content {
  flex: 0 0 calc(58% - 30px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-services__content-title {
  margin: 0px 0px 25px;
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
}

.content-services__content-content {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}
.content-services__content-content p {
  margin: 0px 0px 10px;
}
.content-services__content-content p:last-child {
  margin: 0;
}

@media (max-width: 1000px) {
  .content-services__row {
    padding: 30px;
  }
  .content-services__image {
    flex: 0 0 calc(42% - 15px);
    width: 100%;
  }
  .content-services__content {
    flex: 0 0 calc(58% - 15px);
  }
  .content-services__content-title {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 770px) {
  .content-services__row {
    padding: 20px;
    border-radius: 10px;
  }
  .content-services__image-img {
    border-radius: 5px;
  }
  .content-services__content-title {
    margin: 0px 0px 10px;
  }
  .content-services__content-content {
    font-size: 14px;
    line-height: 20px;
  }
  .content-services__content-content p {
    margin: 0px 0px 5px;
  }
}
@media (max-width: 660px) {
  .content-services__row {
    flex-direction: column;
  }
  .content-services__image {
    margin: 0px 0px 20px;
  }
  .content-services__image-img {
    padding-bottom: 70%;
  }
  .content-services__content {
    align-items: center;
  }
  .content-services__content-title {
    text-align: center;
    font-size: 20px;
    line-height: 25px;
  }
}
.product-services {
  margin: 0px 0px 30px;
}

.product-services__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-services__title {
  margin: 0px 0px 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-services__title-text {
  text-align: center;
}

.product-services__title-pagination {
  display: flex;
  align-items: center;
}

.product-services__title-pagination-arrow {
  min-width: 30px;
  height: 30px;
  border: 2px solid #282F37;
  border-radius: 10px;
  background: #282F37;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.product-services__title-pagination-arrow path {
  transition: 0.5s all;
}
.product-services__title-pagination-arrow.left {
  margin: 0px 15px 0px 0px;
}
.product-services__title-pagination-arrow:hover {
  background: transparent;
}
.product-services__title-pagination-arrow:hover path {
  stroke: #282F37;
}

.product-services__title-pagination-current {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.product-services__title-pagination-slesh {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.product-services__title-pagination-result {
  margin: 0px 15px 0px 0px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #282F37;
}

.product-services__row {
  width: calc(100% + 20px);
}
.product-services__row .slick-list.draggable {
  overflow: hidden;
}

.product-services__column {
  padding: 0px 10px;
  width: 100%;
}

.product-services__column-body {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #282F37;
  display: flex;
  flex-direction: column;
}

.product-services__column-img {
  padding-bottom: 70%;
  width: 100%;
  position: relative;
  background: #F5F6F1;
}
.product-services__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-services__column-content {
  padding: 25px 15px;
}

.product-services-_column-content-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 770px) {
  .product-services__title {
    margin: 0px 0px 20px;
    flex-direction: column;
  }
  .product-services__title-text {
    margin: 0px 0px 10px;
  }
  .product-services__row {
    width: calc(100% + 10px);
  }
  .product-services__column {
    padding: 0px 5px;
  }
  .product-services__column-body {
    border-radius: 10px;
  }
}
.question-reviews {
  margin: 0px 0px 30px;
}

.question-reviews__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.question-reviews__row {
  margin: 0px 0px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.question-reviews__video {
  flex: 0 0 calc(55% - 10px);
  width: 100%;
}

.question-reviews__video-iframe {
  padding-bottom: 70%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.question-reviews__video-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.question-reviews__content {
  flex: 0 0 calc(45% - 10px);
  padding: 50px 30px;
  width: 100%;
  border-radius: 20px;
  background: #F5F6F1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.question-reviews__content-title {
  margin: 0px 0px 20px;
}

.question-reviews__content-text {
  margin: 0px 0px 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.question-reviews__contnet-submit {
  padding: 15px 30px;
  border: 2px solid #282F37;
  border-radius: 50px;
  background: #282F37;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}
.question-reviews__contnet-submit:hover {
  background: transparent;
  color: #282F37;
}

.question-reviews__list {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.question-reviews__list-item {
  padding: 0px 10px;
  width: 100%;
}

.question-reviews__list-video {
  padding-bottom: 70%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.question-reviews__list-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 770px) {
  .question-reviews__row {
    margin: 0px 0px 10px;
    flex-direction: column;
  }
  .question-reviews__video {
    margin: 0px 0px 10px;
  }
  .question-reviews__video-iframe {
    padding-bottom: 70%;
    border-radius: 10px;
  }
  .question-reviews__content {
    padding: 30px 20px;
    border-radius: 10px;
  }
  .question-reviews__content-title {
    margin: 0px 0px 10px;
  }
  .question-reviews__list {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .question-reviews__list-item {
    padding: 0px 0px 10px;
  }
  .question-reviews__list-item:last-child {
    padding: 0;
  }
  .question-reviews__list-video {
    border-radius: 10px;
  }
}
.content-reviews {
  margin: 0px 0px 70px;
}

.content-reviews__body {
  display: flex;
  flex-direction: column;
  align-items: centers;
}

.content-reviews__row {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(2, 1fr);
}

.content-reviews__column {
  padding: 0px 10px 20px;
  width: 100%;
}
.content-reviews__column:first-child .content-reviews__column-body {
  background: #282F37;
}

.content-reviews__column-body {
  padding: 30px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #F5F6F1;
  display: flex;
}

.content-reviews__column-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-reviews__column-content-title {
  margin: 0px 0px 20px;
  color: #ffffff;
}

.content-reviews__column-contnet-textq {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

.content-reviews__column-image {
  margin: 0px 20px 0px 0px;
  max-width: 160px;
  width: 100%;
  min-width: 160px;
}

.content-reviews__column-image-img {
  padding-bottom: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.content-reviews__column-image-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-reviews__column-content-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-reviews__column-content-name {
  margin: 0px 0px 5px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  line-height: 28px;
  color: #282F37;
}

.content-reviews__column-content-status {
  margin: 0px 0px 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #282F37;
}

.content-reviews__column-content-text {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #282F37;
}

@media (max-width: 1000px) {
  .content-reviews__row {
    width: calc(100% + 10px);
  }
  .content-reviews__column {
    padding: 0px 5px 10px;
  }
  .content-reviews__column-body {
    padding: 15px;
  }
}
@media (max-width: 770px) {
  .content-reviews__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .content-reviews__column {
    padding: 0px 0px 15px;
  }
  .content-reviews__column:last-child {
    padding: 0;
  }
  .content-reviews__column-body {
    border-radius: 10px;
  }
}
@media (max-width: 500px) {
  .content-reviews__column-image {
    margin: 0px 10px 0px 0px;
    max-width: 100px;
    min-width: 100px;
  }
  .content-reviews__column-content-name {
    margin: 0px 0px 10px;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 500px) {
  .content-reviews__column-image {
    margin: 0px 10px 0px 0px;
    max-width: 70px;
    min-width: 70px;
  }
}
.content-portfolio {
  margin: 0px 0px 30px;
}

.content-portfolio__body {
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  background: #F8F7FC;
  display: flex;
}

.content-portfolio__image {
  flex: 0 0 40%;
  margin: 0px 50px 0px 0px;
  width: 100%;
}

.content-portfolio__image-img {
  padding-bottom: 70%;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.content-portfolio__image-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-portfolio__content {
  flex: 0 0 40%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.content-portfolio__content-title {
  margin: 0px 0px 20px;
  max-width: 400px;
}

.content-portfolio__content-content {
  margin: 0px 0px 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}

.content-portfolio__content-submit {
  padding: 15px 40px;
  border: 2px solid #282F37;
  border-radius: 50px;
  background: #282F37;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}
.content-portfolio__content-submit:hover {
  background: transparent;
  color: #282F37;
}

@media (max-width: 1000px) {
  .content-portfolio__body {
    justify-content: space-between;
  }
  .content-portfolio__image {
    flex: 0 0 calc(45% - 15px);
    margin: 0;
  }
  .content-portfolio__content {
    flex: 0 0 calc(55% - 15px);
  }
}
@media (max-width: 770px) {
  .content-portfolio__body {
    padding: 15px;
    border-radius: 10px;
  }
  .content-portfolio__image-img {
    border-radius: 5px;
  }
  .content-portfolio__content-title {
    margin: 0px 0px 10px;
  }
  .content-portfolio__content-content {
    font-size: 14px;
    line-height: 20px;
  }
  .content-portfolio__content-submit {
    padding: 10px 30px;
  }
}
@media (max-width: 550px) {
  .content-portfolio__body {
    flex-direction: column;
  }
  .content-portfolio__image {
    flex: auto;
    margin: 0px 0px 20px;
  }
  .content-portfolio__content {
    flex: auto;
  }
}
.news-portfolio {
  margin: 0px 0px 90px;
}

.news-portfolio__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-portfolio__row {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.news-portfolio__column {
  padding: 0px 10px 20px;
  width: 100%;
}

.news-portfolio__column-body {
  padding: 20px 15px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #F8F7FC;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.news-portfolio__column-img {
  margin: 0px 0px 20px;
  padding-bottom: 70%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.news-portfolio__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-portfolio__column-title {
  margin: 0px 0px 15px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #282F37;
}

.news-portfolio__column-text {
  margin: 0px 0px 30px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}

.news-portfolio__column-link {
  padding: 15px 40px;
  border: 2px solid #282F37;
  border-radius: 50px;
  background: #282F37;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}
.news-portfolio__column-link:hover {
  background: transparent;
  color: #282F37;
}

@media (max-width: 1000px) {
  .news-portfolio__row {
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
}
@media (max-width: 770px) {
  .news-portfolio {
    margin: 0px 0px 50px;
  }
  .news-portfolio__row {
    width: calc(100% + 10px);
  }
  .news-portfolio__column {
    padding: 0px 5px 10px;
  }
  .news-portfolio__column-body {
    padding: 15px;
    border-radius: 10px;
  }
  .news-portfolio__column-img {
    border-radius: 5px;
  }
  .news-portfolio__column-title {
    margin: 0px 0px 10px;
    font-size: 18px;
    line-height: 24px;
  }
  .news-portfolio__column-text {
    margin: 0px 0px 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .news-portfolio__column-link {
    padding: 10px 30px;
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .news-portfolio__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .news-portfolio__column {
    padding: 0px 0px 15px;
  }
  .news-portfolio__column:last-child {
    padding: 0;
  }
}
.content-newsBlog .container {
  width: 800px;
}
@media (max-width: 850px) {
  .content-newsBlog .container {
    width: 100%;
  }
}

.content-newsBlog__body {
  padding: 0px 0px 80px;
  width: 100%;
}

.content-newsBlog__imgs {
  margin: 0px 0px 30px;
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  background: #F8F7FC;
}

.content-newsBlog__img {
  padding-bottom: 60%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
}
.content-newsBlog__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-newsBlog__title {
  margin: 0px 0px 20px;
  text-align: center;
}
.content-newsBlog__title::before {
  left: 50%;
  transform: translateX(-50%);
}

.content-newsBlog__content {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #282F37;
}

@media (max-width: 770px) {
  .content-newsBlog__body {
    padding: 50px 0px;
  }
  .content-newsBlog__title {
    margin: 0px 0px 30px;
  }
  .content-newsBlog__content {
    font-size: 14px;
    left: 20px;
  }
}
.main-blog {
  margin: 0px 0px 30px;
}

.main-blog__body {
  padding: 0px 0px 30px;
  border-bottom: 1px solid #282F37;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-blog__row {
  width: calc(100% + 20px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "col1 col2" "col1 col3";
}

.main-blog__column {
  padding: 0px 10px 20px;
  width: 100%;
}
.main-blog__column:first-child .main-blog__column-body {
  padding: 30px;
  flex-direction: column;
}
.main-blog__column:first-child .main-blog__column-image {
  margin: 0px 0px 20px;
  flex: auto;
}
.main-blog__column:first-child .main-blog__column-content {
  flex: auto;
}
.main-blog__column:first-child .main-blog__column-content-text {
  font-size: 14px;
  line-height: 20px;
}
.main-blog__column:nth-child(1) {
  grid-area: col1;
}
.main-blog__column:nth-child(2) {
  grid-area: col2;
}
.main-blog__column:nth-child(3) {
  grid-area: col3;
}

.main-blog__column-body {
  padding: 25px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #F8F7FC;
  display: flex;
  justify-content: space-between;
}

.main-blog__column-image {
  flex: 0 0 calc(45% - 10px);
  width: 100%;
}

.main-blog__column-image-img {
  padding-bottom: 70%;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.main-blog__column-image-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-blog__column-content {
  flex: 0 0 calc(55% - 10px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.main-blog__column-content-date {
  margin: 0px 0px 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #282F37;
}

.main-blog__column-content-title {
  margin: 0px 0px 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #282F37;
}

.main-blog__column-content-text {
  margin: 0px 0px 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #282F37;
}

.main-blog__column-content-link {
  padding: 10px 30px;
  border: 2px solid #282F37;
  border-radius: 50px;
  background: #282F37;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}
.main-blog__column-content-link:hover {
  background: transparent;
  color: #282F37;
}

@media (max-width: 880px) {
  .main-blog__row {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: none;
  }
  .main-blog__column {
    padding: 0px 0px 15px;
  }
  .main-blog__column:first-child .main-blog__column-body {
    padding: 25px;
    flex-direction: row;
  }
}
@media (max-width: 880px) and (max-width: 770px) {
  .main-blog__column:first-child .main-blog__column-body {
    padding: 15px;
  }
}
@media (max-width: 880px) and (max-width: 550px) {
  .main-blog__column:first-child .main-blog__column-body {
    flex-direction: column;
  }
}
@media (max-width: 880px) {
  .main-blog__column:first-child .main-blog__column-image {
    flex: 0 0 calc(45% - 10px);
    margin: 0px;
  }
}
@media (max-width: 880px) and (max-width: 550px) {
  .main-blog__column:first-child .main-blog__column-image {
    flex: auto;
    margin: 0px 0px 20px;
  }
}
@media (max-width: 880px) {
  .main-blog__column:first-child .main-blog__column-content {
    flex: 0 0 calc(55% - 10px);
  }
}
@media (max-width: 880px) and (max-width: 550px) {
  .main-blog__column:first-child .main-blog__column-content {
    flex: auto;
  }
}
@media (max-width: 880px) {
  .main-blog__column:last-child {
    padding: 0;
  }
  .main-blog__column:nth-child(1) {
    grid-area: auto;
  }
  .main-blog__column:nth-child(2) {
    grid-area: auto;
  }
  .main-blog__column:nth-child(3) {
    grid-area: auto;
  }
  .main-blog__column-content-text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 770px) {
  .main-blog__column-body {
    padding: 15px;
    border-radius: 10px;
  }
  .main-blog__column-image-img {
    border-radius: 5px;
  }
  .main-blog__column-content-date {
    font-size: 14px;
    line-height: 20px;
  }
  .main-blog__column-content-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 550px) {
  .main-blog__column-body {
    flex-direction: column;
  }
  .main-blog__column-image {
    margin: 0px 0px 20px;
    flex: auto;
  }
  .main-blog__column-content {
    flex: auto;
  }
}
.news-home {
  margin: 0px 0px 90px;
}

.news-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-home__row {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.news-home__column {
  padding: 0px 10px 20px;
  width: 100%;
}

.news-home__column-body {
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: #F8F7FC;
  display: flex;
  flex-direction: column;
}

.news-home__column-img {
  margin: 0px 0px 20px;
  padding-bottom: 70%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.news-home__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-home__column-content {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.news-home__column-content-date {
  margin: 0px 0px 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-style: 12px;
  line-height: 18px;
  color: #282F37;
}

.news-home__column-content-title {
  margin: 0px 0px 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #282F37;
}

.news-home__column-content-text {
  margin: 0px 0px 30px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.news-home__Column-content-submit {
  padding: 10px 30px;
  border: 2px solid #282F37;
  border-radius: 50px;
  background: #282F37;
  display: block;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
}
.news-home__Column-content-submit:hover {
  background: transparent;
  color: #282F37;
}

@media (max-width: 1000px) {
  .news-home__row {
    width: calc(100% + 10px);
  }
  .news-home__column {
    padding: 0px 5px 10px;
  }
}
@media (max-width: 880px) {
  .news-home__row {
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
}
@media (max-width: 770px) {
  .news-home {
    margin: 0px 0px 50px;
  }
  .news-home__column-body {
    padding: 20px 15px;
    border-radius: 10px;
  }
  .news-home__column-img {
    border-radius: 5px;
  }
  .news-home__column-content-title {
    font-size: 16px;
    line-height: 22px;
  }
  .news-home__column-content-text {
    margin: 0px 0px 20px;
  }
  .news-home__Column-content-submit {
    padding: 10px 20px;
  }
}
@media (max-width: 450px) {
  .news-home__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .news-home__column {
    padding: 0px 0px 15px;
  }
  .news-home__column:last-child {
    padding: 0;
  }
}
.map-contact {
  margin: 0px 0px 30px;
}

.map-contact__body {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.map-contact__map {
  padding-bottom: 50%;
  width: 100%;
  position: relative;
}
.map-contact__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 770px) {
  .map-contact__map {
    padding-bottom: 70%;
    min-height: 400px;
  }
}
.footer {
  padding: 0px 25px;
}
@media (max-width: 1250px) {
  .footer {
    padding: 0px 20px;
  }
}
@media (max-width: 770px) {
  .footer {
    padding: 0px 10px;
  }
}

.main-footer {
  padding: 0px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: #282F37;
}

.main-footer__body {
  padding: 60px 0px;
  display: flex;
}

.main-footer__logo {
  margin: 0px 150px 0px 0px;
}

.main-footer__logo-img {
  max-width: 100%;
}
.main-footer__logo-img img {
  max-width: 100%;
}

.main-footer__menu {
  margin: 0px 150px 0px 0px;
  display: flex;
  flex-direction: column;
}
.main-footer__menu:last-child {
  margin: 0;
}

.main-footer__menu-item {
  margin: 0px 0px 20px;
}
.main-footer__menu-item:last-child {
  margin: 0;
}

.main-footer__menu-link {
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
.main-footer__menu-link:hover {
  opacity: 0.5;
}

@media (max-width: 880px) {
  .main-footer__logo {
    margin: 0px 50px 0px 0px;
  }
  .main-footer__menu {
    margin: 0px 50px 0px 0px;
  }
}
@media (max-width: 770px) {
  .main-footer {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .main-footer__body {
    padding: 50px 0px;
  }
}
@media (max-width: 660px) {
  .main-footer {
    padding: 0px 10px;
  }
  .main-footer__body {
    flex-direction: column;
    align-items: center;
  }
  .main-footer__logo {
    margin: 0px 0px 30px;
  }
  .main-footer__menu {
    margin: 0px 0px 15px;
    align-items: center;
  }
  .main-footer__menu-item {
    margin: 0px 0px 15px;
  }
}
.policy-footer {
  padding: 0px 20px;
  background: #282F37;
}

.policy-footer__body {
  padding: 20px;
  border-top: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.policy-footer__logo {
  margin: 0px 0px 0px 0px;
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #ffffff;
}
.policy-footer__logo a {
  display: inline-block;
  transition: 0.5s all;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #ffffff;
}
.policy-footer__logo a:hover {
  opacity: 0.5;
}

@media (max-width: 770px) {
  .policy-footer__body {
    padding: 15px 0px;
  }
}
@media (max-width: 660px) {
  .policy-footer {
    padding: 0px 10px;
  }
}

.galereya__body{
	margin: 0px 0px 30px;
    padding: 50px;
    border-radius: 20px;
    background: #F5F6F1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.photogal_list{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.photogal_link{
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
}

.photogal_link img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	transition: 0.3s ease;
	transform: scale(1);
}

.photogal_link:focus img,
.photogal_link:hover img,
.photogal_link:active img{
	transform: scale(1.1);
}

@media(max-width:1024px){
	.galereya__body{
	    padding: 30px;
	    gap: 30px;
	}
	.photogal_list{
		grid-template-columns: repeat(4, 1fr);
	}
	
}


@media(max-width:768px){
	.galereya__body{
	    padding: 20px;
	    gap: 10px;
	}
	
	.photogal_list{
		grid-template-columns: repeat(3, 1fr);
	}
	
}

@media(max-width:580px){
	
	.photogal_list{
		grid-template-columns: repeat(2, 1fr);
	}
	
	.photogal_list li{
		height:310px;
	}
	
}

.fixed-social {
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 2000;
  transition: 0.7s ease;
}

.fixed-social__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.fixed-social__item {
  position: relative;
}

.fixed-social__link {  
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: visible; 
  transition: transform 0.4s ease;
  z-index: 1;
}

.fixed-social__link img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}


.fixed-social__link:hover {
  transform: scale(1.08);
}


.fixed-social__link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
  transform-origin: center;
  animation: pulse 2.5s ease-in-out infinite;
}


.fixed-social__item:nth-child(1) .fixed-social__link::after {
  background: #0071BD; 
  box-shadow: 0 0 25px 5px rgba(0, 113, 189, 0.5);
}

.fixed-social__item:nth-child(2) .fixed-social__link::after {
  background: #25D366; 
  box-shadow: 0 0 25px 5px rgba(37, 211, 102, 0.5);
}

.fixed-social__item:nth-child(3) .fixed-social__link::after {
  background: #0088CC; 
  box-shadow: 0 0 25px 5px rgba(0, 136, 204, 0.5);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .fixed-social__link img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 580px) {
  .fixed-social__link img {
    width: 55px;
    height: 55px;
  }
  
  .fixed-social__link {
    width: 55px;
    height: 55px;
  }

}
