.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: flex;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body main {
  flex: 1 1 auto;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

/*THEME STYLES*/
.form-field input[type=submit],
.theme-button {
  padding: 14px 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .3s;
  font-size: inherit;
  font-family: "Hind", serif;
}

.theme-button__grey {
  background: #413F3E;
  color: #fff;;
}
.theme-button__grey:hover {
  background: #000;
}

.theme-button__red {
  background: #C00000;
  color: #fff;;
}
.theme-button__red:hover {
  background: #8C0000;
}

.form-field input[type=submit],
.theme-button__orange {
  background: #FF9247;
  color: #fff;;
}
.form-field input[type=submit]:hover,
.theme-button__orange:hover {
  background: #FF6B00;
}

.theme-button__black {
  background: #000000;
  color: #fff;;
}
.theme-button__black:hover {
  background: #FF6B00;
}


.theme-button__icon {
  align-items: center;
}
.theme-button__icon img {
  display: block;
}


/*STYLES*/
.header__top {
  background-color: #FF9247;
  padding: 16px 0;
}
.header__top-row {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: flex-end;
  line-height: 1;
}

.header__top-phone {}
.header__top-phone a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 23px;
}
.header__top-phone a img {
  display: block;
}
.header__top-phone a span {
  height: 27px;
}

.header__bottom {
  background: #fff;
  padding: 10px 0;
}
.header__bottom-row {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__bottom-logo {
  transition: all .3s;
  flex: 0 0 auto;
}
.header__bottom-logo img {
  display: block;
  transition: all .3s;
}
.header__bottom-menu {
  margin-left: auto;
}
.header__bottom-menu ul {
  display: flex;
  gap: 50px;
  font-weight: 500;
}
.header__bottom-menu ul li {}
.header__bottom-menu ul li a {
  color: #8E8E8E;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s;
}
.header__bottom-menu ul li a:hover, .header__bottom-menu ul li.current-menu-item a {
  color: #FF9247;
}

.first-screen {
  padding: 72px 0;
  position: relative;
}

.first-screen:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/first-screen-bg.jpg") no-repeat center center / cover;
  filter: grayscale(100%) brightness(0.5) contrast(1.5) saturate(0.3) hue-rotate(0deg) sepia(0%) drop-shadow(0px 0px 0px #000);
  transition: all .3s;
}
.first-screen:hover:before {
  filter: grayscale(0%) brightness(0.6) contrast(1.5) saturate(0.3) hue-rotate(0deg) sepia(0%) drop-shadow(0px 0px 0px #000);
}

.first-screen .container {
  position: relative;
  z-index: 1;
}

.first-screen__row {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.first-screen__content {
  max-width: 667px;
}
.first-screen__content-title {
  font-size: 60px;
  font-weight: bold;
  padding-bottom: 50px;
}
.first-screen__content-description {
  font-size: 18px;
  padding-bottom: 50px;
}
.first-screen__content-button {
  font-size: 18px;
}
.first-screen__content-button .theme-button {
  min-width: 180px;
}

.first-screen__form {
  max-width: 679px;
}
.first-screen__form-container {
  padding: 41px 53px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  color: #090909;
  font-size: 18px;
}
.first-screen__form-heading {
  text-align: center;
  font-size: 32px;
  line-height: 2.96;
  font-weight: bold;
}

.first-screen__form-group {
  display: flex;
  gap: 24px;
}
.first-screen__form-field {
  padding-bottom: 24px;
}
.first-screen__form-group-item {
  flex: 0 1 50%;
}
.first-screen__form-input {}
.form-field input[type=text],
.form-field input[type=email],
.form-field textarea,
.first-screen__form-textarea textarea,
.first-screen__form-input input {
  padding: 13px 24px;
  border-radius: 10px;
  font-size: inherit;
  display: block;
  width: 100%;
  border: 1px solid #fff;
}
.first-screen__form-select {
  display: flex;
}
.first-screen__form-select select {
  padding: 13px 24px;
  border-radius: 10px;
  border: none;
  font-size: inherit;
  display: block;
  width: 100%;
  background-position: right 24px center;
  color: #8f8e8e;
}
.first-screen__form-select select.active {
  color: #000;
}
.form-field textarea,
.first-screen__form-textarea textarea {
  resize: none;
  height: 105px;
}
.first-screen__form-checkbox {
  font-size: 12px;
}
.first-screen__form-button {
  display: flex;
  justify-content: center;
}
.first-screen__form-button .theme-button {
  min-width: 195px;
}

.block-title {
  font-weight: bold;
  font-size: 54px;
  color: #1A1A1A;
}
.block-title__center {
  text-align: center;
}

.why-russ {
  padding: 120px 0;
}
.why-russ__title {
  padding-bottom: 74px;
}

.why-russ__items-row {
  display: flex;
  margin: 0 -25px -25px;
  flex-wrap: wrap;
}

.why-russ__items-row-col {
  flex: 0 0 20%;
  padding: 0 25px 25px;
}

.why-russ__items-item {
  text-align: center;
}

.why-russ__items-item-icon {
  display: flex;
  justify-content: center;
  padding-bottom: 42px;
}
.why-russ__items-item-icon-wrap {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-russ__items-item-icon-wrap img {
  max-width: 100%;
  max-height: 100%;
}
.why-russ__items-item-title {
  text-transform: uppercase;
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 24px;
}
.why-russ__items-item-description {
  font-size: 18px;
}
.our-services {
  position: relative;
  padding-bottom: 60px;
  background:
          url('../img/left-bottom.svg') no-repeat left bottom 6%,
          url('../img/left-top.svg') no-repeat left top 9%,
          url('../img/middle.svg') no-repeat left 47% top 22%,
          url('../img/right-bottom.svg') no-repeat right 5% top 40%,
          url('../img/right-top.svg') no-repeat right 32% top 6%;
}
.our-services__top-title {
  padding-bottom: 10px;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: #1A1A1A;
}
.our-services__title {
  padding-bottom: 112px;
}

.our-services__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px -60px;
}

.our-services__items-item {
  padding: 0 30px 60px;
  flex: 0 0 50%;
}

.our-services__card {
  position: relative;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  border-radius: 20px;
  display: block;
}
.our-services__card img {
  display: block;
  width: 100%;
  transition: all .3s;
  filter: brightness(0.5) saturate(0);
  border-radius: 20px;
}
.our-services__card-title {
  font-weight: 700;
  font-size: 32px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
}
.our-services__card:hover img {
  filter: brightness(0.8) saturate(1);
}

.gallery {
  padding: 46px 0 100px;
  background:
          url('../img/gallery-left-top.svg') no-repeat left 5% top 30%,
          url('../img/gallery-left-bottom.svg') no-repeat left 1% bottom 30%,
          url('../img/gallery-right-top.svg') no-repeat right 5% top 40%,
          url('../img/gallery-right-bottom.svg') no-repeat right 15% bottom 0%;
}
.gallery__home {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -26px -52px
}

.gallery__home-item {
  padding: 0 26px 52px;
  flex: 0 0 25%;
  height: 375px;
}
.gallery__home-item a {
  display: flex;
  overflow: hidden;
  height: 100%;
  border-radius: 20px;
}
.gallery__home-item a img {
  display: block;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: all .3s;
}
.gallery__home-item:nth-child(3),
.gallery__home-item:nth-child(6n + 3),
.gallery__home-item:nth-child(6n + 8) {
  flex: 0 0 50%;
}
.gallery__home-item:nth-child(1) {
  flex: 0 0 66.66666%;
  height: 580px;
}
.gallery__home-item:nth-child(2) {
  flex: 0 0 33.33333%;
  height: 580px;
}
.gallery__home-more {
  text-align: center;
  padding-top: 70px;
}
.gallery__home-more a {
  font-size: 24px;
  color: #524AAD;
  text-decoration: underline;
}
.gallery__home-more a:hover {
  text-decoration: none;
}

.testimonials {
  padding-bottom: 178px;
}
.testimonials__title {
  text-align: left;
  max-width: 700px;
  padding-bottom: 50px;
}

.testimonials__top-title {
  padding-bottom: 10px;
  text-align: left;
}

.testimonials__item-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.testimonials__wrap {
  max-width: 1150px;
  margin: 0 auto;
}
.testimonials__item {
  padding: 0 2px;
}
.testimonials__item-text {
  max-width: 700px;
}

.testimonials__item-description {
  font-size: 18px;
  padding-bottom: 30px;
  padding-top: 64px;
  background: url("../img/quote.svg") no-repeat left top;
}
.testimonials__item-name {
  font-size: 24px;
  font-weight: 600;
}
.service-areas {
  padding-bottom: 100px;
  background:
          url('../img/service-area-left-top.svg') no-repeat left 0% top 10%,
          url('../img/service-area-left-bottom.svg') no-repeat left 4% bottom 10%,
          url('../img/service-area-right-top.svg') no-repeat right 8% top 12%,
          url('../img/service-area-right-bottom.svg') no-repeat right 3% bottom 0%;
}
.service-areas__title {
  padding-bottom: 100px;
}
.service-areas__wrap {
  max-width: 1150px;
  margin: 0 auto;
}
.service-areas__map {}
.service-areas__map svg {}
.service-areas__map svg path {
  transition: all .3s;
}

.service-areas__row {
  display: flex;
  align-items: center;
  gap: 100px;
  justify-content: center;
}
.service-areas__list {}
.service-areas__list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px;
}
.service-areas__list ul li {
  flex: 0 0 50%;
  padding: 0 30px 30px;
}
.service-areas__list ul li a {
  font-size: 24px;
  font-weight: 500;
  color: #595959;
  border: none;
  background: none;
  text-decoration: underline;
  cursor: pointer;
}
.service-areas__list ul li a:hover {
  text-decoration: none;
}

.works-with {
  padding: 50px 0 160px;
}
.works-with__title {
  padding-bottom: 100px;
}
.owl-carousel .owl-stage { display: flex; align-items: center; }
.works-with__items img {
  display: block;
}
.get-more-help {
  position: relative;
  padding: 100px 0;
}
.get-more-help:before {
  content: '';
  background: url("../img/get-help-image.jpg") no-repeat center center / cover;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  filter: saturate(0) brightness(0.3) grayscale(20%);
  transition: all .3s;
}
.get-more-help:hover:before {
  filter: saturate(0.4) brightness(0.4) grayscale(0);
}
.get-more-help__wrap {
  max-width: 1300px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
.get-more-help__row {
  display: flex;
  align-items: center;
  margin: 0 -30px;
}
.get-more-help__row-col {
  flex: 0 0 50%;
  padding: 0 30px;
}
.get-more-help__data {
  color: #fff;
}
.get-more-help__data-title {
  padding-bottom: 50px;
  font-size: 48px;
  font-weight: 500;
}
.get-more-help__data-text {
  font-size: 18px;
  padding-bottom: 50px;
}

.get-more-help__data-item {
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  font-size: 32px;
  font-weight: 500;
}
.get-more-help__data-item:not(:last-child) {
  padding-bottom: 23px;
}
.get-more-help__data-item img {
  display: block;
}
.get-more-help__data-item a {
  color: #fff;
  text-decoration: none;
  word-break: break-word;
}
.get-more-help__data-item-img {
  flex: 0 0 44px;
  margin-right: 20px;
}
.footer {
  background: #524AAD;
  padding: 44px 0;
  color: #fff;
}
.footer__bottom {
  text-align: center;
}
.footer__top {
  padding-bottom: 50px;
}
.footer__top-wrap {
  border-bottom: 1px solid #fff;
  padding-bottom: 50px;
}
.footer__top-row {
  display: flex;
  margin: 0 -15px -30px;
}
.footer__top-row-col {
  flex: 0 0 30%;
  padding: 0 15px 30px;
}
.footer__top-links {
  flex: 0 0 40%;
}
.footer__top-row-col-title {
  font-size: 32px;
  font-weight: 500;
  padding-bottom: 25px;
}
.footer__top-contact-list .get-more-help__data-item {
  font-size: 18px;
}
.footer__top-contact-list .get-more-help__data-item-img {
  flex: 0 0 32px;
}
.footer__top-socials {}
.footer__top-socials ul {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 30px;
}
.footer__top-socials ul li {}
.footer__top-socials ul li a {
  color: rgba(255, 255, 250, 0.59);
  transition: all .3s;
}
.footer__top-socials ul li a:hover {
  color: #fff;
}
.footer__top-links-list {}
.footer__top-links-list ul {}
.footer__top-links-list ul li:not(:last-child) {
  padding-bottom: 15px;
}
.footer__top-links-list ul li a {
  color: #fff;
  text-decoration: none;
}
.footer__top-links-list ul li a:hover {
  text-decoration: underline;
}
.modal {
  display: none;
  border-radius: 20px;
  padding: 41px 53px;
  background: rgba(255, 255, 255, 0.78);
  color: #090909;
  font-size: 18px;
  width: 670px;
  max-width: 95%;
}
.modal__text {
  text-align: center;
  font-size: 16px;
  padding-bottom: 20px;
}
.fancybox-close-small {
  top: 14px;
  right: 14px;
}
.header__bottom-toggle {
}
.header__bottom-toggle button {
  position: relative;
  border: none;
  background: none;
  height: 20px;
  width: 30px;
  display: block;
}
.header__bottom-toggle button span {
  position: absolute;
  background: #0f0f0f;
  height: 2px;
  width: 100%;
  left: 0;
  transition: all .3s;
}
.header__bottom-toggle button span:nth-child(1) {
  top: 0;
}
.header__bottom-toggle button span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
.header__bottom-toggle button span:nth-child(3) {
  bottom: 0;
}
.header__bottom-toggle button.opened span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.header__bottom-toggle button.opened span:nth-child(2) {
  opacity: 0;
}
.header__bottom-toggle button.opened span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}
.testimonials__item-img {
  flex: 0 0 30%;
}

.gallery__home-mobile .item {
  height: 100%;
}

.gallery__home-mobile .owl-stage {
  display: flex;
}
.gallery__home-mobile .item {
  position: relative;
}
.gallery__home-mobile .item:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.gallery__home-mobile .item a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 20px;
}

.gallery__home-mobile .item a img {
  min-width: 100%;
  min-height: 100%;
}
.header__bottom-mobile-phone a {}
.header__bottom-mobile-phone a img {
  display: block;
  width: 30px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  background: #fff;
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
  width: 320px;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.mobile-menu__top-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mobile-menu__overlay {
  position: fixed;
  width: 100%;
  top: 0;
  left: -100%;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 999;
  transition: all .3s;
}
.mobile-menu__top-close {}
.mobile-menu__top-close button {
  border: none;
  background: none;
  height: 20px;
  width: 30px;
  display: block;
  position: relative;
}
.mobile-menu__top {
  padding-bottom: 20px;
}
.mobile-menu__top-close button span {
  position: absolute;
  background: #0f0f0f;
  height: 2px;
  width: 100%;
  left: 0;
  transition: all .3s;
}
.mobile-menu__top-close button span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.mobile-menu__top-close button span:nth-child(2) {
  top: 50%;
  transform: rotate(-45deg);
}
.mobile-menu__bottom-menu {
  padding-bottom: 20px;
}
.mobile-menu__bottom-menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mobile-menu__bottom-menu ul li {
  padding-bottom: 8px;
  display: block;
}

.mobile-menu__bottom-menu ul li a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s;
  font-size: 18px;
  font-weight: 500;
}
.mobile-menu__bottom-menu ul li a.current-menu-item,
.mobile-menu__bottom-menu ul li a:hover {
  color: #FF9247;
}

.mobile-menu__bottom-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-menu__bottom-contact-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  gap: 5px;
}
.mobile-menu__bottom-contact-item a img {
  display: block;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu__overlay.active {
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.mobile-menu__bottom-contact {
  margin-top: auto;
}

.mobile-fire {
  position: fixed;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  visibility: hidden;
  opacity: 0;
  transition: ease-in-out opacity 0.3s;
}
.mobile-fire.fixed {
  visibility: visible;
  opacity: 1;
}

.mobile-fire .theme-button {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-fire .theme-button img {
  width: 20px;
  animation: scaleAnimation 2s ease-in-out infinite;
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.page__title {
  font-size: 54px;
  font-weight: bold;
  color: #fff;
  padding: 85px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.page__title img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  filter: grayscale(3%) brightness(0.6) saturate(0) contrast(1.5);
  transition: all .3s;
  min-width: 100%;
  min-height: 100%;
}
.page__title:hover img {
  filter: grayscale(0%) brightness(0.6) saturate(1) contrast(1);
}
.page__title .container {
  position: relative;
  z-index: 1;
}

.about-text {
  padding: 50px 0;
}

.about-text__founder {
  max-width: 1100px;
  margin: 0 auto;
}

.about-text__founder-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text__founder-row-image img {
  border-radius: 50%;
  display: block;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.about-text__founder-row-image {
  width: 136px;
  height: 136px;
  overflow: hidden;
  border-radius: 50%;
}

.about-text__founder-row-text {
  font-weight: 500;
  font-size: 32px;
}

.about-text__text {
  max-width: 1216px;
  margin: 0 auto;
  padding-top: 50px;
}

.about-page .why-russ {
  padding-top: 60px;
}

.about-text-two {
  padding-bottom: 100px;
}

.about-text-two__row {
  max-width: 1216px;
  margin: 0 auto;
}

.page__title h1 {
  font-size: inherit;
}

.gallery-page-results__text,
.our-services__text .text-page {
  max-width: 1216px;
  margin: 0 auto;
}
.our-services__text {
  padding-bottom: 90px;
}

.services-page .our-services {
  padding-top: 60px;
  background: url('../img/left-bottom.svg') no-repeat left bottom 6%,
  url('../img/left-top.svg') no-repeat left top 9%,
  url('../img/middle.svg') no-repeat left 47% top 22%,
  url('../img/right-bottom.svg') no-repeat right 5% top 40%;
}
.services-page .our-services__title {
  padding-bottom: 40px;
}
.gallery-page-results {
  padding: 90px 0;
}
.gallery-page-results__text {
  padding-top: 90px;
}
#main-slider .item {
  position: relative;
}

#main-slider .item:before {
  content: '';
  display: block;
  padding-bottom: 58%;
}

#main-slider .item a {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 20px;
}
#main-slider {
  position: relative;
}
#main-slider .item a img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.gallery__home-mobile {
  position: relative;
}
main .owl-prev,
main .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 100px!important;
  color: #fff!important;
}
main .owl-prev {
  left: 40px;
}
main .owl-next {
  right: 40px;
}
.gallery__home-mobile .owl-next,
.gallery__home-mobile .owl-prev {
  margin-top: -14px!important;
  font-size: 50px!important;
}
.gallery__home-mobile .owl-next {
  right: 10px;
}
.gallery__home-mobile .owl-prev {
  left: 10px;
}
#main-slider {
  margin-bottom: 40px;
}
#thumbnail-slider .item {
  position: relative;
}
#thumbnail-slider .item:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
#thumbnail-slider .item span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid #fff;
  transition: all .3s;
}
#thumbnail-slider .item span img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  cursor: pointer;
}
#thumbnail-slider .item.active span,
#thumbnail-slider .item span:hover {
  border-color: #FF9247;
}

