@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a {
  text-decoration: none;
  user-select: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Variables */
:root {
  --black: #000000;
  --white: #ffffff;
  --red: #cc0000;
  --red-gradient: linear-gradient(89.77deg, #cc0000 0.2%, #ff6666 99.82%);
  --grey: #797979;
  --light-grey: #aebcd1;
  --dark-white: #f8f9fb;

  --transition: ease-in-out 0.2s;
  --fz-common: 18px;
  --lh-common: 22px;
  --lh-common-plus: 24px;
  --section-mb: 70px;
}

@media (max-width: 991px) {
  :root {
    --fz-common: 16px;
    --lh-common: 21px;
    --lh-common-plus: 22px;
    --section-mb: 60px;
  }
}
@media (max-width: 767px) {
  :root {
    --fz-common: 15px;
    --lh-common: 20px;
    --lh-common-plus: 21px;
    --section-mb: 50px;
  }
}

/* Base Typography */
body {
  font-family: "Montserrat", sans-serif;
  font-size: var(--fz-common);
  line-height: var(--lh-common);
  color: var(--black);
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  color: var(--black);
}
h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
h3 {
  font-weight: 500;
  font-size: var(--fz-common);
  line-height: var(--lh-common-plus);
}

/* Wrapper */
.wrapper {
  width: 1110px;
  margin: 0 auto;
}
@media (max-width: 1130px) {
  .wrapper {
    width: 100%;
    padding: 0 15px;
  }
}

/* Buttons */
.btn {
  padding: 11px 22px 12px;
  font-weight: 600;
  font-size: var(--fz-common);
  line-height: var(--lh-common);
  border-radius: 20px;
  box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.1);
  background: var(--white);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: max-content;
  transition: var(--transition);
}
.btn:hover {
  opacity: 0.85;
  transition: var(--transition);
}

.btn-red {
  background: var(--red-gradient);
  color: var(--white);
}

/* Text colors */
.text-red {
  color: var(--red);
}
.text-white {
  color: var(--white);
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 2px 5px 21px rgba(0, 0, 0, 0.15);
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0 18px;
}
.header__logo {
  font-weight: 500;
  font-size: 42px;
  transition: var(--transition);
}
.header__logo img{
  width: 20%;
}
.header__logo:hover {
  color: var(--red);
  transition: var(--transition);
}
.header__link-wrapper {
  display: flex;
  position: relative;
}
@media (max-width: 767px) {
  .header__link-wrapper {
    position: absolute;
    opacity: 0;
    top: 65px;
    left: 100vw;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background: var(--white);
    padding: 20px 0;
    transition: var(--transition);
  }
  .header__link-wrapper.active {
    opacity: 1;
    left: 0;
    z-index: 100;
    overflow-y: scroll;
  }
}
.header__link-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 30px;
}
@media (max-width: 767px) {
  .header__link-list {
    flex-direction: column;
    align-items: center;
    gap: 15px 0;
  }
}
.header__link {
  font-weight: 500;
  transition: var(--transition);
}
.header__link:hover {
  color: var(--red);
  transition: var(--transition);
}
.header__link_active {
  color: var(--red);
}

/* Mobile burger */
.header__burger {
  display: none;
}
@media (max-width: 767px) {
  .header__burger {
    display: inline-flex;
    margin-left: 20px;
    position: relative;
    width: 35px;
    height: 14px;
    align-items: center;
    justify-content: end;
  }
  .header__burger:before, .header__burger:after {
    content: "";
    background-color: var(--black);
    position: absolute;
    height: 2px;
    transition: var(--transition);
  }
  .header__burger:before {
    width: 35px;
    top: 0;
  }
  .header__burger:after {
    width: 25px;
    bottom: 0;
  }
}
.header-burger__line {
  background-color: var(--black);
  width: 30px;
  height: 2px;
  transition: var(--transition);
}

