@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  direction: ltr;
  font-family: 'Quicksand', sans-serif !important;
  font-size: clamp(12px, 4vw, 17px);
  margin: 0;
  padding: 0px;
  line-height: 1.2;
}

body::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-image: url(pics/fade-zTs0.png);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
p{
  padding: 0;
  margin: 0;
}

p, li{
  padding: 8px 0;
  line-height: 1.2;
}

li{
  margin: 0 8px;
}

a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img{
  display: block;
  max-width: 100%;
  max-height: 100%;
}

ul{
  margin: 0;
  padding: 0;
}

.box{
  width: auto;
  padding-right: 18px;
  padding-left: 18px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media screen and (min-width: 480px) {
  .box{
  max-width: 450px;
  }
}
@media screen and (min-width: 575px){
  .box{
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .box{
  max-width: 730px;
  }
}
@media screen and (min-width: 992px) {
  .box{
    max-width: 960px;
  }
}

@media screen and (min-width: 1200px){
  .box{
    max-width: 1170px;
    }
}

@media (min-width: 1400px){
  .box{
    max-width: 1274px;
  }
}

.page-privacy{
  color: #000;
  overflow: hidden;
  word-break: break-all;
  text-align: justify;
  margin: 32px 0;
  width: 100%;
}

.title-politics{
  font-size: clamp(22px, 4vw, 30px);
}

.page-privacy a{
  color: #000;
}

.page-privacy a:hover{
  color: #000;
  opacity: 0.5;
}
.page-privacy li {
  margin: 0 8px;
  list-style: decimal;
}
.header{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo{
  display: flex;
  justify-content: center;
  padding: 30px 0;
  align-items: center;
  cursor: pointer;
  gap: 24px;
}

.logoImg{
  max-width: 32px;
  max-height: 32px;
}

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

.logo a{
  width: 100%;
  color: #000;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logoTitle .logoTitle-text{
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
  font-size: clamp(12px, 4vw, 18px);
  margin: 0;
}

.logoTitle .logoTitle-text:hover{
  opacity: 0.5;
}

.header-box{
  padding: 5px;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.nav{
  flex: 1;
  display: flex;
  gap: 5px;
  flex-direction: column;
}

.nav-item{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #2f5d62;
  padding: 5px 15px;
  transition: 0.3s ease;
  color: #fff;
  font-size: clamp(12px, 4vw, 18px);
}

.nav-item:hover{
  transform: translateX(-5px);
  opacity: 0.5;
  color: #fff;
}

.drop-item{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #f5f5f5;
  padding: 5px 15px 5px 30px;
  transition: 0.3s ease;
  color: #2f5d62;
  font-size: clamp(12px, 4vw, 18px);
}

.drop-item:hover{
  transform: translateX(-5px);
  opacity: 0.5;
  color: #2f5d62;
}

.header-content{
  flex: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.header-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(pics/section-bg-ctY0.jpg);
  background-position: center;
  background-size: cover;
  filter: brightness(0.5);
  z-index: -1;
}

.header-content h2{
  color: #fff;
  font-size: clamp(14px, 4vw, 30px);
}

.header-content span{
  width: 36%;
  height: 3px;
  background-color: #fff;
}

.header-content h5{
  font-size: clamp(14px, 4vw, 22px);
  color: #fff;
}

.fixed-button{
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: fixed;
  border-radius: 50%;
  background-color: #2f5d62;
  padding: 5px;
  bottom: 15px;
  right: 15px;
}

.fixed-button:hover{
  opacity: 0.5;
}

.fixed-button svg{
  animation: Vibrate 5s ease-in-out infinite;  
  width: 24px;
  height: 24px;
  color: #fff;
}

@keyframes Vibrate {
  0% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(5deg);
  }
  10% {
    transform: rotate(-5deg);
  }
  15% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.no-scroll{
  overflow-x: hidden;
}

.scroll{
  animation: Scroll 35s linear infinite;
}

.partners{
  padding: 32px 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 32px;
}

.img-partners{
  flex: 1;
}

.img-partners img{
  filter: drop-shadow(2px 4px 6px black);
  object-fit: contain;
  width: 100%;
  height: 100%;
}

@keyframes Scroll{
  0%, 100%{
    transform: translateX(-110%);
  }

  25%{
    transform: translateX(0);
  }

  50%{
    transform: translateX(110%);
  }

  75%{
    transform: translateX(0);
  }
}

.about-back{
  padding: 32px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.about-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  filter: brightness(0.5);
  background-image: url(pics/section-bg-ctY1.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.about-us-box{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
}

.about-us{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.about-us h2{
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  font-size: clamp(14px, 4vw, 30px);
}

.about-us p{
  color: #fff;
  font-size: clamp(14px, 4vw, 22px);
}

.about-video{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 1px solid #fff;
  position: relative;
  width: 80%;
  height: 100%;
}

.stats-box {
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stats{
  padding: 32px 0;
}

.stats h2{
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(14px, 4vw, 30px);
}

.stats-card{
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: column;
}

.stats-card h5{
  color: #000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(14px, 4vw, 18px);
}

.progress {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 200px;
  height: 200px;
  font-size: clamp(14px, 4vw, 30px);
  color: #000;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
  text-align: center;
  line-height: 200px;
  margin: 20px
}

.progress .title {
  font-size: clamp(18px, 4vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.progress .overlay {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #f5f5f5
}

.progress .left, .progress .right {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100px 0px 0px 100px;
  transform-origin: right;
}

.progress .left {
  animation: load1 1s linear forwards;
}

.progress-one .right{
  animation: load4 .8s linear forwards 1s;
}

.progress-two .right{
  animation: load2 .5s linear forwards 1s;
}

.progress-three .right{ 
  animation: load3 .5s linear forwards 1s;
}

.progress-four .right{
  animation: load5 .8s linear forwards 1s;
}

@keyframes load1 {
  0% {transform: rotate(0deg);}

  100% {transform: rotate(180deg);}
}

@keyframes load2 {
  0% {z-index: 1;transform: rotate(180deg);}

  100% {z-index: 1;transform: rotate(270deg);}
}

@keyframes load3 {
  0% {z-index: 1;transform: rotate(180deg);}

  100% {
      z-index: 1;transform: rotate(315deg);}
}

@keyframes load4 {
  0% {z-index: 1;transform: rotate(180deg);}

  100% {
      z-index: 1;transform: rotate(220deg);}
}

@keyframes load5 {
  0% {z-index: 1;transform: rotate(180deg);}

  100% {
      z-index: 1;transform: rotate(300deg);}
}

.art-back{
  margin: 32px 0;
  padding: 32px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.art-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.3);
  background-image: url(pics/section-bg-ctY2.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.wrapper-block{
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-direction: row-reverse;
}

.wrapper-box{
  flex: 2;
}

.art{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  background-color: #000;
  padding: 30px;
}

.titleArt {
  position: relative;
  z-index: 1;
  font-size: clamp(12px, 4vw, 20px);
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.picture-art-img {
  height: 457px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 30px;
  width: 100%;
  margin: 0 0 32px ;
}

.art-content{
  position: relative;
  z-index: 1;
  color: #fff;
  opacity: 0.8;
}

.art-price {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  font-size: clamp(12px, 4vw, 24px);
  padding-top: 32px;
  font-weight: 800;
}

.sidebar{
  flex: 1;
}

.aticles{
  top: 15px;
  position: sticky;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.aticles h2{
  font-size: clamp(12px, 4vw, 18px);
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aticles-box{
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.article-card{
  transition: 0.5s ease;
  overflow: hidden;
  box-shadow: rgba(255, 255, 255, 0.55) 0px 5px 15px;
  position: relative;
}

.article-card:hover .article-img{
  filter: brightness(0.5);
}

.article-img{
  transition: 0.5s ease;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content{
  transition: 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 5px;
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -100%);
}

.article-card:hover .article-content{
  transform: translate(-50%, 0);
}

.article-title h5{
  color: #fff;
  transition: 0.3s ease;
  font-size: clamp(12px, 4vw, 18px);
}

.article-title h5:hover{
  opacity: 0.5;
}

.article-content p{
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #fff;
  font-size: clamp(12px, 4vw, 16px);
}

.service{
  padding: 32px 0;
}

.service h2{
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(14px, 4vw, 30px);
}

.service-box{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card{
  transition: 0.3s ease;
  background-color: #fff;
  border: 1px solid #00000033;
  padding: 15px;
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.service-card:hover{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.service-img{
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 213px;
  width: 100%;
}

.service-img img{
  transition: 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card:hover .service-img img{
  transform: scale(1.05);
  filter: brightness(0.5);
}

.service-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-title h5{
  color: #000;
  font-size: clamp(14px, 4vw, 16px);
  transition: 0.3s ease;
}

.service-title h5:hover{
  opacity: 0.5;
}

.service-desc{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.service-desc p{
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #000;
  opacity: 0.8;
  font-size: clamp(12px, 4vw, 14px);
}

.service-content-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-direction: row-reverse;
}

.service-content-box p{
  transition: 0.5s ease;
  color: #fff;
  background-color: #2f5d62;
  border-radius: 20px;
  padding: 5px 5px;
  font-size: clamp(12px, 4vw, 14px);
}

.service-card:hover .service-content-box p{
  color: #2f5d62;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.emploiPeople-back{
  margin: 32px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.emploiPeople-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.3);
  background-image: url(pics/section-bg-ctY3.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.workers{
  padding: 32px 0;
}

.workers h2{
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(14px, 4vw, 30px);
}

.emploiPeople-box{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.emploiPeople-card{
  border: 1px dotted #fff;
  transition: 0.5s ease;
  box-shadow: rgba(255, 255, 255, 0.55) 0px 5px 15px;
  display: flex;
  gap: 5px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.emploiPeople-img {
  width: 100%;
  height: 283px;
}

.emploiPeople-img img{
  transition: 0.5s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.emploiPeople-card h5{
  padding: 0 15px;
  color: #fff;
  font-size: clamp(14px, 4vw, 22px);
}

.emploiPeople-card p{
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
  color: transparent;
  opacity: 0.8;
  font-size: clamp(14px, 4vw, 16px);
}

.footer{
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-direction: row-reverse;
  border-top: 1px solid #4d4d4d33;
  padding: 30px 0;
}

.footer p{
  font-size: clamp(12px, 4vw, 18px);
  color: #000;
}

.footer-politic{
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: row-reverse;
}

.footer-politic a{
  transition: 0.3s ease;
  font-size: clamp(12px, 4vw, 18px);
  color: #000;
}

.footer-politic a:hover{
  color: #000;
  opacity: 0.5;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.form-container {
  display: none;
  border-radius: 20px;
  max-height: 90%;
  overflow: auto;
  width: 80%;
  padding: 20px;
  background-color: white;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
}

.close {
  color: black;
  position: fixed;
  top: 0;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

.osn-form {
  display: flex;
  flex-direction: column;
}

.title-container{
  margin-bottom: 30px;
  text-align: center;
}

.title-container h3{
  margin: 0;
  font-weight: 800;
}

.input-container {
  display: flex;
  flex-direction: column;
  position: relative;
}

.input-container .input-control__layout_element, .input-container .textarea-control__layout_element, .form button {
  outline: none;
  margin: 8px 0;
}

.input-container .input-control__layout_element {
  color: rgba(0,0,0,0.8);
  background-color: transparent;
  padding: 1rem;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.8);
  font-size: 0.875rem;
  line-height: 1.2;
}

.input-container .textarea-control__layout_element {
  color: rgba(0,0,0,0.8);
  background-color: transparent;
  padding: 1rem;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.8);
  font-size: 0.875rem;
  line-height: 1.2;
  resize: vertical;
  min-height: 32px;
  max-height: 120px;
}

.input-container .input-control__layout_element:hover, .input-container .input-control__layout_element:focus, .input-container .textarea-control__layout_element:hover, .input-container .textarea-control__layout_element:focus{
  border: 1px solid rgba(0,0,0,0.8);
}

.check{
  transition: 0.3s ease;
  color: #000;
}

.check:hover{
  color: #000;
  opacity: 0.5;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
  padding: 15px 0;
}

.form-check .form-check-input{
  margin: 0;
}

.form-check-label{
  flex: 1;
}

.submit-form {
  margin: 0 auto !important;
}

.ui-checkbox {
  --primary-color: #1677ff;
  --secondary-color: #fff;
  --primary-hover-color: #4096ff;
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
}

.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.about-us-back{
  margin: 32px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.about-us-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.3);
  background-image: url(pics/section-bg-ctY4.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.about-us-block{
  padding: 32px 0;
}

.about-us-block h2{
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(14px, 4vw, 30px);
}

.about{
  font-size: clamp(14px, 4vw, 18px);
  color: #fff;
}

.gallery-slider{
  padding: 32px 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 32px;
}

.gallery-images{
  flex: 1;
}

.gallery-images img{
  filter: drop-shadow(2px 4px 6px black);
  object-fit: cover;
  width: 100%;
  height: 283px;
}

.content-article-back{
  margin: 32px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.content-article-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.3);
  background-image: url(pics/section-bg-ctY5.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.content-article{
  padding: 32px 0;
}

.art-content-title{
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(14px, 4vw, 30px);
}

.art-block{
  overflow: hidden;
  position: relative;
}

.art-block-images {
  box-shadow: rgba(255, 255, 255, 0.55) 0px 5px 15px;
  float: right;
  width: 36%;
  margin: 32px;
  margin-top: 0;
  margin-right: 0;
}

.art-block-content {
  color: #fff;
  opacity: 0.8;
}

.art-block-content ul{
  list-style: inside;
}

.title-weiKontakt-page{
  margin-bottom: 32px;
}

.title-weiKontakt-page h2{
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(14px, 4vw, 30px);
}

.kontact-form{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.input-kontact-form .inputs-kontact, .input-kontact-form .textarea-kontact{
  outline: none;
  margin: 8px 0;
}

.input-position{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.input-kontact-form .inputs-kontact {
  padding: 0.8rem;
  border: none;
  font-size: 0.875rem;
  line-height: 1.2;
  width: 100%;
}

.input-kontact-form .textarea-kontact{
  padding: 0.8rem;
  font-size: 0.875rem;
  line-height: 1.2;
  border: none;
  width: 100%;
  min-height: 32px;
  max-height: 120px;
}

.submit{
  margin: 0 auto;
  width: auto;
}

.weiKontakt-box-back{
  padding: 32px 0;
  margin-top: 32px;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.weiKontakt-box-back::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.3);
  background-image: url(pics/section-bg-ctY6.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.weiKontakt-box{
  display: flex;
  gap: 32px;
  flex-direction: column;
}

.weiKontakt-block{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.weiKontakt-block-card{
  border: 2px solid #fff;
  justify-content: center;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.weiKontakt-block-card svg{
  width: 18px;
  height: 18px;
  color: #fff;
}

.weiKontakt-block-card a h5{
  word-break: break-all;
  transition: 0.3s ease;
  font-weight: 500;
  font-size: clamp(12px, 4vw, 18px);
  color: #fff;
}

.weiKontakt-block-card a h5:hover{
  color: #fff;
  opacity: 0.5;
}

.weiKontakt-block-card h5{
  font-weight: 500;
  font-size: clamp(12px, 4vw, 18px);
  color: #fff;
}

.but,
button {
  outline: none;
  border: none;
  background: inherit;
  box-sizing: border-box !important;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button-1 {
  transition: 0.3s ease;
  background-color: #2f5d62; 
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.button-1:hover {
  background-color: #2f5d62b3; 
  color: #e8e8e8;
}

.button-2 {
  transition: 0.3s ease;
  background-color: #2f5d62; 
  color: #fff;
  padding: 12px 24px;
  border-radius: 3px;
  cursor: pointer;
}

.button-2:hover {
  background-color: #2f5d62b3; 
  color: #e8e8e8;
}

.button-3 {
  transition: 0.3s ease;
  background-color: #2f5d62; 
  color: #fff;
  padding: 8px 16px;
  border: 2px solid #89C3D4; 
  border-radius: 25px;
  cursor: pointer;
}

.button-3:hover {
  background-color: #2f5d62b3; 
  color: #e8e8e8;
}

.button-4 {
  transition: 0.3s ease;
  background-color: #2f5d62; 
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
}

.button-4:hover {
  background-color: #2f5d62b3; 
  color: #e8e8e8;
}

.button-5 {
  transition: 0.3s ease;
  background-color: #2f5d62; 
  color: #fff;
  padding: 10px 20px;
  border-bottom: 2px solid #B0B0B0; 
  border-radius: 0;
  cursor: pointer;
}

.button-5:hover {
  background-color: #2f5d62b3; 
  color: #e8e8e8;
}


@media (max-width: 1199px){
  .wrapper-block{
    flex-direction: column;
  }

  .aticles-box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-box{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .header-box{
    flex-direction: column;
  }

  .stats-card{
    width: auto;
  }

  .service-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .emploiPeople-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .footer{
    flex-direction: column;
  }

  .weiKontakt-block{
    grid-template-columns: repeat(1, 1fr);
  }

  .article-img{
    filter: brightness(0.5);
  }

  .article-content{
    transform: translate(-50%, 0);
  }

  .about{
    text-align: center;
  }
}

@media (max-width: 767px) {

  .service-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .emploiPeople-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-politic{
    flex-direction: column;
  }

  .about-back::before{
    height: 80%;
  }

  .about-video{
    width: 100%;
  }

  .art-block-images{
    width: 100%;
    float: none;
    margin: 0 0 32px ;
  }

  .gallery-images:first-of-type{
    display: none;
  }

  .gallery-images:last-of-type{
    display: none;
  }

  .input-position{
    flex-direction: column;
    gap: 0;
  }

  .img-partners:nth-child(2), .img-partners:nth-child(3), .img-partners:nth-child(4){
    display: none;
  }

  .aticles-box{
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px){
  .picture-art-img {
    height: auto;
  }
  .stats-box{
    grid-template-columns: repeat(1, 1fr);
  }
}
