:root {
  --main-color: #000;
  --turq-color: #15E0D6;
  --blue-color: #18335C;
  --section-margin: 96px;
  --font: 'PF DinDisplay Pro';
  --container: 1470px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    margin: 0;
}


.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}

.hidden {
    display: none;
}
.firstscreen__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 67%;
    justify-content: center;
}

.link {
    font-size: 18px;
    font-weight: 400;
    padding: 0 24px;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    height: 56px;
    border-radius: 8px;
}

.link--turq {
    background: var( --turq-color);
}

a, a:hover {
    text-decoration: none;
}

.top {
    display: flex;
    justify-content: space-between;
}

.header {
    position: relative;
    margin: 16px 0 24px;
}


.wrap {
    border-radius: 80px;
    padding-left: 50px;
    padding-right: 50px;
}

.firstscreen__wrap {
    background: #ebf0f8;
    padding-top: 70px;
    padding-bottom: 70px;
}

.firstscreen__meta h1 {
    font-weight: 700;
    font-size: 56px;
    color: #000;
    margin: 0 0 48px;
}

.firstscreen .items {
    background: rgba(106, 253, 239, 0.4);
    border-radius: 24px;
    padding: 90px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.firstscreen .items .item {
    font-weight: 400;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1.2;
}

p {
    margin: 0;
}

.item__img {
    display: flex;
    align-items: center;
}



.firstscreen__wrap {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 24px;
    position: relative;
    min-height: 730px;
}

.firstscreen__img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translate(-39%, 0%);
    padding: 30px;
}

.firstscreen__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.edges__wrap {
    background: #18335c;
}

.why__wrap, .edges__wrap {
    padding-top: 56px;
    padding-bottom: 56px;
}

.edges__wrap h2 {
    color: #fff;
}

.title-medium {
    font-weight: 700;
    font-size: 56px;
  
    margin: 0 0 72px;
}

.edges .items {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
    padding: 0 35px;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

.edges .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.edges .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.edges .item:nth-child(even) p {
    order: 1;
    text-align: center;
}

.edges .item:nth-child(even) div {
    order: 2;
}

.why__wrap {
    background: #f2f8fe;
}

.why__wrap {
    position: relative;
    min-height: 800px;
}

.why__img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 50%;
    width: 720px;
    top: 50%;
    transform: translate(0%, -50%);
}

.why__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why__wrap h2, .why__block {
    position: relative;
}

.why__block .items {
    display: flex;
    justify-content: space-between;
}

.why__block .items > div {
    flex: 0 0 33%;
    width: 100%;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why .title-medium {
    position: relative;
    z-index: 1;
}

.why__block .items > div:first-child div {
    text-align: right;
}


.column:first-child .item:nth-child(2) {
    padding-right: 70px;
}

.column:first-child .item:nth-child(3) {
    padding-right: 120px;
}

.column:first-child .item:nth-child(4) {
    padding-right: 140px;
}

.column:last-child .item:nth-child(2) {
    padding-left: 70px;
}

.column:last-child .item:nth-child(3) {
    padding-left: 120px;
}

.column:last-child .item:nth-child(4) {
    padding-left: 140px;
}

.column p {
    max-width: 380px;
}

.faq .title-medium {
    color: #fff;
    margin: 0 0 24px;
}

.faq-block {
    color: #fff;
    background: #18335c;
    border-radius: 24px;
    padding: 48px 40px;
}

.question span {
    display: flex;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #15E0D6;
    border-radius: 50%;
    position: relative;
}

.question span:before, .question span:after {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #18335c;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: .12s;
}

.question span:after {
    transform: translate(-50%, -50%) rotate(90deg)!important;
}

.question {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 400;
    font-size: 28px;
    justify-content: space-between;
    padding: 14px 0;
    border-top:  1px solid rgba(106, 253, 239, 0.2);
}

.answer {
    display: none;
    border-top: 1px solid rgba(106, 253, 239, 0.2);
    padding: 30px 24px;
}

.faq-item.open {}

.faq-item.open .question span:after {
    transform: translate(-50%, -50%) rotate(0deg)!important;
}

.answer strong {
    font-weight: 700;
}

.answer p {
    font-size: 16px;
    margin: 0 0 15px;
    font-weight: 400;
}

.answer p:last-child {
    margin: 0;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(106, 253, 239, 0.2);
}

.faq__wrap {
    margin-top: -100px;
    z-index: 1;
    position: relative;
}

.fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
    column-gap: 24px;
}
.nice-select .current:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%) rotate(0deg);
    right: 16px;
    background: url(/kasko-zayavka/wp-content/themes/express/img/select.svg);
    transition: .12s;
}

.nice-select .current {
    padding-right: 50px;
}