.gallery-page-results__sliders {
  /*max-width: 1000px;*/
  /*margin: 0 auto;*/
}

.header {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header.fixed {
  position: sticky;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.header.fixed .header__bottom-logo img {
  max-height: 50px;
}
.header.fixed .header__top {
  display: none;
}
.owl-prev.disabled,
.owl-next.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.service-page__text {
  padding: 78px 0 62px;
}

.service-page .our-services {
  padding-top: 84px;
}

.service-page .our-services__items {
  margin: 0 -15px -30px;
}
.service-page .our-services__items-item {
  flex: 0 0 25%;
  padding: 0 15px 30px;
}
.service-page .our-services__card-title {
  font-size: 32px;
  font-weight: 500;
}
.service-page .our-services__title {
  padding-bottom: 66px;
}
.service-free-quote {
  background: #FF9247;
  padding: 16px 0;
}

.service-free-quote__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 74px;
}
.service-free-quote__row .header__top-phone a span {
  height: 40px;
}
.gallery-page-results .block-title {
  padding-bottom: 30px;
}
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.first-screen__form-checkbox .wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border: 2px solid #6b4eff;
  border-radius: 4px;
  background-color: transparent;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
  margin: 0;
}

.wpcf7-list-item input[type="checkbox"]:checked {
  background-color: #6a4ee5;
  border-color: #6a4ee5;
}

