*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*div,
body,
h1,
span {
    border: 1px solid red;
}*/

@font-face {
    src: url(GILROY-BOLD.TTF);
    font-family: 'Gilroy';
}

@font-face {
    src: url(GILROY-LIGHT.TTF);
    font-family: 'Gilroy-ligt';
}

body {
    font-family: Gilroy, Gilroy-ligt;
    background: url(images/pink.png);
}

@media screen and (min-width: 1200px) and (max-width: 2000px) {
.menu {
    width: 100%;
    max-width: 2000px;
    height: 50px;
    background: url(images/red.png);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.logo a {
    text-decoration: none;
    color: #fff;
}

.nav {
    display: flex;
    gap: 100px;
}

.nav a {
    text-decoration: none;
    font-weight: bold;
    font-family: Gilroy;
    font-size: 14px;
    color: #fff;
}

.menu_button {
    background-color: inherit;
    border: 1px solid #fff;
    width: 250px;
    height: 30px;
    border-radius: 30px;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.menu_button:hover {
    cursor: pointer;
}

.section_one {
    display: flex;
    width: 100%;
    max-width: 2000px;
    height: 100%;
}

.left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 70%;
    height: 700px;
    padding-left: 5%;
}

.left h1 {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 45px;
}

.left p {
    font-family: Gilroy-ligt;
    font-weight: normal;
    font-size: 20px;
}

.item {
    margin-top: 30px;
}

.left_button {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.left_button button {
    background: inherit;
    border: 1px solid #003883;
    border-radius: 20px;
    width: 250px;
    height: 30px;
    font-family: Gilroy;
    color: #003883;
    cursor: pointer;
}

.left_button button:hover {
    background: #003883;
    color: #fff;
}

.popup_extension {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.extension {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 250px;
}

.table_extension {
    width: 1000px;
    height: 250px;
    background: #dee2e6;
    display: flex;
    justify-content: center;
}

.table_extension table {
    width: 1000px;
    border-collapse: collapse;
    table-layout: fixed;
}

.table_extension table caption {
    margin-bottom: 30PX;
}

.table_extension table td {
    border: 1px solid #000;
    text-align: center;
    font-family: Gilroy-ligt;
}

.table_extension table td form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.table_extension table td form input {
    width: 200px;
    height: 20px;
    padding-left: 5px;
    border: none;
    outline: none;
}

.table_extension table td form input:last-child {
    width: 200px;
    height: 20px;
    cursor: pointer;
    background: inherit;
    border: 1px solid #003883;
    border-radius: 10px;
    font-family: Gilroy;
    color: #003883;
}

.table_extension table td form input:last-child:hover {
    background: #003883;
    color: #fff;
}


.richt {
    width: 30%;
    height: 700px;
    display: flex;
    align-items: center;
}

.img {
    width: 350px;
    height: 400px;
    background: url(images/up.jpg) no-repeat;
    background-size: 100% 100%;
}

/*Начало поп-ап---------------------------------------------------*/
.popup {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    padding-top: 20px;
    width: 100%;
    height: 100%;
    overflow: hidden; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: #dee2e6;/* полупрозрачный фон */
}

.popup-content {
    background-color: #fff;
    margin: auto; /* размещение поп-ап в центре экрана */
    padding: 20px;
    border: 1px solid #888;
    width: 550px;
    border-radius: 15px;
}

.heder_popup {
    text-align: center;
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
}

.heder_popup img {
    width: 100px;
    height: 100px;
}

.button_popup {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.button_popup button {
    width: 200px;
    height: 40px;
    border: 1px solid #003883;
    background: #003883;
    border-radius: 10px;
    font-family: Gilroy;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.button_popup button.selected {
    background: transparent;
    color: #003883;
}

.policy {
    width: 500px;
    font-family: Gilroy-ligt, sans-serif;
    font-size: 10px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.policy p {
    text-decoration: none;
    font-family: Gilroy-ligt, sans-serif;
    font-size: 10px;
    color: #006eff;
    cursor: pointer;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.popup-content h2 {
    text-align: center;
    font-family: Gilroy, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #001c45;
    margin-bottom: 20px;
}

.popup-content form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-content form input {
    width: 400px;
    height: 50px;
    border-radius: 15px;
    padding-left: 10px;
}

.popup-content form input:first-child {
    padding-left: 10px;
}

.popup-content form input:last-child {
    border: 1px solid #003883;
    margin-bottom: 20px;
    border-radius: 15px;
    background: #003883;
    font-family: Gilroy, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    box-shadow: 1px 1px 1px #003883,
              inset 2px 3px 5px rgba(0,0,0,0.3),
              inset -2px -3px 5px rgba(255,255,255,0.5);
}

.saving_item {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.your_saving {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 405px;
    text-align: center;
}

/*Конец поп-ап---------------------------------------------------*/

.section_two {
    width: 100%;
    max-width: 2000px;
    height: 800px;
    display: flex;
    justify-content: space-evenly;
}

.card1 {
    width: 300px;
    height: 740px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card1 {
   width: 300px;
   text-align: center; 
   margin-top: 20px;
   margin-bottom: 20px;
}

.item_card1 h2 {
   font-family: Gilroy;
   font-size: 40px;
   font-weight: 700;
}

.fon_card1 {
    width: 300px;
    display: flex;
    justify-content: center;
}

.img_card1 {
    width: 150px;
    height: 160px;
    background: url(images/start.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 20px;
}

.item1_card1 {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.item1_card1 p {
   font-family: Gilroy-ligt; 
   font-size: 14px;
   font-weight: normal;
}

.gift {
    width: 297px;
    margin-top: 40px;
    font-family: Gilroy-ligt;
    font-size: 14px;
    font-weight: bold;
    background: #e01839;
}

.gift p {
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift >label {
    display: block;
}

.gift >label > input[type="radio"] {
    display: none;
}

.gift >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 30px;
    cursor: pointer;
    background: #fff;
}

.gift >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin-top: 20px;
}

.e_gift p {
    font-family: Gilroy;
    font-size: 40px;
    color: #e01839;
}

.e_gift span {
    font-family: Gilroy;
    font-size: 14px;
    width: 255px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 300px;
    margin-top: 40px;
}

.button button {
    width: 250px;
    height: 50px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card2 {
    width: 300px;
    height: 740px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card2 {
   width: 300px;
   text-align: center; 
   margin-top: 20px;
   margin-bottom: 20px;
}

.item_card2 h2 {
   font-family: Gilroy;
   font-size: 40px;
   font-weight: 700;
}

.fon_card2 {
    width: 300px;
    display: flex;
    justify-content: center;
}

.img_card2 {
    width: 150px;
    height: 160px;
    background: url(images/standard.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 20px;
}

.item1_card2 {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.item1_card2 p {
   font-family: Gilroy-ligt; 
   font-size: 14px;
   font-weight: normal;
}

.gift1 {
    width: 297px;
    margin-top: 40px;
    font-family: Gilroy-ligt;
    font-size: 14px;
    font-weight: bold;
    background: #e01839;
}

.gift1 p {
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift1 >label {
    display: block;
}

.gift1 >label > input[type="radio"] {
    display: none;
}

.gift1 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift1 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 30px;
    cursor: pointer;
    background: #fff;
}

.gift1 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin-top: 20px;
}

.e_gift1 p {
    font-family: Gilroy;
    font-size: 40px;
    color: #e01839;
}

.e_gift1 span {
    font-family: Gilroy;
    font-size: 14px;
    width: 255px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 300px;
    margin-top: 40px;
}

.button button {
    width: 250px;
    height: 50px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card3 {
    width: 300px;
    height: 740px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card3 {
   width: 300px;
   text-align: center; 
   margin-top: 20px;
   margin-bottom: 20px;
}

.item_card3 h2 {
   font-family: Gilroy;
   font-size: 38px;
   font-weight: 700;
}

.fon_card3 {
    width: 300px;
    display: flex;
    justify-content: center;
}

.img_card3 {
    width: 150px;
    height: 160px;
    background: url(images/mbusiness.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 20px;
}

.item1_card3 {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.item1_card3 p {
   font-family: Gilroy-ligt; 
   font-size: 14px;
   font-weight: normal;
}

.gift2 {
    width: 297px;
    margin-top: 40px;
    font-family: Gilroy-ligt;
    font-size: 14px;
    font-weight: bold;
    background: #e01839;
}

.gift2 p {
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift2 >label {
    display: block;
}

.gift2 >label > input[type="radio"] {
    display: none;
}

.gift2 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift2 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 30px;
    cursor: pointer;
    background: #fff;
}

.gift2 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin-top: 20px;
}

.e_gift2 p {
    font-family: Gilroy;
    font-size: 40px;
    color: #e01839;
}

.e_gift2 span {
    font-family: Gilroy;
    font-size: 14px;
    width: 257px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 300px;
    margin-top: 40px;
}

.button button {
    width: 250px;
    height: 50px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card4 {
    width: 300px;
    height: 740px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card4 {
   width: 300px;
   text-align: center; 
   margin-top: 20px;
   margin-bottom: 20px;
}

.item_card4 h2 {
   font-family: Gilroy;
   font-size: 38px;
   font-weight: 700;
}

.fon_card4 {
    width: 300px;
    display: flex;
    justify-content: center;
}

.img_card4 {
    width: 150px;
    height: 160px;
    background: url(images/business.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 20px;
}

.item1_card4 {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.item1_card4 p {
   font-family: Gilroy-ligt; 
   font-size: 14px;
   font-weight: normal;
}

.gift3 {
    width: 297px;
    margin-top: 40px;
    font-family: Gilroy-ligt;
    font-size: 14px;
    font-weight: bold;
    background: #e01839;
}

.gift3 p {
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift3 >label {
    display: block;
}

.gift3 >label > input[type="radio"] {
    display: none;
}

.gift3 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift3 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 30px;
    cursor: pointer;
    background: #fff;
}

.gift3 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin-top: 20px;
}

.e_gift3 p {
    font-family: Gilroy;
    font-size: 40px;
    color: #e01839;
}

.e_gift3 span {
    font-family: Gilroy;
    font-size: 14px;
    width: 290px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 300px;
    margin-top: 40px;
}

.button button {
    width: 250px;
    height: 50px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.sravnenie {
    width: 100%;
    max-width: 2000px;
    height: 50px;
    position: fixed;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 4;
}

.link {
    display: flex;
    gap: 100px;
    background: url(images/red.png);
    padding: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.link button {
    background: inherit;
    border: none;
    font-family: Gilroy;
    color: #fff;
    cursor: pointer;
}

.popup_license {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.license_img {
    width: 100%;
    max-width: 2000px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_license img {
    width: 700px;
    height: 500px;
}

.close_license {
    font-size: 38px;
    display: flex;
    justify-content: flex-end;
    color: #fff;
    padding-right: 10px;
    cursor: pointer;
}

.popup_comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.comparison_table {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.table {
    width: 1000px;
    height: 75px;
    background: #dee2e6;
    display: flex;
    justify-content: center;
}

.table table caption {
    font-family: Gilroy;
    font-size: 30px;
    padding: 10px 0 10px 0;
}

.table table {
    width: 1000px;
    border-collapse: collapse;
    table-layout: fixed;
    margin-right: 17px;    
}

.table table thead th {
    font-family: Gilroy;
}

.table table thead th:first-child {
    width: 300px;
}

.table_scrol {
    width: 1000px;
    height: 600px;
    background: #dee2e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: auto;
}

.table_scrol table {
    width: 1000px;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 890px;    
}

.table_scrol table th:first-child {
    text-align: left;
    padding-left: 10px;
    font-family: Gilroy-ligt;
    width: 300px;
    border: 1px solid #000;
}

.table_scrol table td {
    border: 1px solid #000;
    text-align: center;
    font-family: Gilroy-ligt;
}

.table_scrol .check {
    color: red;
    text-align: center;
}

.item_block {
    width: 100%;
    max-width: 2000px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item_block h2 {
    font-family: Gilroy;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
}

.section_three {
    width: 100%;
    max-width: 2000px;
    height: 700px;
    display: flex;
    justify-content: space-between;
}

.tarif_left {
    width: 400px;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.tarif_richt {
    width: 400px;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.butterfly {
    display: flex;
    width: 100%;
    max-width: 2000px;
    margin-top: -700px;
}

.butterfly_left {
    width: 50%;
    max-width: 1000px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.one {
    width: 110px; 
    height: 180px;
    transform: rotate(-15deg);
    background: red;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 50px;
    margin-right: 30px;
    z-index: 2;
}

.two {
    width: 114px;
    height: 50px;
    transform: rotate(-15deg);
    background: blue;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 50px; 
    border-bottom-left-radius: 50px;   
    border-bottom-right-radius: 0px;
    margin-top: -53px;
    margin-right: 10px;
    z-index: 3;
}

.three {
    width: 100px;
    height: 150px;
    transform: rotate(0deg);
    background: violet;
    border: 5px solid #fff;
    border-top-left-radius: 70px;
    border-top-right-radius: 0px; 
    border-bottom-left-radius: 0px;   
    border-bottom-right-radius: 50px;
    margin-top: -16px;
    margin-right: 5px;
    z-index: 1;
}

.butterfly_right {
    width: 50%;
    max-width: 1000px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.four {
    width: 110px; 
    height: 180px;
    border: 3px solid orange;
    transform: rotate(15deg);
    background: orange;
    border: 5px solid #fff;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 50px;
    margin-left: 30px;
    z-index: 2;
}

.five {
    width: 114px;
    height: 50px;
    transform: rotate(15deg);
    background: blue;
    border: 5px solid #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 0px; 
    border-bottom-left-radius: 0px;   
    border-bottom-right-radius: 50px;
    margin-top: -53px;
    margin-left: 10px;
    z-index: 3;
}

.six {
    width: 100px;
    height: 150px;
    transform: rotate(0deg);
    background: blueviolet;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 70px; 
    border-bottom-left-radius: 50px;   
    border-bottom-right-radius: 0px;
    margin-top: -16px;
    margin-left: 5px;
    z-index: 1;
}

.butterfly_item {
    width: 100%;
    max-width: 2000px;
    text-align: center;
    margin-bottom: 200px;
}

.butterfly_item h3 {
    font-family: Gilroy;
    font-size: 40px;
    color: #003883;
}

.butterfly_item p {
    font-family: Gilroy-ligt;
    font-size: 40px;
    color: #003883;
}

.butterfly_item span {
    font-family: Gilroy;
    color: orange;
}

.butterfly_card {
    width: 250px;
    height: 315px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.butterfly_card h3 {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card span {
    font-family: Gilroy-ligt;
    font-size: 15px;
    font-weight: bold;
}

.butterfly_card p {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 200px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card1 {
    width: 250px;
    height: 315px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.butterfly_card1 h3 {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card1 span {
    font-family: Gilroy-ligt;
    font-size: 15px;
    font-weight: bold;
}

.butterfly_card1 p {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card1 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 200px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card1 button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card2 {
    width: 250px;
    height: 315px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.butterfly_card2 h3 {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card2 span {
    font-family: Gilroy-ligt;
    font-size: 15px;
    font-weight: bold;
}

.butterfly_card2 p {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card2 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 200px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card2 button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card3 {
    width: 250px;
    height: 315px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.butterfly_card3 h3 {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card3 span {
    font-family: Gilroy-ligt;
    font-size: 15px;
    font-weight: bold;
}

.butterfly_card3 p {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card3 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 200px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card3 button:hover {
    background: #003883;
    color: #fff;
}

.tarif_bottom {
    width: 100%;
    max-width: 2000px;
    height: 315px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: -150px;
    z-index: 0;
}

.butterfly_card4 {
    width: 250px;
    height: 315px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 100px;
}

.butterfly_card4 h3 {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    width: 200px;
}

.butterfly_card4 span {
    font-family: Gilroy-ligt;
    font-size: 15px;
    font-weight: bold;
}

.butterfly_card4 p {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card4 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 200px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card4 button:hover {
    background: #003883;
    color: #fff;
}

.header_addition {
    width: 100%;
    max-width: 2000px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 45px;
    font-weight: bold;
    margin-top: 300px;
}

.addition {
    width: 100%;
    max-width: 2000px;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.addition_top {
    width: 100%;
    max-width: 2000px;
    height: 350px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.addition_card1 {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card1 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
}

.addition_card1 span {
    font-family: Gilroy-ligt;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card1 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 200px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card1 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card2 {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card2 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
}

.addition_card2 span {
    font-family: Gilroy-ligt;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card2 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 200px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card2 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card3 {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card3 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
}

.addition_card3 span {
    font-family: Gilroy-ligt;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card3 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 200px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card3 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card3 a button {
    text-decoration: none;
    color: #003883;
}

.addition_card3 a button:hover {
    text-decoration: none;
    color: #fff;
}

.form {
    width: 100%;
    max-width: 2000px;
    height: 400px;
    display: flex;
}

.left_form {
    width: 50%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.left_form h3 {
    font-family: Gilroy;
    font-size: 45px;
    font-weight: bold;
}

.left_form p {
    font-family: Gilroy;
    font-size: 23px;
    font-weight: bold;
}

.richt_form {
    width: 50%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.richt_form form {
    display: flex;
    flex-direction: column;
}

.richt_form form input {
    width: 300px;
    height: 50px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    outline:none;
    padding: 10px;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.richt_form form textarea {
    width: 300px;
    height: 80px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    outline:none;
    padding: 10px;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.richt_form form input:last-child {
    width: 300px;
    height: 50px;
    border-radius: 30px;
    border: 2px solid #003883;
    color: #003883;
    background: inherit;
    margin-bottom: 10px;
    outline:none;
    padding: 10px;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.richt_form form input:last-child:hover {
    background: #003883;
    color: #fff;
}

.footer {
    width: 100%;
    max-width: 2000px;
    height: 100px;
    background: url(images/red.png);
}

.contact {
    width: 100%;
    max-width: 2000px;
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.contact a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.contact a img {
    width: 20px;
    height: 20px;
}
}

@media screen and (min-width: 400px) and (max-width: 800px) {
.menu {
    width: 100%;
    max-width: 800px;
    height: 50px;
    background: url(images/red.png);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.logo {
    font-family: Gilroy;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.logo a {
    text-decoration: none;
    color: #fff;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    font-weight: bold;
    font-family: Gilroy;
    font-size: 12px;
    color: #fff;
}

.menu_button {
    background-color: inherit;
    border: 1px solid #fff;
    width: 80px;
    height: 20px;
    border-radius: 30px;
    font-family: Gilroy;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
}

.menu_button:hover {
    cursor: pointer;
}

.section_one {
    display: flex;
    width: 100%;
    max-width: 800px;
    height: 100%;
}

.left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 67%;
    height: 400px;
    padding-left: 2%;
}

.left h1 {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 22px;
}

.left p {
    font-family: Gilroy-ligt;
    font-weight: normal;
    font-size: 12px;
}

.item {
    margin-top: 25px;
}

.left_button {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.left_button button {
    background: inherit;
    border: 1px solid #003883;
    border-radius: 20px;
    width: 120px;
    height: 20px;
    font-family: Gilroy;
    font-size: 10px;
    color: #003883;
    cursor: pointer;
}

.left_button button:hover {
    background: #003883;
    color: #fff;
}

.popup_extension {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: auto; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.extension {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 250px;
}

.table_extension {
    width: 400px;
    height: 250px;
    background: #dee2e6;
    display: flex;
    justify-content: center;
}

.table_extension table {
    width: 400px;
    border-collapse: collapse;
    table-layout: fixed;
}

.table_extension table tr th {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
}

.table_extension table caption {
    margin-bottom: 30px;
}

.table_extension table td {
    border: 1px solid #000;
    text-align: center;
    font-family: Gilroy-ligt;
    font-size: 12px;
}

.table_extension table td form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.table_extension table td form input {
    width: 90px;
    height: 20px;
    padding-left: 5px;
    border: none;
    outline: none;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.table_extension table td form input:last-child {
    width: 90px;
    height: 20px;
    cursor: pointer;
    background: inherit;
    border: 1px solid #003883;
    border-radius: 10px;
    font-family: Gilroy;
    font-size: 10px;
    color: #003883;
}

.table_extension table td form input:last-child:hover {
    background: #003883;
    color: #fff;
}


.richt {
    width: 33%;
    height: 400px;
    display: flex;
    align-items: center;
}

.img {
    width: 125px;
    height: 180px;
    background: url(images/up.jpg) no-repeat;
    background-size: 100% 100%;
}

/*Начало поп-ап---------------------------------------------------*/
.popup {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    padding-top: 20px;
    width: 100%;
    height: 100%;
    overflow: auto; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: #dee2e6;/* полупрозрачный фон */
}

.popup-content {
    background-color: #fff;
    margin: auto; /* размещение поп-ап в центре экрана */
    padding: 20px;
    border: 1px solid #888;
    width: 400px;
    border-radius: 15px;
}

.heder_popup {
    text-align: center;
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
}

.heder_popup img {
    width: 100px;
    height: 100px;
}

.button_popup {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.button_popup button {
    width: 200px;
    height: 30px;
    border: 1px solid #003883;
    background: #003883;
    border-radius: 10px;
    font-family: Gilroy;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.button_popup button.selected {
    background: transparent;
    color: #003883;
}

.policy {
    width: 350px;
    font-family: Gilroy-ligt, sans-serif;
    font-size: 10px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.policy p {
    text-decoration: none;
    font-family: Gilroy-ligt, sans-serif;
    font-size: 10px;
    color: #006eff;
    cursor: pointer;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.popup-content h2 {
    text-align: center;
    font-family: Gilroy, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #001c45;
    margin-bottom: 20px;
}

.popup-content form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-content form input {
    width: 350px;
    height: 40px;
    border-radius: 15px;
    padding-left: 10px;
}

.popup-content form input:first-child {
    padding-left: 10px;
}

.popup-content form input:last-child {
    border: 1px solid #003883;
    margin-bottom: 7px;
    border-radius: 15px;
    background: #003883;
    font-family: Gilroy, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    box-shadow: 1px 1px 1px #003883,
              inset 2px 3px 5px rgba(0,0,0,0.3),
              inset -2px -3px 5px rgba(255,255,255,0.5);
}

.saving_item {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.your_saving {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 405px;
    text-align: center;
}

/*Конец поп-ап---------------------------------------------------*/

.section_two {
    width: 100%;
    max-width: 800px;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card1 {
    width: 200px;
    height: 580px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card1 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card1 h2 {
   font-family: Gilroy;
   font-size: 22px;
   font-weight: 700;
}

.fon_card1 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card1 {
    width: 130px;
    height: 140px;
    background: url(images/start.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card1 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card1 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift {
    width: 197px;
    margin-top: 30px;
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    background: #e01839;
}

.gift p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift >label {
    display: block;
}

.gift >label > input[type="radio"] {
    display: none;
}

.gift >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift p {
    font-family: Gilroy;
    font-size: 22px;
    color: #e01839;
}

.e_gift span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 35px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card2 {
    width: 200px;
    height: 580px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card2 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card2 h2 {
   font-family: Gilroy;
   font-size: 22px;
   font-weight: 700;
}

.fon_card2 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card2 {
    width: 130px;
    height: 140px;
    background: url(images/standard.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card2 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card2 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift1 {
    width: 197px;
    margin-top: 35px;
    font-family: Gilroy-ligt;
    font-size: 10px;
    font-weight: bold;
    background: #e01839;
}

.gift1 p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift1 >label {
    display: block;
}

.gift1 >label > input[type="radio"] {
    display: none;
}

.gift1 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift1 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift1 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift1 p {
    font-family: Gilroy;
    font-size: 22px;
    color: #e01839;
}

.e_gift1 span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 35px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card3 {
    width: 200px;
    height: 580px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card3 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card3 h2 {
   font-family: Gilroy;
   font-size: 22px;
   font-weight: 700;
}

.fon_card3 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card3 {
    width: 130px;
    height: 140px;
    background: url(images/mbusiness.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card3 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card3 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift2 {
    width: 197px;
    margin-top: 30px;
    font-family: Gilroy-ligt;
    font-size: 10px;
    font-weight: bold;
    background: #e01839;
}

.gift2 p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift2 >label {
    display: block;
}

.gift2 >label > input[type="radio"] {
    display: none;
}

.gift2 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift2 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift2 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift2 p {
    font-family: Gilroy;
    font-size: 22px;
    color: #e01839;
}

.e_gift2 span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 40px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card4 {
    width: 200px;
    height: 580px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card4 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card4 h2 {
   font-family: Gilroy;
   font-size: 22px;
   font-weight: 700;
}

.fon_card4 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card4 {
    width: 130px;
    height: 140px;
    background: url(images/business.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card4 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card4 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift3 {
    width: 197px;
    margin-top: 30px;
    font-family: Gilroy-ligt;
    font-size: 10px;
    font-weight: bold;
    background: #e01839;
}

.gift3 p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift3 >label {
    display: block;
}

.gift3 >label > input[type="radio"] {
    display: none;
}

.gift3 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift3 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift3 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift3 p {
    font-family: Gilroy;
    font-size: 22px;
    color: #e01839;
}

.e_gift3 span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 40px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.sravnenie {
    width: 100%;
    max-width: 800px;
    height: 50px;
    position: fixed;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 4;
}

.link {
    display: flex;
    gap: 70px;
    background: url(images/red.png);
    padding: 5px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.link button {
    background: inherit;
    border: none;
    font-family: Gilroy;
    color: #fff;
    cursor: pointer;
}

.popup_license {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.license_img {
    width: 100%;
    max-width: 800px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_license img {
    width: 400px;
    height: 264px;
}

.close_license {
    font-size: 38px;
    display: flex;
    justify-content: flex-end;
    color: #fff;
    padding-right: 10px;
    cursor: pointer;
}

.popup_comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.comparison_table {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.table {
    width: 400px;
    height: 90px;
    background: #dee2e6;
    display: flex;
    justify-content: center;
}

.table table caption {
    font-family: Gilroy;
    font-size: 25px;
    padding: 10px 0 10px 0;
}

.table table {
    width: 400px;
    border-collapse: collapse;
    table-layout: fixed;
    margin-right: 0px;    
}

.table table thead th {
    font-family: Gilroy;
    font-size: 10px;
}

.table table thead th:first-child {
    width: 160px;
}

.table_scrol {
    width: 400px;
    height: 490px;
    background: #dee2e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: auto;
}

.table_scrol table {
    width: 400px;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 691px;    
}

.table_scrol table th:first-child {
    text-align: left;
    padding-left: 10px;
    font-family: Gilroy-ligt;
    font-size: 12px;
    width: 160px;
    border: 1px solid #000;
}

.table_scrol table td {
    border: 1px solid #000;
    text-align: center;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.table_scrol .check {
    color: red;
    text-align: center;
}

.htable {
    font-family: Gilroy;
    font-size: 10px;
}

.item_block {
    width: 100%;
    max-width: 800px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item_block h2 {
    font-family: Gilroy;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.section_three {
    width: 100%;
    max-width: 800px;
    height: 1400px;
    display: flex;
    justify-content: space-between;
}

.tarif_left {
    width: 270px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 350px;
}

.tarif_richt {
    width: 270px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 350px;
}

.butterfly {
    display: flex;
    width: 100%;
    max-width: 800px;
    margin-top: -1400px;
}

.butterfly_left {
    width: 50%;
    max-width: 600px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.one {
    width: 70px; 
    height: 140px;
    transform: rotate(-15deg);
    background: red;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 50px;
    margin-right: 20px;
    z-index: 2;
}

.two {
    width: 66px;
    height: 36px;
    transform: rotate(-15deg);
    background: blue;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 50px; 
    border-bottom-left-radius: 50px;   
    border-bottom-right-radius: 0px;
    margin-top: -35px;
    margin-right: 6px;
    z-index: 3;
}

.three {
    width: 60px;
    height: 110px;
    transform: rotate(0deg);
    background: violet;
    border: 5px solid #fff;
    border-top-left-radius: 70px;
    border-top-right-radius: 0px; 
    border-bottom-left-radius: 0px;   
    border-bottom-right-radius: 50px;
    margin-top: -12px;
    margin-right: 2px;
    z-index: 1;
}

.butterfly_right {
    width: 50%;
    max-width: 600px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.four {
    width: 70px; 
    height: 140px;
    border: 3px solid orange;
    transform: rotate(15deg);
    background: orange;
    border: 5px solid #fff;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 50px;
    margin-left: 20px;
    z-index: 2;
}

.five {
    width: 66px;
    height: 36px;
    transform: rotate(15deg);
    background: blue;
    border: 5px solid #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 0px; 
    border-bottom-left-radius: 0px;   
    border-bottom-right-radius: 50px;
    margin-top: -35px;
    margin-left: 6px;
    z-index: 3;
}

.six {
    width: 60px;
    height: 110px;
    transform: rotate(0deg);
    background: blueviolet;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 70px; 
    border-bottom-left-radius: 50px;   
    border-bottom-right-radius: 0px;
    margin-top: -12px;
    margin-left: 2px;
    z-index: 1;
}

.butterfly_item {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-bottom: 200px;
}

.butterfly_item h3 {
    font-family: Gilroy;
    font-size: 35px;
    color: #003883;
}

.butterfly_item p {
    font-family: Gilroy-ligt;
    font-size: 28px;
    color: #003883;
}

.butterfly_item span {
    font-family: Gilroy;
    color: orange;
}

.butterfly_card {
    width: 200px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.butterfly_card h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 170px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card1 {
    width: 200px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.butterfly_card1 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card1 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card1 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card1 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card1 button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card2 {
    width: 200px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.butterfly_card2 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card2 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card2 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card2 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card2 button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card3 {
    width: 200px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.butterfly_card3 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card3 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card3 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card3 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card3 button:hover {
    background: #003883;
    color: #fff;
}

.tarif_bottom {
    width: 100%;
    max-width: 800px;
    height: 220px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 450px;
    z-index: 0;
}

.butterfly_card4 {
    width: 200px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.butterfly_card4 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 200px;
}

.butterfly_card4 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card4 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card4 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card4 button:hover {
    background: #003883;
    color: #fff;
}

.header_addition {
    width: 100%;
    max-width: 800px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 22px;
    font-weight: bold;
    margin-top: 870px;
}

.addition {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

.addition_top {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.addition_card1 {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card1 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
}

.addition_card1 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card1 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card1 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card2 {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card2 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
}

.addition_card2 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card2 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card2 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card3 {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card3 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
}

.addition_card3 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card3 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card3 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card3 a button {
    text-decoration: none;
    color: #003883;
}

.addition_card3 a button:hover {
    text-decoration: none;
    color: #fff;
}

.form {
    width: 100%;
    max-width: 800px;
    height: 400px;
    display: flex;
}

.left_form {
    width: 50%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.left_form h3 {
    font-family: Gilroy;
    font-size: 17px;
    font-weight: bold;
}

.left_form p {
    font-family: Gilroy;
    font-size: 9px;
    font-weight: bold;
}

.richt_form {
    width: 50%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.richt_form form {
    display: flex;
    flex-direction: column;
}

.richt_form form input {
    width: 200px;
    height: 40px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    outline:none;
    padding: 10px;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.richt_form form textarea {
    width: 200px;
    height: 80px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    outline:none;
    padding: 10px;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.richt_form form input:last-child {
    width: 200px;
    height: 30px;
    border-radius: 30px;
    border: 2px solid #003883;
    color: #003883;
    background: inherit;
    margin-bottom: 10px;
    outline:none;
    padding: 0px;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.richt_form form input:last-child:hover {
    background: #003883;
    color: #fff;
}

.footer {
    width: 100%;
    max-width: 1200px;
    height: 100px;
    background: url(images/red.png);
}

.contact {
    width: 100%;
    max-width: 1200px;
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
}

.contact a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.contact a img {
    width: 15px;
    height: 15px;
}
}

@media screen and (min-width: 800px) and (max-width: 1200px) {
.menu {
    width: 100%;
    max-width: 1200px;
    height: 50px;
    background: url(images/red.png);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.logo a {
    text-decoration: none;
    color: #fff;
}

.nav {
    display: flex;
    gap: 80px;
}

.nav a {
    text-decoration: none;
    font-weight: bold;
    font-family: Gilroy;
    font-size: 14px;
    color: #fff;
}

.menu_button {
    background-color: inherit;
    border: 1px solid #fff;
    width: 200px;
    height: 30px;
    border-radius: 30px;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.menu_button:hover {
    cursor: pointer;
}

.section_one {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 100%;
}

.left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 67%;
    height: 600px;
    padding-left: 2%;
}

.left h1 {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 40px;
}

.left p {
    font-family: Gilroy-ligt;
    font-weight: normal;
    font-size: 14px;
}

.item {
    margin-top: 25px;
}

.left_button {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.left_button button {
    background: inherit;
    border: 1px solid #003883;
    border-radius: 20px;
    width: 200px;
    height: 30px;
    font-family: Gilroy;
    color: #003883;
    cursor: pointer;
}

.left_button button:hover {
    background: #003883;
    color: #fff;
}

.popup_extension {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.extension {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 250px;
}

.table_extension {
    width: 800px;
    height: 250px;
    background: #dee2e6;
    display: flex;
    justify-content: center;
}

.table_extension table {
    width: 800px;
    border-collapse: collapse;
    table-layout: fixed;
}

.table_extension table caption {
    margin-bottom: 30PX;
}

.table_extension table td {
    border: 1px solid #000;
    text-align: center;
    font-family: Gilroy-ligt;
}

.table_extension table td form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.table_extension table td form input {
    width: 200px;
    height: 20px;
    padding-left: 5px;
    border: none;
    outline: none;
}

.table_extension table td form input:last-child {
    width: 200px;
    height: 20px;
    cursor: pointer;
    background: inherit;
    border: 1px solid #003883;
    border-radius: 10px;
    font-family: Gilroy;
    color: #003883;
}

.table_extension table td form input:last-child:hover {
    background: #003883;
    color: #fff;
}


.richt {
    width: 33%;
    height: 600px;
    display: flex;
    align-items: center;
}

.img {
    width: 300px;
    height: 325px;
    background: url(images/up.jpg) no-repeat;
    background-size: 100% 100%;
}

/*Начало поп-ап---------------------------------------------------*/
.popup {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    padding-top: 20px;
    width: 100%;
    height: 100%;
    overflow: auto; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: #dee2e6;/* полупрозрачный фон */
}

.popup-content {
    background-color: #fff;
    margin: auto; /* размещение поп-ап в центре экрана */
    padding: 20px;
    border: 1px solid #888;
    width: 550px;
    border-radius: 15px;
}

.heder_popup {
    text-align: center;
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
}

.heder_popup img {
    width: 100px;
    height: 100px;
}

.button_popup {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.button_popup button {
    width: 200px;
    height: 40px;
    border: 1px solid #003883;
    background: #003883;
    border-radius: 10px;
    font-family: Gilroy;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.button_popup button.selected {
    background: transparent;
    color: #003883;
}

.policy {
    width: 500px;
    font-family: Gilroy-ligt, sans-serif;
    font-size: 10px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.policy p {
    text-decoration: none;
    font-family: Gilroy-ligt, sans-serif;
    font-size: 10px;
    color: #006eff;
    cursor: pointer;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.popup-content h2 {
    text-align: center;
    font-family: Gilroy, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #001c45;
    margin-bottom: 20px;
}

.popup-content form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-content form input {
    width: 400px;
    height: 50px;
    border-radius: 15px;
    padding-left: 10px;
}

.popup-content form input:first-child {
    padding-left: 10px;
}

.popup-content form input:last-child {
    border: 1px solid #003883;
    margin-bottom: 20px;
    border-radius: 15px;
    background: #003883;
    font-family: Gilroy, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    box-shadow: 1px 1px 1px #003883,
              inset 2px 3px 5px rgba(0,0,0,0.3),
              inset -2px -3px 5px rgba(255,255,255,0.5);
}

.saving_item {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.your_saving {
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 405px;
    text-align: center;
}

/*Конец поп-ап---------------------------------------------------*/

.section_two {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-evenly;
}

.card1 {
    width: 200px;
    height: 630px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card1 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card1 h2 {
   font-family: Gilroy;
   font-size: 25px;
   font-weight: 700;
}

.fon_card1 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card1 {
    width: 130px;
    height: 140px;
    background: url(images/start.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card1 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card1 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift {
    width: 197px;
    margin-top: 30px;
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    background: #e01839;
}

.gift p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift >label {
    display: block;
}

.gift >label > input[type="radio"] {
    display: none;
}

.gift >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift p {
    font-family: Gilroy;
    font-size: 35px;
    color: #e01839;
}

.e_gift span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 35px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card2 {
    width: 200px;
    height: 630px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card2 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card2 h2 {
   font-family: Gilroy;
   font-size: 25px;
   font-weight: 700;
}

.fon_card2 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card2 {
    width: 130px;
    height: 140px;
    background: url(images/standard.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card2 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card2 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift1 {
    width: 197px;
    margin-top: 30px;
    font-family: Gilroy-ligt;
    font-size: 10px;
    font-weight: bold;
    background: #e01839;
}

.gift1 p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift1 >label {
    display: block;
}

.gift1 >label > input[type="radio"] {
    display: none;
}

.gift1 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift1 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift1 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift1 p {
    font-family: Gilroy;
    font-size: 35px;
    color: #e01839;
}

.e_gift1 span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 35px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card3 {
    width: 200px;
    height: 630px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card3 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card3 h2 {
   font-family: Gilroy;
   font-size: 25px;
   font-weight: 700;
}

.fon_card3 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card3 {
    width: 130px;
    height: 140px;
    background: url(images/mbusiness.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card3 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card3 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift2 {
    width: 197px;
    margin-top: 30px;
    font-family: Gilroy-ligt;
    font-size: 10px;
    font-weight: bold;
    background: #e01839;
}

.gift2 p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift2 >label {
    display: block;
}

.gift2 >label > input[type="radio"] {
    display: none;
}

.gift2 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift2 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift2 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift2 p {
    font-family: Gilroy;
    font-size: 35px;
    color: #e01839;
}

.e_gift2 span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 40px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card4 {
    width: 200px;
    height: 630px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card4 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card4 h2 {
   font-family: Gilroy;
   font-size: 25px;
   font-weight: 700;
}

.fon_card4 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card4 {
    width: 130px;
    height: 140px;
    background: url(images/business.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card4 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card4 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift3 {
    width: 197px;
    margin-top: 30px;
    font-family: Gilroy-ligt;
    font-size: 10px;
    font-weight: bold;
    background: #e01839;
}

.gift3 p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift3 >label {
    display: block;
}

.gift3 >label > input[type="radio"] {
    display: none;
}

.gift3 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift3 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift3 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift3 p {
    font-family: Gilroy;
    font-size: 35px;
    color: #e01839;
}

.e_gift3 span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 40px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.sravnenie {
    width: 100%;
    max-width: 1200px;
    height: 50px;
    position: fixed;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 4;
}

.link {
    display: flex;
    gap: 100px;
    background: url(images/red.png);
    padding: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.link button {
    background: inherit;
    border: none;
    font-family: Gilroy;
    color: #fff;
    cursor: pointer;
}

.popup_license {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.license_img {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_license img {
    width: 700px;
    height: 500px;
}

.close_license {
    font-size: 38px;
    display: flex;
    justify-content: flex-end;
    color: #fff;
    padding-right: 10px;
    cursor: pointer;
}

.popup_comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: auto; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.comparison_table {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.table {
    width: 800px;
    height: 75px;
    background: #dee2e6;
    display: flex;
    justify-content: center;
}

.table table caption {
    font-family: Gilroy;
    font-size: 28px;
    padding: 10px 0 10px 0;
}

.table table {
    width: 800px;
    border-collapse: collapse;
    table-layout: fixed;
    margin-right: 0px;    
}

.table table thead th {
    font-family: Gilroy;
    font-size: 16px;
}

.table table thead th:first-child {
    width: 300px;
}

.table_scrol {
    width: 800px;
    height: 530px;
    background: #dee2e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: auto;
}

.table_scrol table {
    width: 800px;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 939px;    
}

.table_scrol table th:first-child {
    text-align: left;
    padding-left: 10px;
    font-family: Gilroy-ligt;
    font-size: 16px;
    width: 300px;
    border: 1px solid #000;
}

.table_scrol table td {
    border: 1px solid #000;
    text-align: center;
    font-family: Gilroy-ligt;
}

.table_scrol .check {
    color: red;
    text-align: center;
}

.htable {
    font-family: Gilroy;
    font-size: 12px;
    width: 790px;
}

.item_block {
    width: 100%;
    max-width: 1200px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item_block h2 {
    font-family: Gilroy;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

.section_three {
    width: 100%;
    max-width: 1200px;
    height: 670px;
    display: flex;
    justify-content: space-between;
}

.tarif_left {
    width: 270px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.tarif_richt {
    width: 270px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.butterfly {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin-top: -700px;
}

.butterfly_left {
    width: 50%;
    max-width: 600px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.one {
    width: 70px; 
    height: 140px;
    transform: rotate(-15deg);
    background: red;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 50px;
    margin-right: 20px;
    z-index: 2;
}

.two {
    width: 66px;
    height: 36px;
    transform: rotate(-15deg);
    background: blue;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 50px; 
    border-bottom-left-radius: 50px;   
    border-bottom-right-radius: 0px;
    margin-top: -35px;
    margin-right: 6px;
    z-index: 3;
}

.three {
    width: 60px;
    height: 110px;
    transform: rotate(0deg);
    background: violet;
    border: 5px solid #fff;
    border-top-left-radius: 70px;
    border-top-right-radius: 0px; 
    border-bottom-left-radius: 0px;   
    border-bottom-right-radius: 50px;
    margin-top: -12px;
    margin-right: 2px;
    z-index: 1;
}

.butterfly_right {
    width: 50%;
    max-width: 600px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.four {
    width: 70px; 
    height: 140px;
    border: 3px solid orange;
    transform: rotate(15deg);
    background: orange;
    border: 5px solid #fff;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 50px;
    margin-left: 20px;
    z-index: 2;
}

.five {
    width: 66px;
    height: 36px;
    transform: rotate(15deg);
    background: blue;
    border: 5px solid #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 0px; 
    border-bottom-left-radius: 0px;   
    border-bottom-right-radius: 50px;
    margin-top: -35px;
    margin-left: 6px;
    z-index: 3;
}

.six {
    width: 60px;
    height: 110px;
    transform: rotate(0deg);
    background: blueviolet;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 70px; 
    border-bottom-left-radius: 50px;   
    border-bottom-right-radius: 0px;
    margin-top: -12px;
    margin-left: 2px;
    z-index: 1;
}

.butterfly_item {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-bottom: 200px;
}

.butterfly_item h3 {
    font-family: Gilroy;
    font-size: 35px;
    color: #003883;
}

.butterfly_item p {
    font-family: Gilroy-ligt;
    font-size: 28px;
    color: #003883;
}

.butterfly_item span {
    font-family: Gilroy;
    color: orange;
}

.butterfly_card {
    width: 200px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.butterfly_card h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 170px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card1 {
    width: 200px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.butterfly_card1 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card1 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card1 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card1 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card1 button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card2 {
    width: 200px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.butterfly_card2 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card2 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card2 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card2 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card2 button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card3 {
    width: 200px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.butterfly_card3 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card3 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card3 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card3 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card3 button:hover {
    background: #003883;
    color: #fff;
}

.tarif_bottom {
    width: 100%;
    max-width: 1200px;
    height: 220px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: -150px;
    z-index: 0;
}

.butterfly_card4 {
    width: 200px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.butterfly_card4 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 200px;
}

.butterfly_card4 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card4 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card4 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card4 button:hover {
    background: #003883;
    color: #fff;
}

.header_addition {
    width: 100%;
    max-width: 1200px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 45px;
    font-weight: bold;
    margin-top: 270px;
}

.addition {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

.addition_top {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.addition_card1 {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card1 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
}

.addition_card1 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card1 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card1 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card2 {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card2 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
}

.addition_card2 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card2 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card2 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card3 {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card3 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
}

.addition_card3 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card3 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card3 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card3 a button {
    text-decoration: none;
    color: #003883;
}

.addition_card3 a button:hover {
    text-decoration: none;
    color: #fff;
}

.form {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    display: flex;
}

.left_form {
    width: 50%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.left_form h3 {
    font-family: Gilroy;
    font-size: 35px;
    font-weight: bold;
}

.left_form p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
}

.richt_form {
    width: 50%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.richt_form form {
    display: flex;
    flex-direction: column;
}

.richt_form form input {
    width: 300px;
    height: 40px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    outline:none;
    padding: 10px;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.richt_form form textarea {
    width: 300px;
    height: 80px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    outline:none;
    padding: 10px;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.richt_form form input:last-child {
    width: 300px;
    height: 40px;
    border-radius: 30px;
    border: 2px solid #003883;
    color: #003883;
    background: inherit;
    margin-bottom: 10px;
    outline:none;
    padding: 10px;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.richt_form form input:last-child:hover {
    background: #003883;
    color: #fff;
}

.footer {
    width: 100%;
    max-width: 1200px;
    height: 100px;
    background: url(images/red.png);
}

.contact {
    width: 100%;
    max-width: 1200px;
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
}

.contact a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.contact a img {
    width: 20px;
    height: 20px;
}
}

@media screen and (min-width: 200px) and (max-width: 400px) {
.menu {
    width: 100%;
    max-width: 400px;
    height: 150px;
    background: url(images/red.png);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.logo {
    font-family: Gilroy;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.logo a {
    text-decoration: none;
    color: #fff;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.nav a {
    text-decoration: none;
    font-weight: bold;
    font-family: Gilroy;
    font-size: 12px;
    color: #fff;
}

.menu_button {
    background-color: inherit;
    border: 1px solid #fff;
    width: 190px;
    height: 20px;
    border-radius: 30px;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin-top: 20px;
}

.menu_button:hover {
    cursor: pointer;
}

.section_one {
    display: flex;
    width: 100%;
    max-width: 400px;
    height: 100%;
}

.left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    height: 370px;
    padding-left: 2%;
}

.left h1 {
    font-family: Gilroy;
    font-weight: bold;
    font-size: 22px;
}

.left p {
    font-family: Gilroy-ligt;
    font-weight: normal;
    font-size: 12px;
}

.item {
    margin-top: 25px;
}

.left_button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.left_button button {
    background: inherit;
    border: 1px solid #003883;
    border-radius: 20px;
    width: 190px;
    height: 20px;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.left_button button:hover {
    background: #003883;
    color: #fff;
}

.popup_extension {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.extension {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 250px;
}

.table_extension {
    width: 300px;
    height: 250px;
    background: #dee2e6;
    display: flex;
    justify-content: center;
}

.table_extension table {
    width: 300px;
    border-collapse: collapse;
    table-layout: fixed;
}

.table_extension table caption {
    margin-bottom: 30px;
    font-family: Gilroy;
    font-size: 15px;
}

.table_extension table tr th {
    font-family: Gilroy;
    font-size: 10px;
}

.table_extension table td {
    border: 1px solid #000;
    text-align: center;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.table_extension table td form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.table_extension table td form input {
    width: 70px;
    height: 20px;
    padding-left: 5px;
    border: none;
    outline: none;
    font-family: Gilroy-ligt;
    font-size: 8px;
}

.table_extension table td form input:last-child {
    width: 70px;
    height: 20px;
    cursor: pointer;
    background: inherit;
    border: 1px solid #003883;
    border-radius: 10px;
    font-family: Gilroy;
    font-size: 10px;
    color: #003883;
}

.table_extension table td form input:last-child:hover {
    background: #003883;
    color: #fff;
}


.richt {
    display: none;
}

.img {
    display: none;
}

/*Начало поп-ап---------------------------------------------------*/
.popup {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    padding-top: 20px;
    width: 100%;
    height: 100%;
    overflow: auto; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: #dee2e6;/* полупрозрачный фон */
}

.popup-content {
    background-color: #fff;
    margin: auto; /* размещение поп-ап в центре экрана */
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    border-radius: 15px;
}

.heder_popup {
    text-align: center;
    width: 100%;
    height: 80px;
    margin-bottom: 20px;
}

.heder_popup img {
    width: 80px;
    height: 80px;
}

.button_popup {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.button_popup button {
    width: 200px;
    height: 20px;
    border: 1px solid #003883;
    background: #003883;
    border-radius: 5px;
    font-family: Gilroy;
    font-size: 6px;
    color: #fff;
    cursor: pointer;
}

.button_popup button.selected {
    background: transparent;
    color: #003883;
}

.policy {
    width: 250px;
    font-family: Gilroy-ligt, sans-serif;
    font-size: 6px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.policy p {
    text-decoration: none;
    font-family: Gilroy-ligt, sans-serif;
    font-size: 6px;
    color: #006eff;
    cursor: pointer;
}

.close {
  color: #aaa;
  float: right;
  font-size: 20px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.popup-content h2 {
    text-align: center;
    font-family: Gilroy, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #001c45;
    margin-bottom: 10px;
}

.popup-content form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-content form input {
    width: 185px;
    height: 20px;
    border-radius: 6px;
    padding-left: 10px;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.popup-content form input:first-child {
    padding-left: 10px;
}

.popup-content form input:last-child {
    border: 1px solid #003883;
    margin-bottom: 5px;
    border-radius: 6px;
    background: #003883;
    font-family: Gilroy, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    box-shadow: 1px 1px 1px #003883,
              inset 2px 3px 5px rgba(0,0,0,0.3),
              inset -2px -3px 5px rgba(255,255,255,0.5);
}

.saving_item {
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.your_saving {
    font-family: Gilroy;
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 185px;
    text-align: center;
}

/*Конец поп-ап---------------------------------------------------*/

.section_two {
    width: 100%;
    max-width: 800px;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card1 {
    width: 200px;
    height: 580px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card1 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card1 h2 {
   font-family: Gilroy;
   font-size: 22px;
   font-weight: 700;
}

.fon_card1 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card1 {
    width: 130px;
    height: 140px;
    background: url(images/start.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card1 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card1 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift {
    width: 197px;
    margin-top: 30px;
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    background: #e01839;
}

.gift p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift >label {
    display: block;
}

.gift >label > input[type="radio"] {
    display: none;
}

.gift >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift p {
    font-family: Gilroy;
    font-size: 22px;
    color: #e01839;
}

.e_gift span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 35px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card2 {
    width: 200px;
    height: 580px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card2 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card2 h2 {
   font-family: Gilroy;
   font-size: 22px;
   font-weight: 700;
}

.fon_card2 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card2 {
    width: 130px;
    height: 140px;
    background: url(images/standard.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card2 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card2 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift1 {
    width: 197px;
    margin-top: 35px;
    font-family: Gilroy-ligt;
    font-size: 10px;
    font-weight: bold;
    background: #e01839;
}

.gift1 p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift1 >label {
    display: block;
}

.gift1 >label > input[type="radio"] {
    display: none;
}

.gift1 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift1 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift1 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift1 p {
    font-family: Gilroy;
    font-size: 22px;
    color: #e01839;
}

.e_gift1 span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 35px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card3 {
    width: 200px;
    height: 580px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card3 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card3 h2 {
   font-family: Gilroy;
   font-size: 22px;
   font-weight: 700;
}

.fon_card3 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card3 {
    width: 130px;
    height: 140px;
    background: url(images/mbusiness.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card3 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card3 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift2 {
    width: 197px;
    margin-top: 30px;
    font-family: Gilroy-ligt;
    font-size: 10px;
    font-weight: bold;
    background: #e01839;
}

.gift2 p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift2 >label {
    display: block;
}

.gift2 >label > input[type="radio"] {
    display: none;
}

.gift2 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift2 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift2 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift2 p {
    font-family: Gilroy;
    font-size: 22px;
    color: #e01839;
}

.e_gift2 span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 40px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.card4 {
    width: 200px;
    height: 580px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: #dee2e6;
}

.item_card4 {
   width: 200px;
   text-align: center; 
   margin-top: 15px;
   margin-bottom: 15px;
}

.item_card4 h2 {
   font-family: Gilroy;
   font-size: 22px;
   font-weight: 700;
}

.fon_card4 {
    width: 200px;
    display: flex;
    justify-content: center;
}

.img_card4 {
    width: 130px;
    height: 140px;
    background: url(images/business.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

.item1_card4 {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.item1_card4 p {
   font-family: Gilroy-ligt; 
   font-size: 11px;
   font-weight: normal;
}

.gift3 {
    width: 197px;
    margin-top: 30px;
    font-family: Gilroy-ligt;
    font-size: 10px;
    font-weight: bold;
    background: #e01839;
}

.gift3 p {
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.gift3 >label {
    display: block;
}

.gift3 >label > input[type="radio"] {
    display: none;
}

.gift3 >label > span {
    display: flex; 
    align-items: center;   
    position: relative;
    cursor: pointer;
}

.gift3 >label > span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 10px;
    margin-left: 0px;
    cursor: pointer;
    background: #fff;
}

.gift3 >label > input[type="radio"]:checked + span:before {
    background-color: #000;
}

.e_gift3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 15px;
}

.e_gift3 p {
    font-family: Gilroy;
    font-size: 22px;
    color: #e01839;
}

.e_gift3 span {
    font-family: Gilroy;
    font-size: 9px;
    width: 200px;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
    width: 200px;
    margin-top: 40px;
}

.button button {
    width: 190px;
    height: 30px;
    border: 2px solid #003883;
    border-radius: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    color: #003883;
    cursor: pointer;
}

.button button:hover {
    background: #003883;
    color: #fff;
}

.sravnenie {
    width: 100%;
    max-width: 400px;
    height: 50px;
    position: fixed;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 4;
}

.link {
    display: flex;
    gap: 70px;
    background: url(images/red.png);
    padding: 5px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.link button {
    background: inherit;
    border: none;
    font-family: Gilroy;
    font-size: 10px;
    color: #fff;
    cursor: pointer;
}

.popup_license {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: auto; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.license_img {
    width: 100%;
    height: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    margin-top: 150px;
}

.popup_license img {
    width: 300px;
    height: 200px;
}

.close_license {
    font-size: 30px;
    display: flex;
    justify-content: flex-end;
    color: #fff;
    padding-right: 10px;
    cursor: pointer;
}

.popup_comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none; /* скрыть поп-ап при загрузке страницы */
    position: fixed; /* позиционирование относительно окна браузера */
    z-index: 99999999; /* установить поп-ап поверх других элементов */
    left: 0;
    top: 0;
    width: 100%;
    overflow: auto; /* добавить прокрутку, если содержимое поп-ап не помещается на экране */
    background-color: rgba(0, 0, 0, 0.7);/* полупрозрачный фон */
}

.comparison_table {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.table {
    width: 250px;
    height: 75px;
    background: #dee2e6;
}

.table table caption {
    font-family: Gilroy;
    font-size: 18px;
    padding: 10px 0 10px 0;
}

.table table {
    width: 250px;
    border-collapse: collapse;
    table-layout: fixed;
    margin-right: 17px;    
}

.table table thead th {
    font-family: Gilroy;
    font-size: 8px;
}

.table table thead th:first-child {
    width: 90px;
}

.table_scrol {
    width: 250px;
    height: 410px;
    background: #dee2e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: auto;
}

.table_scrol table {
    width: 250px;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 490px;    
}

.table_scrol table th:first-child {
    text-align: left;
    padding-left: 10px;
    font-family: Gilroy-ligt;
    font-size: 8px;
    width: 90px;
    border: 1px solid #000;
}

.table_scrol table td {
    border: 1px solid #000;
    text-align: center;
    font-family: Gilroy-ligt;
    font-size: 6px;
}

.table_scrol .check {
    color: red;
    text-align: center;
}

.htable {
    width: 245px;
    font-family: Gilroy;
    font-size: 6px;
}

.item_block {
    width: 100%;
    max-width: 400px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item_block h2 {
    font-family: Gilroy;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.section_three {
    width: 100%;
    max-width: 400px;
    height: 1400px;
    display: flex;
    justify-content: space-between;
}

.tarif_left {
    width: 160px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 360px;
}

.tarif_richt {
    width: 160px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 360px;
}

.butterfly {
    display: flex;
    width: 100%;
    max-width: 400px;
    margin-top: -1400px;
}

.butterfly_left {
    width: 50%;
    max-width: 600px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.one {
    width: 70px; 
    height: 140px;
    transform: rotate(-15deg);
    background: red;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 50px;
    margin-right: 20px;
    z-index: 2;
}

.two {
    width: 66px;
    height: 36px;
    transform: rotate(-15deg);
    background: blue;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 50px; 
    border-bottom-left-radius: 50px;   
    border-bottom-right-radius: 0px;
    margin-top: -35px;
    margin-right: 6px;
    z-index: 3;
}

.three {
    width: 60px;
    height: 110px;
    transform: rotate(0deg);
    background: violet;
    border: 5px solid #fff;
    border-top-left-radius: 70px;
    border-top-right-radius: 0px; 
    border-bottom-left-radius: 0px;   
    border-bottom-right-radius: 50px;
    margin-top: -12px;
    margin-right: 2px;
    z-index: 1;
}

.butterfly_right {
    width: 50%;
    max-width: 600px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.four {
    width: 70px; 
    height: 140px;
    border: 3px solid orange;
    transform: rotate(15deg);
    background: orange;
    border: 5px solid #fff;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 50px;
    margin-left: 20px;
    z-index: 2;
}

.five {
    width: 66px;
    height: 36px;
    transform: rotate(15deg);
    background: blue;
    border: 5px solid #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 0px; 
    border-bottom-left-radius: 0px;   
    border-bottom-right-radius: 50px;
    margin-top: -35px;
    margin-left: 6px;
    z-index: 3;
}

.six {
    width: 60px;
    height: 110px;
    transform: rotate(0deg);
    background: blueviolet;
    border: 5px solid #fff;
    border-top-left-radius: 0px;
    border-top-right-radius: 70px; 
    border-bottom-left-radius: 50px;   
    border-bottom-right-radius: 0px;
    margin-top: -12px;
    margin-left: 2px;
    z-index: 1;
}

.butterfly_item {
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-bottom: 200px;
}

.butterfly_item h3 {
    font-family: Gilroy;
    font-size: 35px;
    color: #003883;
}

.butterfly_item p {
    font-family: Gilroy-ligt;
    font-size: 28px;
    color: #003883;
}

.butterfly_item span {
    font-family: Gilroy;
    color: orange;
}

.butterfly_card {
    width: 160px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.butterfly_card h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card1 {
    width: 160px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.butterfly_card1 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card1 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card1 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card1 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card1 button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card2 {
    width: 160px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.butterfly_card2 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card2 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card2 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card2 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card2 button:hover {
    background: #003883;
    color: #fff;
}

.butterfly_card3 {
    width: 160px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.butterfly_card3 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.butterfly_card3 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card3 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card3 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card3 button:hover {
    background: #003883;
    color: #fff;
}

.tarif_bottom {
    width: 100%;
    max-width: 800px;
    height: 220px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 450px;
    z-index: 0;
}

.butterfly_card4 {
    width: 200px;
    height: 280px;
    border: 1px solid #003883;
    border-radius: 30px;
    padding: 10px;
    background: #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.butterfly_card4 h3 {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 200px;
}

.butterfly_card4 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
}

.butterfly_card4 p {
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
    color: #e01839;
}

.butterfly_card4 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.butterfly_card4 button:hover {
    background: #003883;
    color: #fff;
}

.header_addition {
    width: 100%;
    max-width: 800px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 22px;
    font-weight: bold;
    margin-top: 870px;
}

.addition {
    width: 100%;
    max-width: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.addition_top {
    width: 100%;
    max-width: 400px;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.addition_card1 {
    width: 160px;
    height: 200px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card1 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
}

.addition_card1 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card1 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card1 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card2 {
    width: 160px;
    height: 200px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card2 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
}

.addition_card2 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card2 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card2 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card3 {
    width: 160px;
    height: 200px;
    border-radius: 30px;
    background: #dee2e6;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.addition_card3 h3 {
    text-align: center;
    font-family: Gilroy;
    font-size: 18px;
    font-weight: bold;
}

.addition_card3 span {
    font-family: Gilroy-ligt;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}

.addition_card3 button {
    border: 1px solid #003883;
    border-radius: 30px;
    width: 150px;
    height: 30px;
    background: inherit;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    color: #003883;
    cursor: pointer;
}

.addition_card3 button:hover {
    background: #003883;
    color: #fff;
}

.addition_card3 a button {
    text-decoration: none;
    color: #003883;
}

.addition_card3 a button:hover {
    text-decoration: none;
    color: #fff;
}

.form {
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
}

.left_form {
    width: 50%;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.left_form h3 {
    font-family: Gilroy;
    font-size: 17px;
    font-weight: bold;
}

.left_form p {
    font-family: Gilroy;
    font-size: 9px;
    font-weight: bold;
}

.richt_form {
    width: 50%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.richt_form form {
    display: flex;
    flex-direction: column;
}

.richt_form form input {
    width: 160px;
    height: 20px;
    border-radius: 5px;
    border: none;
    margin-bottom: 5px;
    outline:none;
    padding: 10px;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.richt_form form textarea {
    width: 160px;
    height: 80px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    outline:none;
    padding: 10px;
    font-family: Gilroy-ligt;
    font-size: 10px;
}

.richt_form form input:last-child {
    width: 160px;
    height: 30px;
    border-radius: 30px;
    border: 2px solid #003883;
    color: #003883;
    background: inherit;
    margin-bottom: 10px;
    outline:none;
    padding: 0px;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.richt_form form input:last-child:hover {
    background: #003883;
    color: #fff;
}

.footer {
    width: 100%;
    max-width: 400px;
    height: 100px;
    background: url(images/red.png);
}

.contact {
    width: 100%;
    max-width: 400px;
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-family: Gilroy;
    font-size: 10px;
    font-weight: bold;
}

.contact a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.contact a img {
    width: 10px;
    height: 10px;
}
}



/*=======================================*/
/*Страница благодарности*/

@media screen and (min-width: 1200px) and (max-width: 2000px) {
.body_than {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 2000px;
    min-height: 600px;
    justify-content: center;
    align-items: center;
}

.than {
    display: flex;
    width: 100%;
    max-width: 2000px;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 40px;
    font-weight: bold;
}

.ithan {
    display: flex;
    width: 100%;
    max-width: 2000px;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 30px;
    font-weight: bold;
}
}

@media screen and (min-width: 800px) and (max-width: 1200px) {
.body_than {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    min-height: 516px;
    justify-content: center;
    align-items: center;
}

.than {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 38px;
    font-weight: bold;
}

.ithan {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 28px;
    font-weight: bold;
}
}

@media screen and (min-width: 400px) and (max-width: 800px) {
.body_than {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    min-height: 420px;
    justify-content: center;
    align-items: center;
}

.than {
    display: flex;
    width: 100%;
    max-width: 800px;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 20px;
    font-weight: bold;
}

.ithan {
    display: flex;
    width: 100%;
    max-width: 800px;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 15px;
    font-weight: bold;
}
}

@media screen and (min-width: 200px) and (max-width: 400px) {
.body_than {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    min-height: 420px;
    justify-content: center;
    align-items: center;
}

.than {
    display: flex;
    width: 100%;
    max-width: 800px;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 14px;
    font-weight: bold;
}

.ithan {
    display: flex;
    width: 100%;
    max-width: 800px;
    justify-content: center;
    align-items: center;
    font-family: Gilroy;
    font-size: 12px;
    font-weight: bold;
}
}