.nice-select.open .current:before {
    transform: translate(0%, -50%) rotate(180deg);
}
.fields input {
    border: 1px solid #18335c;
    border-radius: 9px;
    padding: 0px 16px;
    width: 100%;
    height: 56px;
    background: #ebf0f8;
    font-weight: 300;
    font-size: 22px;
    color: #444;
}

.fields input::placeholder {
    color: #444;
}

input.wpcf7-not-valid::placeholder {
    color: #f00;
}

span.wpcf7-not-valid-tip {
    display: none;
}

.field p.label {
    font-weight: 300;
    font-size: 22px;
    color: #444;
    display: block;
    text-align: center;
    margin: 0 0 10px;
}

.nice-select .current {
    border: 1px solid #18335c;
    border-radius: 9px;
    padding: 0px 16px;
    width: 100%;
    height: 56px;
    background: #ebf0f8;
    font-weight: 400;
    font-size: 22px;
    color: #444;
    display: flex;
    align-items: center;
}



.field--check span.wpcf7-checkbox span {
    margin: 0;
}

.field--check span.wpcf7-checkbox {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.field--check span.wpcf7-checkbox > span > span {
    display: inline-flex;
    position: relative;
}




.field--check span.wpcf7-checkbox > span label > span {
    display: inline-flex;
    position: relative;
}

.field--check span.wpcf7-checkbox > span label> span:before, 
.field--check span.wpcf7-checkbox > span  label> span:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.field--check span.wpcf7-checkbox > span label > span:before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #000;
    left: 0;
}

.field--check span.wpcf7-checkbox > span label > span {
    padding-left: 30px;
}

.field--check span.wpcf7-checkbox > span label > span:after {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 8px;
    left: 6px;
    opacity: 0;
}

.field--check span.wpcf7-checkbox > span label > input:checked ~ span:after {
    opacity: 1;
}

.field--check span.wpcf7-checkbox > span label > input {
  display: none;
}













.field-accept label span {
    display: block;
    padding-left: 40px;
    font-weight: 400;
    font-size: 18px;
    color: #000;
}

.field-accept span {
    margin: 0;
    position: relative;
}

.field-accept label span:before, .field-accept label span:after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(0%, -50%);
}

.field-accept label span:before {
    background: url(/kasko-zayavka/wp-content/themes/express/img/check-empty.svg);
}
.field.field-accept input {
    display: none;
}
.field-accept label input:checked ~ span:before {
    opacity: 0;
}

.field-accept label input:checked ~ span:after {
    opacity: 1;
    background: url(/kasko-zayavka/wp-content/themes/express/img/check.svg);
}

.field-accept label input span:after {
    opacity: 0;
}

.field.field-accept input {
    display: none;
}

