/* загальні стилі */
:root {
  --font-family: 'Open Sans', sans-serif;
  --second-family: 'Rubik', sans-serif;
  --third-family: 'Inter', sans-serif;
  --font3: 'Lobster', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
}
.subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

/* header */

.header {
  border-bottom: 1px solid #ccc;
}
.header_line {
  padding-top: 20px;
  padding-bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.burger {
  display: none;

  cursor: pointer;
}
.header_search {
}

.header_menu-search {
  position: relative;
  cursor: pointer;
}
.header_menu-search img {
  position: absolute;
  right: 10px;
  top: 0;
}
.search {
  width: 151px;
  height: 28px;
  padding: 0 35px 0 15px;
  border-radius: 15px;

  background: #f2f2f2;
}
.header_proff {
  display: flex;
  align-items: center;
  gap: 4px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #007fac;

  cursor: pointer;
}
.mobile_heder {
  display: none;
}
.mobile_heder-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.mobile_menu-list {
  display: flex;
  align-items: center;
  gap: 15px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 10px;
  color: #6c6c6c;
}

.circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  fill: #fff;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.22);

  display: flex;
  justify-content: center;
  align-items: center;
}

.cart_number span {
  font-weight: 600;
  font-size: 10px;
  color: #007fac;
}

/* ./ header */

/* licenses */

.licenses {
  position: relative;
  height: 505px;
  background-color: #f6f7fc;
}
.images {
}

.comp {
  max-width: 450px;
  position: absolute;
  right: 1%;
  top: 5%;
  z-index: 2;
}

.line {
  position: absolute;
  left: -10%;
  bottom: 5%;
  width: 100%;
}
.licenses_text {
  position: absolute;
  z-index: 3;

  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.licenses_title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 71px;
  color: #042c5e;
}

.licenses_text .licenses_title:last-of-type {
  margin-left: 100px;
}
/* ./ licenses */

/* risks */
.risks {
  margin: 100px 0;
  overflow: hidden;
}

