
*{
    box-sizing: border-box;
    --color-red:#E81C27;
    --color-black:#000;
    --color-white:#fff;
    --color-black-100:#545454;
}
html{
  scroll-behavior: smooth;
} 
.skip-link { position: absolute; top: -70px; left: 10px; background: #007BFF; color: #fff; padding: 10px 15px; font-size: 16px; text-decoration: none; z-index: 999; transition: top 0.3s; }
.skip-link:focus { top: 10px; outline: 2px solid #ff9800; box-shadow: 0 0 5px rgba(255, 152, 0, 0.5); }

body {
    margin: 0;
    font-family: 'Manrope';
    color: var(--color-black-100);
}
p{
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 16px;
    font-weight: 400;
    margin-top: 0;
}
img{
    max-width: 100%;
    display: block;
    height: auto;
}
a{
    color: var(--color-red);
    text-decoration: unset;
}

.container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
}
h1 , .h1{
    font-family: 'Manrope';
    font-size: 80px;
    line-height: 90px;
    margin: 0;
    font-weight: 600;
    color: var(--color-white);
}
h2 , .h2{
     font-family: 'Manrope';
    font-size: 54px;
    line-height: 64px;
    margin: 0;
    font-weight: 600;
    color: var(--color-black);
}
h3 , .h3{
     font-family: 'Manrope';
    font-weight: 800;
    font-size: 42px;
    line-height: 1;
    color: var(--color-black);
}
h4 , .h4 {
   font-family: 'Manrope';
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: var(--color-black);
  margin:0;
}

h5 , .h5 {
   font-family: 'Manrope';
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--color-black);
  margin:0;
}
h6 , .h6 {
   font-family: 'Manrope';
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--color-black);
  margin:0;
}
.btn-red {
  padding: 14px 25px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  border-radius: 6px;
  display: inline-block;
  border: 2px solid var(--color-red);
  transition: all 0.5s;
}

.btn-red:hover {
  background: transparent;
  color: var(--color-red);
}

.title-top {
  position: relative;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 17px;
  color:var(--color-red);
}
.title-top.title-top-center{
  text-align: center;
}
.title-top::before {
  content: '';
  width: 80px;
  height: 2px;
  background-color: var(--color-red);
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 7px;
}
.title-top.title-top-center::after{
  content: '';
  width: 80px;
  height: 2px;
  background-color: var(--color-red);
  display: inline-block;
  margin-bottom:5px;
  margin-left: 7px;
}
/* form */

.input-group.w-full {
  width: 100%;
}

.input-group.w-half {
  width: calc(50% - 10px);
}

.input-group .input-box, .input-group .input-select-box {
  border: 1px solid #0000001a;
  padding: 11px 15px;
  border-radius: 6px;
  width: 100%;
  font-size: 14px;
  line-height: 1;
  background: transparent;
  color: #444444;
}

.input-group label {
  font-size: 14px;
  line-height: 1;
  color: #444444;
  margin-bottom: 6px;
  display: inline-block;
}

.input-group .input-box::placeholder {
  color: #00000059;
}

.radio-group , .checkbox-group{
  width: 100%;
}
.radio-group  label, .checkbox-group  label {
  font-size: 14px;
  line-height: 1;
  color: #444444;
  margin-bottom: 6px;
  display: inline-block;
  width: 100%;
}

.radio-group .input-group, .checkbox-group .input-group {
  display: inline-block;
  margin-right: 12px;
}
.upload-img .input-box {
  border: 1px dashed #0000001a;
}
input[type="submit"].btn-red {
  width: 100%;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
  opacity: 0;
  position: absolute;
  width: 24px;
  height: 24px;
  margin: 0;
  z-index: 1;
  margin-top: 2px;
}
[type="radio"]:checked + .wpcf7-list-item-label,
[type="radio"]:not(:checked) + .wpcf7-list-item-label
{
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 24px;
  display: inline-block;
  color: #666;
}
[type="radio"]:checked + .wpcf7-list-item-label:before,
[type="radio"]:not(:checked) + .wpcf7-list-item-label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 3px solid #ddd;
  border-radius: 100%;
  background: var(--color-white);
  box-sizing: border-box;
}
[type="radio"]:checked + .wpcf7-list-item-label:before {
  border: 5px solid var(--color-red);
}
[type="radio"]:checked + .wpcf7-list-item-label:after,
[type="radio"]:not(:checked) + .wpcf7-list-item-label:after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-red);
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + .wpcf7-list-item-label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type="radio"]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}



