/*
Theme Name: Kavana IM4U
Theme URI: https://im4udma.com/
Description: IM4U theme for Kavana
Version: 1.1
Author: IM4U Dev
Author URI: https://im4udma.com/
Text Domain: kavana-im4u
*/
@charset "UTF-8";
@font-face {
  font-family: "Golos Text";
  src: url("fonts/Golos Text/Golos-Text_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("fonts/Golos Text/Golos-Text_Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("fonts/Golos Text/Golos-Text_DemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("fonts/Golos Text/Golos-Text_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amurg";
  src: url("fonts/Amurg/Amurg-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amurg";
  src: url("fonts/Amurg/Amurg-Regular.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amurg";
  src: url("fonts/Amurg/Amurg-Regular.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Amurg", "Golos Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

h1 {
  font-size: 68px;
  line-height: 101%;
  letter-spacing: 0%;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 58px;
  line-height: 108%;
  letter-spacing: 0%;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 36px;
  line-height: 108%;
  letter-spacing: 0%;
  margin-bottom: 0.5em;
}

h4 {
  font-size: 28px;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 0.5em;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  color: rgb(248, 94, 51);
}

p {
  color: rgb(31, 29, 29);
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  margin-bottom: 1rem;
}

.header {
  position: relative;
  padding: 20px 0;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__logo svg {
  max-width: 123px;
  width: 100%;
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__cta {
  display: flex;
  align-items: center;
}

.logo__text {
  display: flex;
  flex-direction: column;
}
.logo__title {
  font-family: "Amurg", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: rgb(31, 29, 29);
  line-height: 1;
}
.logo__subtitle {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgb(31, 29, 29);
  line-height: 1;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.nav__item {
  margin: 0;
}
.nav__link {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgb(31, 29, 29);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 8px 0;
}
.nav__link:hover {
  color: rgb(248, 94, 51);
}
.nav__link--active {
  color: rgb(248, 94, 51);
}

.header__nav .menu-item-has-children {
  position: relative;
}

.header__nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  padding: 10px;
  margin: 0;
  list-style: none;
  z-index: 999;
}

.header__nav .menu-item-has-children:hover > .sub-menu,
.header__nav .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.header__nav .sub-menu a {
  display: block;
  padding: 10px 16px;
}

.header__mobile-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.header__mobile-nav .menu-item-has-children.submenu-open > .sub-menu {
    text-align: center;
    margin: 10px 0;
    background-color: rgb(248 94 51 / 20%);
    border-radius: 5px;
    padding: 10px;
}

.header__nav a {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgb(31, 29, 29);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  display: inline-flex;
  transition: color 0.25s ease, transform 0.25s ease;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: rgb(248, 94, 51);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header__nav .current-menu-item a {
  color: rgb(248, 94, 51);
}

.header__nav .current-menu-item a::after {
  transform: scaleX(1);
  opacity: 1;
}

.header__mobile-list .sub-menu li a {
  display: block;
  margin-bottom: 15px;
}

.header__nav a:hover,
.header__nav .sub-menu li a:hover {
  color: rgb(248, 94, 51);
}

.header__nav a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}


.header__mobile-nav .menu-item-has-children > a::after {
  content: "▾";
  opacity: .7;
}

.header__mobile-nav {
  display: none;
}

.header__mobile-nav.is-open {
  display: block;
}

.header__nav .menu-item-has-children > a::after {
	content: "▾";
    opacity: .7;
    color: #000;
    display: contents;
}

body.is-menu-open {
  overflow: hidden;
}


.cta__button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: rgb(248, 94, 51);
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 20px;
  height: 46px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.cta__button:hover {
  background-color: rgb(248, 94, 51);
  color: rgb(255, 255, 255);
}
.cta__arrow {
  transition: transform 0.3s ease;
}
.cta__button:hover .cta__arrow {
  transform: translate(2px, -2px);
}

.single-post .post h1 {
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 1em 0;
  color: #333;
}
.single-post .post h2 {
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  margin: 1.5em 0 0.8em 0;
  color: #333;
}
.single-post .post h3 {
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  margin: 1.3em 0 0.6em 0;
  color: #333;
}
.single-post .post h4 {
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  margin: 1.2em 0 0.5em 0;
  color: #333;
}
.single-post .post h5 {
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin: 1em 0 0.4em 0;
  color: #333;
}
.single-post .post h6 {
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  margin: 0.8em 0 0.3em 0;
  color: #333;
}
.single-post .post ul, .single-post .post ol {
  margin: 1em 0;
  padding-left: 1.5em;
}
.single-post .post ul li, .single-post .post ol li {
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.single-post .post a {
  color: #F85E33;
  text-decoration: none;
  transition: color 0.3s ease;
}
.single-post .post a:hover {
  color: #e04a2b;
  text-decoration: underline;
}
.single-post .post p {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 1.2em 0;
  color: #333;
}
.single-post .post blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #F85E33;
  background-color: #f9f9f9;
  font-style: italic;
}
.single-post .post blockquote p {
  margin: 0;
}
.single-post .post code {
  background-color: #f4f4f4;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.single-post .post pre {
  background-color: #f4f4f4;
  padding: 1em;
  border-radius: 5px;
  overflow-x: auto;
  margin: 1em 0;
}
.single-post .post pre code {
  background: none;
  padding: 0;
}
.single-post .post img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border-radius: 8px;
}
.single-post .post table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.single-post .post table th, .single-post .post table td {
  padding: 0.8em;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.single-post .post table th {
  background-color: #f8f9fa;
  font-weight: 600;
}
.single-post .post .post-content {
  padding: 60px 0;
}
.single-post .post .post-content__wrap {
  max-width: 800px;
  margin: 0 auto;
}
.single-post .post .post-related {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.single-post .post .post-related__title {
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 50px 0;
  color: #333;
}
.single-post .post .post-related__title .text-accent {
  color: #F85E33;
}
.single-post .post .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.single-post .post .related-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.single-post .post .related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-decoration: none !important;
}
.single-post .post .related-card__thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.single-post .post .related-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.single-post .post .related-card__tag {
  padding: 15px 20px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #F85E33;
}
.single-post .post .related-card__title {
  padding: 0 20px 20px;
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #333;
}
.single-post .post .post-author {
  padding: 40px 0;
  border-top: 1px solid #eee;
  margin-top: 60px;
}
.single-post .post .post-author__wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.single-post .post .post-author__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.single-post .post .post-author__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.single-post .post .post-author__info h4 {
  margin: 0 0 0.5em 0;
  font-size: 20px;
}
.single-post .post .post-author__info p {
  margin: 0;
  color: #666;
  font-size: 14px;
}
.single-post .post .post-tags {
  padding: 30px 0;
  border-top: 1px solid #eee;
}
.single-post .post .post-tags__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #333;
}
.single-post .post .post-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-post .post .post-tags__item a {
  display: inline-block;
  padding: 6px 12px;
  background-color: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.single-post .post .post-tags__item a:hover {
  background-color: #F85E33;
  color: #fff;
}
.single-post .post .post-excerpt {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid #F85E33;
}
.single-post .post .post-excerpt p {
  margin: 0;
  font-style: italic;
  color: #666;
}

.hero {
  position: relative;
  padding: 75px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("./img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90.7deg, #000000 0.63%, rgba(0, 0, 0, 0) 99.43%);
  z-index: 2;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.hero__text {
  max-width: 540px;
  color: rgb(255, 255, 255);
}
.hero__text p {
  color: rgb(255, 255, 255);
}
.hero__title {
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
  text-align:left;
}
.hero__subtitle {
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
  text-align:left;
}
.hero__button {
    background-color: rgb(248, 94, 51);
    color: rgb(255, 255, 255);
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    height: 50px;
    display: inline-block;
    position: relative;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 50px;
    transition: 0.3s;
    padding: 15px 25px;
}
.hero__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}
.hero__cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}
.hero__card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(23.6px);
          backdrop-filter: blur(23.6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
  min-width: 200px;
}
.hero__card:hover {
  transform: translateY(-4px);
}
.hero__card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero__card-svg {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}
.hero__card-text {
  color: rgb(255, 255, 255);
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.hero__form {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid;
  border-image-source: linear-gradient(102.49deg, #FFFFFF 3.4%, rgba(179, 179, 179, 0) 97.76%);
  -webkit-backdrop-filter: blur(23.6000003815px);
          backdrop-filter: blur(23.6000003815px);
  padding: 32px;
  border-radius: 16px;
  margin-top: 0;
  width: 100%;
  max-width: 540px;
}
.hero .form__title {
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  letter-spacing: 0;
  text-align: left;
  color: rgb(255, 255, 255);
  margin-bottom: 35px;
}
.hero .form__row {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}
.hero .form__field {
  flex: 1;
}
.hero .form__label {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 400;
  text-align: left;
}
.hero .form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(152, 165, 173, 0.11);
  border-radius: 8px;
  background: rgba(248, 248, 248, 0.1);
  font-size: 16px;
  color: rgb(255, 255, 255);
  transition: all 0.3s ease;
}
.hero .form__input:focus {
  outline: none;
  border: 1px solid rgb(248, 94, 51);
  background-color: transparent;
}
.hero .form__input::-moz-placeholder {
  color: rgb(212, 227, 237);
  font-weight: 400;
  opacity: 0.8;
}
.hero .form__input::placeholder {
  color: rgb(212, 227, 237);
  font-weight: 400;
  opacity: 0.8;
}
.hero .form__submit {
  width: 100%;
  height: 45px;
  background-color: rgb(248, 94, 51);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 50px;
  font-family: "Golos Text", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero .form__submit:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}

.home .hero .form__label {
  text-align: left;
}

.page-template-products .hero .form__label {
  text-align: left;
}
.page-template-products .hero__title {
  text-align: left;
}
.page-template-products .hero__subtitle {
  text-align: left;
}

.about {
  padding: 80px 0;
  background-color: rgb(255, 255, 255);
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__text {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.about__title {
  flex: 1.2;
}
.about__title span {
  color: rgb(248, 94, 51);
}
.about__description {
  flex: 1;
}
.about__image {
  width: 100%;
  margin: 0 auto;
}
.about__image img {
	width: 100%;
}
.about__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__stats {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}

.stat__item {
  flex: 1;
  text-align: left;
  padding: 0;
  display: flex;
  gap: 30px;
}
.stat__icon {
  width: 68px;
  height: 68px;
  background-color: rgb(248, 94, 51);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(248, 94, 51, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(248, 94, 51, 0.1);
}
.stat__svg {
  width: 41px;
  height: 41px;
}
.stat__number {
  font-family: "Amurg", sans-serif;
  font-size: 46px;
  font-weight: 400;
  color: rgb(31, 29, 29);
}
.stat__text {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: rgb(31, 29, 29);
}

.rating {
  padding: 80px 0;
  background-color: rgb(31, 29, 29);
  text-align: center;
}
.rating__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.rating__image {
  width: 136px;
  height: auto;
}
.rating__title {
  color: rgb(255, 255, 255);
  margin: 0;
}
.rating__subtitle {
  color: rgb(255, 255, 255);
  margin: 0;
}
.rating__button {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 221px;
    position: relative;
    padding: 15px 25px;
    height: 50px;
    display: inline-block;
}
.rating__button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.insurance {
  padding: 80px 0;
  background-image: url("./img/fradi.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.insurance__content {
  position: relative;
  z-index: 2;
}
.insurance__header {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  align-items: flex-start;
}
.insurance__title {
  font-family: "Amurg", sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: rgb(31, 29, 29);
  flex: 1;
  margin: 0;
}
.insurance__description {
  flex: 1;
  margin: 0;
}
.insurance__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.insurance .card__title {
  font-size: 28px;
}
.insurance .card__image {
  height: 332px;
}

.insurance__card {
  background-color: rgb(255, 255, 255);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.insurance__card:hover {
  transform: translateY(-4px);
}
.insurance__card .card__content p {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: rgb(31, 29, 29);
  margin-bottom: 24px;
  flex: 1;
}

.card__image {
  width: 100%;
  height: 310px;
  padding: 12px;
}
.card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  overflow: hidden;
  border-radius: 13px;
}
.card__content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card__title {
  font-family: "Amurg", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: rgb(31, 29, 29);
  margin-bottom: 16px;
}
.card__description {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: rgb(31, 29, 29);
  margin-bottom: 24px;
  flex: 1;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgb(248, 94, 51);
  margin-top: auto;
  transition: all 0.3s ease;
}

.link__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  stroke: currentColor;
}

.insurance__card:hover .link__arrow {
  transform: translate(4px, -4px);
}

.insurance__card:hover .card__link {
  transform: translateX(4px);
}

.steps {
  padding: 80px 0;
  background-image: url("./img/Rectangle 94221.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.steps__content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.steps__left {
  flex: 1;
  max-width: 500px;
  margin-top: auto;
  margin-bottom: auto;
}
.steps__title {
  font-family: "Amurg", sans-serif;
  font-size: 63px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 21px;
  line-height: 0.9;
}
.steps__title span {
  color: rgb(254, 180, 73);
}
.steps__description {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: rgb(255, 255, 255);
  margin-bottom: 21px;
  opacity: 0.9;
}
.steps__button {
	background-color: rgb(248, 94, 51);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 50px;
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 252px;
    height: 50px;
    display: inline-block;
    padding: 15px 25px;
    position: relative;;
}
.steps__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}
.steps__right {
  flex: 1;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
}

.step__item {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 40px;
  position: relative;
}
.step__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 49px;
  top: 63px;
  width: 2px;
  height: 131%;
  background-color: rgba(255, 255, 255, 0.3);
}
.step__number {
  font-family: "Amurg", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  position: relative;
  width: 40px;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}
.step__number::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-color: rgb(248, 94, 51);
  border-radius: 50%;
  z-index: 9;
}
.step__card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 447px;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}
.step__icon {
  min-width: 64px;
  width: 64px;
  min-height: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step__svg {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}
.step__text {
  color: rgb(255, 255, 255);
  margin: 0;
  display: flex;
  gap: 15px;
  align-items: center;
}
.step__text p {
  color: rgb(255, 255, 255);
  margin: 0;
}
.step__icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.step__svg {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}
.business {
  padding: 80px 0;
  background-color: rgb(255, 255, 255);
}
.business__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.business__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.business__title {
  margin-bottom: 9px;
}
.business__description {
  margin-bottom: 14px;
}
.business__button {
    background-color: rgb(248, 94, 51);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 50px;
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 252px;
    height: 50px;
    display: inline-block;
    padding: 15px 25px;
    position: relative;
}
.business__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(248, 94, 51, 0.3);
}
.business__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.business__card {
  background: rgb(244, 244, 244);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.business__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.business__icon {
  width: 58px;
  height: 58px;
  background-color: rgb(255, 255, 255);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.business__svg {
  width: 32px;
  height: 32px;
}
.business__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.business__card-title, .business h1, .business h2, .business h3, .business h4, .business h5, .business h6 {
  margin-bottom: 8px;
}
.business__features, .business ul {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
  flex: 1;
}
.business__features li, .business li {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: rgb(31, 29, 29);
  padding-left: 25px;
  position: relative;
}
.business__features li::before, .business li::before {
  content: "•";
  color: rgb(31, 29, 29);
  font-weight: bold;
  position: absolute;
  left: 10px;
  top: 0;
}
.business__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgb(248, 94, 51);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}
.business__link:hover {
  color: #f03b08;
  transform: translateX(4px);
}

.business__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  stroke: currentColor;
}

.business__link:hover .business__arrow {
  transform: translateX(4px);
}

.explore {
  padding: 80px 0;
  background-image: url("./img/Rectangle 9422.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.explore__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.explore__header {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.explore__title {
  font-family: "Amurg", sans-serif;
  font-size: 63px;
  line-height: 1.1;
  color: rgb(255, 255, 255);
  width: 50%;
  margin: 0;
}
.explore__info {
  flex: 1;
  max-width: 473px;
  margin-left: auto;
  margin-right: auto;
}
.explore__description {
  color: rgb(255, 255, 255);
  margin-bottom: 32px;
}
.explore__button {
    background-color: rgb(248, 94, 51);
    color: rgb(255, 255, 255);
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    height: 50px;
    display: inline-block;
    position: relative;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 50px;
    transition: 0.3s;
    padding: 15px 25px;
}
.explore__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}
.explore__categories {
  display: flex;
  gap: 40px;
}
.explore__category {
  flex: 1;
}
.explore .category__title {
  font-size: 30px;
}

.category__title {
  font-family: "Amurg", sans-serif;
  font-size: 34px;
  color: rgb(255, 255, 255);
  margin-bottom: 6px;
}
.category__subtitle {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  color: rgb(255, 255, 255);
  opacity: 0.8;
  margin-bottom: 16px;
}

.explore__card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid;
  border-image-source: linear-gradient(102.49deg, #FFFFFF 3.4%, rgba(179, 179, 179, 0) 97.76%);
  -webkit-backdrop-filter: blur(23.6000003815px);
          backdrop-filter: blur(23.6000003815px);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
  display: flex;
  gap: 18px;
  height: 234px;
}
.explore__card h1, .explore__card h2, .explore__card h3, .explore__card h4, .explore__card h5, .explore__card h6 {
  margin-bottom: 8px;
  font-family: "Amurg", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-bottom: 6px;
}
.explore__card:hover {
  transform: translateY(-4px);
}

.explore__icon {
  min-width: 64px;
  width: 64px;
  min-height: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.19);
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.explore__svg {
  width: 34px;
  height: 34px;
}
.explore__card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.explore__card-title {
  font-family: "Amurg", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-bottom: 6px;
}
.explore__features {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  flex: 1;
}
.explore__features li {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: rgb(233, 233, 233);
  padding-left: 22px;
  position: relative;
}
.explore__features li::before {
  content: "•";
  color: rgb(233, 233, 233);
  font-weight: bold;
  position: absolute;
  left: 10px;
  top: 0;
}
.explore__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}
.explore__link:hover {
  transform: translateX(4px);
}

.explore__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  stroke: currentColor;
}

.explore__link:hover .explore__arrow {
  transform: translateX(4px);
}

.tailored {
  padding: 80px 0;
  background-color: rgb(255, 255, 255);
}
.tailored__content {
  display: flex;
  gap: 80px;
  align-items: center;
}
.tailored__left {
  flex: 1;
  max-width: 451px;
}
.tailored__title {
  font-size: 52px;
  margin-bottom: 12px;
}
.tailored__title span {
  color: rgb(248, 94, 51);
}
.tailored__description {
  color: rgb(31, 29, 29);
  margin-bottom: 16px;
}
.tailored__button {
    background-color: rgb(248, 94, 51);
    color: rgb(255, 255, 255);
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    height: 50px;
    display: inline-block;
    position: relative;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 50px;
    transition: 0.3s;
    padding: 15px 25px;
}
.tailored__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}
.tailored__right {
  flex: 1;
  position: relative;
}
.tailored__images {
  position: relative;
  width: 100%;
  max-width: 590px;
  margin-left: auto;
}
.tailored__image-top {
  width: 345px;
  height: 352px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.tailored__image-bottom {
  width: 358px;
  height: 352px;
  overflow: hidden;
  position: absolute;
  bottom: -60px;
  right: 0;
  z-index: 1;
}
.tailored__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.tailored__image-top:hover .tailored__img, .tailored__image-bottom:hover .tailored__img {
  transform: scale(1.05);
}

.clarity {
  padding: 80px 0;
  background-image: url("./img/fradi.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.clarity__content {
  display: flex;
  gap: 80px;
  align-items: center;
}
.clarity__left {
  flex: 1;
  max-width: 507px;
}
.clarity__image {
  width: 100%;
  height: 513px;
  overflow: hidden;
}
.clarity__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.clarity__image:hover .clarity__img {
  transform: scale(1.05);
}
.clarity__right {
  flex: 1;
}
.clarity__title {
  font-size: 38px;
}
.clarity__description {
  margin-bottom: 20px;
}
.clarity__button {
    background-color: rgb(248, 94, 51);
    color: rgb(255, 255, 255);
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    height: 50px;
    display: inline-block;
    position: relative;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 50px;
    transition: 0.3s;
    padding: 15px 25px;
}
.clarity__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}

.contact {
  padding: 80px 0;
  background-color: rgb(255, 255, 255);
}
.contact__content {
  display: flex;
  gap: 80px;
  align-items: center;
}
.contact__left {
  flex: 1;
  max-width: 497px;
  margin-top: auto;
  margin-bottom: auto;
}
.contact__title {
  font-size: 52px;
  margin-bottom: 12px;
}
.contact__details {
  margin-bottom: 20px;
}
.contact__item {
  margin-bottom: 14px;
  display: flex;
  gap: 5px;
}
.contact__label {
  font-weight: 600;
}
.contact__value {
  color: rgb(31, 29, 29);
}
.contact__value a {
  color: rgb(31, 29, 29);
  text-decoration: none;
}
.contact__note {
  font-size: 14px;
  color: rgba(31, 29, 29, 0.6);
}
.contact__button {
  background-color: rgb(248, 94, 51);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 50px;
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 46px;
  max-width: 368px;
  width: 100%;
}
.contact__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}
.contact__right {
  flex: 1;
  max-width: 545px;
}
.contact__image {
  width: 100%;
  height: 552px;
  overflow: hidden;
}
.contact__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.contact__image:hover .contact__img {
  transform: scale(1.05);
}

.testimonials {
  padding: 80px 0;
  background-image: url("./img/fradi2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.testimonials__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.testimonials__header {
  text-align: center;
  margin: 0 auto;
}
.testimonials__title {
  font-size: 58px;
  margin-bottom: 20px;
}
.testimonials__description {
  max-width: 658px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  line-height: 1.3;
}
.testimonials__button {
	background-color: rgb(248, 94, 51);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 50px;
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 252px;
    height: 50px;
    display: inline-block;
    padding: 15px 25px;
    position: relative;
}
.testimonials__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}
.testimonials__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial__card {
  background-color: rgb(255, 255, 255);
  border-radius: 45px;
  padding: 32px;
  box-shadow: 0px 2px 12px 0px rgba(31, 45, 61, 0.1);
  transition: transform 0.3s ease;
  height: 450px;
  display: flex;
  flex-direction: column;
}
.testimonial__card:hover {
  transform: translateY(-8px);
}

.testimonial__rating {
  margin-bottom: 8px;
}
.testimonial__text {
  flex: 1;
  margin-bottom: 24px;
  line-height: 1.5;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.rating__image {
  width: 164px;
  height: auto;
}

.author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author__info {
  flex: 1;
}
.author__name {
  font-family: "Amurg", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: rgb(31, 29, 29);
  margin-bottom: 8px;
}
.author__title {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  color: rgb(31, 29, 29);
  opacity: 0.6;
}

.expert-tips {
  padding: 80px 0;
  background-color: rgb(255, 255, 255);
}
.expert-tips__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.expert-tips__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 718px;
  margin-left: auto;
  margin-right: auto;
}
.expert-tips__title {
  font-size: 58px;
  margin-bottom: 12px;
}
.expert-tips__title .expert-tips__title-main {
  color: rgb(248, 94, 51);
}
.expert-tips__title .expert-tips__title-subtitle {
  color: rgb(31, 29, 29);
}
.expert-tips__button {
	background-color: rgb(248, 94, 51);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 50px;
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
}
.expert-tips__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}
.expert-tips__articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article__card {
  background-color: rgb(255, 255, 255);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.article__card a {
  color: rgb(31, 29, 29);
}
.article__card:hover {
  transform: translateY(-8px);
}

.article__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 16px;
}

.article__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article__tags {
  padding: 31px 0 14px;
  display: flex;
  gap: 8px;
}

.article__tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-family: "Golos Text", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

.article__tag--product {
  background: rgb(240, 249, 255);
  color: rgb(19, 149, 186);
}

.article__tag--research {
  background: rgb(255, 243, 238);
  color: rgb(248, 94, 51);
}

.article__title {
  color: rgb(31, 29, 29);
  font-size: 24px;
  margin-top: 0px;
}

.article__description {
  margin-top: 20px;
  color: rgb(102, 112, 133);
}

.article__meta {
  margin-top: 20px;
  display: flex;
  gap: 5px;
  font-size: 14px;
  color: rgb(31, 29, 29);
}

.question .contact-form {
  background-color: rgb(31, 29, 29);
  padding: 80px 0;
  color: rgb(255, 255, 255);
  position: relative;
}
.question .contact-form::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 18%;
  background-color: rgb(255, 255, 255);
}
.question .contact-form .container {
  position: relative;
  z-index: 1;
}
.question .contact-form__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.question .contact-form__left {
  max-width: 500px;
}
.question .contact-form__title {
  font-size: 63px;
  line-height: 0.9;
}
.question .contact-form__title-main {
  color: rgb(255, 255, 255);
}
.question .contact-form__title-highlight {
  color: rgb(248, 94, 51);
}
.question .contact-form__title-subtitle {
  color: rgb(255, 255, 255);
}
.question .contact-form__description {
  color: rgb(255, 255, 255);
  line-height: 1.3;
}
.question .contact-form__cta-button {
	background-color: rgb(248, 94, 51);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 50px;
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 252px;
    height: 50px;
    display: inline-block;
    padding: 15px 25px;
    position: relative;
}
.question .contact-form__cta-button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}
.question .contact-form__right {
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 30px 26px 60px;
  color: rgb(31, 29, 29);
  max-width: 552px;
  width: 100%;
  box-shadow: 0px 2px 12px 0px rgba(31, 45, 61, 0.1);
}
.question .contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.question .form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.question .form__label {
  font-size: 14px;
  color: rgb(71, 71, 71);
  margin-bottom: 0px;
}
.question .form__input,
.question .form__textarea {
  padding: 16px;
  border: 1px solid rgba(152, 165, 173, 0.11);
  border-radius: 8px;
  background: rgb(248, 248, 248);
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  color: rgb(31, 29, 29);
  transition: border-color 0.3s ease;
  max-width: 488px;
  width: 100%;
}
.question .form__input::-moz-placeholder, .question .form__textarea::-moz-placeholder {
  color: rgb(152, 165, 174);
}
.question .form__input::placeholder,
.question .form__textarea::placeholder {
  color: rgb(152, 165, 174);
}
.question .form__input:focus,
.question .form__textarea:focus {
  outline: none;
  border-color: rgb(248, 94, 51);
  background-color: rgb(255, 255, 255);
}
.question .form__textarea {
  resize: vertical;
  height: 76px;
}
.question .form__submit {
  background-color: rgb(248, 94, 51);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 50px;
  font-family: "Golos Text", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
  height: 51px;
  max-width: 488px;
  width: 100%;
}
.question .form__submit:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}

.footer {
  background-image: url("./img/fradi2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 40px;
  color: rgb(31, 29, 29);
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0px;
  margin-bottom: 0px;
}
.footer__left {
  max-width: 300px;
}
.footer__logo {
  margin-bottom: 15px;
  max-width: 167px;
  width: 100%;
}
.footer__logo svg, .footer__logo img {
  width: 100%;
}
.footer__hours {
  margin-bottom: 32px;
}
.footer .hours__title {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: rgb(31, 29, 29);
  margin-bottom: 10px;
}
.footer .hours__text {
  margin-bottom: 0px;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer .social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgb(248, 94, 51);
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
}
.footer .social__link:hover {
  background-color: rgb(248, 94, 51);
  transform: translateY(-2px);
}
.footer .social__icon {
  width: 20px;
  height: 20px;
}
.footer .social__link:hover .social__icon {
  filter: brightness(0) saturate(100%) invert(1);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 18px;
}
.footer__column-title {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #2D2D2D;
  text-decoration: none;
  display: block;
  margin-bottom: 26px;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: rgb(248, 94, 51);
}
.footer__bottom {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer__legal {
  max-width: 400px;
}
.footer .legal__links {
  display: flex;
  gap: 24px;
  margin-bottom: 70px;
}
.footer .legal__link {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgb(31, 29, 29);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer .legal__link:hover {
  opacity: 1;
}
.footer .company__name,
.footer .company__license {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgb(31, 29, 29);
  opacity: 0.7;
  margin-bottom: 4px;
}
.footer .company__license {
  margin-bottom: 0px;
}
.footer__copyright {
  text-align: right;
}
.footer__copyright p {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgb(31, 29, 29);
  opacity: 0.7;
  margin: 0;
  padding-bottom: 27px;
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.header__mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: rgb(31, 29, 29);
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 10px;
  background-color: rgb(248, 94, 51);
}
.header__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.header__mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
  padding: 20px 15px;
  padding-top: 0px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.header__mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header__mobile-list li a {
	color: rgb(31, 29, 29);
}


.header__mobile-link {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgb(31, 29, 29);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 20px;
}
.header__mobile-link:hover {
  color: rgb(248, 94, 51);
}

.header__mobile-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgb(248, 94, 51);
  color: rgb(255, 255, 255);
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 30px;
  justify-content: center;
  height: 46px;
  width: 252px;
}
.header__mobile-button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}

textarea {
  max-height: 280px !important;
}

.header__mobile-item {
  margin: 0;
}
.header__mobile-item .nav__link--active {
  color: rgb(248, 94, 51);
}

@media (max-width: 996px) {
  .header__nav, .header__cta {
    display: none;
  }
  .header__mobile-toggle {
    display: flex;
  }
  h1, h2, h3, h4, h5, h6 {
    text-align: center;
  }
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
  p {
    font-size: 14px;
  }
  .rating__subtitle {
    font-size: 14px;
  }
  .insurance__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .insurance .card__image {
    height: 308px;
  }
  .insurance .card__title {
    font-size: 24px;
    text-align: left;
  }
  .insurance__card {
    height: auto;
  }
  .steps__content {
    flex-direction: column;
  }
  .steps__title {
    text-align: left;
    font-size: 36px;
  }
  .business__card-title {
    padding-left: 54px;
    text-align: left;
  }
  .steps__description {
    font-size: 14px;
  }
  .insurance__header {
    flex-direction: column;
    gap: 15px;
  }
  .explore__features, .explore__link {
    margin-left: -36px;
  }
  .step__number {
    margin-top: 0;
  }
  .step__number::after {
    top: 0;
  }
  .step__item:not(:last-child)::after {
    top: 0;
    height: calc(100% + 40px);
  }
  .step__item:last-child::after {
    content: "";
    position: absolute;
    left: 49px;
    top: 0;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    height: 100%;
  }
  .step__icon {
    min-width: 46px;
    width: 46px;
    min-height: 46px;
    height: 46px;
    margin-bottom: 0;
  }
  .step__svg {
    width: 24px;
    height: 24px;
  }
  .business__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .general-liability__title {
    font-size: 36px;
  }
  .general-liability__description {
    font-size: 16px;
  }
  .general-liability__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .general-liability__card {
    padding: 24px;
  }
  .general-liability__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
  .general-liability__svg {
    width: 32px;
    height: 32px;
  }
  .general-liability__card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .general-liability__card-description {
    font-size: 14px;
  }
  .business__icon {
    min-width: 44px;
    width: 44px;
    min-height: 44px;
    height: 44px;
  }
  .business__svg {
    width: 24px;
    height: 24px;
  }
  .business__title {
    font-size: 24px;
  }
  .business__card-title {
    font-size: 20px;
    margin-top: -40px;
    margin-bottom: 30px;
  }
  .business__features li {
    font-size: 14px;
  }
  .business__link {
    font-size: 16px;
  }
  .explore__header {
    flex-direction: column;
    gap: 15px;
  }
  .explore__title {
    width: 100%;
    font-size: 36px;
    text-align: left;
  }
  .explore__info {
    max-width: 100%;
  }
  .explore__description {
    margin-bottom: 20px;
  }
  .explore__categories {
    flex-direction: column;
    gap: 0px;
  }
  .explore .category__title {
    text-align: left;
    font-size: 24px;
  }
  .category__subtitle {
    font-size: 14px;
  }
  .explore__icon {
    min-width: 36px;
    width: 36px;
    min-height: 36px;
    height: 36px;
    border-radius: 12px;
  }
  .explore__svg {
    width: 22px;
    height: 22px;
  }
  .tailored__content {
    flex-direction: column;
    gap: 30px;
  }
  .tailored__left {
    max-width: 100%;
  }
  .tailored__title {
    text-align: left;
    font-size: 32px;
  }
  .explore__button {
    max-width: 100%;
  }
  .explore__button-text {
    font-size: 16px;
  }
  .tailored__right {
    width: 100%;
  }
  .hero__content {
    align-items: center;
  }
  .tailored__images {
    max-width: 100%;
  }
  .clarity__content {
    flex-direction: column-reverse;
    gap: 25px;
  }
  .clarity__image {
    height: auto;
  }
  .clarity__title {
    text-align: left;
  }
  .contact {
    padding: 50px 0;
  }
  .contact__image {
    height: auto;
  }
  .contact__item {
    flex-wrap: wrap;
  }
  .contact__content {
    flex-direction: column;
    gap: 25px;
  }
  .contact__title {
    text-align: left;
  }
  .contact__title {
    font-size: 36px;
  }
  .contact__item {
    font-size: 14px;
  }
  .testimonials__content {
    gap: 25px;
  }
  .expert-tips__header {
    margin-bottom: 25px;
  }
  .testimonial__card {
    padding: 28px;
  }
  .testimonials__title {
    font-size: 32px;
  }
  .testimonials__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .testimonial__card {
    height: auto;
  }
  .testimonial__text {
    font-size: 16px;
  }
  .expert-tips__title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .author__name {
    margin-bottom: 4px;
  }
  .expert-tips__articles {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .article__image {
    height: 223px;
    border-radius: 12px;
  }
  .article__title {
    font-size: 22px;
  }
  .contact__left {
    width: 100%;
    max-width: 100%;
  }
  .article__description {
    margin: 15px 0;
  }
  .explore__card-title {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 15px;
    padding-top: 4px;
  }
  .explore__features li {
    font-size: 14px;
  }
  .explore__link {
    font-size: 16px;
  }
  .explore__card {
    height: auto;
    gap: 0;
  }
  .hero__background {
    background-size: contain;
    background-position: 50% 58%;
  }
  .hero__title {
    color: rgb(31, 29, 29);
	text-align: center;
  }
  .hero__text p {
    color: rgb(31, 29, 29);
	text-align: center;
  }
  .hero__form {
    background-color: rgb(255, 255, 255);
    margin-top: -100px;
    box-shadow: 0px 4px 48.8px 0px rgba(98, 110, 115, 0.25);
    border-radius: 16px;
  }
  .hero__text p {
    text-align: center;
  }
  .hero .form__title {
    text-align: center;
    color: rgb(31, 29, 29);
    font-size: 22px;
  }
  .hero .form__label {
    color: rgb(31, 29, 29);
	display: none;
  }
  .hero {
    height: auto;
    padding-top: 60px;
  }
  .hero::before {
    background: #fff;
    z-index: 0;
  }
  .hero__background {
	  display:none;
  }
  
   .contact .hero__background {
	  display:block;
	  margin:0;
  }
  
  .hero_mb_img {
	display: block !important;
    position: relative;
    width: 100%;
  }
  
  .hero .form__input,
  .hero .form__textarea {
    border: 1px solid rgba(31, 29, 29, 0.15);
  }
  .hero .form__input::-moz-placeholder, .hero .form__textarea::-moz-placeholder {
    color: rgb(82, 88, 92);
  }
  .hero .form__input::placeholder,
  .hero .form__textarea::placeholder {
    color: rgb(82, 88, 92);
  }
  .hero .form__row {
    flex-direction: column;
    margin-bottom: 16px;
  }
  .about__text {
    flex-direction: column;
    gap: 0;
  }
  .about__title {
    text-align: left;
  }
  .about__stats {
    flex-direction: column;
    margin-top: 0;
    gap: 20px;
  }
  .stat__number {
    font-size: 36px;
  }
  .stat__icon {
    width: 56px;
    height: 56px;
  }
  .stat__svg {
    width: 33px;
    height: 33px;
  }
  .stat__text {
    font-size: 12px;
  }
  .stat__item {
    gap: 15px;
  }
  .about {
    padding-top: 0;
  }
  .expert-tips__articles .article__title {
    text-align: left;
  }
  .question .contact-form__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .question .contact-form__left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .question .contact-form__title {
    font-size: 36px;
  }
  .question .contact-form__description {
    text-align: center;
  }
  .question .contact-form__cta-button {
    margin: auto;
  }
  .footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
  }
  .footer .legal__links {
    margin-bottom: 25px;
  }
  .footer__hours {
    margin-bottom: 25px;
  }
  .company__info {
    text-align: center;
  }
  .footer {
    padding-bottom: 30px;
    padding-top: 50px;
  }
  .about {
    padding-top: 0px;
  }
  .question .contact-form, .expert-tips, .testimonials, .clarity, .tailored, .explore, .business, .steps, .insurance, .rating {
    padding: 50px 0;
  }
  .hero__form {
    padding: 20px 15px;
  }
  .insurance__title {
    font-size: 36px;
    text-align: left;
  }
  .footer__copyright {
    text-align: center;
    margin-top: 25px;
    padding-bottom: 0;
  }
  .footer__copyright p {
    padding-bottom: 0;
  }
  .footer .legal__link {
    font-size: 14px;
  }
  .footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }
  .footer .hours__title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .footer__column-title {
    margin-bottom: 15px;
  }
  .footer__link {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .footer__links {
    text-align: center;
  }
  .footer__nav {
    gap: 20px;
  }
  .explore {
    padding-bottom: 30px;
  }
  .question .contact-form__right {
    padding: 20px 15px;
  }
}
@media (max-width: 575px) {
  .tailored {
    padding-bottom: 100px;
  }
  .tailored__image-top {
    max-width: 182px;
    height: auto;
  }
  .tailored__image-bottom {
    width: 100%;
    height: auto;
    max-width: 182px;
  }
  .hero__background {
    background-position: 50% 36%;
	margin-top: 50px;
  }
  
  .contact .hero__background {
    background-position: top left;
    background-size: 160%;
  }
  
  .products .hero__background {
    background-position: 50% 36%;
  }
  .hero__form {
    margin-top: -70px;
  }
  
  .contact .hero__form {
    margin-top: 20px;
  }
  
  .coverage .hero {
    height: auto;
    padding: 60px 0;
  }
  .coverage .hero__title {
    font-size: 46px;
    margin-bottom: 20px;
    text-align: center;
  }
  .coverage .hero__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    text-align: center;
  }
  .coverage .hero__button {
    max-width: 280px;
    margin: 0 auto 40px;
  }
  .coverage .hero__cards {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  .coverage .hero__card {
    min-width: auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
  }
  .coverage .hero__card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }
  .coverage .hero__card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
form p {
  display: contents;
}
form br {
  display: none;
}

.blog-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.blog-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.blog-hero__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(8px);
  transform: scale(1.1);
}
.blog-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgb(255, 255, 255);
  max-width: 800px;
  margin: 0 auto;
}
.blog-hero__title {
  font-family: "Amurg", sans-serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 101%;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}
.blog-hero__subtitle {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: rgb(255, 255, 255);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.blog-hero {
  position: relative;
  height: 351px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./img/hero_blog.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.1);
  z-index: 1;
}

.blog-hero .container {
  position: relative;
  z-index: 2;
}

.blog-hero__content {
  text-align: center;
  color: rgb(255, 255, 255);
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero__title {
  font-family: "Amurg", sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 101%;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}

.blog-hero__subtitle {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: rgb(255, 255, 255);
  opacity: 0.9;
  max-width: 413px;
  margin: 0 auto;
}

.blog-posts {
  padding: 60px 0 100px;
}

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
}

.post-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.post-card__thumb {
  width: 168px;
  height: 168px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f6f6f6;
}
.post-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.post-card__content {
  flex: 1;
}
.post-card__meta {
  font-family: "Golos Text", sans-serif;
  font-size: 10px;
  color: rgb(26, 26, 26);
  margin-bottom: 20px;
  text-align: right;
}
.post-card__title {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgb(31, 29, 29);
  line-height: 1.3;
  margin: 0 0 14px;
  max-width: 320px;
  text-align: left;
}
.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(248, 94, 51);
  font-family: "Golos Text", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.post-card__link:hover {
  transform: translateX(3px);
}

.post-card__link-all {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}
.post-card__link-all:hover .post-card__link {
  transform: translateX(3px);
}

@media (max-width: 1200px) {
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 996px) {
  .posts {
    grid-template-columns: 1fr;
  }
}
.blog-types {
  padding: 80px 0 100px;
}
.blog-types__title {
  text-align: center;
  font-family: "Amurg", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  color: rgb(31, 29, 29);
  margin: 0 0 60px;
}

.text-accent {
  color: rgb(248, 94, 51);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.type-card {
  display: flex;
  flex-direction: column;
  background: #f4f4f4;
  border-radius: 24px;
  padding: 32px 26px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.type-card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 6px;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.type-card__icon img {
  width: 38px;
  height: 38px;
}
.type-card__title {
  font-family: "Golos Text", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: rgb(31, 29, 29);
  margin-bottom: 20px;
}
.type-card__link {
  margin-top: auto;
  color: rgb(248, 94, 51);
  font-family: "Golos Text", sans-serif;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1200px) {
  .blog-types__title {
    font-size: 44px;
  }
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 996px) {
  .blog-types__title {
    font-size: 36px;
  }
  .types-grid {
    grid-template-columns: 1fr;
  }
}
.type-card .link__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  stroke: currentColor;
}

.type-card:hover .link__arrow {
  transform: translate(4px, -4px);
}

.post-card .link__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  stroke: currentColor;
}

.post-card__link-all:hover .link__arrow {
  transform: translate(4px, -4px);
}

@media (max-width: 990px) {
  .blog-hero {
    min-height: 247px;
    height: auto;
  }
  .blog-hero__title {
    font-size: 64px;
  }
  .blog-hero__subtitle {
    font-size: 16px;
  }
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 775px) {
  .posts {
    grid-template-columns: 1fr;
  }
  .types-grid {
    grid-template-columns: 1fr;
  }
  .type-card {
    padding: 25px;
  }
}
.single-post .post .post-hero {
  background: linear-gradient(98.56deg, #F85E33 -2.2%, #FEB449 102.35%), linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
  padding: 60px 0 80px;
  color: #fff;
}
.single-post .post .post-hero .container {
  max-width: 936px;
}
.single-post .post .post-hero__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.single-post .post .post-hero__image {
  border-radius: 24px;
  overflow: hidden;
  min-width: 547px;
}
@media (max-width: 996px) {
  .single-post .post .post-hero__image {
    min-width: auto;
  }
}
.single-post .post .post-hero__img {
  width: 100%;
  height: auto;
  display: block;
}
.single-post .post .post-hero__content {
  max-width: 640px;
}
.single-post .post .post-hero__tag {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}
.single-post .post .post-hero__title {
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 33px;
  margin: 0 0 25px;
  color: #fff;
  max-width: 320px;
}
.single-post .post .post-hero__meta {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 996px) {
  .single-post .post .post-hero__wrap {
    grid-template-columns: 1fr;
  }
  .single-post .post .post-hero__title {
    font-size: 36px;
  }
}

.post-content {
  padding: 60px 0 100px;
  background: #fff;
  color: rgb(31, 29, 29);
}
.post-content__wrap {
  max-width: 820px;
  margin: 0 auto;
}
.post-content p {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.post-content__subtitle {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 14px;
}

.post-link {
  color: rgb(248, 94, 51);
  text-decoration: none;
}

.post-list {
  padding-left: 20px;
  margin: 0 0 24px;
}
.post-list li {
  margin: 0 0 10px;
}

@media (max-width: 996px) {
  .post-content {
    padding: 40px 0 80px;
  }
  .post-content__wrap {
    padding: 0 10px;
  }
}
.post-related {
  padding: 80px 0 120px;
}
.post-related__title {
  text-align: center;
  font-family: "Amurg", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  color: rgb(31, 29, 29);
  margin: 0 0 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.related-card__thumb {
  background: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 168px;
}
.related-card__img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
.related-card__tag {
  color: rgb(248, 94, 51);
  font-family: "Golos Text", sans-serif;
  font-size: 12px;
  margin-bottom: 6px;
}
.related-card__title {
  font-family: "Golos Text", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgb(31, 29, 29);
}

@media (max-width: 1200px) {
  .post-related__title {
    font-size: 44px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 775px) {
  .post-related__title {
    font-size: 36px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 990px) {
  .post-hero {
    padding: 20px 0;
  }
  .post-hero__wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .post-hero__content {
    grid-row: 1;
  }
  .post-hero__image {
    grid-row: 2;
    min-width: auto;
  }
  .post-hero__title {
    text-align: left;
    font-size: 36px;
  }
  .post-related {
    padding-top: 0;
  }
}
.products-tailored {
  padding: 80px 0;
}
.products-tailored__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}
.products-tailored__title {
  font-family: "Amurg", sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.1;
  color: rgb(31, 29, 29);
  margin: 0 0 12px;
}
.products-tailored__subtitle {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  color: rgba(31, 29, 29, 0.8);
  margin: 0 0 16px;
}
.products-tailored__button {
    background-color: rgb(248, 94, 51);
    color: rgb(255, 255, 255);
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    height: 50px;
    display: inline-block;
    position: relative;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 50px;
    transition: 0.3s;
    padding: 15px 25px;
}
.products-tailored__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}
.products-tailored__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.prod-card {
  display: flex;
  flex-direction: column;
  background: #f4f4f4;
  border-radius: 24px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.prod-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.prod-card__title {
  font-family: "Golos Text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: rgb(31, 29, 29);
  margin-bottom: 12px;
}
.prod-card__desc {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(31, 29, 29, 0.8);
  margin-bottom: 18px;
}
.prod-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(248, 94, 51);
  font-family: "Golos Text", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.prod-card__link .link__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  stroke: currentColor;
}
.prod-card:hover .link__arrow {
  transform: translate(4px, -4px);
}

@media (max-width: 1200px) {
  .products-tailored__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 775px) {
  .products-tailored__title {
    font-size: 44px;
  }
  .products-tailored__grid {
    grid-template-columns: 1fr;
  }
  .prod-card {
    padding: 24px;
  }
}
.products-coverage {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, rgba(248, 94, 51, 0.05) 0%, rgba(23, 162, 184, 0.05) 100%);
}
.products-coverage .coverage__header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 44px;
}
.products-coverage .coverage__title {
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 1.1;
  color: rgb(31, 29, 29);
  margin: 0 0 12px;
}
.products-coverage .coverage__subtitle,
.products-coverage .coverage__desc {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  color: rgba(31, 29, 29, 0.8);
}
.products-coverage .coverage__button {
    background-color: rgb(248, 94, 51);
    color: rgb(255, 255, 255);
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    height: 50px;
    display: inline-block;
    position: relative;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 50px;
    transition: 0.3s;
    padding: 15px 25px;
}
.products-coverage .coverage__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}
.products-coverage .coverage__table-wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}
.products-coverage .coverage__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Golos Text", sans-serif;
}
.products-coverage .coverage__table thead th {
  text-align: center;
  font-size: 14px;
  color: rgba(31, 29, 29, 0.8);
  padding: 18px 20px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  vertical-align: bottom;
}
.products-coverage .coverage__table thead th:first-child {
  text-align: left;
}
.products-coverage .coverage__table tbody td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
  font-size: 14px;
  color: rgb(31, 29, 29);
}
.products-coverage .coverage__table tbody td:first-child {
  text-align: left;
}
.products-coverage .coverage__table tbody tr:last-child td {
  border-bottom: none;
}
.products-coverage .cov__icon {
  width: 26px;
  height: 26px;
  display: inline-block;
}

