/* @import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap'); */

@font-face {
    font-family: "Exo2"; 
    src: url("fonts/Exo2-Regular.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
  } 

  @font-face {
    font-family: "Exo2_bold"; 
    src: url("fonts/Exo2-Bold.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
  } 

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-color:#ff1909 transparent;
    scrollbar-width: thin;
}

::selection {
    background: #ff1909; 
    color: #000000;
}

::-moz-selection {
    background: #ff1909;
    color: #000000;
}


::-webkit-scrollbar{
    background-color: transparent;
}

::-webkit-scrollbar-tumb{
    background-color: #ff1909;
}

a.skip-link.screen-reader-text {
    display: none;
}

body{
    font-family: 'Exo2', sans-serif;
    font-style: normal;
    font-size: 16px;
    font-display: swap;
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    outline: none;
    color: black;
    transition: all .3s;
}

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
}


.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 5px;
}

/* header */
header .container{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #00000005
}

.header__left-side{
    width: 30%;
}

.header__left-side img{
    width: 90%;
    padding: 2px 0;
}

.header__right-side{
    display: flex;
    align-items: center;
    width: 65%;
    justify-content: flex-end;
}

.menu{
    margin-right: 50px;
    width: 100%;
    position: relative;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu nav{
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.menu nav li{
    list-style: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.menu li::after {
    content: "";
    position: absolute;
    left: 1px;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #ff1909;
    transition: width 0.3s ease;
}

.menu li:hover::after {
    width: 100%;
}

.menu li::before {
    content: "";
    position: absolute;
    left: 1px;
    bottom: -10px;
    width: 20%;
    height: 2px;
    background-color: #ff1909;
}

.social{
    display: flex;
    gap: 5px;
}

.social i{
    padding: 10px;
}

.soc__btn{
    width: 40px;
    height: 40px;
}

.tel-hover {
    position: relative;
}

.hidden-hover {
    position: absolute;
    bottom: -40px;
    left: -50px;
    width: 150px;
    background-color: #f5f5f5;
    color: black;
    padding: 10px;
    border-radius: 3px;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 1px 1px 0 0px #ff1909;
    z-index: 10;
}

.tel-hover:hover .hidden-hover {
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 10;
}


/* logos */
#logo-dark {
    display: none; 
}
    
#logo-light {
    display: inline-block;  
}

/* dark-mode btn and soc */
.fa-solid.fa-sun,
.fa-solid.fa-phone,
.fa-brands.fa-whatsapp,
.fa-brands.fa-instagram,
.fa-solid.fa-envelope{
    display: block;
    color: #121212;
    font-size: 20px;
    box-shadow: none;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    transition: all .3s;
}

.fa-solid.fa-moon{
    display: none;
}


.social .fa-solid.fa-sun:hover,
.social .fa-solid.fa-phone:hover,
.social .fa-brands.fa-whatsapp:hover,
.social .fa-brands.fa-instagram:hover {
    box-shadow:
      1px 1px #ff1909,
      2px 2px #ff1909,
      3px 3px #ff1909,
      4px 4px #ff1909,
      5px 5px #ff1909,
      0px 0px 5px 2px #0000000f;
    -webkit-transform: translateX(-7px);
    transform: translateX(-7px);
    transition: all .3s;
  }

/* mob-menu */
.wrapper{
    position: relative;
}

.mob__menu{
    display: none;
}

/*main*/
/*welcome block*/
.welcome-block {
    height: 95vh;
    background-image: url(/wp-content/themes/blankslate/img/186.png);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.welcome-left {
    width: 40%;
    padding-top: 5%;
    line-height: 1.5;
}

.welcome-left h1{
    font-size: 36px;
    margin-bottom: 30px;
    font-family: 'Exo2_Bold';
    z-index: 1;
}

.welcome-left p{
    margin-top: 10px;
    font-size: 18px;
    z-index: 1;
}

.welcome-right img{
    width: 100%;
}

.welcome-right {
    position: absolute;
    top: 0;
    z-index: -1;
    object-fit: cover;
}

/*logos slider*/
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos-wrapper {
    position: relative;
    z-index: 2;
}

.logos {
  overflow: hidden;
  padding: 0 0 60px 0;
  background: white;
  white-space: nowrap;
  position: absolute;
  top: -40px;
  left: 0;
  border-radius: 10%;
  width: 100%;
  box-shadow: 0 0 10px 1px #0000000f;
  z-index: 1;
  color: black;
  transition: all .3s;
}

.logos h1{
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  transition: all .3s;
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  transition: all .3s;
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 60s slide infinite linear;
}

.logos-slide img {
  height: 80px;
  margin: 0 35px;
  padding: 5px;
  border-radius: 5px;
}

/*why us*/
.why-us {
    display: flex;
    margin-top: 250px;
}

.why-us-banner {
    width: 65%;
    margin-right: 30px;
}

.why-us-banner img{
    width: 100%;
}

.why-us-text {
    width: 35%;
    line-height: 1.5;
}

.why-us-text h2{
    margin-bottom: 30px;
    font-family: 'Exo2_Bold';
}

/*our service*/
.our-services h1{
    text-align: center;
    margin-bottom: 50px;
}

.serv__category {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.serv__cat{
    width: 29%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow:  0 0 4px 4px rgb(0 0 0 / 15%);
    border-radius: 10px;
    padding: 10px;
    position: relative;
    background-color: transparent;
    transition: all .3s;
}

.serv__cat-img {
    background-color: #ff1909;
    padding: 10px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.serv__cat img{
    width: 50px;
}

.our-services h3{
    margin-bottom: 20px;
}

.serv__cat p{
    height: auto;
    margin-bottom: 60px;
}
.serv__cat-price {
    position: absolute;
    bottom: 30px;
}
.serv__btn {
    position: absolute;
    bottom: -18px;
    background-color: #ff1909;
    width: 70%;
    height: 35px;
    left: 15%;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    box-shadow: 0 0 2px 2px rgb(0 0 0 / 15%);
    transition: all .3s;
}

.serv__btn a{
    color: white;
    padding: 10px 50px;
}

.serv__btn:hover{
    background-color: #cf3d36;
    transition: background-color .3s;
}

/* slider */
.slider-bg {
    background: #f5f5f5;
    transition: all .3s;
    height: 500px;
}
    .txt__above-slider {
        font-family: 'Exo2_Bold';
        margin-top: 100px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .txt__under-slider {
        text-align: center;
        margin-top: 10px;
    }

.pagination {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 105%;
}

.pagination span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 7px 0;
  background-color: transparent;
  border: 2px solid white;
  cursor: pointer;
  transform: rotate(45deg);
  position: relative;
}

.pagination span:before{
  position: absolute;
  content: '';
  background-color: white;
  width: 2px;
  height: 14px;
  left: 11px;
  transform: rotate(135deg);
  top: 5px;
}

.pagination span.active {
  background-color: #FF5722;
}


.thumbnails {
  position: absolute;
  top: 10px;
  display: flex;
  right: 10px;
  gap: 15px;
  z-index: 2;
  cursor: p;
}

.thumbnail {
  display:   flex;
  width: 300px;
  overflow: hidden;
  border: 2px solid #ff572257;
  display: flex;
  border-radius: 2px;
  cursor: po;
}

.thumbnail img {
  width: 100%;
  object-fit: cover;
  background: white;
  display: flex;
  height: 150px;
}

.thumbnail.current {
  border: 2px solid #FF5722;
  border-radius: 4px;
  cursor: pointer;
}

.slider-wrapper {
  position: relative;
}

.slider-wrapper:before {
  content: '';
  z-index: 1;
  width: 70%;
  height: 500px;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgb(0 0 0 / 70%) 25%);
  background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgb(0 0 0 / 70%) 25);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgb(0 0 0 / 70%) 25%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
  position: absolute;
  right: 0;
}

.slide {
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
}

.descriptions {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 315px;
  width: 52%;
  z-index: 2;
  color: white;
}

.desc h2 {
    margin-bottom: 30px;
}

.desc a{
    color: #FF5722;
    transition: all .3s;
}

.desc a:hover{
    color: #cf3d36;
    transition: all .3s;
}


.desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90%;
}

.under_slider {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

/* feedback */
.feedback-nav {
    position: relative;
}

.feedback {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    position: relative;
  }
  
  .feedback::-webkit-scrollbar {
    display: none; 
  }
  
  .feedback-card{
    position: relative;
    flex: 0 0 auto; 
    width: calc(100% / 3 - 20px);
  }
  
  .feed-img img {
    padding: 10px;
    width: 100%;
    border-radius: 15px;
  }
  
  .feed-logo img{
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 0px;
    right: 0;
    border-radius: 50%;
    border: 5px solid #2a313b;
  }

  .arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgb(242 73 65 / 80%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
	transition: all .3s;
  }
  .arrow:hover{
	  background-color: #ff1909
  }
  .arrow.left {
    left: 0;
  }

  .arrow.right {
    right: 0;
  }

  .fancybox-button svg path{
    color: white;
  }

/*service - site create */


/*service - seo*/
.seo__element {
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    width: 340px;
    padding: 5px;
    align-items: center;
}
.seo__infographic {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}
.seo__element-img{
    margin: 5px;
    padding: 10px;
    background: #ff1909;
    border-radius: 50%;
    height: 80px;
    width: 80px;
}
.seo__element-img img{
    padding: 5px;
    width: 60px;
    }
.seo__element-inf p:nth-child(1){
    font-weight: bold;
    margin-bottom: 5px;
}

/*serive - smm*/
.block.one {
    margin-top: 50px;
}
.block__item {
	margin: 0 0 30px 0;
}
.block__title {
	letter-spacing: 2px;
	position: relative;
	padding: 0 0 0 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
}
.block__title:before, .block__title:after {
	content: '';
	width: 10px;
	height: 1px;
	background-color: #000;
	position: absolute;
	top: 8px;
	transition: all 0.3s ease 0s;
}
.block__title:before {
	transform: rotate(40deg);
	left: 0;
}
.block__title:after {
	transform: rotate(-40deg);
	left: 8px;
}
.block__title.active:before, .block__title.active:after {
	background-color: red;
}
.block__title.active:before {
	transform: rotate(-40deg);
	left: 0;
}
.block__title.active:after {
	transform: rotate(40deg);
	left: 8px;
}
.block__text {
	display: none;
	padding: 10px 0 0 15px;
}
.block__text ul li {
    line-height: 2;
}

/*service - ad*/
.ad__comparison {
    margin: 90px 0;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.ad__comparison-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #ff1909;
    position: relative;
}

.ad__comparison-name::after{
    position: absolute;
    content: '';
    width: 70px;
    height: 3px;
    background: #ff1909;
    bottom: -15px;
    left: 0;
}


.ad__comparison-info p {
    line-height: 1.5;
}

.ad__types img {
    max-width: 100%;
}

.ad__types-inf {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
    
}
.ad__types-block span {
    font-size: 18px;
    font-weight: bold;
    color: #ff1909;
    position: relative;
}

.ad__types-block p {
    /* margin-top: 30px; */
}

.ad__types-block {
    display: flex;
    padding: 10px;
    box-shadow: 0px 20px 20px rgb(0 0 0 / 10%);
    flex-direction: column;
    gap: 20px;
}

/*service - qr menu*/
.qr-head {
    margin-top: 90px;
    margin-bottom: 35px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.qr-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap:  20px;
}

.qr-item {
    width: 50%;
    margin: 20px 0;
}

.qr-item span{
    padding-left: 20px;
    font-weight: bold;
    font-size: 18px;
}

.qr-item p{
    margin-top: 15px;
    padding-left: 10px;
    position: relative;
}

.qr-item p::after{
    content: '';
    position: absolute;
    background: #ff1909;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
}

.qr-item i{
    color: gray;
    font-size: 18px;
}

.qr-desc {
    margin-top: 35px;
}

.qr-desc span{
    font-size: 24px;
    font-weight: bold;
}

.qr-desc p{
    margin-top: 20px;
}

/*service - general part*/
p.service__cta-end {
    margin-bottom: 90px;
    margin-top: 10px;
}
.service__cta-naming span {
    font-size: 24px;
    font-weight: bold;
    padding-right: 20px;
}

.service__cta-naming {
    margin: 50px 0;
    margin-top: 90px;
}

button.contact-button a {
    color: white;
}

.service__cta {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-button {
    background: -webkit-linear-gradient(310deg, #4859b0,#ff1909);/* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(130deg, #4859b0,#ff1909);/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 24px;
    border-radius: 50px;
    cursor: pointer;
    /* margin-right: 20px; */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all .3s;
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transition: all .3s;
}

.icon-buttons {
    display: flex;
}

.icon-button {
    background: #ff1909;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    text-decoration: none;
    color: white;
    font-size: 28px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

/* .icon-button:before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    top: 0;
    left: -100%;
    transition: left 0.3s;
} */

.icon-button:hover:before {
    left: 100%;
}

.icon-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.icon-button i {
    position: relative;
    z-index: 1;
}

.icon-button.phone {
    background: #25d366;
}

.icon-button.whatsapp {
    background: #25d366;
}

.icon-button.instagram {
    background: #E1306C;
}


.service__top {
    margin: 30px 0 50px 0;
    text-align: center;
}
.animated-text{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
    margin-top: 20px;
}
.animated-text p{
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  margin-top: 50px;
  position: relative;
}
/* .animated-text p::before{
  content: '';
  position: absolute;
  top: -45px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #ff1909;
}
.animated-text p::after{
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: #ff1909;
} */

.animated-text span{
    position: relative;
}

.animated-text span::before{
    content: "Профессионализм";
    color: #ff1909;
    animation: words 20s infinite;
}

.animated-text span::after{
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: 105%;
    background-color: #ffffff;
    border-left: 2px solid #ff1909;
    right: -8px;
    animation: cursor .8s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor {
    to{
        border-left: 2px solid #ff7f5000;
    }
}

@keyframes words {
    0%,20%{
        content: "Профессионализм";
    }
    21%,40%{
        content: "Результат";
    }
    41%,60%{
        content: "Индивидуальность";
    }
    61%,80%{
        content: "Качество";
    }
    81%,100%{
        content: "Надежность";
    }
}

@keyframes typing {
    10%,15%,30%,35%,50%,55%,70%,75%,90%,95%{
        width: 0;
    }
    5%,20%,25%,40%,45%,60%,65%,80%,85%{
        width: calc(100% + 8px);
    }
}

.site-create__top-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}
.site-create__top-content img{
    width: 50%;
}

.title-inf {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    margin: 35px 0;
}
.title-inf:nth-child(3) {
    margin-top: 80px;
}
.services__information {
    margin-top: 70px;
}
.inf__desc-img {
    display: flex;
    overflow: auto;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px;
}
.inf__desc-img img{
    width: 100px;
}
.desc-inf p{
    line-height: 1.5;
}

.services__work-screen {
    display: flex;
}
.services__work-screen img{
    width: 100%;
}
.services__work-screen a:hover{
    transform: scale(1.5);
    z-index: 1;
}

.see-more {
    margin-top: 20px;
    text-align: center;
    position: relative;
}
.see-more a{
    color: #ff1909 !important;
    padding: 10px;
    transition: all .3s;
}
.see-more a i{
    position: absolute;
    inset: 0 0 0 10;
    margin-top: 3px;
    margin-left: 10px;
    transition: all .3s;
}
.see-more a:hover{
    color: #cf3d36 !important;
    i{
        padding-left: 20px;
    transition: all .3s;
    }
}


/*partfolio*/
.partfolio{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.partfolio .arrow{
    display: none;
}

.partfolio__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.partfolio__header h3{
    width: 60%;
}
.partfolio__header p{
    width: 35%;
    display: flex;
    justify-content: flex-end;
}

.partfolio__top {
    text-align: center;
    margin-top: 30px;
    p{
        color: #bdbdbd;
        transform: all .3s;
    }
}

.partfolio-naming {
    margin: 50px 0;
    text-align: center;
}

.card {
    background-color: #fff;
    width: calc(33.33% - 20px);
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    transition: all .3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 30px rgb(255 0 0 / 10%);
    transition: all 0.3s;
}

.card img {
    width: 100%;
    object-fit: fill;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-description {
    font-size: 16px;
}

.zoom-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(1, 1, 1, 0.7);
    padding: 3px 3px;
    border-radius: 5px;
    display: none;
}

.hidden {
    display: none; 
}

.zoom-button span {
    height: 40px;
    width: 40px;
    display: block;
    position: relative;
}

.lupa:before, .lupa:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
}
 
.lupa:before {
    width: 15px;
    height: 15px;
    border: 3px #bdbdbd solid;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    right: 12px;
}
 
.lupa:after {
    width: 3px;
    height: 15px;
    background: #bdbdbd;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    top: 18px;
    right: 10px;
}

    /* services page*/
    .wrapper-spoiler {
        height: 100%;
        padding: 50px 0;
    }
    
    .block__item {
        margin: 0 0 20px 0;
    }
    .block__title {
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        padding: 0 0 0 30px;
        cursor: pointer;
    
    }
    .block__title:before, .block__title:after {
        content: '';
        width: 10px;
        height: 1px;
        background-color: #000;
        position: absolute;
        top: 8px;
        transition: all 0.3s ease 0s;
    }
    .block__title:before {
        transform: rotate(40deg);
        left: 0;
    }
    .block__title:after {
        transform: rotate(-40deg);
        left: 8px;
    }
    .block__title.active:before, .block__title.active:after {
        background-color: red;
    }
    .block__title.active:before {
        transform: rotate(-40deg);
        left: 0;
    }
    .block__title.active:after {
        transform: rotate(40deg);
        left: 8px;
    }
    .block__text {
        display: none;
        padding: 20px 0 0 40px;
    }


    /*contacts page*/
    .contacts-page {
        display: flex;
        gap: 40px;
        margin-top: 50px;
    }
    
    .left-side {
        width: 75%;
    }
    
    .left-side iframe {
        width: 100%;
    }
    
    .right-side {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
        
        a {
            display: flex;
            gap: 30px;
        }
    }
    
    .right-side a:hover{
        color: #cf3d36;
        transition: all .3s;
        i{
            color: #cf3d36;
            transition: all .3s;
        }
    }







    /* footer */
    footer{
      background-color: #f5f5f5;
      box-shadow: 0px -1px 5px rgb(0 0 0 / 10%) inset;
      margin-top: 50px;
      transition: all .3s;
    }

    .footer-bot {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 15px;
    } 

    .footer-bot p {
      color: #f35952;
      transition: all .3s;
    }

    .copyright p{
      color: #bcbcbc;
      transition: all .3s;
    }

    .footer-first,
    .footer-second,
    .footer-third{
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .footer-first a:hover,
    .footer-second a:hover,
    .footer-third a:hover{
        color: #ff1909;
        transition: all .3s;
        i{
            color: #ff1909;
            transition: all .3s;
        }
    }
    
    .footer-first img{
        width: 150px;
    }
    
    .copyright {
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
    }
    
    .footer-third a{
        display: flex;
        gap: 20px;
    }

    footer i.fa-solid.fa-phone:hover,
    footer i.fa-brands.fa-whatsapp:hover,
    footer i.fa-brands.fa-instagram:hover{
        box-shadow: none;
        transform: none;
    }

    .footer-top {
        padding-top: 10px;
    }

    .footer-first p,
    .footer-second p,
    .footer-third p{
        margin-bottom: 10px;
    }
    
    .works-time p, .footer__more-items {
        margin: 20px 0 25px 0;
    }
    
    .footer__time-info {
        display: flex;
        gap: 20px;
    }

    .copyright .logo_white{
        display: none;
    }
    
    .copyright .logo_black{
        display: block;
    }

    .copyright img{
        width: 50%;
    }

    .footer-copyright__links {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
    }

    .footer-copyright {
        width: 33.33%;
    }
    
    .footer-copyright.footer-copyright__logos {
        display: flex;
        justify-content: center;
    }


  @media screen and (max-width: 992px){
    .menu{
        display: none;
    }

    .mob__menu{
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #00000030;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        transition: all .3s;
        z-index: 1000;
    }
    
    .mob__menu .container{
        display: flex;
        justify-content: space-between;
        padding: 10px 20px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .mob__menu i{
        font-size: 20px;
    }
    
    .mob__menu p{
        margin-top: 5px;
    }
    
    .mob__btn .fa-solid.fa-sun:hover{
        box-shadow: none;
        transform: none;
    }
    
    button.mob__btn{
        color: black;
        transition: all 0.3s;
    }
    
    /* toggle menu */
    .mobile-menu {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        height: 220px;
        background-color: #00000030;
        transition: bottom 0.3s ease;
        z-index: -1;
        text-align: center;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 10px 0 10px 0;
        margin: 0;
    }
    
    .mobile-menu li {
        margin-bottom: 15px;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 5px 0;
    }
    
    .menu-open {
        bottom: 0;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        box-shadow: 0px -1px 0px 0px #ff19093d;
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
    }
    
    /*mob-meun__contacts*/
    .contact-block {
        position: fixed;
        bottom: 80px;
        right: -120px;
        border-radius: 10px;
        overflow: hidden;
        transition: right 0.3s ease;
        transform-origin: top right;
    }
    
    .contact-btn {
        display: block;
        padding: 15px;
        background-color: #00000030;
        border-radius: 50%;
        margin-bottom: 15px;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        cursor: pointer;
    }
    
    .contact-btn .fa-solid:hover,
    .contact-btn .fa-brands:hover{
        box-shadow: none;
        transform: none;
        -webkit-transform: none;
    }
    
    .contact-btn:last-child {
        margin-bottom: 0;
    }
    
    .contact-block.open {
        right: 0;
        display: flex;
        flex-direction: column;
        width: auto;
        margin-right: 5px;
    }
    
    /*why us*/
    .why-us-text{
        width: 40%;
        line-height: 1.2;
    }
    
    .why-us-text h2{
        margin-bottom: 10px;
    }
    
    /*our service*/
    .serv__cat{
        width: 47%;
    }
    
    .serv__category{
        gap: 40px;
    }
    
     /* services - general part*/
    .site-create__top-content{
        gap: 20px;
    }
    .animated-text p{
        margin-top: 30px;
    }
    
    /*partfolio*/
    .card {
        width: calc(50% - 20px);
    }
    
    /*footer*/
    footer{
        padding-bottom: 30px;
    }
  }
  
  @media screen and (max-width: 1199px) and (min-width: 768px){
      .welcome-left {
        width: 50%;
        padding: 5% 20px;
        border-radius: 10px;
        line-height: 1.5;
        background-color: rgb(42 49 59 / 90%);
    }
  }
  
  @media screen and (max-width: 768px){
    /*welcome block*/
    .welcome-left{
      width: 100%;
      height: 85vh;
      padding-top: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
      
     .welcome-block:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgb(255 255 255 / 70%);
        z-index: 0;
        transition: all .3s;
        top: 0;
    }
    /* logos slider */
    .logos{
      border-radius: 10px;
    }
      
    .logos:before,
    .logos:after {
      display: none;
    }
      
    /*why us*/
    .why-us{
        flex-direction: column;
    }
      
    .why-us-banner,
    .why-us-text{
      width: 100%;
      text-align: center;
    }
      
    .why-us-text h2{
      margin: 30px 0;
    }
      
    /*our service*/
    .serv__cat{
      width: 45%;
    }
      
    .our-services h1{
      margin: 50px 0;
    }
      
    /* slider */
    .slider-wrapper:before{
      background: rgb(0 0 0 / 70%);
      width: 100%;
    }
    
    .descriptions{
      width:  100%;
      padding:  0 10px;
      text-align:   center;
      height: 280px;
    }
    
    .pagination{
      right: 0;
      gap: 15px;
      top: 105%;
      flex-direction: row;
      width: 100%;
      justify-content: center;
    }
    
    .pagination span:before{
      left: -7px;
      transform: rotate(45deg);
    }
    
    .pagination span:first-child::before{
      display: none;
    }
      
    .thumbnails{
      right:  0;
      width: 100%;
      justify-content: center;
    }

    /* feedback */
    .feedback-card {
        width: calc(50% - 20px);
    }

    /*service - ad*/
    .ad__comparison{
        flex-wrap: wrap;
    }
    
    .ad__types-inf{
        flex-wrap: wrap;
    }
    
    .ad__types-block {
        box-shadow: 0px 4px 9px rgb(0 0 0 / 10%);
    }

    /*service - general part*/
     .site-create__top-content{
        flex-direction: column;
     }
     .site-create__top-content img{
        width: 100%;
     }
     .animated-text p {
        margin-top: 15px;
    }
    
    .inf__desc-img {
        gap: 40px;
    }
    .inf__desc-img img{
        width: 100px;
    }
    .services__work-screen {
        flex-direction: column;
    }
    
    .services__work-screen a:hover{
        transform: none;
        z-index: 1;
    }

    /* partfolio */
    .partfolio{
        flex-wrap: nowrap;
        overflow: hidden;
        position: relative;
        justify-content: flex-start;
    }
    
    .card {
        width: 100%;
        min-width: 100%;
    }
    
    .partfolio .arrow {
        display: block;
    }
    
    .prev-btn,
    .next-btn{
        position: absolute;
        top: 50%;
    }
    
    button.next-btn{
        right: 5px;
    }
    
    button.arrow.prev-btn {
        left: 5px;
    }
    
    /*contacts page*/
    .contacts-page {
        display: flex;
        gap: 40px;
        margin-top: 50px;
        flex-direction: column-reverse;
    }
    
    .left-side {
        width: 100%;
    }
    
    .left-side iframe {
        width: 100%;
    }
    
    .right-side {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
        align-items: center;
        a {
            display: flex;
            gap: 30px;
        }
    }

      /* footer */
    .copyright img{
        width: 100%;
    }
  }
  
  @media screen and (max-width: 450px){
    /* logo */
    .header__left-side img{
        width: 150px;
    }
    
    /*our service*/
    .serv__cat{
         width: 100%;
         margin-top: 50px;
    }

    .serv__site-create{
        margin-top: 0;
    }
      
    .serv__category{
        gap: 0px;
    }

    /* feedback */
    .feedback-card {
        width: 100%; 
    }
    
    /*footer*/
    .footer-bot{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0;
    }
    
    .footer-first,
    .footer-second,
    .footer-third{
        align-items: center;
    }
    
    /*service - qr menu*/
    .qr-content {
        gap: 0;
        flex-wrap: wrap;
    }
    .qr-item{
        width: 100%;
    }
    
    /*service - general part*/
    .service__cta-naming span {
        padding-right: 40px;
    }
    .service__cta {
        justify-content: center;
    }
    
  }

@media (hover:hover){
    /* partfolio */
    .card:hover .zoom-button {
        display: block;
    }
}

@media (hover:none){
    /* partfolio */
    .card .zoom-button {
        display: block;
    }
}


