@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;
  direction: ltr;
  font-family: 'Space Grotesk', sans-serif !important;
}

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

img{
  width: 100%;
}

.dop-pages {
  padding: 36px 0;
  overflow: hidden;
  background-color: white;
}

.dop-pages-text {
  text-align: justify;
}

.stayTitl {
  padding-bottom: 18px;
  text-align: start;
  font-weight: 900;
}


.header-contact-lay{
  overflow: hidden;
  position: relative;
  background-color: #0A043C;
}

.header-contact-lay::before{
  content: "";
    height: 100%;
    width: 50%;
    background: #ffcb91;
    position: absolute;
    top: 0;
    left: -20px;
    transform: skew(-25deg);
}

.header-contact{
  padding: 8px 0;
  display: flex;
  align-items: center;  
  justify-content: space-between;
  gap: 13px;
  flex-direction: row;
}

.header-contact a{
  z-index: 1;
  transition: 02s ease;
  color: #fff;
}
.header-contact a:hover{
  opacity: 0.4;
}


.header-content-lay {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.header-content-text{
  height: 100%;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 27px;
  padding: 0 50px;
}

.header-content-text canvas{
  opacity: 0.4;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.header-content-text h2{
  letter-spacing: 2px;
  margin: 0;
  font-weight: 900;
  font-size: 20px;
}

.header-content-button{
  text-align: center;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: row;
}

.header-content-img{
  flex: 1;
}

.header-content-img img{
  object-fit: cover;
  height: 100vh;
}

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

.video-container {
  display: none;
  height: 100%;
  width: 100%;
  padding: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
}

.video-container video{
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
  width: 100%;
  max-height: 80vh;
}

.closes {
  color: #fff;
  position: fixed;
  top: 13px;
  right: 27px;
  font-size: 27px;
  cursor: pointer;
}

.header-lay{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.header{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
}

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

.logoImg img{
  width: 45px;
}

.logo a{
  color: black; 
  display: flex; 
  align-items: center; 
  gap: 18px;
  transition: color 0.2s ease;
}

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

.header-nav{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.topmenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: start;
  position: relative; 
}

.topmenu li {
  position: relative;
}

.topmenu-link {
  color: black; 
  text-decoration: none;
  padding: 13px 18px; 
  display: block;
  transition: 0.2s ease;
  position: relative; 
}

.topmenu-link:hover{
  color: black;
}

.submenu {
  position: absolute;
  top: 100%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 54px, rgba(0, 0, 0, 0.12) 0px -12px 27px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 12px, rgba(0, 0, 0, 0.09) 0px -2px 4px;  left: 0;
  background-color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  overflow: hidden;
  width: 300px;
  z-index: 5;
  animation: slideIn 0.2s ease 0s forwards;
  transition: all 0.2s ease;
}

@keyframes slideIn {
  0% {
    margin-top: 30px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

.submenu-a {
  position: relative; 
  color: #0A043C;
  padding: 8px 18px;
  display: block;
  transition: 0.2s ease;
}

.submenu-a:hover {
  position: relative;
  left: 18px;
  color: #ffcb91;
}

.submenu-a:hover::before {
  content: "—"; 
  position: absolute;
  left: -4px; 
  top: 50%;
  transform: translateY(-50%);
  color: #ffcb91; 
}

.topmenu li:hover .submenu {
  display: block;
}

.fixed-header {
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 10px 27px 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.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;
  max-height: 90%;
  overflow: auto;
  width: 80%;
  padding: 20px;
  background-color: white;
  position: fixed;
  border-radius: 13px;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
}

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

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

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

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

.input-container {
  position: relative;
}

.input-container .input-maingroup--group, .input-container .textarea-maingroup--group, .form button {
  outline: none;
  border: 2px solid #f6f6f6;
  margin: 8px 0;
}

.input-container .input-maingroup--group:focus, .input-container .textarea-maingroup--group:focus{
  background-color: white;
}

.input-container .input-maingroup--group {
  background-color: #f6f6f6;
  padding: 18px;
  padding-right: 3rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 2.1rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
}

.input-container .textarea-maingroup--group {
  background-color: #f6f6f6;
  padding: 18px;
  padding-right: 3rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 2.1rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
}

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

.check:hover{
  color: #5B69E7;
}

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

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

.submit-form {
  margin: 0 auto;
}

.art{
  flex: 1;
}

.titleArt {
  font-size: 18px;
  text-transform: inherit;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 900;
  margin-bottom: 30px;
}

.picture-art-img {
  transition: 0.4s ease;
  border-radius: 45% 15% 45% 15% / 15% 45% 15% 45%;
  float: left;
  width: 35%;
  margin: 30px;
  margin-top: 0;
  margin-left: 0;
}

.picture-art-img:hover{
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 54px, rgba(0, 0, 0, 0.12) 0px -12px 27px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 12px, rgba(0, 0, 0, 0.09) 0px -2px 4px;
}

.art-content {
  font-size: 18px;
}

.art-price {
  text-transform: inherit;
  letter-spacing: 2px;
  text-align: start;
  font-size: 18px;
  margin-top: 30px;
  font-weight: 900;
}

.scroll-to-top {
  position: fixed;
  z-index: 2;
  align-items: center;
  justify-content: center;
  bottom: 20px;
  right: 20px;
  width: 43px;
  height: 43px;
  background-color: #ffcb91;
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
  display: none;
}

.gallery-box .slick-dots{
  position: relative;
}

.comments-box .slick-dots{
  position: relative;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 4px;
  cursor: pointer;
  color: transparent;
  background: transparent;
  border: 0;
  outline: none;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•'; 
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

.slick-prev:before, .slick-next:before{
  font-size: 20px !important;
}

 .slick-prev:before {
  content: '\2190';
  color: black;
}

.slick-next, .slick-prev{
  z-index: 2;
}

.slick-next:before {
  content: '\2192';
  color: black; 
}

.reasons{
  padding: 30px 0;
}

.reasons h2{
  text-align: center;
  font-weight: 900;
  margin-bottom: 27px;
}

.reasons-box{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}

.reasons-card{
  transition: 0.7s ease;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 10px 27px 0px;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  flex: 1;
}

.reasons-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #ffcb91; 
  transition: left 0.7s ease-in-out;
}

.reasons-card:hover{
  color: #fff;
}

.reasons-card:hover::before {
  left: 0;
}

.reasons-card i{
  transition: 0.7s ease;
  width: 76px;
  height: 76px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #fff;
  background-color: #ffcb91;
  padding: 8px;
}

.reasons-card:hover i{
  color: #ffcb91;
  background-color: #fff;
}

.reasons-card h5{
  font-size: 18px;
  font-weight: 700;
}

.sidebar-block{
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-direction: row;
}

.sidebar{
  flex: 1;
}

.sidebar-box{
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  flex-direction: column-reverse;
  flex: 2;
}

.service{
  display: flex;
  flex-direction: column;
}

.service h2{
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}

.service-box{
  display: flex;
  gap: 27px;
  flex-direction: column-reverse;
}

.service-card{
  display: flex;
  flex-direction: column;
  gap: 27px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: 0.7s ease;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  padding: 18px;
  flex: 1;
}



.service-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #ffcb91; 
  transition: left 0.7s ease-in-out;
}

.service-card:hover::before {
  left: 0;
}

.service-card i{
  transition: 0.7s ease;
  width: 76px;
  height: 76px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #fff;
  background-color: #ffcb91;
  padding: 8px;
}

.service-card:hover i{
  color: #ffcb91;
  background-color: #fff;
}

.service-card-text{
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.service-card-text h3{
  transition: 0.7s ease;
  color: #0A043C;
  font-size: 16px;
}

.service-card:hover .service-card-text h3{
  color: #fff;
}

.service-card-text p{
  transition: 0.7s ease;
  opacity: 0.4;
  font-size: 15px;
  color: #0A043C;
}

.service-card:hover .service-card-text p{
  color: #fff;
}

.articles{
  flex: 1;
}

.articles h2{
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 27px;
}

.articles-box{
  display: flex;
  gap: 27px;
  flex-direction: column-reverse;
}

.articles-card{
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 10px 27px 0px;
  flex: 1;
}

.articles-card-img{
  cursor: pointer;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
} 

.articles-card-img img{
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.articles-card-box{
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 18px;
}

.articles-card-date p{
  margin: 0;
  opacity: 0.4;
  font-size: 15px;
  color: #0A043C;
}

.articles-card-text{
  display: flex;
  flex-direction: column;
}

.articles-card-text a{
  font-weight: 900;
  font-size: 16px;
  transition: 0.4s ease;
  color: #0A043C;
}

.articles-card-text a:hover{
  font-weight: 900;
  color: #ffcb91;
}

.articles-card-text a h3{
  transition: 0.4s ease;
  font-weight: 900;
  font-size: 16px;
  color: #0A043C;
}

.articles-card-text a h3:hover{
  color: #ffcb91;
}

.articles-card-text p{
  margin: 0;
  opacity: 0.4;
  font-size: 15px;
  color: #0A043C;
}

.articles-card-button a{
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  transition: 0.4s ease;
  color: #ffcb91;
}

.articles-card-button a span{
  display: block;
    width: 13px;
    height: 13px;
    opacity: 0.7;
    border-bottom: 2px solid #ffcb91;
    border-right: 2px solid #ffcb91;
    transform: rotate(-45deg) translate(0px, 0px);
}

.workers{
  flex: 1;
}

.workers h2{
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}

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

.workers-card{
  width: 90%;
  margin: 0 auto;
  transform: translateY(0);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.workers-card:hover{
  transform: translateY(-27px);
}

.workers-card-img{
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.workers-card-img img {
  transition: opacity 0.2s ease-in-out; 
}


.workers-card-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffcb91; 
  opacity: 0; 
  transition: opacity 0.2s ease-in-out; 
}

.workers-card:hover .workers-card-img::before {
  opacity: 0.5; 
}

.workers-card-text{
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 8px;  
  border-radius: 13px;
  background-color: #fff;
  padding: 13px;
  width: 80%;
  position: relative;
  top: -30px;
}

.workers-card-text h5{
  font-weight: 900;
  font-size: 18px;
  color: #0A043C;
}

.workers-card-text p{
  margin: 0;
  font-size: 16px;
  color: #0A043C;
  opacity: 0.4;
}

.comments-lay{
  margin: 30px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.comments-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url(images/graphics_header_687cc5ef5d0465.99019122.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.comments-lay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  opacity: 0.7;
  background-color: #060606;
  z-index: 0; 
}

.comments{
  position: relative;
  z-index: 1;
  padding: 30px 0;
}

.comments h2{
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.comments-box{
  padding: 0 27px;
  direction: initial;
}

.comments-card{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 10px 27px 0px;
  background-color: #fff;
  border-radius: 13px;
  padding: 18px;
  margin: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 18px;
}

.comments-img-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.comments-img-box img{
  cursor: pointer;
  object-fit: cover;
  border-radius: 50%;
  height: 103px;
  width: 103px;
}

.comments-img-box i{
  position: absolute;
  bottom: 0;
  left: -15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #ffcb91;
}

.comments-card p{
  margin: 0;
  opacity: 0.4;
  color: #0A043C;
}

.comments-card h5{
  font-weight: 900;
  color: #0A043C;
}

.comments-card span{
  height: 2px;
  width: 29%;
  background: #cccccc;
}

.gallery{
  padding: 30px 0;
}

.gallery h2{
  text-align: center;
  margin-bottom: 30px;
}

.gallery-box{
  padding: 0 27px;
  direction: initial;
}

.gallery-card{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 8px;
  max-height: 223px;

}

.gallery-card img{
  cursor: pointer;
  transition: 0.4s ease;
  width: 100%;
  max-height: 223px;
}

.gallery-card img:hover{
  opacity: 0.5;
}

.footer-lay{
  background-color: #060606cc;
  padding: 30px 0;
}

.footer{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.subscribe-footer{
  border-bottom: 2px solid #4d4d4d;
  padding-bottom: 30px;
}

.form-subscribe{
  display: flex;
  align-items: center;
  gap: 13px;
  flex-direction: row;
}

.form-subscribe h5{
  color: #fff;
  margin: 0;
  font-weight: 900;
  flex: 1;
}

.footer-input{
  flex: 1;
  overflow: hidden;
  width: 100%;
  height: 50px;
  background: #fff;
  border: 2px solid #F6F6F6;
  display: flex;
  align-items: center;
}

.form-subscribe input{
  background: none;
  border: none;
  padding: 0 18px;
  width: 100%;
  color: #333;
  outline: none;
}

.form-subscribe button{
  margin: 0;
  border-radius: 0;
  text-align: center;
}

.footer-information{
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
  flex-direction: row;
}

.menu-footer{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-footer h2{
  color: #fff;
}

.menu-footer-ul{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.menu-footer-ul li{
  list-style-type: none;
}

.menu-footer-link{
  transition: 0.2s ease;
  color: #fff;
}

.menu-footer-link:hover{
  opacity: 0.5;
  color: #fff;
}

.contact-footer{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-footer h2{
  color: #fff;
}

.contact-footer div{
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.contact-footer div i{
  font-size: 18px;
  color: #fff;
}

.contact-footer div a{
  transition: 0.2s ease;
  color: #fff;
}

.contact-footer div a:hover{
  opacity: 0.5;
  color: #fff;
}

.footer-politic{
  flex: 1;
  display: flex;
  gap: 8px;
  flex-direction: column;
  justify-content: space-around;
}

.footer-politic a{
  color: #fff;
}

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

.footer-bottom{
  border-top: 2px solid #4d4d4d;
  padding-top: 30px;
}

.footer-bottom p{
  color: #fff;
  text-align: center;
  margin: 0;
}

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

.title-kontact-form{
  text-align: center;
  margin-bottom: 27px;
}

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

.input-kontact-form .inputs-kontact {
  background-color: #f6f6f6;
  padding: 18px;
  padding-right: 3rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 2.1rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  
}

.input-kontact-form .inputs-kontact{
  outline: none;
  border: 2px solid #f6f6f6;
  margin: 8px 0;
}

.input-kontact-form .textarea-kontact{
  background-color: #f6f6f6;
  padding: 18px;
  padding-right: 3rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 2.1rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
  height: 150px;
}

.input-kontact-form .textarea-kontact:focus, .input-kontact-form .inputs-kontact:focus{
  background-color: white;
}

.input-kontact-form .textarea-kontact{
  outline: none;
  border: 2px solid #f6f6f6;
  margin: 8px 0;
}

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

.contact-form-box{
  display: flex;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 10px 27px 0px;
  gap: 30px;
  margin: 30px 0;
  justify-content: space-between;
  flex-direction: row;
}

.kontact-box-card{
  flex: 1;
  background-color: #0A043C;
  padding: 30px;
  display: flex;
  gap: 13px;
  flex-direction: column-reverse;
}

.kontact-box-card span{
  width: 100%;
  height: 0.1px;
  opacity: 0.4;
  background-color: #fff;
}

.kontact-card{
  flex: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  flex-direction: row;
}


.kontact-card i{
  transition: 0.7s ease;
  width: 76px;
  height: 76px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #fff;
  background-color: #ffcb91;
  padding: 8px;
}

.kontact-card:hover i{
  color: #ffcb91;
  background-color: #fff;
}

.kontact-card p{
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.kontact-card a{
  font-size: 16px;
  color: #fff;
}

.kontact-card a:hover{
  color: #fff;
  opacity: 0.5;
}

.menu-btn {
  cursor: pointer;
  display: none;
	width: 27px;
	height: 27px;
	position: relative;
	z-index:100;
	overflow: hidden;
}

.menu-btn span {
	width: 20px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #222222;
	transition: all 0.4s;
}

.menu-btn span:nth-of-type(2) {
	top: calc(50% - 7px);
}
.menu-btn span:nth-of-type(3) {
	top: calc(50% + 7px);
}

.menu-btn.active span:nth-of-type(1) {
  display: none;
}
.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);  
}
.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg); 
}

.menu {
  z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 18px;
  opacity: 0.9;
  background: #ffffff;
	transform: translateX(100%);
	transition: transform 0.4s; 
}

.menu.active {
	transform: translateX(0);
}

.menu nav{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.menu ul{
  display: flex;
  flex-direction: column;
  gap: 13px;
  text-align: center;
  padding: 0;
}

.menu li {
	list-style-type: none;
}

.menu li a{
  letter-spacing: 2px;
  text-transform: inherit;
  font-weight: 900;
  text-align: center;
  font-size: 21px;
	color: #0A043C;
}

.menu li a:hover{
  color: #5B69E7;
  border-bottom: 2px solid;
}




@media (max-width: 991px) {
  .header-nav{
    display: none;
  }

  .menu-btn {
    display: block;
  }
  
  .header-content-img{
    display: none;
  }

  .header-content-text{
    padding: 0 8px;
    color: #fff;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .header-content-lay{
    background: rgb(0, 0, 0, 0.7);
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
  }
  
  .header-content-lay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(images/depictions_header_687cc5ef5d0404.67326287.jpg);
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.header-content-text canvas{
  background-color: transparent !important;
}

.sidebar-block{
  flex-direction: column-reverse;
}

.articles-box{
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
}

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

.contact-form-box{
  flex-direction: column-reverse;
}

}

@media (max-width: 767px) {
  

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

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

  .picture-art-img{
    margin: 0 0 30px 0;
    width: 100%;
  }

  .reasons-box{
    flex-direction: column-reverse;
  }
  .footer-information{
    flex-direction: column-reverse;
  }
  .form-subscribe{
    flex-direction: column;
  }

  .comments-box{
    padding: 0;
  }

  .header-contact-lay::before{
    content: none;
  }

  .header-contact-lay{
    background-color: #ffcb91;
  }

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


}

@media (max-width: 575px) {
  .header-content-button{
    flex-direction: column-reverse;
  }

  .header-contact a:nth-child(1){
    display: none;
  }

  .header-contact{
    flex-direction: column;
  }

  .header-content-text h2{
    font-size: 16px;
  }

  .contact-form-box{
    gap: 20px;
  }

  .kontact-form{
    padding: 20px;
  }

  .kontact-box-card{
    padding: 20px;
  }
  
}

@media (max-width: 500px) {
  .kontact-box-card{
    gap: 20px;
  }

  .kontact-card{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


.but,
button {
  outline: none;
  border: none;
  background: inherit;
  box-sizing: border-box !important;
}

.button-1 {
  background-color: #3498db;
  color: #fff;
  padding: 13px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.button-1:hover {
  color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 27px;
  background-color: #2980b9;
}

.button-2 {
  background-color: #e74c3c;
  color: #fff;
  padding: 18px 27px;
  border: 2px solid #c0392b;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button-2:hover {
  color: #fff;
  transform: scale(1.05);
}

.button-3 {
  background-color: #2ecc71;
  color: #fff;
  padding:  13px 24px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.button-3:hover {
  color: #fff;
  box-shadow: 0 0 13px rgba(46, 204, 113, 0.8);
}

.button-4 {
  background-color: #f39c12;
  color: #fff;
  padding: 13px 27px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.button-4:hover {
  border: 2px solid #9c4307;
  color: #fff;
  color: #d35400;
}

.button-5 {
  background-color: #9b59b6;
  color: #fff;
  padding: 18px 20px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: border-radius 0.2s ease;
}

.button-5:hover {
  color: #fff;
  border-radius: 18px;
}


.dop-pages-poli-box. .art-dop-page, .dop-pages-about-main{
  padding:103px 0px;
}

.dop-pages-poli-box a{
  color: #0A043C;
  transition: 0.4s ease;
}

.dop-pages-poli-box a:hover{
  opacity: 0.4;
  color: #0A043C;
}

iframe{
  border: 0;
}

.footer-politic .logo{
  margin-bottom: 0.5rem
}

.footer-politic .logo a{
  color: #fff;
}

.art-dop-page{
  padding: 36px 0;
}











  
  
  