[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  opacity: 0;
  position: absolute;
  width: 24px;
  height: 24px;
  margin: 0;
  z-index: 1;
  margin-top: 2px;
}
[type="checkbox"]:checked + .wpcf7-list-item-label,
[type="checkbox"]:not(:checked) + .wpcf7-list-item-label
{
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 24px;
  display: inline-block;
  color: #666;
}
[type="checkbox"]:checked + .wpcf7-list-item-label:before,
[type="checkbox"]:not(:checked) + .wpcf7-list-item-label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #D9D9D9;
  box-sizing: border-box;
}
[type="checkbox"]:checked + .wpcf7-list-item-label:before {
  background: var(--color-red);
}
[type="checkbox"]:checked + .wpcf7-list-item-label:after,
[type="checkbox"]:not(:checked) + .wpcf7-list-item-label:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
[type="checkbox"]:not(:checked) + .wpcf7-list-item-label:after {
  opacity: 0;
}
[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}

/* form */
@media (max-width:1400px){
  h1, .h1{
      font-size: 65px;
      line-height: 75px;
  }
  h2, .h2 {
      font-size: 46px;
      line-height: 56px;
  }
  h3, .h3{
      font-size: 36px;
  }
  h4, .h4{    
      font-size: 28px;
  }
  h5, .h5{    
      font-size: 24px;
  }
}
@media (max-width:1280px){
  h1, .h1{
      font-size: 54px;
      line-height: 64px;
  }
  h2, .h2 {
      font-size: 40px;
      line-height: 50px;
  }
  h3, .h3{
      font-size: 30px;
  }
  h4, .h4{    
      font-size: 24px;
  }
  h5, .h5{    
      font-size: 20px;
  }
  h6, .h6{    
      font-size: 18px;
  }
  .title-top::before , .title-top.title-top-center::after {
      width: 50px;
  }
  .title-top{
      font-size: 18px;
  }
  .container {
      max-width: 1140px;
  }
}
@media (max-width:992px){
  h1, .h1 {
      font-size: 44px;
      line-height: 54px;
  }
  h2, .h2 {
      font-size: 32px;
      line-height: 40px;
  }
  h3, .h3{
      font-size: 26px;
  }
  h4, .h4{    
      font-size: 22px;
  }
  .title-top {
      font-size: 16px;
  }
  .title-top::before, .title-top.title-top-center::after {
      width: 40px;
  }
  .btn-red {
      padding: 14px 14px;
  }
  .container {
      max-width: 960px;
  }
}
@media (max-width:767px){
  .container {
      max-width: 720px;
  }
}
@media (max-width:575px){
  .title-top::before, .title-top.title-top-center::after {
      width: 15px;
  }
  h1, .h1 {
      font-size: 36px;
      line-height: 45px;
  }
  h2, .h2 {
      font-size: 30px;
      line-height: 38px;
  }
  h3, .h3 {
      font-size: 24px;
  }
  .btn-red {
      padding: 10px 12px;
  }
  .input-group.w-half {
      width: 100%;
  }
  .container {
      max-width: 100%;
  }
  .title-top.title-top-center::after{
      margin-left: 4px;
  }
  .title-top::before{
  margin-right: 4px;
  }
}
/* header */
.header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index:9;
  background-color:transparent;
  transition: all 0.5s;
}
body.scrolled .header {
  background-color: var(--color-black);
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-menu {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: center;
  margin: 0;
  gap: 15px;
}

.header-logo img {
  width: 244px;
}

.menu-item a {
  color: var(--color-white);
  text-transform: uppercase;
  font-family: 'Exo 2';
}

.header-right-block {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-logo-mobile{
  display: none;
}
.header-toggle-btn {
  position: relative;
  width: 25px;
  display: none;
}

.header-toggle-btn span {
  width: 100%;
  height: 2px;
  margin-bottom: 5px;
  display: block;
  background-color: var(--color-red);
  transition: all 0.5s;
}
@media (max-width:1280px){
  .header-menu{
      gap: 15px;
      font-size: 14px;
  }
  .header-wrapper .btn-red {
      padding: 14px 10px;
      font-size: 14px;
  }
  .header-logo img {
      width: 200px;
  }
  .header-right-block{
      gap: 10px;
  }
}
@media (max-width:992px){
  .header-logo-mobile{
      display: block;
  }
  .header-wrapper .header-logo {
      display: none;
  }
  .header-toggle-btn {
      display: block;
  }
  .header-wrapper{
      position: absolute;
      top: 80px;
      background: var(--color-black);
      width: 100%;
      left: 0;
      padding: 20px;
      display: none;
  }
  .header-menu.header-menu-left {
      margin-bottom: 15px;
  }
  .header-main {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  .header-menu , .header-right-block{
      flex-direction: column;
      width: 100%;
      align-items: flex-start;
      font-size: 16px;
  }
  .header-right-block{
      gap: 40px;
  }
  .header.open {
      background-color: var(--color-black);
  }
  
  .header.open .header-toggle-btn span:nth-child(2) {
      display:none;
  }
  .header.open .header-toggle-btn span:nth-child(1){
      transform:rotate(45deg);
  }
  .header.open .header-toggle-btn span:nth-child(3){
      transform:rotate(-45deg);
      margin-top: -7px;
  }
}
/* header */


/* banner */
/*.banner {
  padding: 125px 0 75px 0;
  position: relative;
  background-image: url(../Images/banner-i.png);
  background-repeat: repeat-x;
  background-position: center center;
  clip-path: polygon(100% 0, 100% 100%, 78% 100%, 75% 97%, 0 97%, 0 0);
}

.banner::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000000b3;
}
.banner::after {
  content: '';
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, var(--color-black) , rgba(0, 0, 0, 0) 100%);
  opacity: 70%;
}
.banner .banner-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}
.banner .title-top {
  color: var(--color-white);
}
.banner .banner-desc {
  color: var(--color-white);
  margin: 20px 0 36px 0;
}
.banner .banner-left {
  width: 50%;
}

.banner .banner-form {
  width: calc(50% - 115px);
  margin-left: 115px;
  background-color: var(--color-white);
  box-shadow: 0px 0px 15px 0px #0000001A;
  border-radius: 12px;
  padding: 20px 50px;
}

.banner .banner-form-title {
  font-weight: 600;
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.banner .banner-form-title::after {
  content: '';
  width: 146px;
  height: 30px;
  display: block;
  background-image: url(../Images/heart-bit.png);
  margin-left: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.banner .banner-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 15px;
}
.banner .banner-form-wrapper  .form-info {
  font-size: 12px;
  text-align: center;
  width: 100%;
}

@media (max-width: 1280px) {
  .banner .banner-form{
      padding: 20px;
      width: calc(50% - 30px);
      margin-left: 30px;
  }
}
@media (max-width:992px){
  .banner .banner-left {
      width: 100%;
  }
  .banner .banner-wrapper{
      flex-direction: column;
      gap: 30px;
  }
  .banner .banner-form{
      width: 100%;
      margin-left: 0;
  }
  .banner{
      clip-path: none;
      background-size: cover;
  }
}
@media (max-width:575px){
  .banner .banner-form-title::after{
      width: 100px;
  }
}*/
/* banner */

/* testimonial */
/*.testimonial {
  padding: 90px 0;
}
.testimonial  .title-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.testimonial  .title-block-titles {
  max-width: 640px;
}
.testimonial .testimonial-slider-block {
  margin-top: 44px;
}

.testimonial .testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.testimonial .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial .testimonial-author-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  min-width: 50px;
  min-height: 50px;
}

.testimonial .testimonial-header-google-icon {
  width: 24px;
}

.testimonial .testimonial-slide {
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0px 0px 15px 0px #0000001A;
  padding: 40px;
}
.testimonial .testimonial-author-rating {
  width: 120px;
}

.testimonial .testimonial-author-name {
  margin-bottom: 10px;
  display: block;
}
.testimonial .testimonial-slider-block .slick-slide {
  margin: 10px 17px;
}
@media (max-width:992px){
  .testimonial .title-block{
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
  }
  .testimonial .title-block-titles {
      max-width: 100%;
  }
  .testimonial .testimonial-slider-block {
      margin-top: 25px;
  }
  .testimonial {
      padding: 50px 0;
  }
  .testimonial .testimonial-slide{
      padding: 20px;
  }
  .testimonial .testimonial-slider-block .slick-slide {
      margin: 10px;
  }
}
@media (max-width:575px){
  .testimonial .testimonial-author{
      gap: 10px;
  }
  .testimonial .testimonial-author-rating {
      width: 90px;
  }
}*/
/* testimonial */

/* how-work  */
/*.how-work {
  padding: 100px 0;
  background-color: #f5f5f5a6;
}

.how-work .how-work-wrapper {
  text-align: center;
}

.how-work .how-work-step-wrapper {
  margin: 33px 0;
  display: flex;
  gap: 20px;
}

.how-work .how-work-step-item {
  position: relative;
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
}

.how-work .how-work-step-details {
  position: absolute;
  bottom: 0;
  color: var(--color-white);
  text-align: left;
  padding: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.how-work .how-work-step-img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.how-work .how-work-step-item::before {
  content: '';
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000a6 100%);
  border-radius: 10px;
}

.how-work .how-work-step-title {
  color: var(--color-white);
}

.how-work .how-work-step-count {
  background-color: var(--color-red);
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  align-content: center;
  justify-items: center;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
}

.how-work .how-work-step-desc {
  height: 0;
  transition: all 0.5s;
  overflow: hidden;
  transform: translateY(100px);
  transition-delay: 1s;
}

.how-work .how-work-step-item.hover .how-work-step-desc {
  transform: translateY(0);
  height: auto;
  transition: all 0.5s;
  transition-delay: 0s;
}

.how-work .how-work-step-item.hover {
  width: 60%;
}

.how-work .how-work-step-item {
  width: 20%;
  transition: all 0.5s;
}

.how-work .how-work-step-item.hover .how-work-step-title {
  font-size: 32px;
  text-align: left;
}

.how-work .how-work-step-title {
  font-size: 22px;
  text-align: center;
}

.how-work .how-work-step-item.hover .how-work-step-details {
  padding: 50px;
  align-items: flex-start;
}
.how-work .how-work-step-item.hover::before {
  height: 100%;
      background: rgb(0 0 0 / 50%);
}

@media (max-width:1280px){

.how-work .how-work-step-item.hover .how-work-step-title {
  font-size: 28px;
}
.how-work .how-work-step-title {
  font-size: 20px;
}
.how-work .how-work-step-item.hover .how-work-step-details {
  padding: 30px;
}

}
@media (max-width:992px){
  .how-work {
      padding: 50px 0;
  }
  .how-work .how-work-step-wrapper{
      flex-direction: column;
  }
  .how-work .how-work-step-item.hover , .how-work .how-work-step-item {
      width: 100%;
      height: auto;
  }
  .how-work .how-work-step-details{
      padding: 20px;
      align-items: flex-start;
      position: relative;
      z-index: 2;
      margin-top: 40px;
  }
  .how-work .how-work-step-item.hover .how-work-step-details {
      padding: 20px;
  
  }
  .how-work .how-work-step-img{
      position: absolute;
  }
  .how-work .how-work-step-desc{
      transform: translateY(0);
      height: auto;
      transition: all 0.5s;
      transition-delay: 0s;
  }
  .how-work .how-work-step-item.hover .how-work-step-title {
      font-size: 24px;
  }
  .how-work .how-work-step-title {
      font-size: 24px;
      text-align: left;
  }
  .how-work .how-work-step-item::before {
      height: 100%;
      z-index: 1;
  }
}
@media (max-width:575px){
  .how-work .how-work-step-count{
      width: 50px;
      height: 50px;
      font-size: 26px;
  }
  .how-work .how-work-step-item.hover .how-work-step-title {
      font-size: 20px;
  }
  .how-work .how-work-step-title {
      font-size: 20px;
  }
  .how-work .how-work-step-details {
      padding: 10px;
  }
  .how-work .how-work-step-item.hover .how-work-step-details {
      padding: 10px;
  }
}*/

/* how-work  */


/* contact */
/*.contact {
  clip-path: polygon(100% 0, 100% 100%, 85% 100%, 82% 96%, 18% 96%, 15% 100%, 0 100%, 0 0);
}
.contact .contact-wrapper {
  display: flex;
  align-items: stretch;
  background: var(--color-black);
}
.contact-image {
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.contact .contact-image-block {
  width: 50%;
}

.contact .contact-details {
  width: 70%;
  color: var(--color-white);
  margin-left: -5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  justify-content: center;
  margin-left: -20%;
  padding: 0 15%;
}

.contact .contact-title {
  color: var(--color-white);
}

.contact .contact-bg-text {
  font-weight: 600;
  font-size: 200px;
  line-height: 1;
  position: absolute;
  right: 0;
  text-transform: lowercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #ffffff26;
  top: 63px;
  left: 0;
  width: 100%;
  text-align: center;
}

@media (max-width:1600px){
  .contact .contact-details{
      margin-left: 0;
      padding: 0px 10%;
  }
  .contact .contact-bg-text{
      font-size: 160px;
  }
}
@media (max-width:1400px){
  .contact .contact-bg-text{
      font-size: 140px;
  }
}
@media (max-width:1280px){
  .contact .contact-bg-text {
      font-size: 110px;
  }
  .contact .contact-details{
      padding: 50px 20px;
  }
}
@media (max-width:992px){
  .contact .contact-wrapper{
      flex-direction: column;
  }
  .contact .contact-image-block {
      width: 100%;
  }
  .contact .contact-details{
      width: 100%;
  }
  .contact{
      clip-path: none;
  }
}
@media (max-width:575px){
  .contact .contact-bg-text {
      font-size: 50px;
  }
}*/
/* contact */


/* services  */
/*.services {
  padding: 90px 0;
}

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

.services .services-main {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.services .services-item {
  width: calc(50% - 10px);
  position: relative;
  cursor: pointer;
}

.services .services-item-name {
  margin: 0;
  color: var(--color-white);
  margin-bottom: 6px;
}

.services .services-item-details {
  text-align: left;
  padding: 50px;
  width: 100%;
  position: absolute;
  bottom: 0;
  color: var(--color-white);
}

.services .services-item-img {width: 100%;height: 100%;object-fit: cover;border-radius: 10px;}

.services .services-item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 41.69%, rgba(0, 0, 0, 0.5) 77.5%);
  border-radius: 10px;
  transition: all 0.5s;
}  
.services .services-item:hover .services-item-name {
  color: var(--color-red);
}

.services .services-item .services-item-name::after {
  content: '';
  width: 0px;
  height: 2px;
  background-color: var(--color-red);
  display: inline-block;
  margin-bottom: 10px;
  margin-left: 7px;
  transition: all 0.5s;
}
.services .services-item:hover .services-item-name::after {
  width: 80px;
}

.services .services-item:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
}
@media (max-width:1280px){
  .services .services-item-details{
      padding: 20px;
  }

}
@media (max-width:992px){
  .services {
      padding: 50px 0;
  }
  .services .services-main {
      margin-top: 30px;
  }
}
@media (max-width:575px){
  .services .services-item-details {
      padding: 10px;
  }
  .services .services-item:hover .services-item-name::after{
      width: 30px;
      margin-bottom: 6px;
  }
}*/
/* services  */


/* about-us */
/*.about-us {
  background-color: #F5F5F5;
  padding: 100px 0;
}

.about-us .about-us-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-us .about-us-left-desc {
  width: calc(50% - 25px);
}

.about-us .about-us-img-block {
  width: calc(50% - 25px);
  position: relative;
}

.about-us .about-us-img-block::before {
  content: '';
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background-color: #565A59;
  position: absolute;
  right: 90px;
  top: 20px;
  transform: skew(9deg, 0deg);
  z-index: 2;
}
.about-us .about-us-img-block::after{
  content: '';
  width: 200px;
  height: 220px;
  border-radius: 10px;
  background-color: var(--color-red);
  position: absolute;
  left: 0px;
  bottom: 20px;
  transform: skew(6deg, 0deg);
  z-index: 0;
}
.about-us .about-us-img {
  z-index: 1;
  position: relative;
}
@media (max-width:1280px){
  .about-us .about-us-img-block::before{
      width: 60px;
  height: 60px;
  right: 50px;
  top: 20px;
  }
  .about-us .about-us-img-block::after {
      width: 100px;
      height: 120px;
  }
}
@media (max-width:992px){
  .about-us{
      padding: 50px 0;
  }
  .about-us .about-us-wrapper{
      gap: 20px;
  }
  .about-us .about-us-left-desc {
      width: calc(50% - 10px);
  }
  .about-us .about-us-img-block {
      width: calc(50% - 10px);
  }
}
@media (max-width:767px){
  .about-us .about-us-wrapper{
      flex-direction: column;
  }
  .about-us .about-us-left-desc , .about-us .about-us-img-block {
      width: 100%;
  }
  .services .services-main{
      flex-direction: column;
  }
  .services .services-item{
      width: 100%;
  }
}
@media (max-width: 575px) {
  .about-us .about-us-img-block::before {
      right: 20px;
  }
  .about-us .about-us-img-block::before{
      width: 40px;
      height: 40px;
  }
}*/
/* about-us */

/* footer */
.footer {
  background: var(--color-black);
  padding: 150px 0 70px 0;
  background-image: url(http://carpulse.yc-consulting.de/wp-content/uploads/2025/07/DSC02590-scaled.jpeg);
  background-repeat: no-repeat;
  background-position:center center;
  background-size: cover;
  clip-path: polygon(15% 0, 18% 3%, 100% 3%, 100% 100%, 0 100%, 0 0);
  margin-top: -35px;
  position: relative;
}
.footer::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0.8;
}

.footer-wrapper {
    position: relative;
}
.footer .footer-top {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.footer .footer-title {
  color: var(--color-white);
  margin-bottom: 44px;
}

.footer .foter-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-top: 160px;
}

.footer .footer-logo {
  width: 244px;
  margin-bottom: 25px;
}

.footer .footer-copy-right {
  color: var(--color-white);
}
.footer .footer-copy-right span {
  color: var(--color-red);
}
.footer .footer-block-title {
  color: var(--color-red);
  position: relative;
  font-weight: 800;
  margin-bottom: 25px;
  display: block;
}

.footer .footer-block-title::after {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--color-red);
  display: inline-block;
  margin-bottom: 5px;
  margin-left: 7px;
}

.footer .footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  transition: all 0.5s;
}
.footer .footer-link:hover{
  color: var(--color-red);
}
.footer .footer-link-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer .footer-block {
  max-width: 300px;
}
.footer .footer-link.footer-location {
  font-size: 18px;
  line-height: 28px;
  align-items: flex-start;
}
.footer .footer-social-media {
  display: flex;
  gap: 10px;
}

.footer .footer-social-media .footer-link {
  width: 50px;
  height: 50px;
  border: 1px solid rgb(255 255 255 / 15%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0;
  transition: all 0.5s;
}

.footer .footer-social-media .footer-link:hover {
  background: var(--color-red);
}
.footer .legal-page-links ul{
  display: flex;
  list-style: none;
  padding: 0;
  gap: 15px;
}
.footer .legal-page-links a {
  color: var(--color-white);
  transition: all 0.5s;
}

.footer .legal-page-links a:hover {
  color: var(--color-red);
}
.footer-whtsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

.whtsapp-icon {
    width: 50px;
}

@media (max-width:1280px){
  .footer{
      padding: 100px 0 70px 0;
  }
  .footer .foter-bottom{
      margin-top: 100px;
  }
  .footer .footer-block {
      max-width: 250px;
  }
  .footer .footer-link{
      font-size: 18px
  }
  .footer .footer-social-media .footer-link {
      width: 40px;
      height: 40px;
  }
  .footer .footer-block-title{
      font-size: 16px;
  }
  .footer .footer-link.footer-location {
      font-size: 16px;
      line-height: 26px;
  }
}
@media (max-width:992px){
  .footer {
      padding: 50px 0;
      clip-path: unset;
      margin: 0;
  }
  .footer .foter-bottom{
      flex-direction: column;
  }
  .footer .footer-block {
      max-width: 100%;
  }
  .footer .footer-block-title{
      margin-bottom: 15px;
  }
  .footer .foter-bottom {
      margin-top: 80px;
  }
  .footer .footer-link {
      font-size: 16px;
  }
  .whtsapp-icon {
    width: 40px;
}

}

/* footer */