/* Footer */
.footer {
  background: var(--black);
}
.footer__wrapper {
  padding: 46px 0 56px;
}
.footer__navigation-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 41px;
}
.footer__logo-link {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  transition: var(--transition);
}
.footer__logo-link:hover {
  color: var(--red);
  transition: var(--transition);
}
.footer__links-wrapper a {
  line-height: var(--lh-common-plus);
  transition: var(--transition);
  margin-right: 10px;
}
.footer__links-wrapper a:hover {
  color: var(--red);
  transition: var(--transition);
}
.footer__info-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.footer__info-item {
  background: var(--white);
  padding: 10px 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex: 1 1 auto;
  min-width: 220px;
  margin-right: 10px;
  border-radius: 5px;
}
.footer__info-img-wrapper {
  margin-right: 30px;
}
.footer__title-link {
  font-weight: 500;
  margin-bottom: 3px;
  transition: var(--transition);
}
.footer__title-link:hover {
  color: var(--red);
  transition: var(--transition);
}
.footer__description {
  color: var(--grey);
}
.footer-copyrights {
  text-align: center;
  padding: 4px 0;
  color: var(--white);
}

/* Page Structure */
.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Banners and Sections */
.main-banner {
  background: url("../../img/sos-express-locksmiths1.png") center center no-repeat;
  background-size: cover;
}
.main-banner__wrapper {
  padding: 87px 0 201px;
  text-align: center;
}
@media (max-width: 991px) {
  .main-banner__wrapper {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .main-banner__wrapper {
    padding: 50px 0;
  }
}
.main-banner__subtitle {
  margin-bottom: 15px;
}
.main-banner__title {
  margin: 0 auto 30px;
  max-width: 65%;
}
.main-banner__cases-wrapper {
  margin-bottom: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 60px;
}
.main-banner__case-item {
  display: flex;
  align-items: center;
}
.main-banner__case-img {
  margin-right: 10px;
  width: 20px;
  height: 16px;
}
.main-banner__case-text {
  font-weight: 400;
}

/* Cases (benefits) */
.cases {
  margin: -110px auto var(--section-mb);
  width: 100%;
}
@media (max-width: 991px) {
  .cases {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cases {
    margin-top: 30px;
  }
}
.cases__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cases__item-wrapper {
  max-width: calc(25% - 22px);
  filter: drop-shadow(2px 4px 18px rgba(0, 0, 0, 0.15));
}
@media (max-width: 991px) {
  .cases__item-wrapper {
    max-width: calc(50% - 15px);
    margin-bottom: 30px;
  }
}
@media (max-width: 410px) {
  .cases__item-wrapper {
    max-width: 100%;
  }
}
.cases__item {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  text-align: center;
  border-radius: 5px;
  padding: 33px 15px;
}
.cases__item:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 10px;
  border-radius: 0 0 5px 5px;
  background-color: var(--red);
  z-index: -1;
}
.cases__img-wrapper {
  margin-bottom: 30px;
}
.cases__text {
  line-height: var(--lh-common-plus);
}

/* Text Block / About Us */
.text-block {
  margin-bottom: var(--section-mb);
}
.text-block__wrapper {
  display: flex;
  flex-wrap: wrap;
}
.text-block__text-wrapper {
  width: 60%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .text-block__text-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }
}
.text-block__subtitle {
  margin-bottom: 15px;
}
.text-block__title {
  margin-bottom: 15px;
}
.text-block__text-item {
  padding: 0 0 24px 10px;
  border-left: 1px solid var(--red);
  margin-bottom: 22px;
}
.text-block__img-wrapper {
  width: 40%;
  padding-left: 65px;
}
@media (max-width: 991px) {
  .text-block__img-wrapper {
    width: 100%;
    padding-left: 0;
  }
}