.risks_info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  position: relative;
}
.risks_title {
  max-width: 630px;
  margin-bottom: 50px;
  color: #092d57;
}
.risks_lists {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.risks_lists li {
  list-style-type: disc;
}

.risks_li {
  margin-left: 15px;
}
.risks_li::marker {
  color: #e63946;
}

.risks_li-blue {
  list-style: none !important;
  position: relative;
  padding-left: 30px;
}

.risks_li-blue::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: linear-gradient(108deg, #0182ae 0%, #01a4c1 100%);
  border-radius: 50%;
}

.risks_images img {
  position: absolute;
  right: -27%;
  top: -32px;
  z-index: -1;
}
/* ./ risks */

/* original license */
.carts {
  display: flex;
  gap: 20px;
  align-items: center;

  flex-wrap: wrap;
}

.cart {
  width: 270px;
  height: max-content;

  box-shadow: 0 0 8px 0 rgba(151, 176, 181, 0.21);
  background: #fff;

  font-family: var(--font-family);
}

.cart_content {
  padding: 20px;
  border-bottom: 1px solid #c4c4c4;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
}
.cart_content a {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart_img {
  margin: 0 auto;
  max-width: 150px;
}

.cart_text {
  font-weight: 600;
  font-size: 14px;
  line-height: 156%;
  color: #383838;
}

.cart_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stock_star {
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: #18a826;
}

.stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.price {
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #007fac;
}

.cart_button {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart_button span {
}
.cart_btn {
  width: 80%;
  height: 45px;
  background: #007fac;

  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
/* ./ original license */

/* reviews */
.reviews {
  padding: 50px;
  margin-top: 100px;
  background: #e6f2fe;
  display: block;
}

.reviews_title {
  color: #092d57;
}

.reviews_subtitle {
  color: #01285a;
}

.review_number {
  margin-top: 40px;
  margin-bottom: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #01285a;
}

.review_number span {
  margin-right: 10px;
  font-weight: 700;
  font-size: 28px;
  line-height: 140%;
}

.cart_review {
  max-width: 330px;
  margin-top: 50px;
  margin-right: 40px;
  padding: 20px 40px 20px 20px;
  box-shadow: 0 0 8px 0 rgba(151, 176, 181, 0.21);
  background: #fff;
}
.cart_review-text {
  padding: 20px 0;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000;

  border-bottom: 1px solid #f3f4f6;
}

.client_reviews {
  padding-top: 20px;
  padding-bottom: 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.client_avatar {
  display: flex;
  gap: 10px;
  align-items: center;
}
.client_stars {
  display: flex;
  gap: 3px;
}

.reviews_date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 156%;
  color: #383838;
}

.reviews_product {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 156%;
  color: #383838;
}

/* ./ reviews */

/* info key */
.ifno_key-blocks {
  display: flex;
  position: relative;
}

.ifno_key-blocks img {
  position: absolute;
  z-index: -1;
  right: -40px;
}

.info_key {
  margin: 120px 0 100px;
}
.info_block {
  margin-bottom: 32px;
}

.info_key-text {
  max-width: 650px;
}
.info_key-title {
  margin-bottom: 24px;
}

.licenses-cards {
  margin-top: 40px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}

.licenses-card {
  padding: 30px 20px 20px;
  box-shadow: 0 0 8px 0 rgba(33, 117, 197, 0.21);
  background: #fff;
}

.licenses-card-title {
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: #023e8a;
}
.licenses-card-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
/* ./ info key */

/* types */
.types {
  margin-bottom: 100px;
}

.types_title {
  color: #01285a;
  max-width: 618px;
}

.types_info {
  margin-top: 55px;

  position: relative;
}

.types_bg {
  position: absolute;
  top: -75%;
  right: -17%;
  z-index: -1;
}
.types_info-text {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.types_info-text .types_info-list:last-of-type {
  background-color: white;
}

.types_info-text::before {
  content: '';
  position: absolute;
  top: 35px;
  /* bottom: 0; */
  width: 2px;
  height: 78%;
  left: 30px;
  border: 1px solid #b5d8e4;
  z-index: -1;
}
.types_info-list {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;

  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.types_info-img img {
  min-width: 66px;
  height: 66px;
}

/* ./ types */

/* advanteges */
.advantages {
  margin: 130px 0;

  position: relative;
  overflow: hidden;
}
.advantages_block-info {
}

.advantages_img {
  position: absolute;
  right: -5%;
  top: -26%;
  z-index: -1;
  max-width: 1000px;
}
.advantages_subtitle {
  margin: 32px 0 16px;

  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: #023e8a;
}

.text_subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.confirmation {
  margin-bottom: 60px;
}
.confirmation_check {
  display: flex;
  align-items: start;
  gap: 30px;
}
.confirmation_check-list img {
  max-width: max-content;
  width: 100%;
}
.confirmation_check-title {
  margin-bottom: 14px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.confirmation_check-title span {
  color: #023e8a;
}

.oportunites {
  position: relative;
}

.oportunites_block {
  max-width: 600px;
  padding-bottom: 200px;
}

.oportunites_bg {
  position: absolute;
  top: -105%;
  right: 0%;
  z-index: -1;
}
/* ./ advanteges */

/* footer */
.footer {
  padding: 50px 0 100px 0;
  margin-top: 100px;
  background: #26292d;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.footer_colums {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.footer_colum {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 11px;
}
.footer_logo {
  margin-bottom: 20px;
}
.footer_link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: start;
  color: #fff;

  cursor: pointer;
}

.footer_mail {
  display: flex;
  align-items: center;
  gap: 5px;
}

.subscribe_block {
}
.footer_subscribe {
  max-width: 247px;
  text-align: start;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 10px;
  color: #fff;
}

.subscribe_label {
  margin-top: 8px;
  display: flex;
  align-items: center;
  max-height: 40px;
  overflow: hidden;
}

.subscribe_input {
  background: #595959;
  padding: 11px;
}

.subscribe_btn {
  background: #007fac;
  padding: 10px;
}
/* ./ footer */
.chanchat a {
  font-size: 18px;
  padding: 5px;
  gap: 10px;
  display: flex;
}
.chanchat span {
  top: 10px !important;
  position: relative;
}

.woocommerce ul.product_list_widget-crossels {
  list-style: none outside;
  padding: 0;
  padding-left: 0px;
  margin: 0;
}
.widget_shopping_cart_content-wrap {
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(151, 176, 181, 0.38);
  padding: 15px;
  z-index: 10;
  min-width: 500px;
  position: relative;
}
.widget_shopping_cart_content-crossels {
  margin-top: 40px !important;
}

/* fix media */
@media (max-width: 768px) {
  .reviews {
    padding: 30px 0;
  }
  .oportunites_block {
    padding-bottom: 0px;
  }
  .carts_reviews {
    padding-bottom: 20px;
  }

  .types {
    margin-bottom: 50px;
  }
  .advantages {
    margin: 30px 0;
  }
}

@media (max-width: 580px) {
  .risks {
    margin: 30px 0;
  }
  .info_key {
    margin: 30px 0 30px;
  }

  .licenses-cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .cart_content a {
    height: auto;
  }
  .licenses_text {
    top: 14% !important;
  }

  .licenses_title {
    font-size: 32px !important;
  }
}

/* fix media */
