@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');

html{
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  direction: ltr;
  font-family: 'Barlow Semi Condensed', sans-serif !important;
}

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

img{
  width: 100%;
}

  .header-lay {
    width: 100%;
    height: 100vh;
    background: url(uploads/2025-06/mask-bg-rsILo0.png);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

  .header{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 19px 64px;
  }

  .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f4f9f9; 
    z-index: 99; 
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1); 
  }

  .logo{
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 23px;
  }

  .logoImg img{
    width: 50px;
  }

  .logo a{
    color: #0A043C; 
    display: flex; 
    align-items: center; 
    gap: 23px;
  }

  .logoTitle h2{
    font-size: 18px;
    margin: 0;
  }

  .header-nav {
    font-family: Arial, sans-serif;
    color: #0A043C;
  }
  
  .topmenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
  }
  
  .topmenu li {
    position: relative; 
  }
  
  .topmenu a {
    text-decoration: none;
    color: #0A043C;
  }
  
  .submenu-link .sub {
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #000; 
    transition: transform 0.3s;
}

.submenu-link:hover .sub {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.submenu {
  width: 280px;
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #060606;
  list-style: none;
  padding: 23px;
  border-radius: 15px;
  border-bottom: 3px solid #2334DE;
  box-shadow: 0px 8px 19px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform-origin: left center;
  transform: translateY(4px);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.topmenu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu__item {
  margin: 0;
}

.submenu li {
  margin: 15px 0;
}

.submenu a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #ffffff;
  letter-spacing: 0.4px;
  transition: all 0.3s ease 0s;
  position: relative; 
}

.submenu a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  bottom: -4px; 
  left: 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.submenu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.cubes{
  border-top: 203px solid #301b3f;
  border-right: 69px solid transparent;
  position: absolute;
  opacity: 0.3;
  z-index: -1;
  width: 0;
  height: 0;
}

.cubess{
  border-bottom: 203px solid #301b3f;
  border-left: 69px solid transparent;
  position: absolute;
  opacity: 0.3;
  z-index: -1;
  width: 0;
  height: 0;
}

.top-lefts{
  top: 0;
  left: 0;
}

.bottom-rights{
  bottom: 0;
  right: 0;
}

.cube {
  position: absolute;
  opacity: 0.5;
  border-radius: 15px;
  z-index: -1;
  width: 280px;
  height: 280px;
  background-color: #301b3f; 
}

.top-left {
  top: 50%;
  left: -20%;
}

.bottom-right {
  bottom: 50%;
  right: -20%;
}


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

.header-text{
  text-align: start;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 23px;
}

.header-img {
  display: inline-block;
  flex: 1;
  position: relative;
}

.header-img img {
  border-radius: 15px;
  box-shadow: 0px 8px 19px 0px rgba(0, 0, 0, 0.2);
  display: block;
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
}

.play-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFFFFF;
  position: relative;
  animation: pulse-border 1500ms ease-out infinite;
}