/* Numbers / Stats */
.our-numbers {
  background: url("../../img/9m8cndjn2.png") center center no-repeat;
  background-size: cover;
}
.our-numbers__wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 64px 0;
}
@media (max-width: 991px) {
  .our-numbers__wrapper {
    padding: 30px 0;
  }
}
.our-numbers__text-wrapper {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .our-numbers__text-wrapper {
    width: 100%;
    align-items: center;
    margin-bottom: 30px;
  }
}
.our-numbers__title {
  margin: 12px 0 15px;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
.our-numbers__text {
  line-height: var(--lh-common-plus);
}
.our-numbers__numbers-wrapper {
  width: 50%;
  padding-left: 30px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .our-numbers__numbers-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
.our-numbers__nuber-item {
  width: 50%;
  text-align: center;
  padding: 0 26px;
}
.our-numbers__number-num {
  font-weight: 700;
  font-size: 48px;
  line-height: 59px;
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.our-numbers__number-text {
  color: var(--black);
}

/* Features / Services */
.features {
  position: relative;
  margin-bottom: var(--section-mb);
}
.features:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 415px;
  background: var(--red);
  z-index: -1;
}
.features__wrapper {
  padding-top: 50px;
}
.features__items-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
.features__item {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--white);
  box-shadow: 5px 4px 14px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 21px 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .features__item {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .features__item {
    flex: 0 0 100%;
  }
}
.features__item-title {
  margin-bottom: 17px;
}
.first-feature {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.first-feature__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.first-feature__title:after {
  content: "";
  border-top: 1px solid var(--white);
  width: 56px;
  margin-left: 15px;
}
.first-feature__text-wrapper {
  margin-bottom: 13px;
}
.first-feature__text {
  font-size: var(--fz-common);
  line-height: var(--lh-common);
  text-align: left;
}

/* Locations / CTA */
.locations {
  background: url("../../img/9m8cndjn1.png") center center no-repeat;
  background-size: cover;
  margin-bottom: var(--section-mb);
}
.locations__wrapper {
  width: 100%;
  padding: 64px 0 117px;
  position: relative;
}
.pricelist__text {
  line-height: var(--lh-common-plus);
}

/* Conversion Banner */
.conversion-banner {
  background: var(--red-gradient);
  margin-bottom: var(--section-mb);
}
.conversion-banner__wrapper {
  padding: 63px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.conversion-banner__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 10px;
}
.conversion-banner__text {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
}
.conversion-banner__btn {
  padding: 10px 45px;
  border-radius: 20px;
}

/* Articles */
.articles {
  margin-bottom: var(--section-mb);
}
.articles__title {
  text-align: center;
  margin-bottom: 50px;
}
.articles__items-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.articles__item {
  flex: 0 0 calc(33.333% - 20px);
}
@media (max-width: 991px) {
  .articles__item {
    flex: 0 0 calc(50% - 20px);
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .articles__item {
    flex: 0 0 calc(50% - 10px);
    min-width: 280px;
    margin: 0 auto 20px;
  }
}
.articles__img-wrapper {
  position: relative;
  margin-bottom: 15px;
}
.articles__img-text {
  position: absolute;
  bottom: 0;
  left: 15px;
  background: var(--red);
  padding: 6px 60px 3px;
  line-height: var(--lh-common-plus);
}
.articles__link {
  display: inline-block;
  margin-bottom: 58px;
  transition: var(--transition);
}
.articles__link:hover {
  color: var(--red);
  transition: var(--transition);
}
.articles__date-wrapper {
  display: flex;
  align-items: center;
}
.articles__date-img-wrapper {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}
.articles__date-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

/* Text Section */
.text {
  margin-bottom: var(--section-mb);
}
.text__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  margin-bottom: 30px;
}
.text__text {
  line-height: var(--lh-common-plus);
}

/* FAQ */
.faq {
  margin-bottom: var(--section-mb);
}
.faq__title {
  width: 100%;
  text-align: center;
  margin-bottom: 37px;
}
.faq__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.faq__section {
  flex: 0 0 calc(50% - 15px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .faq__section {
    flex: 0 0 100%;
  }
}
.faq__item {
  background: var(--dark-white);
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 1px;
  transition: var(--transition);
  cursor: pointer;
}
.faq__item[open] {
  background: var(--white);
  transition: var(--transition);
}
.faq__question {
  font-weight: 500;
  font-size: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .faq__question {
    font-size: 18px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .faq__question {
    font-size: 16px;
    padding: 15px;
  }
}
.faq__question:before {
  content: "?";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 50%;
  background: var(--red-gradient);
  color: var(--white);
}
.faq__question:after {
  content: "+";
  margin-left: auto;
  color: var(--light-grey);
  font-weight: 100;
  font-size: 28px;
  transition: var(--transition);
}
.faq__item[open] .faq__question:after {
  transform: rotate(45deg);
  color: var(--red);
  transition: var(--transition);
}
.faq__answer {
  padding: 0 30px 37px 83px;
  line-height: var(--lh-common-plus);
}
@media (max-width: 991px) {
  .faq__answer {
    padding-bottom: 20px;
    padding-left: 73px;
  }
}
@media (max-width: 767px) {
  .faq__answer {
    padding-bottom: 15px;
    padding-left: 71px;
  }
}

/* Partners */
.partners {
  margin-bottom: var(--section-mb);
  width: 100%;
}
.partners__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.partners__title {
  text-align: center;
  margin-bottom: 77px;
}
@media (max-width: 991px) {
  .partners__title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .partners__title {
    margin-bottom: 30px;
  }
}
.partners__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.partners__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
