@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@100;200;300;400;500;700&family=Poppins:wght@100&family=STIX+Two+Text:wght@400;500;600;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  background: #1D222F;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

a {
  color: #FF6B00;
}

@-webkit-keyframes blink {
  20%, 24%, 55% {
    color: #111;
    text-shadow: none;
  }
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    /*     color: #fccaff;
        text-shadow: 0 0 5px #f562ff, 0 0 15px #f562ff, 0 0 25px #f562ff,
          0 0 20px #f562ff, 0 0 30px #890092, 0 0 80px #890092, 0 0 80px #890092; */
    text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
    color: #fff6a9;
  }
}
@keyframes blink {
  20%, 24%, 55% {
    color: #FFF;
  }
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    /*     color: #fccaff;
        text-shadow: 0 0 5px #f562ff, 0 0 15px #f562ff, 0 0 25px #f562ff,
          0 0 20px #f562ff, 0 0 30px #890092, 0 0 80px #890092, 0 0 80px #890092; */
    text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
    color: #fff6a9;
  }
}
.logo {
  height: 60px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .logo {
    height: 40px;
  }
}

h1 {
  font-family: "STIX Two Text", serif;
}

p {
  margin-bottom: 20px;
  line-height: 1.7;
}

main {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}

header {
  position: fixed;
  width: 100%;
}

nav {
  background: rgba(255, 255, 255, 0.25);
  width: 100%;
}

.nav__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .nav__wrapper {
    height: 60px;
  }
}

.mobile__menu {
  position: fixed;
  top: 0px;
  right: 0;
  width: 40%;
  height: 100vh;
  background: rgb(44, 48, 72);
  z-index: 100000;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  padding-top: 100px;
  transform: translateX(100%);
  transition: transform 0.2s ease-in-out;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(17, 24, 39, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
@media screen and (max-width: 768px) {
  .mobile__menu {
    width: 80% !important;
  }
}
.mobile__menu--active {
  transform: translateX(0) !important;
}
.mobile__menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  cursor: pointer;
}
.mobile__menu__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile__menu__items li {
  margin-bottom: 20px;
}
.mobile__menu__items li:last-child {
  margin-bottom: 0;
}
.mobile__menu__items li a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}
.mobile__menu__items li a:hover {
  color: #FF6B00;
}

.main-menu {
  list-style: none;
  display: flex;
}
@media screen and (max-width: 1080px) {
  .main-menu {
    display: none;
  }
}
.main-menu li {
  margin-right: 32px;
}
.main-menu li:first-child {
  margin-left: 0;
}
.main-menu li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}
.main-menu li a:hover {
  color: #FF6B00;
}

.mobile-menu {
  list-style: none;
}
.mobile-menu a {
  text-decoration: none;
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}
.mobile-menu a:hover {
  color: #FF6B00;
}

.mobile-contacts {
  margin-top: 40px;
}
.mobile-contacts div {
  margin-bottom: 5px;
}
.mobile-contacts a {
  color: #fff;
  text-decoration: none;
  font-family: Archivo, sans-serif;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}

.menu-button {
  display: none;
  color: #FFF;
  cursor: pointer;
}
@media (max-width: 1080px) {
  .menu-button {
    display: block;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .menu-button {
    margin-right: 0;
  }
}

.menu-wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .menu-wrapper {
    flex-direction: row-reverse;
  }
}

.head__contacts {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .head__contacts {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .head__contacts {
    order: 1;
  }
}
.head__contacts-phone, .head__contacts-email {
  display: flex;
  align-items: center;
}
.head__contacts a {
  color: #fff;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  background: url("/wp-content/uploads/2023/11/hero-bg-copy.webp") no-repeat center;
  background-size: cover;
  height: 920px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .hero {
    height: 600px;
  }
}
@media screen and (max-width: 1080px) {
  .hero {
    height: 700px;
  }
}
.hero__content {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: center;
}
.hero__text {
  max-width: 768px;
  color: #fff;
  margin-top: -199px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}
@media screen and (max-width: 768px) {
  .hero__text {
    margin-top: 0;
  }
}
.hero__title {
  font-size: 48px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}
.hero__tagline {
  font-size: 18px;
  font-family: Avenir, sans-serif;
  margin: 24px 0;
}
@media screen and (max-width: 768px) {
  .hero__actions {
    display: flex;
  }
}

/* Blocks */
.estimate-form {
  margin-top: 40px;
}

.form-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
.form-row p {
  margin: 0;
}

.form-field {
  margin-bottom: 20px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .form-field {
    width: 100%;
  }
}
.form-field p {
  margin: 0;
}

.form-button {
  display: block;
  width: 100%;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form-button {
    width: 100%;
  }
  .form-button .button {
    width: 100%;
  }
}

/* Elements */
.form-field__label {
  display: block;
  margin-bottom: 10px;
}

.form-field br {
  display: none;
}

.form-field__input,
.form-field__textarea,
.form-field__select {
  width: 100%;
  padding: 10px;
  background-color: #444;
  border: 1px solid #555;
  border-radius: 5px;
  color: #fff;
}

.form-field__textarea {
  height: 80px;
}

.button {
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
  padding: 4px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}
.button-primary {
  background: #CB5A4B;
  color: #fff;
}
.button-primary:hover {
  background: #fff;
  color: #FF6B00;
}
.button-outlined {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.button-outlined:hover {
  background: #fff;
  color: #FF6B00;
}

.section {
  padding: 80px 0;
  font-family: Avenir, sans-serif;
  font-weight: lighter;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}
.section__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  font-family: "STIX Two Text", serif;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 36px;
  }
}
.section__subtitle {
  font-size: 18px;
  font-weight: lighter;
  margin-bottom: 80px;
  color: #fff;
  text-align: center;
}
.section--dark {
  background: #2C3048;
}

