@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");

body{
  background-color: white;
  direction: ltr;
  font-family: 'Sofia Sans', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0px;
  color: #080101;
}
:root {
  --background-extra: #f9f9f9;
  --white: #fff;
  --acent-color: #ff6d60;
  --transition: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.section{
  padding: 99px 0;
}

.title{
  color: var(--acent-color);
  text-align: center;
  margin-bottom: 28px;
}

.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.nav-link,
.dropdown-item a {
  transition: 0.5s var(--transition);
}

.nav-link:hover,
.nav-link:focus,
.dropdown-item a:hover,
.dropdown-item a:focus {
  color: var(--acent-color);
  transform: scale(1.1);
}

.navbar-toggler {
  border: none;
  width: auto;
  transition: 0.5s var(--transition);
}

.navbar-toggler:hover,
.navbar-toggler:focus,
.navbar-toggler:active {
  box-shadow: 0 1px 2px 0 var(--acent-color);
  color: var(--acent-color);
}


.dropdown-menu[data-bs-popper] {
  right: -150%;
  left: -150%;
}

.dropdown-item:active {
  background-color: transparent;
}

.header-logo {
  display: flex;
  flex-direction: row;
  gap: 7px;
  justify-content: center;
  align-items: center;
}

.header-logo-img img {
  width: 50px;
  height: 50px;
}

.logo-text {
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  transition: 0.5s var(--transition);
}

.logo-text:hover,
.logo-text:focus {
  color: var(--acent-color);
}

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}
.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    top: 0;
    margin: auto;
}
.waveBlockInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
    background-image: linear-gradient(to top, #778637  20%, #27273c 80%);
}
.bgTop {
    z-index: 0;
    opacity: 0.5;
}
.bgMiddle {
    z-index: 0;
    opacity: 0.75;
}
.bgBottom {
    z-index: 0;
}
.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}
.waveTop {
    background-size: 50% 100px;
}
.waveAnimation .waveTop {
  animation: move-wave 3s;
   -webkit-animation: move-wave 3s;
   -webkit-animation-delay: 1s;
   animation-delay: 1s;
}
.waveMiddle {
    background-size: 50% 120px;
}
.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}
.waveBottom {
    background-size: 50% 100px;
}
.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}

.hero{
  padding: 120px 0;
}

.hero,
.container-myBlock{
  position: relative;
  color: var(--white);
}

.hero-img-box{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img{
  width: 250px;
  height: 250px;
  animation: hero-an 10s ease-in infinite;
}




@keyframes hero-an {
    0% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
  25% {
      transform: translateX(10px) translateY(10px) scale(1.1);
    }
      50% {
      transform: translateX(0px) translateY(0px) scale(1);
    }
      75% {
      transform: translateX(10px) translateY(10px) scale(1.1);
    }
    100% {
       transform: translateX(0px) translateY(0px) scale(1);
    }
}

.banner{
  position: absolute;
  bottom: -1px;
  left: 0;
}

.hero-text-box{
  padding: 32px 15px;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap:  20px;
}

.hero-title{
  text-align: end;
}

.about-us-img{
  padding: 15px;
}

.about-us-text{
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}

.au-img-box{
  margin: auto 0;
}

.size-img{
  margin: 0 auto 40px auto;
}

.price{
  color: var(--acent-color);
  font-size: 24px;
}

.background {
  background: var(--background-extra);
  background-size: 400% 400%;
  animation: Gradient 15s ease infinite;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cube {
  position: absolute;
  top: 80vh;
  left: 45vw;
  width: 10px;
  height: 10px;
  border: solid 1px #ff6d6063;
  transform-origin: top left;
  transform: scale(0) rotate(0deg) translate(-50%, -50%);
  animation: cube 12s ease-in forwards infinite;
}
.cube:nth-child(2n) {
  border-color: #6560ff6e ;
}
.cube:nth-child(2) {
  animation-delay: 0.5s;
  left: 25vw;
  top: 40vh;
}
.cube:nth-child(3) {
  animation-delay: 2s;
  left: 75vw;
  top: 50vh;
}
.cube:nth-child(4) {
  animation-delay: 6s;
  left: 90vw;
  top: 10vh;
}
.cube:nth-child(5) {
  animation-delay: 8s;
  left: 10vw;
  top: 85vh;
}
.cube:nth-child(6) {
  animation-delay: 10s;
  left: 50vw;
  top: 10vh;
}
.cube:nth-child(7) {
  animation-delay: 10s;
  left: 30vw;
  top: 120vh;
}
.cube:nth-child(8) {
  animation-delay: 0.7s;
  left: 88vw;
  top: 106vh;
}

@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}

.block--main-container{
  position: relative;
}

.services{
  background-color: #E8ECF2;
}

.services-box{
  background-color: #f7c3bf;
  height: 100%;
  background-color: var(--white);
  box-shadow: 0px 0px 3px #ddd8d87a;
  transition: 0.5s var(--transition);
  padding:  15px;
  cursor: pointer;
}

.services-box:hover,
.services-box:focus{
  transform: translateY(-10px);
}

.services-box:hover::after {
  width: 100%;
  left: 0;
}
.services-box::after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: 0%;
  height: 5px;
  background: var(--acent-color);
  bottom: 0;
  right: 0;
}