.play-icon {
  font-size: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@-webkit-keyframes pulse-border {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes pulse-border {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.video-popup {
  background-color: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0px 8px 19px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}

.video-popup video {
  width: 100%;
  max-height: 80vh;
  border-radius: 5px;
}

.close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

.art{
  display: flex;
  flex-direction: column;
  padding: 37px 0;
}

.titleArt{
  text-transform: inherit;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 5px;
  background-color: #301b3f;
  margin: 26px auto;
  font-weight: 900;
  color: white;
}

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

.mod__art-boxs{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 19px; 
  border-radius: 15px; 
  padding: 19px; 
  flex-direction: row;
}

.art-content-box{
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  padding: 19px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 19px;
  border-radius: 5px;
}

.art-content-box i{
  padding-top: 5px;
  font-size: 35px;
  opacity: 0.2;
}

.art-star {
  list-style: none;
  padding: 0;
  display: inline-block;
  margin: 0;
}

.art-star li {
  display: inline;
  margin-right: 3px;
}

.art-star li i{
  opacity: 1;
  font-size: 20px;
  color: #301b3f;
}

.art-content{
  font-size: 15px;
  line-height: 1.6;
}

.art-price{
  width: 100%;
  text-align: right;
  border-top: 1px solid;
  padding: 15px;
  font-size: 18px;
  font-weight: 900;
}

.img-art{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 19px;
  flex: 1;
  padding: 19px;
}

.picture-article-img{
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 23px;
  border-radius: 5px;
}

.how-work-lay{
    margin: 37px 0;
    width: 100%;
    background: url(uploads/2025-06/mask-bg-rsILo1.png);
    background-position: center;
    background-size: cover;
}

.how-work {
  flex-direction: row;
  gap: 64px;
  padding: 37px 0;
  display: flex;
  align-items: center;
}

.how-work-img {
  position: relative;
  flex: 1; 
}

.how-work-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.how-work-box {
  flex: 2; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-work-box h3 {
  text-transform: inherit;
  letter-spacing: 1px;
  color: white;
  padding: 5px;
  background-color: #301b3f;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 64px;
}

.how-work-box-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 37px; 
}

.how-work-card {
  transition: 1s all ease;
  flex: 1;
  text-align: center;
  flex-direction: row;
  padding: 15px;
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.how-work-card:hover {
  cursor: pointer;
  transform: translateY(-4px);
}

.how-work-card i {
  color: #301b3f;
  font-size: 25px;
}

.how-work-card p {
  margin: 0 auto;
  font-size: 16px;
}

.single-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  width: 37px;
  height: 37px;
  border-radius: 50%;
}

.single-icon i {
  font-size: 25px;
}

.single-txt {
  text-align: start;
}

.single-txt h3 {
  display: flex;
  align-items: center;
  color: #f4f9f9;
  margin: 0;
}

.single-txt p {
  margin: 0;
  font-size: 13px;
  color: #f4f9f9;
}

.how-single {
  width: auto;
  gap: 15px;
  background-color: #060606;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  left: 45%;
  bottom: 10%;
  animation: slideAnimation 3s infinite alternate; 
}

@keyframes slideAnimation {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-60%); 
  }
}

.our-srev {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 37px 0;
}

.our-srev h2 {
  text-transform: inherit;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 5px;
  background-color: #301b3f;
  margin: 26px auto;
  font-weight: 900;
  color: white;
}

.our-srev p {
  font-size: 16px;
  color: #362222;
  margin-bottom: 23px;
}

.our-serv-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 23px;
}

.our-serv-card {
  flex: 1;
  background-color: #f4f9f9;
  padding: 23px;
  border-radius: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.our-serv-card:hover {
  transform: translateY(-4px); 
  box-shadow: 0 8px 19px rgba(0, 0, 0, 0.2);
}


.our-serv-title {
  font-size: 18px;
  color: #0A043C;
  font-weight: 900;
  margin-bottom: 5px;
}

.our-serv-content {
  font-size: 16px;
  color: #0A043C;
}

.our-serv-icon img{
  border-radius: 15px;
  width: 100%;
  height: 280px;
  object-fit: contain;
}

.mod__our-serv-container{
  display: flex;
  flex-direction: column;
  padding: 19px 0;
}

.our-articles {
  display: flex;
  flex-direction: column;
  padding: 37px 0;
}

.our-articles h2 {
  text-transform: inherit;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 5px;
  background-color: #301b3f;
  margin: 26px auto;
  font-weight: 900;
  color: white;
}

.our-articles-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.our-articles-card {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 23px;
  background: #f4f9f9;
  border-radius: 15px;
  padding: 23px;
  margin: 15px;
  width: calc(49% - 20px);
  box-sizing: border-box;
  transition: transform 0.3s ease;
  position: relative;
}

.our-articles-card:hover {
  transform: translateY(-4px);
}

.our-articles-icon i {
  font-size: 43px;
  display: block;
  text-align: center;
  margin-bottom: 15px;
  color: #060606;
  position: absolute;
  top: 19px;
  right: 19px;
  opacity: 0.3;
}

.mod__our-articles-box-content {
  margin-top: 50px;
  padding: 15px 0;
}

.our-articles-title {
  font-size: 16px;
  margin-bottom: 15px;
  color: #f4f9f9;
}

.our-articles-content {
  font-size: 15px;
  color: #060606;
}

.partners {
  width: 100%;
  border-radius: 15px;
  background: url(uploads/2025-06/mask-bg-rsILo2.png);
  background-position: center;
  background-size: cover;
  margin: 37px 0;
}

.partners-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px;
  flex-direction: row;
}