.field--submit button {
    background: #15e0d6;
    border: 0;
    border-radius: 8px;
    height: 56px;
    font-weight: 400;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.field.field--submit, .field.field-accept {
    grid-area: auto / 1 / auto / 3;
}


.field.field-accept {
    padding: 16px 0 8px;
}

.form-block__wrap h2 {
    font-weight: 700;
    font-size: 54px;
    margin: 0 0 32px;
}
.form-block__wrap {
    max-width: 880px;
    margin: 0 auto;
}

.wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.sent .wpcf7-response-output {
    text-align: center;
    border: 0;
    margin: 0;
    padding: 12px 0;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    transform: translate(0%, 100%);
}


span.wpcf7-checkbox.wpcf7-not-valid span {
    color: #f00;
}
form.wpcf7-form {
    position: relative;
}

.footer__block {
    padding-top: 25px;
    border-top: 2px solid  #18335c;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.footer__logo {
    padding-left: 50px;
}

.footer__logo img {
    max-width: 310px;
    height: auto;
}


.footer__menu {
    grid-area: auto / 1 / auto / 3;
    padding: 0 0 50px;
}
.field--check span.wpcf7-checkbox > span label > span {
    padding-left: 30px;
    cursor: pointer;
}
.footer__menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer__menu ul a {
    font-weight: 400;
    font-size: 18px;
    color: #444;
}

.footer__contact > p {
    font-weight: 400;
    font-size: 18px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.footer__contact a {
    color: #0a142f;
}

.social span {
    font-size: 18px;
    color: rgb(68 68 68 / 50%);
    padding-right: 12px;
}

.social p {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social p a {
    display: flex;
    align-items: center;
}

p.copy {
    text-align: center;
    padding: 32px 0 55px;
    border-top: 1px solid rgb(24 51 92 / 20%);
    font-weight: 400;
    font-size: 18px;
    color: rgb(10 20 47 / 50%);
}

.footer__contact {
    padding: 0 0 64px;
}

main section {
    margin: 0 0 96px;
}

.field--submit button {
  cursor: pointer;
}
  .form-block__wrap h2 {
    text-align: center;
}
section.why {
    margin: 0;
}
.fields input:focus {
    outline: none;
}

.field.field-num input {
    padding-left: 56px;
}

.field.field-num span {
    display: block;
    position: relative;
}

.field.field-num span:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    left: 21px;
    width: 20px;
    height: 30px;
    background: url(/kasko-zayavka/wp-content/themes/express/img/ua.svg) no-repeat center;
}
.tablet {
    display: none;
}
@media (max-width: 1440px) {
  .firstscreen__meta h1 {
      font-size: 50px;
  }

}
@media (max-width: 1366px) {
  .firstscreen__meta {
      max-width: 55%;
  }
  .edges .items {
      padding: 0;
  }
  .firstscreen__img {
      transform: translate(-35%, 0%);
  }
}

.page-inner {
    padding: 0 0 72px;
}

.page-inner p {
    font-size: 16px;
    font-weight: 400;
}

.page-inner h2, .page-inner h3, .page-inner h4, .page-inner h5, .page-inner h6 {
    font-weight: 600;
}

.page-inner h2 {
    font-size: 24px;
}

.page-inner h3 {
    font-size: 22px;
}

.page-error h1 span {
    display: block;
    text-align: center;
    font-size: 120px;
}
.page-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 80px;
}

.edges__link {
    display: flex;
    justify-content: center;
    margin-top: 72px;
}
.edges__link a {
    min-width: 316px;
    justify-content: center;
    font-size: 18px;
}

@media (max-width: 1199px) {

    .edges__link {
    margin-top: 40px;
}
  .why__wrap, .edges__wrap {
    padding: 48px 24px;
}
.firstscreen__content {
    max-width: 715px;
    margin: 0 auto;
    width: 100%;
}
.why__wrap {
    min-height: auto;
}

.why__img {
    position: relative;
    transform: translate(0);
    top: 0;
    left: 0;
}
.why__block {
    position: absolute;
    width: auto;
    left: 24px;
    right: 24px;
    top: 132px;
}
.why__block .items > div {
    flex: 0 0 40%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.why__img:before {
    content: '';
    display: block;
    padding-top: 100%;
}
.why__wrap.wrap {
    padding-bottom: 0;
}
.why__block .items > div {

}
.why__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
}
.title-medium {
    margin: 0 0 40px;
}
.edges .items {
    padding: 0 0px;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    gap: 40px;
}
.edges .item {
    width: calc((100% - 160px) / 3);
}
.edges .item:nth-child(even) div {
    order: 1;
}
.firstscreen__meta {
        max-width: 100%;
}
img.logo-top {
    max-width: 180px;
}
  .tablet {
    padding-top: 16px;
    text-align: center;
}

.firstscreen__img {
    position: relative;
    transform: translate(0);
    right: auto;
    left: 0;
    padding: 0;
    z-index: 1;
}
.firstscreen .items {
    top: 70px;
    right: -24px;
}
.firstscreen__content {
    padding: 24px 0;
    position: relative;
}

.firstscreen__img img {
    max-height: 733px;
    width: auto;
}

.firstscreen .items {
    position: absolute;
   
    min-height: 589px;
    bottom: auto;
    height: auto;
    padding: 90px 24px 24px 56px;
    max-width: 315px;
}

.firstscreen__wrap {
    padding: 48px 24px;
}

.wrap {
    border-radius: 40px;
}

.firstscreen__img img {
    transform: translate(-6%, 0%);
}

.firstscreen__wrap {
    grid-template-columns: 1fr;
    gap: 16px;
}
.firstscreen__meta a {
    display: none;
}
.firstscreen__meta h1 {
    margin: 0;
    font-size: 40px;
}
.tablet {
  display: block;
}
.tablet {
    padding-top: 16px;
}

  .faq .title-medium {
    margin: 0 0 32px;
}
  .form-block__wrap h2 {
      font-size: 40px;
  }
  .title-medium {
    font-size: 40px;
  }
  .faq-block {
    padding: 30px 25px;
}
.faq__wrap {
    margin: 0;
    padding: 0 !important;
}
.question {
    padding: 14px 0;
    font-size: 24px;
}
.answer {
    padding: 30px 16px;
}
    main section {
      margin: 0 0 80px;
  }
  .nice-select .current,
  .nice-select .option,
  .fields input,
  .field-accept label span,
  .field p.label {
    font-size: 18px!important;
}
}


@media (max-width: 991px) {

.column .item p {
    padding: 0!important;
    max-width: 210px;
    font-size: 16px!important;
}

.column:last-child .item {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    text-align: right;
}
.column:first-child .item {
    text-align: left!important;
}
.why__block .items > div {
        flex: 0 0 29%;
}
.column .item {
    padding: 0 !important;
}
.column:first-child .item:first-child {
    text-align: right!important;
}

main section {
    margin: 0 0 72px;
}
.footer__logo {
    padding-left: 32px;
}
.footer__logo img {
    max-width: 260px;
}
.footer__contact {
    padding: 0 0 44px;
}
.footer__contact > p {
    gap: 16px;
}
p.copy {
    padding: 32px 0;
}
}
.fields input:focus {
    outline: none;
}
.why-slider {
  display: none;
}
@media (max-width: 743px) {

.edges__link {
    margin-top: 32px;
}
 .fields > div:nth-child(1) {
    order: 1;
}

.fields > div:nth-child(2) {
    order: 4;
}

.fields > div:nth-child(3) {
    order: 2;
}

.fields > div:nth-child(4) {
    order: 4;
}

.fields > div:nth-child(5) {
    order: 3;
}

.fields > div:nth-child(6) {
    order: 6;
}

.fields > div:nth-child(7) {
    order: 7;
}

.fields > div:nth-child(8) {
    order: 8;
}

.fields > div:nth-child(9) {
    order: 9;
}

.fields > div:nth-child(10) {
    order: 10;
}
.why-slider {
  display: block;
}
.prev img {
    transform: rotate(180deg);
}
p.copy {
    font-size: 14px;
}
.why-slider {
    margin: 0 0px;
    position: relative;
    z-index: 1;
}.social span {
    font-size: 16px;
    padding-right: 0px;
}
.slider-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0%;
    transform: translate(0px, -50%);
    z-index: 9;
    left: 0;
    width: 100%;
}
.why__img {
    max-width: 100%;
}
.swiper-slide {
    font-size: 18px;
    text-align: center;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 16px;
}
.why__wrap.wrap {
    padding-left: 0;
    padding-right: 0;
}
.why__img:after {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(2, 197, 179, 0.8);
    position: absolute;
    filter: blur(70px);
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 32px;
    z-index: -1;
}
.why .title-medium {
    padding: 0 24px;
}
  .why__block .items {
    display: none;
}
  .firstscreen__content {
    padding: 0;
}
.title-medium {
    font-size: 24px;
}
.edges .item {
    width: 100%;
}
.edges .items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
    column-gap: 16px;
}
.top .link {
    height: 40px;
    padding: 0 16px;
    gap: 8px;
    font-size: 16px;
}
.top {
    align-items: center;
}
img.logo-top {
    max-width: 120px;
}
.header {
    padding: 20px 0 55px;
    margin: 0;
}
.top {
    align-items: center;
    height: 40px;
}
.firstscreen .items {
    position: relative;
    min-height: auto;
    max-width: 100%;
    top: 0;
    left: 0;
    padding: 40px 24px;
}
.firstscreen__img img {
    width: 100%;
    max-width: 250px;
    transform: translate(0) rotate(90deg);
    height: auto;
}
.firstscreen__img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 175px;
}
.firstscreen__meta h1 {
    font-size: 24px;
}
.firstscreen__meta {
    padding-bottom: 32px;
}
.firstscreen__wrap {
    padding: 40px 16px;
}
    .tablet a {
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }
  .nice-select .current,
  .nice-select .option,
  .fields input,
  .field p.label {
    font-size: 16px!important;
}
.faq-block {
    padding: 20px 15px;
}
.title-medium {
    font-size: 32px;
}
.question {
    font-size: 16px;
}
.question span {
    min-width: 32px;
    width: 32px;
    height: 32px;
}
  .faq .title-medium {
        margin: 0 0 16px;
    }
  .answer p {
    font-size: 14px;
    margin: 0 0 15px;
    font-weight: 400;
}
.field-accept label span {
        font-size: 14px !important;
    }
  .form-block__wrap h2 {
    font-size: 24px;
}
.fields > div {
    grid-area: auto !important;
}
.fields {
    grid-template-columns: 1fr;
}
.footer__menu ul {
    flex-wrap: wrap;
    gap: 20px;
}
.footer__menu {
    padding: 0 0 24px;
}
.footer__logo {
    padding-left: 0px;
    text-align: center;
}
.footer__logo img {
    max-width: 120px;
}
.footer__block {
    grid-template-columns: 1fr;
}
.footer__menu {
    grid-area: auto;
}
.footer__menu ul a,
.footer__contact > p{
    font-size: 16px;
}.footer__contact svg {
  min-width: 24px;
}
.footer__contact {
    gap: 16px;
    padding: 0 0 40px;
    max-width: 210px;
    margin: auto;
}
}

@media (max-width: 425px) {
    .edges__link a {
        min-width: auto;
        width: 100%;
    }

    .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.sent .wpcf7-response-output {
      
        font-size: 14px;
    }

}

/* PenSky styles */
.answer a{
	color: white;
}