.services-img img{
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto;
}

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

.block--services-container{
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

.services-row{
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

.services-item{
  transition: 0.5s var(--transition);
}

.services-item:hover,
.services-item:focus{
    color: var(--acent-color);
}


.articles-container{
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

.block--articles-row{
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

.articles-wr{
  border-radius: 5px;
  background-image: linear-gradient(to top, #778637  20%, #27273c 80%);
  color: white;
  position: relative;
}


.articles-img img{
  width: 270px;
  height: 270px;
  object-fit: contain;
  margin: 0 auto;
}

.articles-title h4{
  color: var(--acent-color);
}

.articles-item{
  position: relative;
  transition: 0.5s var(--transition);
  text-align: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.articles-item:hover,
.articles-item:focus{
  color: inherit;
  transform: scale(1.02);
}


.how-work{
  background-color: #E8ECF2;
}

.hw-container{
  background-color: var(--white);
  padding-top: 15px;
  padding-bottom: 15px;
}

.hw-box{
  margin: auto 0;
}

.hw-col-img{
  margin: auto 0;
}

.hw-img-wr{
  background-color: rgba(86,20,213,.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  transition: 0.5s var(--transition);
}

.hw-img-wr svg{
  color: var(--acent-color);
}

.hw-img-wr:hover,
.hw-img-wr:focus{
  transform: scale(1.1);
}

.hw-list{
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

.hw-item{
  flex: 1;
  display: flex;
  flex-direction: row-reverse;
  gap:  15px;
  align-items: center;
}

.hw-text{
  flex: 1;
  margin: 0;
}

.block--how-work-icon{
  flex: 0.33;
}

.how-work-img{
  padding: 15px;
}

.partners{
  background-color: var(--background-extra);
}

.partners-list{
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  justify-content: space-between;
}

.partners-item{
  text-align: center;
  border: 1px solid #cce;
  padding: 12px 8px;
  min-height: 85px;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 6px;
  justify-content: center;
  background-color:#e7e5e5;
}

.partners-item img{
  object-fit: contain;
}

.contact-ind-row{
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

.contact-box{
  display: flex;
  flex-direction:  column-reverse;
  gap: 20px;
}
.contact-text{
  color: inherit;
  word-break: break-all;
  transition: all 0.5ms;
}
.contact-text:hover{
  color: var(--acent-color);
}
.footer{
  background-image: linear-gradient(to top, #778637  20%, #27273c 80%);
  color: var(--white);
  padding: 40px 0;
}

.footer-container{
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.footer-privacy a{
  transition: 0.5s var(--transition);
}

.footer-privacy a:hover,
.footer-privacy a:focus{
  color: var(--acent-color);
  transform: scale(1.1);
}

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

.input-input_section-part{
  border: 1px solid var(--acent-color);
  padding: 6px 15px;
  margin-bottom:  19px;
  border-radius: 8px;
}

.textarea-input_section-part{
  border: 1px solid var(--acent-color);
  padding: 6px 15px;
  border-radius: 8px;
  margin-bottom:  19px;
}

.form-btn{
  text-align: end;
}

.size-page{
  float: none;
  margin: 0 auto;
  padding:  28px;
}

.testimonial-list{
  display: flex;
  flex-direction:  column-reverse;
  gap:  15px;
}

.testimonial-item{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.testimonial-text{
  background: #eee;
  padding: 14px 20px;
  position: relative;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  min-height: 100px;
}

.testimonial-text::after{
  content: "";
  clear: both;
  display: block;
  overflow: hidden;
  position: absolute;
  width: 50px;
  height: 24px;
  clip-path: polygon(21% 0, 1% 100%, 78% 0);
  background: #eee;
  top: 100%;
  left: 65px;
}

.testimonial-img{
  border-radius: 50%;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.testimonial-author{
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.author{
  font-weight: 600;
}

.rating{
  color: var(--acent-color);
}

.testimonial-name{
  display: flex;
  flex-direction:  column-reverse;
  justify-content: center;
}

.page-comment{
  background: url(graphics/SheerScene-2025-01-24_13-30-410.png);
  background-position: center;
  background-size: cover;
}
.com-form-name-wr{
  display: flex;
  flex-direction: column-reverse;
  gap:  15px;
}

.com-form-box{
  flex: 1;
}

.com-form-box input{
  border: 1px solid var(--acent-color);
  padding: 6px 15px;
  margin-bottom:  19px;
  border-radius: 8px;
  width: 100%;
}

.com-form-box textarea{
  border: 1px solid var(--acent-color);
  padding: 6px 15px;
  border-radius: 8px;
  width: 100%;
}

.com-form-box input:focus-visible,
.com-form-box textarea:focus-visible{
  color: inherit;
  outline: none;
}

.com-form-checkbox{
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.contact{
  background-image: linear-gradient(to top, #778637  20%, #27273c 80%);
  color: var(--white);
  padding: 40px 0;
}

.contact-row{
  flex-direction: column-reverse;
  gap: 15px;
}

.block__contact-item{
    box-shadow: 7px 5px 30px rgba(72,73,121,.15);
    padding:  15px;
    min-height: 150px;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    align-items: center;
    justify-content: center;
    transition: 0.5s var(--transition);
}

.block__contact-item:hover,
.block__contact-item:focus{
  transform: translateY(-5px);
}

.block__contact-item:hover .contact-icon,
.block__contact-item:focus .contact-icon{
  color: var(--white);
  background-color: var(--acent-color);
}

.contact-icon{
  width: 50px;
  height: 50px;
  color: var(--acent-color);
  border: 1px dashed var(--acent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s var(--transition);
}

.map > iframe{
  height: 100%;
}

.contact-name{
  font-weight: 600;
}

.contact-form-row{
  flex-direction: column-reverse;
  gap: 15px;
  display: flex;
}

.contact-form-row > div{
  flex: 1;
}

.contact-form-wrapper{
  box-shadow: -1px 5px 20px 0 rgb(82 90 101/10%);
  padding: 15px;;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-item input{
  width: 100%;
  background-color: #f3f5fe;
  outline: none;
  border: none;
  padding: 10px 20px;
}

.contact-form-item textarea{
  width: 100%;
  background-color: #f3f5fe;
  outline: none;
  border: none;
  padding: 10px 20px;
}

.contact-form-check{
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.contact-form-name-box{
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

@media (max-width: 479px) {
  .container-fluid {
    flex-direction: column;
  }
}

@media (min-width: 480px){
    .dropdown-menu[data-bs-popper] {
  right: -200%;
  left: -200%;
}

.block__contact-item{
    flex-direction: row-reverse;
}
}

@media (max-width: 767px){
.dropdown-menu[data-bs-popper] {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

  .hero-row{
    flex-direction:  column-reverse;
    gap: 15px;
  }

  .about-us-row{
    flex-direction:  column-reverse;
    gap: 15px;
  }

  .hw-row{
 flex-direction:  column-reverse;
  gap: 15px;
}

.footer-row{
  flex-direction:  column-reverse;
  gap: 28px;
}

.form-btn button{
  width: 90%;
}

.button-page-wr button{
  width: 90%;
}

.services-img{
  margin-bottom: 15px;
}
}

@media (min-width: 768px){
.hero-img{
  width: 350px;
  height: 350px;
}

.hero-row{
  flex-direction:  row-reverse;
    gap: 0;
  }

.about-us-row{
  flex-direction:  row-reverse;
    gap: 0;
  }

.services-item{
  display: flex;
  flex-direction:  column-reverse;
  gap: 15px;
}

.services-img{
  flex: 1
}
.block--services-description{
  flex: 2
}

.block--services-container{
  flex: 1;
}

.services-row{
  flex-direction: row;
}

.articles-item{
  align-items: center;
  height: 100%;
}

.block--articles-row{
  flex-direction: row;
}

.articles-wr{
  flex: 1;
}

  .hw-row{
   flex-direction:  row-reverse;
   gap: 0;
  }

  .footer-row{
    flex-direction:  row-reverse;
    gap: 0;
}

.size-page{
  float: left;
}

.form-wr{
  width: 70%;
  margin: 0 auto;
}

.testimonial-list{
  flex-direction: row-reverse;
}

.comment-form{
  width: 70%;
  margin: 0 auto;
}

.com-form-name-wr{
  flex-direction: row-reverse;
}

.contact-row{
  flex-direction:  row-reverse;
  gap: 0;
}

.contact-form-row{
  flex-direction:  row-reverse;
}

.partners-list{
  flex-direction: row-reverse;
}

.contact-ind-row{
 flex-direction:  row-reverse;
  gap: 0;
}
}

@media (max-width: 991px){
.container-fluid {
    gap: 15px;
  }

.navbar-nav .dropdown-menu {
  position: absolute;
}

.dropdown-item a{
  white-space: break-spaces;
}
}


@media (min-width: 992px){
  .dropdown-menu[data-bs-popper] {
  right: 0;
  left: auto;
  margin-top: 10px;
}

    .navbar-expand-lg .navbar-collapse {
    justify-content: end;
  }

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

@media (min-width: 1200px) {
.articles-container{
  flex-direction: row;
}

.articles-img img{
  width: 220px;
  height: 220px;
}
}
