@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

body{
    direction: ltr;
    font-family: 'Quattrocento', sans-serif !important;
    font-size: 16px;
    margin: 0;
    padding: 0px;
}

:root {
  --star-size: 25px;
  --star-color:#FFA069;
  --star-background:  rgb(225, 225, 225);
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  font-size: var(--star-size);
  font-family: Times;
  line-height: 1;
  display: inline-block;
  margin-bottom: 15px
}
.Stars::before {
  content: '✸✸✸✸✸';
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
       
.hid-nav-bg {
    position: fixed;
    top: -100%; 
    left: 0;
    width: 100%;
    z-index: 5;
    background-color: #fff;
    transition: top 0.7s ease; 
  }
  
  .hid-nav-bg.active {
    top: 0; 
  }
  
  .hidden-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 26px;
    justify-content: center;
  }
  
  .hidden-nav li {
    margin: 0;
}
  
  .hidden-nav a {
    display: inline-block;
    padding: 16px 10px;
    text-decoration: none;
    color: #FFA069;
    font-size: 18px;
    text-transform: inherit;
    letter-spacing: 0px;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  
  .hidden-nav li:hover {
    background-color: #FFA069;
  } 

  .hidden-nav li:hover a {
    color: #fff;
  }
  
  .dropdown {
    float: left;
}

.dropdown .dropbtn {
  display: inline-block;
  padding: 16px 10px;
    border: none;
    outline: none;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #FFA069;
    letter-spacing: 0px;
    text-transform: inherit;
}

.hidden-nav li:hover, .dropdown:hover .dropbtn {
    background-color: #FFA069;
    color: #fff;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color:#FFA069;
    max-width: 180px;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #000;
    padding: 13px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #fff;
    color: #000 !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.hr-revert-bg {
  padding-top: 62px;
  padding-bottom: 48px;
  background-color: #FFA069;
}

.hr-revert {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hr-revert-title {
  font-size: 35px;
  line-height: 48px;
  text-transform: inherit;
  font-weight: 600;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 48px;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.ph-btn-cont {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.ph-btn {
  text-decoration: none;
}

.hr-revert-logo {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  align-items: center;
}

.hr-revert-logo::before {
  content: '';
  width: 40%;
  height:  3px;
  background-color: #fff;
  position: absolute;
  top: -20px;
}

.hr-revert-logo:hover {
  color: #fff;
}

.hr-revert-logo img {
  width: 55px;
  height: auto;
}

.hr-revert-logo h3 {
  font-size: 35px;
  font-weight: 600;
  text-transform: inherit;
  letter-spacing: 0px;
  margin: 0;
}

.benefit-anim-section {
  width: 100%;
  overflow: hidden;
}

.b-a-banner1, .b-a-banner2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
}

.b-a-bannerbox1, .b-a-bannerbox3 {
  width: 40%;
  overflow: hidden;
  vertical-align: top;
  display: inline-block;
}

.b-a-bannerbox1 {
  font-size: 21px;
  font-weight: 600;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 24px;
  overflow: hidden;
}

.b-a-bannerbox1:after {
  background: #000;
  position: absolute;
  width: 100%;
  left: -100%;
  bottom: 0;
  height: 0;
  margin-left: 40%;
  content: "";
  z-index: -1;
  transition: all .6s ease;
}

.b-a-bannerbox2 {
    width: 20%;
    display: flex;
    align-items: center;
    background-color: #000;
    perspective: 1000px;
}

.b-a-banner2 .b-a-bannerbox2 {
  background-color: #FFA069;
}

.b-a-bannerbox2 img {
  width: 40%;
  max-height: 80%;
  display: flex;
  margin: auto;
  transition: all .4s ease;
}

.b-a-banner1:hover .b-a-bannerbox2 img{
  transform: rotateY(180deg);
}

.b-a-banner2:hover .b-a-bannerbox2 img{
  transform: rotateY(180deg);
}

.b-a-bannerbox3 {
  overflow: hidden;
  font-size: 21px;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
}

.b-a-bannerbox3::before {
  background:  #FFA069;
  position: absolute;
  width: 100%;
  right: -100%;
  bottom: 0;
  height: 100%;
  margin-right: 40%;
  content: "";
  z-index: -2;
  transition: all .6s ease;
}

.b-a-bannerbox3:after {
  background: #000;
  position: absolute;
  width: 100%;
  right: -100%;
  bottom: 0;
  height: 0;
  margin-right: 40%;
  content: "";
  z-index: -1;
  transition: all .6s ease;
}

.b-a-banner1:hover .b-a-bannerbox1:after, .b-a-banner1:hover .b-a-bannerbox3:after {
  height: 100%; 
}

.b-a-banner2 .b-a-bannerbox1::before {
  background:  #000;
  position: absolute;
  width: 100%;
  left: -100%;
  bottom: 0;
  height: 100%;
  margin-left: 40%;
  content: "";
  z-index: -2;
  transition: all .6s ease;
}

.b-a-banner2 .b-a-bannerbox1:after {
  background: #FFA069;
  position: absolute;
  width: 100%;
  left: -100%;
  bottom: 0;
  height: 0;
  margin-left: 40%;
  content: "";
  z-index: -1;
  transition: all .6s ease;
}

.b-a-banner2 .b-a-bannerbox3::before {
  background:  inherit;
  position: absolute;
  width: 100%;
  right: -100%;
  bottom: 0;
  height: 100%;
  margin-right: 40%;
  content: "";
  z-index: -2;
  transition: all .6s ease;
}

.b-a-banner2 .b-a-bannerbox3:after {
  background: #FFA069;
  position: absolute;
  width: 100%;
  right: -100%;
  bottom: 0;
  height: 0;
  margin-right: 40%;
  content: "";
  z-index: -1;
  transition: all .6s ease;
}

.b-a-banner2:hover .b-a-bannerbox1:after, .b-a-banner2:hover .b-a-bannerbox3:after {
  height: 100%; 
}

.b-a-banner1 .b-a-bannerbox1, .b-a-banner2 .b-a-bannerbox3 {
  color: #000;
}

.b-a-banner1:hover .b-a-bannerbox1, .b-a-banner2:hover .b-a-bannerbox3 {
  color: #fff;
}

.b-a-banner1 .b-a-bannerbox3, .b-a-banner2 .b-a-bannerbox1 {
  color: #fff;
}

.b-a-banner1:hover .b-a-bannerbox3, .b-a-banner2:hover .b-a-bannerbox1 {
  color: #fff;
}


.artcl-section {
  padding-top: 95px;
  padding-bottom: 62px;
}

.artcl-r-block {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.artcl-r-title, .servc-s-title {
  font-size: 26px;
  font-weight: 600;
  text-transform:  inherit;
  margin-bottom: 26px;
  text-align: center;
  position: relative;
 }

 .artcl-r-title::before, .servc-s-title::before {
  content: '';
  width: 40%;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
 }

.a-r-b-wrapper {
  display: flex;
  flex-direction: row;
  gap:  26px;
}

.card-artcl {
  width: 50%;
  background-color: #FFA069;
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.1);
  border-radius:  6px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 0 0 24px 24px;
  justify-content: space-between;
}

.card-a-wrapper {
  display: flex;
  flex-direction: row;
  flex: 1;
  border-bottom: 1px solid #ebedef;
 }

.card-a-img {
  width: 45%;
  display: flex;
}

.card-a-img a {
  display: flex;
}

.card-a-img img {
  display: flex;
  margin: auto;
  width: 85%;
  height: auto;
  object-fit: contain;
  border-radius: 1px;
  transition: .3s ease;
  &:hover {
   transform: scale(1.04);
  }
}
 
.card-a-content {
  padding: 26px;
  width: 55%;
}

.st__card-a-title {
  font-size:  17px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: inherit;
}

.card-a-info {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 24px;
}

.card-a-info p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing:  1px;
  margin-bottom: 0;
}

.info-date i {
  font-size:  21px;
  color: #FFA069;
}

.card-a-txt {
  font-size: 17px;
  margin-bottom: 24px;
}

.btn-more {
  display: flex;
  justify-content: center;
}

 .card-a-comments {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 16px 0 0;
  align-items: center;
 }

 .card-a-comments p {
  margin-bottom: 0;
 }

 .card-a-c-person  p {
  margin-bottom: 0;
 }

 .card-a-c-person {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
 }

 .card-a-comments img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
 }

 .singl-artcl-section {
  padding-top: 62px;
  padding-bottom: 48px;
  background-color: #FFA069;
 }

 .singl-artcl-stat {
  display: flex;
  flex-direction: row;
  gap: 26px;
 }

 .single-artcl-content {
  width: 50%;
 }

 .img-r-stats {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: center;
 }

 .singl-img {
  padding: 13px;
 }

 .singl-img img {
  display: flex;
  margin: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
 }

 .singl-artcl-title {
  font-size: 27px;
  font-weight: 600;
  text-transform: inherit;
  margin-bottom: 26px;
  text-align: center;
  position: relative;
 }

 .singl-artcl-title::before {
  content: '';
  width: 40%;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
 }

.s-a-c-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.singl-artcl-price {
  font-size: 24px;
  font-weight: 600;
  color: #FFA069;
  padding: 13px 16px;
  border-radius: 13px;
  border:  #FFA069 3px solid;
  width: fit-content;
  display: flex;
  margin: auto;
}

.singl-artcl-txt {
  font-size: 14px;
}

 .block-stat {
  padding: 24px 13px;
 }

 .b-stat-title {
  font-size: 27px;
  font-weight: 600;
  text-transform: inherit;
  margin-bottom: 48px;
  text-align: center;
  position: relative;
}

.b-stat-title::before {
 content: '';
 width: 40%;
 height: 3px;
 background-color: #000;
 position: absolute;
 top: -20px;
 left: 50%;
 transform: translateX(-50%);
}

 .b-stat-list {
    display: flex;
    flex-direction: row;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;
 }

 .st__b-stat-item {
  padding: 16px 24px;
  box-shadow: 6px -3px 10px 0px #FFA069, 16px -14px 10px 0px #4A47A3, 5px 5px 15px 5px rgba(0,0,0,0);
  border-radius: 16px;
 }

 .b-stat-param {
  font-size: 17px;
  font-weight:  600;
  letter-spacing: 1px;
  text-transform:  inherit;
  text-align: center;
 }

.b-stat-data {
    margin: 0;
    font-size:  27px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
} 

.tarif-section {
  padding-top: 62px;
  padding-bottom: 62px;
}


.servc-section {
  padding-top:  95px;
  padding-bottom:  48px;
}

.servc-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.servc-card {
  width: 50%;
  display: flex;
  flex-direction: column;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  transition: .3s;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.servc-card:hover {
  transform: scale(1.05);
}

.servc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.captn {
  opacity: 0;
  transform: scale(0.8);
  padding: 50px 55px 45px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px;
  background-color: #FFA069;
  transition: 250ms ease-in-out;
}

.servc-card:hover .captn {
  opacity: 1;
  transform: scale(1);
}

.captn p {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
 }

.servc-img {
  max-width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius:  24px 24px 0 0;
}

.servc-text {
  padding: 26px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.servc-text a {
  text-decoration: none;
}

.servc-title {
  margin-bottom: 7px;
  font-size: 21px;
  text-align: start;
  color: black;
}

.servc-txt {
  margin-bottom: 13px;
  font-size: 14px;
  text-align: start;
}

.about-reasons-section {
  background-image: url(photo/depictions_header_66c720ae4d6e29.86368639.jpg);
  background-position: center;
  background-size: cover;
}

.about-reasons-section-op {
  padding-top: 62px;
  padding-bottom: 62px;
  background-color: #FFA069;
}

.about-reasons-block {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding:  48px 13px 75px 13px;
  background-color: #fff;
  border-radius:  6px;
}

.about-reasons-txt {
  width: 60%;
  padding: 24px;
}

.about-c-title {
  font-size: 27px;
  font-weight: 600;
  text-transform:  inherit;
  margin-bottom: 26px;
  text-align: center;
  position: relative;
 }

 .about-c-title::before {
  content: '';
  width: 40%;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
 }

 .media-part {
  width: 40%;
  position: relative;
 }

 .media-part-first {
  width: 80%;
  height: auto;
  object-fit: cover;
 }

 .media-part-second {
  width: 80%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 110px;
  left: 80px;
  border: #fff 5px solid;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; 
}

.about-c-txt {
  font-size: 18px;
}


.reasons-content {
  margin-top: 62px;
  display: flex;
  flex-direction: row;
  gap:  24px;
}

.reasons-item {
  position: relative;
  width: 30%;
  display: flex;
  align-items: center;
  padding: 26px 24px;
  box-shadow: #FFA069 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  border-radius: 20px;
  text-align: center;
}

.st__reasons-numer {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 0 20px 0 #FFA069;
  border-radius: 100%;
  color: #fff;
  background-image: linear-gradient(to right,#FFA069 0,#60abff 50%, #FFA069 100%);
  background-size: 200% auto;

}

.work-steps-section {
  padding-top: 62px;
  padding-bottom: 62px;
}

.work-steps-title {
  font-size:  27px;
  font-weight: 600;
  text-transform: inherit;
  margin-bottom:  62px;
  text-align: center;
  position: relative;
 }

 .work-steps-title::before {
  content: '';
  width: 40%;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
 }

 .work-steps-list {
  display: flex;  
  justify-content: space-between;
  gap: 24px;
  position: relative;
 }

 .deco-line {
  height: 2px;
  background: linear-gradient(to right, transparent 50%, #D83F87 50%);
  background-size: 16px 2px, 100% 2px;
  top: 115px;
  position: absolute;
  left: 150px;
  width: 70%;
 }

 .st__work-singlestep {
  width: 30%;
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 13px;
 }

 .st__work-singlestep:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: #FFA069;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 1.25s ease-out;
}

.st__work-singlestep:hover:before {
  transform: scale(50);
}



.w-s-img {
  width: 200px;
  height: 200px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  border-radius: 50%;
  box-shadow: #FFA069 0px 30px 90px;
}

.w-s-img img {
  width: 100%;
  height: 100%;
  display: flex;
  margin: auto;
}

.w-s-txt p {
  font-size: 21px;
  margin: 0;
  text-align: center;
  transition: transform 1.25s ease-out;
}

.st__work-singlestep:hover .w-s-txt p {
  color: #fff;
}

.w-s-numer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #2A1B3D;
}

.w-s-numer {
  color: #c7c9d3;
}

.qa-form-gallery {
  padding-top: 62px;
  padding-bottom: 62px;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, #FFA069  14%, rgba(255,255,255,1) 100%);
}

.qa-f-g {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.qa-half {
  width: 50%;
}

.qa-h-title {
  font-size:  27px;
  font-weight: 600;
  text-transform: inherit;
  margin-bottom:  24px;
  text-align: center;
  position: relative;
 }

 .qa-h-title::before {
  content: '';
  width: 40%;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

 .accordion-item {
  margin-bottom: 24px;
  border: none;
  background: #f3f3f3;
  border-radius: 20px!important;
}

.accordion-header {
  position: relative;
  display: block;
  width: 100%;
  background: 0 0;
  cursor: pointer;
  border: none;
  padding:  48px;
  color: #575757;
}

.accordion-button, .accordion-item:first-of-type .accordion-button, .accordion-button:not(.collapsed) {
  border: none;
  color: black;
  background-color: initial;
  font-size: 21px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 0 48px 48px;
  color: #575757;
  font-weight: lighter;
}

.r-form {
  width: 50%;
}

.r-form-text {
  font-size: 21px  ;
  font-weight: 600;
}

.r-f-body {
  background-color: #FFA069;
  border-radius: 13px;
  padding: 24px;
  width: 90%;
  margin: 48px auto;
  margin-bottom: 62px;
}

.input-m62811685  {
  width: 100%;
  padding:  13px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  margin-bottom: 16px;
  background-color: #333333;
  color: white;
}

.textarea-m62811685 {
  width: 100%;
  padding:  13px ;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  margin-bottom:  16px;
  background-color: #333333;
  color: white;  
}

label {
  color: #fff;
  display: block;
  margin-bottom:  13px;
  font-size: 18px;
  font-weight: bold;
}

label a {
  color: #fff;
  text-decoration: none;
}

.gallery-half {
  width: 50%;
  display: none;
  flex-direction: column;
  justify-content: center;
}

.gallery-h-title {
  font-size:  27px;
  font-weight: 600;
  text-transform: inherit;
  margin-bottom:  26px;
  text-align: center;
  position: relative;
 }

 .gallery-h-title::before {
  content: '';
  width: 40%;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.r-gallery {
display: flex;
flex-direction: row;
gap: 24px;
flex-wrap: wrap;
justify-content: center;
}

.gallery-item {
  width: 45%;
  border-radius: 20px;
}

.st__gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.st__gallery-image:hover {
	transform: scale(1.15);
}

.foter-nav-partner-bg {
  padding-top: 62px;
  padding-bottom: 62px;
  background-color: #FFA069;
}

.foter-nav-partner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.f-nav-block {
  display: flex;
  flex-direction: row;
  gap:  24px;
  justify-content: space-between;
}

.f-nav-list {
  display: flex;
  flex-direction: column;
  gap:  24px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.f-nav-item a {
  padding: 7px 13px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}

.f-nav-item:hover a {
  background-color: #fff;
  color: #000;
}

.partner-f-block {
  direction: ltl;
}

.p-f-s-item {
  height: 100px !important;
  padding-top: 24px;  
}

.p-f-s-img {
  display: flex;
  height: 100%;
  align-items: center;
 }

.p-f-s-logo {
  width: 133px;
  margin-right: auto;
  margin-left: auto;
}

.slick-slide{
  height: auto;
}

.servc-wrap {
  display: flex;
  flex-direction: row;
  gap:  24px;
}

.single-page-section {
  padding-top: 62px;
  padding-bottom: 62px;
}

.single-page-title {
  font-size: 27px;
  font-weight: 600;
  letter-spacing:  1px;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.single-page-title::after {
content: "";
position: absolute;
bottom: -25px;
left: 50%;
transform: translateX(-50%);
width: 13%;
height: 4px;
background-color: #2A2438;
border-radius: 8px;
}

.single-page-data {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}

.single-page-img {
  float: left;
  width: 50%;
  margin-left: 50px;
  margin-right: 50px;
}

.single-page-txt {
  font-size: 17px;
}

.templat-bg {
  background-image: url(photo/renders_header_66c720b08f40f2.90536641.jpg);
  background-position: center;
  background-size: cover;
}

.templat-bg-op {
  padding-top:  62px;
  padding-bottom:  62px;
  background: rgba(255,255,255,0.5); color: #222;
}

.templat-title {
  font-size: 27px;
  font-weight: 600;
  letter-spacing:  1px;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.st__templat-item {
  padding: 75px 26px;
  width: 80%;
  margin: auto;
} 

.templat-body {
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  background: linear-gradient(180deg,  #4a47a3 0%, #2A2438 100%);
  position: relative;
  padding:  62px 45px 60px 45px;
  border-radius: 20px;
}

.t-quot-start {
  position: absolute;
  top: -10px;
  left: 15px;
}

.templat-autor {
margin-bottom: 24px;
}

.templat-autor-img {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 120px;
  max-height: 120px;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}

.templat-autor-img img {
  width: 100%;
  object-fit: contain;
  margin: auto;
} 

.templat-autor-name {
  text-align: center;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}

.templat-txt {
  color: #fff;
 font-size: 17px;
 text-align: center;
}

.t-quot-end {
  position: absolute;
  bottom: -10px;
  right: 15px;
}

.slick-prev:before, .slick-next:before {
  font-size: 50px;
  color: #2A2438;
}

.slick-next {
  right: 5px;
}

.partner-f-block-wrap {
  position: relative;
}

.partner-f-block-back  {
  position: absolute;
  top: 0;
  width: 100%;
  height: 90px;
  background: #a4aec3;
  filter: blur(30px);
  border-radius: 50%;
}

.adrs-form-map-bg {
  background-image: url(photo/graphics_header_66c720b29f2408.45099798.jpg);
  background-position: center;
  background-size: cover;
}

.adrs-form-map-op {
  padding-top: 62px;
  padding-bottom: 62px;
  background: rgba(255,255,255,0.5); color: #222;
}


.afm-wrapper {
  display: flex;
  gap:  24px;
  flex-direction: row;
}

.afm-form-wrap {
  padding:  24px;
  border-radius: 13px;
  background: linear-gradient(180deg,  #4a47a3 0%, #2A2438 100%);
}

.afm-form-text {
  font-size: 17px;
  color: #fff;
}

.contact-form {
  margin-top:  26px;
  display: flex;
  flex-direction: column;
}


.st__contact-form-input {
  height: 54px;
  border-radius: 5px;
  background: white;
  margin-bottom:  16px;
  border: none;
  padding: 0  16px;
  font-weight: 600;
  font-size:  14px;
  color: #4B4B4B;
}

.afm-title {
  width: 40%;
  padding: 62px 0 0;
  margin: 0 48px;
  font-size: 70px;
  font-weight: 600;
}

.adrs-item {
  width: 30%;
  padding:  16px 24px;
  display: flex;
  gap:  16px;
  align-items: center;
  color: #fff;
  border-radius: 24px;
  background: linear-gradient(180deg,  #4a47a3 0%, #2A2438 100%);
}

.adrs-item i {
  font-size: 27px;
}
.adrs-item a{
  color: inherit;
}

.adrs-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap:  26px;
}

.adrs-map-wraper {
  margin-top:  48px;
  display: flex;
  flex-direction:  row;
  gap: 26px;
}

.cont-map {
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .hidden-nav a {
      font-size: 18px;
      letter-spacing: 0;
  }

  .dropdown .dropbtn {
      font-size: 18px;
      letter-spacing: 0;
  }

  .hidden-nav ul {
      gap: 10px;
  }

  .card-a-comments {
      font-size: 13px;
  }

  .b-stat-item {
      padding: 10px;
  }

  .b-stat-param {
      letter-spacing: 0;
      font-size: 14px;
  }

  .a-r-b-wrapper {
      flex-direction: column !important;
  }

  .card-artcl {
      width: 95%;
  }

  .reasons-content {
      flex-direction: column !important;
  }

  .reasons-numer {
      position: absolute !important;
      top: 50%;
      transform: translateY(-50%);
      left: 0px;
  }

  .reasons-item p {
      margin-left: 85px;
  }

  .servc-list {
      flex-direction: column !important;
  }

}

@media (max-width: 992px) {
  .singl-artcl-stat {
      flex-direction: column !important;
  }

  .img-r-stats {
      width: 100%;
  }

  .single-artcl-content {
      width: 100%;
  }

  .w-s-txt p {
      font-size: 16px; 
  }

  .w-s-img {
      width: 120px;
      height: 120px; 
  }

  .qa-f-g {
      flex-direction: column;
  }

  .qa-half {
      width: 100%;
  }

  .r-form {
      width: 100%;
  }

  .deco-line {
      top: 90px;
  }

  .hidden-nav a {
      font-size: 12px;
      text-transform: inherit;
  }

  .dropdown .dropbtn {
      font-size: 12px;
      text-transform: inherit;
  }

  .hidden-nav ul {
      gap: 0;
  } 

  .hr-revert-title {
      font-size: 24px;
  }

  .b-a-banner1 .b-a-bannerbox1, .b-a-banner2 .b-a-bannerbox3 {
      font-size: 16px;
  }

  .b-a-banner1 .b-a-bannerbox3, .b-a-banner2 .b-a-bannerbox1 {
      font-size: 16px;
  }

  .reasons-item p {
      font-size: 14px;
  }

  .reasons-numer {
      width: 55px;
      height: 55px;
  }

  .about-c-txt {
      font-size: 16px;
  }

  .gallery-half {
      width: 100%;
  }

  .afm-wrapper {
      flex-direction: column !important;
  }

  .adrs-block {
      flex-direction: column !important;
  }

  .afm-title {
      width: 100%;
      font-size: 35px;
      margin: 0;
  }

  .adrs-item {
      width: 100%;
  }

  .adrs-map-wraper {
      flex-direction: column !important;
  }

  .card-artcl {
      width: 100%;
  }

  .servc-list {
      flex-direction: column !important;
  }
 
}

@media(max-width: 767px)  {
  .st__work-singlestep {
    width: 100% !important;
  }

  .servc-wrap {
      flex-direction: column !important;
  }

  .servc-card {
      width: 100%;
  }
 
  .hr-revert-title {
      font-size: 18px;
      letter-spacing: 0;
  } 

  .b-a-banner1 .b-a-bannerbox3, .b-a-banner2 .b-a-bannerbox1 {
      font-size: 12px;
  }

  .b-a-banner1 .b-a-bannerbox1, .b-a-banner2 .b-a-bannerbox3 {
      font-size: 12px;
  }

  .about-reasons-block {
      flex-direction: column;
  }

  .about-reasons-txt {
      width: 100%;
  }

  .media-part {
      width: 100%;
  }

  .hidden-nav ul {
      flex-wrap: wrap;
  }

  .deco-line {
      display: none;
  }

  .work-steps-list {
      flex-direction: column;
  }

  .work-singlestep {
      width: 100%;
  }

  .hidden-nav ul {
      flex-wrap: wrap;
  }
  
}

@media(max-width: 600px) {
  .st__work-singlestep {
      width: 100% !important;
  }
  .servc-wrap {
      flex-direction: column;
  }

  .servc-card {
      width: 100%;
  }

  .b-a-bannerbox1:after, .b-a-bannerbox3::before, .b-a-bannerbox3:after , .b-a-banner2 .b-a-bannerbox1::before {
      display: none;
  }

  .b-a-banner1, .b-a-banner2 {
      flex-direction: column;
  }

  .b-a-bannerbox3, .b-a-bannerbox1, .b-a-bannerbox2 {
      width: 100%;
  }

  .b-a-banner1 .b-a-bannerbox3, .b-a-banner2 .b-a-bannerbox1 {
      color: #000;
  }

  .hid-nav-bg {
      position: unset;
  }

  .hr-revert-logo h3 {
      font-size: 22px;
  }

.b-a-banner1:hover .b-a-bannerbox1, .b-a-banner2:hover .b-a-bannerbox3 {
  background-color: #000;
}

.b-a-banner1:hover .b-a-bannerbox3, .b-a-banner2:hover .b-a-bannerbox1 {
  background-color: #000;
}

.reasons-item {
  width: 100% !important;
}

.media-part-second {
  left: 50px;
}

.f-nav-list {
  align-items: center;
}

.f-nav-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.servc-list {
  flex-direction: column !important;
}

.card-a-wrapper {
  flex-direction: column;
}

.card-a-img {
  width: 100%;
}

.card-a-content {
  width: 100%;
}

.card-a-comments {
  flex-wrap: wrap;
}

.single-page-content {
  display: flex;
  flex-direction: column;
}

.single-page-img {
  margin: 0;
  width: 100%;
}

.t-quot-start {
  left: -10px;
}

  
}



@media (max-width: 575px){
  .reasons-item{
    flex-direction: column;

    p{
      margin-left: 0;
    }
  }
}

a{
  word-break: break-all;
}