/* Why choose us */
.why-choose-us__items {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .why-choose-us__items {
    margin-top: 20px;
    flex-direction: column;
  }
}
.why-choose-us__item {
  width: 30%;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .why-choose-us__item {
    width: 100% !important;
  }
}
@media (max-width: 1080px) {
  .why-choose-us__item {
    width: 48%;
  }
}

/* We Offer */
.we-offer {
  color: rgb(209, 213, 219);
}
.we-offer__inner {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .we-offer__inner {
    flex-direction: column;
  }
}
.we-offer__text {
  width: 50%;
}
@media (max-width: 768px) {
  .we-offer__text {
    width: 100%;
  }
}
.we-offer__gallery {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .we-offer__gallery {
    width: 100%;
    padding-left: 0px;
  }
}
.we-offer__gallery-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
}
.we-offer__button {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .we-offer__button a {
    width: 100%;
  }
}

.slider {
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}

/* our team */
.team {
  padding-top: 0;
}
.team__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.team__card {
  color: rgb(209, 213, 219);
  width: calc(25% - 20px);
}
@media (max-width: 768px) {
  .team__card {
    width: calc(50% - 20px);
  }
}
.team__card-img {
  width: 100%;
  height: auto;
}
.team__card-title {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 10px 0;
  color: rgb(209, 213, 219);
}
/* About Us */
.about-us__title {
  margin-bottom: 20px;
}
.about-us__content {
  display: flex;
  justify-content: space-between;
  color: rgb(209, 213, 219);
  margin-top: 40px;
}
@media (max-width: 1080px) {
  .about-us__content {
    flex-direction: column;
  }
}
.about-us__text {
  max-width: 568px;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .about-us__text {
    padding-right: 0;
  }
}
.about-us__features {
  display: flex;
  flex-direction: column;
}

/* Testimonials */
.testimonials__inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .testimonials__inner {
    flex-direction: column;
  }
}
.testimonials__card {
  color: rgb(209, 213, 219);
  width: 30%;
  background: #2C3048;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(17, 24, 39, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .testimonials__card {
    width: 100%;
    margin-bottom: 20px;
  }
}
.testimonials__card-credits-name {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

/* .gallery */
.gallery__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.gallery__item {
  width: calc(30% - 20px);
}
@media screen and (max-width: 768px) {
  .gallery__item {
    width: calc(50% - 20px);
    text-align: center;
  }
}
.gallery__item-img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(17, 24, 39, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
@media screen and (max-width: 768px) {
  .gallery__item-img {
    height: auto;
  }
}
.gallery__actions {
  display: flex;
  margin: 20px 0;
  width: 100%;
  justify-content: center;
}

/* faq */
.faq-close {
  display: none;
}
.faq__item {
  color: rgb(209, 213, 219);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq__item-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}
.faq__item-text {
  margin-top: 30px;
  display: none;
  color: rgb(209, 213, 219);
}
.faq__item-button {
  color: #fff;
}
.faq__item--active .faq__item-text {
  display: block;
}
.faq__item--active .faq-close {
  display: block;
}
.faq__item--active .faq__item-button svg:first-child {
  display: none !important;
}

/* cards */
.feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .feature {
    flex-direction: column;
    align-items: flex-start;
  }
}
.feature__icon {
  margin-right: 20px;
}
.feature__icon-img {
  width: 144px;
  height: auto;
}
.feature__text {
  color: rgb(209, 213, 219);
  font-size: 16px;
  font-weight: lighter;
}
.feature__title {
  margin: 20px 0;
}

.card {
  background: #2C3048;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  font-family: Avenir, sans-serif;
  flex-direction: column;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(17, 24, 39, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
.card__icon {
  margin-bottom: 20px;
}
.card__icon-img {
  width: 100px;
  height: auto;
}
.card__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}
.card__text {
  font-size: 16px;
  line-height: 1.7;
  font-weight: lighter;
  color: rgb(209, 213, 219);
}

.breadcrumbs {
  text-align: center;
  margin-top: 80px;
  color: rgb(209, 213, 219);
  border-bottom: 1px solid rgba(209, 213, 219, 0.05);
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding: 40px 0;
  }
}
.breadcrumbs__title {
  font-size: 34px;
}
.breadcrumbs__items {
  margin: 20px 0;
  justify-content: center;
  display: flex;
  list-style: none;
}
.breadcrumbs__item {
  margin: 0 10px;
}
.breadcrumbs__item a {
  color: #FF6B00;
  text-decoration: underline;
}
.breadcrumbs__item a:hover {
  color: #FF6B00;
}
.breadcrumbs__item::after {
  content: "/";
  margin-left: 10px;
  color: rgb(209, 213, 219);
}
.breadcrumbs__item:last-child {
  margin: 0;
}
.breadcrumbs__item:last-child::after {
  content: "";
}

.page__section {
  color: rgb(209, 213, 219);
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .page__section {
    padding: 40px 0;
  }
}
.page__section ul, .page__section ol {
  margin: 20px;
}
.page__section h2 {
  margin: 20px 0;
}
.page__section h3 {
  margin: 15px 0;
}
.page__section p {
  font-size: 16px;
  line-height: 1.7;
}

button {
  outline: none;
  border: none;
}

/* utils */
.flex {
  display: flex;
}

.input, .textarea, .select {
  background: transparent;
  border: 1px solid rgb(209, 213, 219);
  padding: 15px 15px;
  border-radius: 15px;
  color: #fff;
}

.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border: 1px solid #FF6B00;
}