.partners img {
  max-width: 100%;
  height: 90px;
  object-fit: contain;
  margin: 0 auto;
  padding: 0 15px;
}

.tarifs{
  padding: 37px 0;
}

.tarifs h2{
  background-color: #f4f9f9;
  font-weight: 600;
  text-align: center;
  margin-bottom: 26px;
}

.tarifs-box {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 0 auto;
  padding: 23px;
}

.tarif-box-card {
  width: 100%;
  background: url(uploads/2025-06/mask-bg-rsILo1.png);
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  padding: 23px;
  width: calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.tarif-box-card:hover{
  transform: translateY(-4px);
}

.tarif-box-card a{
  margin: 19px auto;
}

.product-title {
  padding: 15px;
  border-radius: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 8px 0px;
  font-size: 18px;
  margin: 0;
  color: #0A043C;
}

.tarif-title {
  font-size: 18px;
  margin: 0;
  color: #009A44;
}

.mod__tarif-title-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.price-box{
  gap: 23px;
  display: flex;
  flex-direction: column-reverse;
  flex: 1;
  justify-content: space-between;
}

.price-box p {
  font-size: 15px;
  color: #060606;
  margin: 0;
}

.tarif-price-box p i{
  color: #009A44;
  padding-right: 5px;
}

.tarif-price-box{
    margin: 15px;
    flex: 1;
    padding: 0 15px;
    border-radius: 15px;
    display: flex;
    background-color: #f4f9f9;
}

.tarif-price-box ul {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.tarif-price-box li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

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

.form-container {
  background-color: white;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 23px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.title-container{
  text-align: center;
}

.input-container {
    position: relative;
}

.input-container .input-custom-layoutinput, .input-container .textarea-custom-layoutinput, .form button {
  outline: none;
  border: 1px solid #F5F5F5;
  margin: 8px 0;
}

.input-container .input-custom-layoutinput {
  background-color: #F5F5F5;
  padding: 19px;
  padding-right: 43px;
  font-size: 15px;
  line-height: 1.25rem;
  width: 100%;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.input-container .textarea-custom-layoutinput {
  border: none;
  background-color: #F5F5F5;
  padding: 19px;
  padding-right: 43px;
  font-size: 15px;
  line-height: 1.25rem;
  width: 100%;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.check{
    text-decoration: underline;
    color: #0A043C;
}

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

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

.comment-lay{
  width: 100%;
  background: url(uploads/2025-06/mask-bg-rsILo2.png);
  background-position: center;
  background-size: cover;
}

.comment{
  display: flex;
  flex-direction: column;
  margin-top: 37px;
  padding: 37px 0;
}

.comment h2{
  text-transform: inherit;
  letter-spacing: 1px;
  font-size: 18px;
  padding: 5px;
  background-color: #301b3f;
  margin: 26px auto;
  font-weight: 900;
  color: white;
}

.comment-card-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.comment-card {
  position: relative;
  margin: 0 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.comment-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.comment-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 15px;
  height: auto;
  padding: 23px;
  color: white;
}

.comment-card-text h3 {
  margin: 0;
  font-size: 16px;
}

.comment-card-text p {
  margin-top: 15px;
  font-size: 13px;
}

.footer-lay{
  width: 100%;
  background: url(uploads/2025-06/mask-bg-rsILo5.png);
  background-position: center;
  background-size: cover;
}

.footer {
display: flex;
flex-direction: column;
gap: 26px;
color: #0A043C;
padding: 37px 0;
}

.footer-box {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}

.menu-footer{
display: flex;
flex-direction: column;
justify-content: space-between;
text-align: center;
width: 33.3%;
}

.menu-footer ul {
  text-align: start;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.menu-footer li {
margin-bottom: 15px;
}

.menu-footer a {
text-decoration: none;
color: #0A043C;
transition: color 0.3s ease;
}

.menu-footer a:hover {
color: #301b3f;
}

.contact-footer {
width: 33.3%;
gap: 15px;
color: #0A043C;
display: flex;
flex-direction: column;
}
.contact-footer a{
  color: inherit;
}

.aboutus-footer{
display: flex;
flex-direction: column;
gap: 19px;
width: 33.3%;
}

.contact-footer i {
  color: #301b3f;
font-size: 20px;
margin-right: 15px;
}

.footer-politiks {
border-top: 1px dashed;
padding-top: 23px;
flex-direction: row;
text-align: center;
margin-top: 23px;
display: flex;
justify-content: center;
}

.footer-politik-privacy {
flex-basis: 30%;
}

.footer-politik-privacy a {
text-decoration: none;
color: #0A043C;
}

.footer-politik-privacy a:hover {
text-decoration: underline;
}


.kontact{
  margin: 37px 0;
  padding: 25px;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-direction: row;
}

.kontact-box{
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 37px;
  flex-direction: column-reverse;
}

.mod__kontact-box-card{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 23px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  color: #f4f9f9;
  background-color: #FFD700; 
  padding: 25px;
  flex: 1;
  text-align: center;
  gap: 19px;
}

.kontact-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto
}

.kontact-item h3{
  font-size: 16px;
}
.kontact-item a{
  color: inherit;
  text-decoration: none;
}
.kontact-box i{
  font-size: 25px;
}


.form-kontact{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  border-radius: 5px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 25px;
  flex: 2;
}

.input-container .inputs {
  background-color: #F5F5F5;
  padding: 19px;
  padding-right: 43px;
  font-size: 15px;
  line-height: 1.25rem;
  width: 100%;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.input-container .inputs{
  outline: none;
  border: 1px solid #F5F5F5;
  margin: 15px 0;
}

.osn-form{
  display: flex;
  flex-direction: column;
  margin: 37px 0;
  border-radius: 15px;
  padding: 23px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 54px, rgba(0, 0, 0, 0.12) 0px -15px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 15px 15px, rgba(0, 0, 0, 0.09) 0px -3px 4px;
}

.submit-form{
  margin: 0 auto;
}

.hamburger-menu{
  display: none;
}

#menu__toggle {
  opacity: 0;
}

.menu__btn {
  z-index: 12;
  display: flex;
  align-items: center;
  position: relative;
  top: -15px;
  right: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.menu__btn>span,
.menu__btn>span::before,
.menu__btn>span::after {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #616161;
}

.menu__btn>span::before {
  content: '';
  top: -15px;
}

.menu__btn>span::after {
  content: '';
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  margin: 0;
  padding: 80px 0;
  z-index: 11;
  list-style: none;
  text-align: center;
  background-color: #eceff1;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
}

.menu__item {
  text-align: start;
  display: block;
  padding: 15px 23px;
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.submenu__item {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.mod__submenu__link {
  text-align: start;
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.mod__submenu__link:hover {
  background-color: #cfd8dc;
}

#submenu-toggle.active + #submenu {
  max-height: 500px; 
}

.menu__item:hover {
  background-color: #cfd8dc;
}

#menu__toggle:checked~.menu__btn>span {
  top: 0;
  transform: rotate(45deg);
}

#menu__toggle:checked~.menu__btn>span::before {
  top: 0;
  transform: rotate(0);
}

#menu__toggle:checked~.menu__btn>span::after {
  top: -2px;
  transform: rotate(90deg);
}

#menu__toggle:checked~.menu__box {
  visibility: visible;
  right: 0;
}

  

@media (max-width: 1199px) {
  .tarifs-box{
    padding: 0;
    gap: 26px;
    flex-direction: column-reverse;
  }

  .tarif-box-card{
    width: 100%;
  }

  .our-serv-box{
    flex-direction: column-reverse;
  }
}

@media (max-width: 991px) {
  .picture-article-img {
    width: 100% !important;
  }

  .header-content{
    flex-direction: column-reverse;
  }

  .header-text{
    text-align: center;
    align-items: center;
  }

  .header-nav{
    display: none;
  }

  .hamburger-menu{
    display: block;
  }

  .video-popup{
    margin: 15px;
  }

  .mod__art-boxs{
    flex-direction: column-reverse;
  }

  .art-box{
    flex-direction: column-reverse;
  }

  .how-work-img {
    flex: none; 
  }

  .how-work-box {
    flex: none; 
  }

  .how-work{
    flex-direction: column-reverse;
  }

  .how-work-box-card{
    flex-direction: column-reverse;
  }

  .how-work-img img {
    width: 280px;
  }

  .how-work-card p{
    margin: 0 auto;
  }

  .our-articles-box{
    align-items: center;
    flex-direction: column-reverse;
  }

  .our-articles-card{
    width: 100%;
  }

  .footer-box{
    text-align: center;
    gap: 26px;
    flex-direction: column-reverse;
  }

  .aboutus-footer{
    width: 100%;
  }

  .menu-footer{
    width: 100%;
  }

  .contact-footer{
    width: 100%;
  }

  .menu-footer ul{
    text-align: center;
  }

  .footer-politiks{
    flex-direction: column-reverse;
    gap: 23px;
  }

  .kontact{
    flex-direction: column-reverse;
  }

  .form-container{
    width: 90%;
  }

  

}

@media (max-width: 575px) {
  .close-button{
    right: 0;
    bottom: -20%;
    top: auto;
  }

  .play-icon-container{
    margin: 0 auto;
  }
}

@media (max-width: 380px) {
  .header{
    justify-content: center;
    gap: 25px;
  }
}


.dopPadding{
  padding: 117px 0px;
}


iframe{
  border: 0;
}



.but,
button {
  outline: none;
  border: none;
  background: inherit;
  padding: 15px;
  box-sizing: border-box !important;
}
.button-1 {
  background-color: #ea4c89;
  border-radius: 0px;
  border-style: none;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 15px 19px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-1:hover,
.button-1:focus {
  background-color: #f082ac;
  color: #fff;
}
.button-2 {
  all: unset;
  font-size: 15px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 15px 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.button-2:hover {
  color: #fff;
}

.button-2::after,
.button-2::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all 0.4s;
}

.button-2::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #28282d;
  border-radius: 0px;
}

.button-2::after {
  transform: translate(15px, 15px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 0px;
}

.button-2:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-2:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-2:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}
.button-3 {
  appearance: button;
  backface-visibility: hidden;
  background-color: #405cf5;
  border-radius: 0px;
  border-width: 0;
  box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset, rgba(50, 50, 93, 0.1) 0 2px 5px 0,
    rgba(0, 0, 0, 0.07) 0 1px 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  line-height: 1.15;
  margin: 15px 0 0;
  outline: none;
  overflow: hidden;
  padding: 19px 26px;
  position: relative;
  text-align: center;
  text-transform: none;
  transform: translateZ(0);
  transition: all 0.2s, box-shadow 0.08s ease-in;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}

.button-3:disabled {
  cursor: default;
}

.button-3:focus {
  box-shadow: rgba(50, 50, 93, 0.1) 0 0 0 1px inset, rgba(50, 50, 93, 0.2) 0 6px 15px 0,
    rgba(0, 0, 0, 0.1) 0 2px 2px 0, rgba(50, 151, 211, 0.3) 0 0 0 4px;
}
.button-3:hover {
  color: #fff;
}
.button-4 {
  margin: 15px;
  padding: 19px 33px;
  text-align: center;
  text-transform: inherit;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 0px;
  display: block;
  border: 0px;
  font-weight: 600;
  box-shadow: 0px 0px 14px -7px #f09819;
  background-image: linear-gradient(45deg, #ff512f 0%, #f09819 51%, #ff512f 100%);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-4:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

.button-4:active {
  transform: scale(0.95);
}
.button-5 {
  align-items: center;
  background-color: #0a66c2;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  line-height: 23px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 23px;
  padding-right: 23px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.button-5:hover,
.button-5:focus {
  background-color: #16437e;
  color: #ffffff;
}

.button-5:active {
  background: #09223b;
  color: rgb(255, 255, 255, 0.7);
}

.button-5:disabled {
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.3);
}

.header-top-block{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tarifsTitle{
  font-weight: 600;
  text-align: center;
  margin-bottom: 26px;
}


  
  
  