@media (max-width: 1200px) {
  .products-coverage .coverage__header {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 775px) {
  .products-coverage .coverage__title {
    font-size: 42px;
  }
  .products-coverage .coverage__table thead {
    display: none;
  }
  .products-coverage .coverage__table tbody td:first-child {
    font-weight: 600;
  }
  .products-coverage .coverage__table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.products-why {
  position: relative;
  padding: 80px 0;
  background-image: url("./img/bg22.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.products-why::before {
  display: none;
}
.products-why .container {
  position: relative;
  z-index: 1;
}
.products-why__title {
  text-align: center;
  color: #fff;
  font-family: "Amurg", sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 1.1;
  margin: 0 0 32px;
}
.products-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(23.6px);
          backdrop-filter: blur(23.6px);
  border-radius: 20px;
  padding: 20px;
  color: #fff;
}
.why-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.19);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.why-card__icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}
.why-card__title {
  font-family: "Golos Text", sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 12px;
  color: #fff;
}
.why-card__text {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.95;
  color: rgb(233, 233, 233);
}

@media (max-width: 1200px) {
  .products-why__title {
    font-size: 46px;
  }
  .products-why__grid {
    grid-template-columns: 1fr;
  }
}
/* Products main wrapper padding */
/* Products: steps background override */
.products .steps {
  background-image: url("./img/Rectangle 9426.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Coverage: steps background override */
.coverage .steps {
  background-image: url("./img/Rectangle 9422222.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Products: hero background override */
.products .hero__background {
  background-image: url("./img/hero2221.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Products: hero background override */
.products .hero {
  position: relative;
}

.products .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.products .hero__background {
  background-image: url("./img/hero2221.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-template-coverage .header__nav a {
  color: #fff;
}

.page-template-coverage .header__nav .sub-menu a {
  color: #000;
}

.page-template-coverage .header__nav .current-menu-item a {
  color: rgb(248, 94, 51);
}

@media (max-width: 768px) {
  .coverage .hero__title {
    font-size: 40px;
  }
  .coverage .hero__subtitle {
    font-size: 15px;
  }
  .coverage .hero__button {
    max-width: 320px;
  }
  .coverage .hero__card {
    max-width: 350px;
  }
}
@media (max-width: 575px) {
  .coverage .hero {
    padding: 40px 0;
  }
  .coverage .hero__title {
    font-size: 32px;
    line-height: 1.2;
  }
  .coverage .hero__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .coverage .hero__button {
    max-width: 100%;
    font-size: 16px;
    padding: 14px 24px;
  }
  .coverage .hero__cards {
    gap: 16px;
    margin-top: 30px;
  }
  .coverage .hero__card {
    padding: 16px;
    max-width: 100%;
  }
  .coverage .hero__card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  .coverage .hero__card-title {
    font-size: 14px;
  }
  .products .hero__background {
    background-position: 50% 36%;
    background-size: contain;
  }
  .products .hero {
    background-color: #fff;
  }
  .products .hero::before {
    display: none;
  }
  .prod-card__title {
    text-align: left;
    font-size: 20px;
  }
  .prod-card__desc {
    font-size: 14px;
  }
  .products-coverage .coverage__title, .products-why__title {
    font-size: 32px;
  }
  .products-coverage .coverage__button {
    max-width: 100%;
  }
  .products .why-card__title {
    font-size: 26px;
    text-align: left;
  }
  .products .why-card__text {
    font-size: 14px;
  }
}
/* Coverage mobile accordion */
.coverage__accordion {
  display: none;
}

@media (max-width: 990px) {
  .products-coverage .coverage__table-wrap {
    display: none;
  }
  .coverage__accordion {
    display: block;
  }
  .cov-acc {
    border-radius: 16px;
    margin-bottom: 10px;
    overflow: hidden;
    background: transparent;
  }
  .cov-acc__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    font-family: "Golos Text", sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    border-radius: 16px;
  }
  .cov-acc__summary::-webkit-details-marker {
    display: none;
  }
  .cov-acc__arrow {
    width: 13px;
    height: 13px;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
  }
  .cov-acc[open] .cov-acc__arrow {
    transform: rotate(180deg);
  }
  .cov-acc__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;
    border-radius: 16px;
    margin-top: 6px;
    overflow: hidden;
  }
  .cov-acc__list li {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    height: 60px;
    background: #fff;
    position: relative;
    padding: 0 12px;
  }
  .cov-acc__list li::before {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 0;
    width: calc(100% - 24px);
    height: 1px;
    background: rgb(233, 232, 232);
  }
  .cov-acc__list li span {
    font-size: 16px;
  }
  .cov-acc__list img {
    width: 26px;
    height: 26px;
    justify-self: end;
    margin-right: 20px;
  }
  .cov-acc__summary {
    color: inherit;
  }
  /* Тонировка изображения-стрелки под оранжевый */
  .cov-acc[open] .cov-acc__arrow {
    /* прибл. к rgba(248, 94, 51, 1) */
    filter: invert(52%) sepia(86%) saturate(1472%) hue-rotate(339deg) brightness(99%) contrast(98%);
  }
  .cov-acc__list li:last-child::before {
    display: none;
  }
  .page-template-products .hero__title {
    color: #fff;
  }
  .page-template-products .hero__subtitle {
    color: #fff;
  }
  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .header {
    padding: 0;
  }
  .home .hero {
    padding: 40px 0;
  }
  .home .hero__text {
    margin-bottom: 0;
  }
  .business__cards {
    grid-template-columns: 1fr!important;
  }
  .page-template-products .hero__title {
    color: rgb(31, 29, 29);
    text-align: center;
  }
  .page-template-products .hero__subtitle {
    color: rgb(31, 29, 29);
    text-align: center;
  }
  .general-liability__cards {
    grid-template-columns: 1fr;
  }
  .general-liability__title {
    font-size: 28px;
  }
  .what-protects__header {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .what-protects__title {
    font-size: 36px;
  }
  .what-protects__description {
    font-size: 16px;
  }
  .what-protects__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .what-protects__card {
    padding: 24px;
  }
  .what-protects__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
  .what-protects__svg {
    width: 32px;
    height: 32px;
  }
  .what-protects__card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .what-protects__card-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .what-is-liability__content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 30px;
  }
  .what-is-liability__left {
    grid-column: 1;
    grid-row: 1;
  }
  .what-is-liability__right {
    grid-column: 1;
    grid-row: 2;
  }
  .what-is-liability__bottom-left {
    grid-column: 1;
    grid-row: 3;
  }
  .what-is-liability__bottom-right {
    grid-column: 1;
    grid-row: 4;
  }
  .what-is-liability__title {
    font-size: 36px;
  }
  .what-is-liability__description {
    font-size: 16px;
  }
  .what-is-liability__image {
    height: 300px;
  }
}
.what-protects {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.what-protects__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("./img/Trust:Why_omg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.what-protects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 29, 29, 0.2);
  z-index: 2;
}
.what-protects::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90.7deg, #000000 0.63%, rgba(0, 0, 0, 0.4) 99.43%);
  z-index: 3;
}
.what-protects__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.what-protects__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.what-protects__title {
  font-size: 58px;
  line-height: 1.1;
  color: rgb(255, 255, 255);
  margin: 0;
}
.what-protects__description {
  font-size: 18px;
  line-height: 1.6;
  color: rgb(255, 255, 255);
  opacity: 0.9;
  margin: 0;
}
.what-protects__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.what-protects__card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.what-protects__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(248, 94, 51, 0.15);
  background: rgba(255, 255, 255, 0.15);
}
.what-protects__icon {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.what-protects__svg {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}
.what-protects__card-title {
  font-family: "Amurg", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-bottom: 16px;
  text-align: left;
}
.what-protects__card-description {
  font-size: 16px;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  opacity: 0.9;
  margin-bottom: 24px;
  text-align: left;
}
.what-protects__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: rgb(248, 94, 51);
  color: rgb(255, 255, 255);
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  margin-top: auto;
}
.what-protects__button:hover {
  background-color: #f03b08;
  transform: translateY(-2px);
}
.what-protects__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  stroke: currentColor;
}
.what-protects__button:hover .what-protects__arrow {
  transform: translate(4px, -4px);
}

.what-is-liability {
  padding: 80px 0;
  background-color: rgb(255, 255, 255);
}
.what-is-liability__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 60px;
  align-items: start;
}
.what-is-liability__left {
  grid-column: 1;
  grid-row: 1;
}
.what-is-liability__right {
  grid-column: 2;
  grid-row: 1;
}
.what-is-liability__bottom-left {
  grid-column: 1;
  grid-row: 2;
}
.what-is-liability__bottom-right {
  grid-column: 2;
  grid-row: 2;
}
.what-is-liability__title {
  font-size: 58px;
  line-height: 1.1;
  color: rgb(31, 29, 29);
  margin-bottom: 24px;
}
.what-is-liability__title span {
  color: rgb(248, 94, 51);
}
.what-is-liability__description {
  font-size: 18px;
  line-height: 1.6;
  color: rgb(31, 29, 29);
  opacity: 0.8;
  margin: 0;
}
.what-is-liability__image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.what-is-liability__image:hover {
  transform: translateY(-4px);
}
.what-is-liability__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.what-is-liability__image:hover .what-is-liability__img {
  transform: scale(1.05);
}

.general-liability {
  padding: 80px 0;
  background-color: rgb(255, 255, 255);
}
.general-liability__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.general-liability__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.general-liability__title {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: rgb(31, 29, 29);
}
.general-liability__title span {
  color: rgb(248, 94, 51);
}
.general-liability__description {
  font-size: 18px;
  line-height: 1.6;
  color: rgb(31, 29, 29);
  opacity: 0.8;
}
.general-liability__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.general-liability__card {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.general-liability__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.general-liability__icon {
  width: 80px;
  height: 80px;
  background: rgb(255, 255, 255);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.general-liability__svg {
  width: 40px;
  height: 40px;
}
.general-liability__card-title {
  font-family: "Amurg", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: rgb(31, 29, 29);
  margin-bottom: 16px;
}
.general-liability__card-description {
  font-size: 16px;
  line-height: 1.5;
  color: rgb(31, 29, 29);
  opacity: 0.8;
}

.home .hero__content, .page-template-products .hero__content {
  align-items: flex-start;
}

.page-template-coverage .header {
  background: rgb(0, 0, 0);
}
.page-template-coverage .header .nav__link {
  color: rgb(255, 255, 255);
}
.page-template-coverage .header .nav__link:hover {
  color: rgb(248, 94, 51);
}
.page-template-coverage .header .nav__link--active {
  color: rgb(248, 94, 51);
}
.page-template-coverage .hero {
  background-image: url("./img/conv_hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.page-template-coverage .hero::after, .page-template-coverage .hero::before {
  display: none;
}

.coverage .hero__text {
  max-width: 778px;
}
.coverage .hero__text .hero__subtitle {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.coverage .hero {
  position: relative;
  overflow: hidden;
}
.coverage .hero__background {
  background-image: url("./img/Rectangle 9440.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.coverage .hero__content {
  position: relative;
  z-index: 4;
}
.coverage .hero__title {
  font-size: 68px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.coverage .hero__subtitle {
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.9;
  margin-bottom: 32px;
}
.coverage .hero__button {
  width: 100%;
  max-width: 303px;
  background: rgb(248, 94, 51);
  transition: all 0.3s ease;
}
.coverage .hero__button:hover {
  background: rgba(248, 94, 51, 0.8);
}
.coverage .hero__cards {
  margin-top: 60px;
}
.coverage .hero__card {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.69);
}
.coverage .hero__card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(248, 94, 51, 0.3);
  box-shadow: 0 12px 40px rgba(248, 94, 51, 0.15);
}
.coverage .hero__card-icon {
  background: linear-gradient(144.95deg, rgba(255, 255, 255, 0.19) 8.42%, rgba(255, 255, 255, 0.19) 92.07%);
  border: 1px solid rgba(255, 255, 255, 0.69);
}
.coverage .hero__card-icon .hero__card-svg {
  filter: brightness(0) invert(1);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	display:none;
}

.wpcf7-response-output {
    background-color: #fff;
}

@media (max-width: 990px) {
  .hero__title {
    color: #2D2D2D;
    font-size: 36px;
  }
  .contact .hero__title {
	color: #fff;
  }
  
  .contact .hero__text {
	margin-bottom: 0;
  }
  .hero__subtitle {
    color: #fff;
    font-size: 14px;
  }
  .hero__cards {
    flex-direction: column;
  }
  .hero__card {
    flex-direction: row;
    height: 68px;
  }
  .hero__card-icon {
    width: 46px;
    height: 46px;
  }
  .hero__card-icon .hero__card-svg {
    width: 24px;
    height: 24px;
  }
  .about {
    margin-top: 10px;
  }
  .what-protects__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .what-protects__title {
    font-size: 32px;
  }
  .what-protects__description {
    font-size: 16px;
  }
  .what-protects__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .what-is-liability__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .what-is-liability__right {
    width: 100%;
  }
  .what-is-liability__bottom-left {
    width: 100%;
    order: 3;
  }
  .hero__card-text {
    text-align: left;
  }
  .what-protects__icon {
    width: 46px;
    height: 46px;
  }
  .what-protects__svg {
    width: 24px;
    height: 24px;
  }
  .what-protects__card {
    padding: 16px;
  }
  .what-is-liability__title {
    font-size: 32px;
  }
  .question .contact-form__cta-button {
    max-width: 100%;
  }
  .question .contact-form__left p {
    width: 100%;
  }
  .hero__cards {
    margin-top: 0;
  }
  .hero__card-icon {
    margin-bottom: 0;
  }
  .hero__background {
    background-color: rgb(255, 255, 255);
  }
  
  .coverage .hero__background {
    background: #000;
    opacity: 0.1;
    z-index: 5;
  }
  
  .hero .form__label {
    text-align: left;
  }
  .about {
    padding-top: 0;
  }
  .hero__content {
    align-items: center!important;
  }
  .question .contact-form__cta-button {
    max-width: 100%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
	text-align: center;
  }
}

.iagree {
    text-align: left;
    margin: 0 0 25px;
}

.iagree span  {
	color:#fff;
	font-size:14px;
}

.iagree a, .iagree a:hover, .iagree a:focus, .iagree a:active  {
	color:rgb(248, 94, 51);
	font-size:14px;
}