.wpcf7-list-item input[type="checkbox"]:checked::after {
  content: '\2713';
  font-size: 14px;
  color: white;
  position: absolute;
  background: #6b4eff;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.first-screen__form-checkbox label {
  display: flex;
  align-items: flex-start;
}

.first-screen__form-checkbox .wpcf7-list-item-label {
  padding-top: 0.25em;
  padding-left: 12px;
  font-weight: bold;
}

.form-checkbox__description {
  padding-left: 36px;
  display: block;
}

.first-screen__form-button {
  display: flex;
  position: relative;
}

.first-screen__form-button .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.first-screen__form-checkbox .wpcf7-not-valid {
  border: none!important;
  color: red!important;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  height: auto;
  display: flex;
  min-height: auto;
  font-size: 16px !important;
  line-height: 100%;
}
.owl-prev:hover,
.owl-next:hover {
  background: none!important;
}
.owl-prev svg path,
.owl-next svg path {
  transition: all .3s;
}

.owl-prev:hover svg path,
.owl-next:hover svg path {
  fill: #FF9247;
}

.testimonials__slider .owl-nav .owl-prev {
  left: 0;
}
.testimonials__slider .owl-nav .owl-next {
  right: 0;
}
.testimonials__slider .item {
  padding: 0 70px;
}
.testimonials__add {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

#add-feedback {}
#add-feedback .required-notice {
  display: none;
}

#add-feedback .form-field:not(:last-child) {
  margin-bottom: 15px;
}

.field-featured_image {
  display: flex;
  align-items: center;
  gap: 10px;
}

.field-featured_image label {

}

.form-field.wpmtst-submit {
  display: flex;
  justify-content: center;
}

.text-page img {
  border-radius: 20px;
}

.header__bottom-fire button {
  min-width: 53px;
  min-height: 45px;
  padding: 0;
}