.label {
  color: #fff;
  font-weight: bold;
}

.hidden {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.w-6 {
  width: 24px;
}

.h-6 {
  height: 24px;
}

.wpcf7-response-output {
  color: #fff;
}

.email-icon, .phone-icon {
  width: 18px;
  margin-right: 10px;
  color: #CB5A4B;
}

.close-icon {
  width: 18px;
  margin-right: 10px;
  color: #FFF;
}

footer {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #2C3048;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .footer__menu {
    margin-bottom: 20px;
  }
}
.footer__menu-list {
  list-style: none;
  display: flex;
}
.footer__menu-list li {
  margin-right: 10px;
}
.footer__menu-list li.current-menu-item a {
  color: #FF6B00;
  text-decoration: underline;
}
.footer__menu-list a {
  color: #fff;
  text-decoration: none;
}
.footer__menu-list a:hover {
  color: #FF6B00;
}

.gradient-circle {
  position: fixed;
  left: -250px;
  top: 250px;
  right: auto;
  bottom: auto;
  z-index: -1;
  width: 500px;
  height: 500px;
  border-radius: 1000px;
  background-image: linear-gradient(45deg, #ccc, #F00);
  opacity: 0.25;
  -webkit-filter: blur(100px);
  filter: blur(100px);
}

.gradient-circle.theme-pink {
  left: auto;
  top: -250px;
  right: -250px;
  bottom: auto;
  background-image: linear-gradient(45deg, #ccc, #F00);
}

.blog {
  display: flex;
  flex-wrap: wrap;
}
.blog__card {
  width: 30%;
  margin-right: 20px;
  background: #2C3048;
  border-radius: 15px;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(17, 24, 39, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
@media screen and (max-width: 768px) {
  .blog__card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.blog__card-thumbnail {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.blog__card-thumbnail img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}
.blog__card-title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}
.blog__card-content {
  font-size: 16px;
  line-height: 1.7;
  font-weight: lighter;
  padding: 20px;
}
.blog__card-content a {
  color: rgb(209, 213, 219);
  text-decoration: none;
}
.blog__card-content a:hover {
  color: #FF6B00;
}
.blog__image {
  width: 100%;
  height: 300px;
  margin-bottom: 40px;
}
.blog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pswp__button--estimate-button {
  width: auto !important;
  background: #CB5A4B !important;
  border-radius: 15px !important;
  padding: 0 !important;
}
.pswp__button--estimate-button a {
  color: #fff !important;
  text-decoration: none !important;
  width: 100% !important;
  height: 100% !important;
  padding: 20px 40px !important;
  display: block;
}
.pswp__button--estimate-button a:hover {
  background: #fff;
  color: #FF6B00 !important;
}

.contacts {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.contacts__cards {
  display: flex;
  gap: 40px;
  padding: 35px 0;
}
@media screen and (max-width: 768px) {
  .contacts__cards {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
}
.contacts__card {
  width: calc(50% - 20px);
  background: rgba(44, 48, 72, 0.368627451);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  font-family: Avenir, sans-serif;
  flex-direction: column;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(17, 24, 39, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
@media screen and (max-width: 768px) {
  .contacts__card {
    width: 100%;
  }
}
.contacts__card-title {
  font-size: 18px;
  font-weight: 700;
  color: rgb(209, 213, 219);
  margin: 15px 0;
}
.contacts__card a {
  color: #FF6B00;
}
.contacts__card a:hover {
  color: #FF6B00;
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */
