:root {
  --Roboto: "Roboto", sans-serif;
  --Rubik: "Rubik", sans-serif;
  --yellow: #f3b146;
  --black: #090e21;
  --Green: #1f6100;
  --pink: #e40584;
  --pinkBlack: #c0006d;
}

/* background-color: var(--main-bg-color);*/
/* background-image: url(../images/logo.png); */

html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  position: relative;
  /* font-family: var(--Roboto); */
}
html body a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none !important;
}
del {
  text-decoration: none;
}
/* header */
.logo {
  margin-left: -10px;
}
header {
  padding: 20px;
  border-bottom: 1px solid #dedede;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.1s ease;
}
header .hide {
  transform: translateY(-50px);
}
.menu_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu a {
  font-family: var(--Roboto);
  font-weight: 500;
  font-size: 18px;
  color: var(--black);
  margin-left: 30px;
}
.menu a:hover {
  text-decoration: none;
  color: var(--pink);
}
.menu_wrap .menu .menu_active,
.menu_box_mobile .menu_active {
  border-bottom: 3px solid var(--pink);
}
header .button_header,
footer .button_header {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  background-color: var(--pink);
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  color: #fff;
  border-radius: 9px;
  transition: all 0.3s ease;
}
footer .button_header:hover,
header .button_header:hover {
  background-color: #c0006d;
}
section {
  padding: 0px 30px;
}
/* section_main */
.section_main {
  width: 100%;
  height: calc(100vh - 88px);
  background-color: #f9f9f9;
}
.wrap_home_title,
.wrap_home_title h1 {
  font-family: Rubik;
  font-size: 68px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--black);
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
}
.wrap_home_title p {
  font-family: var(--Rubik);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: var(--black);
  margin: 0;
  text-align: center;
  padding-top: 12px;
}
/* section_two_home */
.section_two_home {
  background-color: #fff;
  width: 100%;
}
.wrap_two_home {
  display: flex;
  justify-content: center;
  padding: 70px 0;
}
.sub_title,
.sub_title h1 {
  color: #090e21;
  text-align: center;
  font-family: var(--Rubik);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.text_home {
  color: #000;
  text-align: center;
  font-family: var(--Rubik);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 790px;
  padding: 24px 0;
  text-align: left;
}
.wrap_home_button {
  display: flex;
  justify-content: center;
}
.wrap_home_button .button_header {
  margin: 0 10px;
}
.wrap_home_button .yellow {
  background-color: var(--yellow);
  transition: all 0.3s ease;
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  color: #fff;
  border-radius: 9px;
  transition: all 0.3s ease;
}
.wrap_home_button .yellow:hover {
  background-color: #d9a300;
}
/* section_home_blog */
.section_home_blog {
  padding-top: 40px;
  padding-bottom: 100px;
}
.strike {
  color: var(--pink);
  font-family: var(--Rubik);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  margin-top: 24px;
}
.small_strike {
  font-size: 14px;
  position: absolute;
  bottom: 20px;
  left: 28px;
}
.small_strike img {
  width: 20px;
}
.strike:hover.strike img {
  animation: box 1s 0s infinite;
}
@keyframes box {
  0% {
    margin-left: 2px;
  }

  50% {
    margin-left: 8px;
  }

  100% {
    margin-left: 2px;
  }
}
.text_home a .strike:hover {
  color: var(--pinkBlack);
}
.sub_title img {
  margin-left: 9px;
  margin-top: 0px;
  position: absolute;
}
.wrap_home_article {
  position: relative;
  border-radius: 10px;
  border: 1px solid #dedede;
  background: #fff;
  padding: 28px;
  min-height: 350px;
  transition: all 0.3s ease;
}
.wrap_home_article:hover {
  transform: scale(1.05);
  box-shadow: 1px 9px 19px 2px rgba(34, 60, 80, 0.24);
}
.date {
  color: #747475;
  font-family: var(--Roboto);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.title_home_article {
  color: var(--black);
  font-family: var(--Rubik);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  padding: 12px 0;
  margin: 0;
}
.wrap_home_article a .title_home_article:hover {
  color: var(--pinkBlack);
}
.title_text_article {
  position: relative;
  color: #454552;
  font-family: var(--Roboto);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  max-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 100px;
}
.wrap_stay {
  padding-top: 60px;
}
.wrap_stay .sub_title,
.wrap_stay .sub_title h1 {
  text-align: left;
}
/* section_never_fly */
.section_never_fly {
  padding: 50px 0;
  background: #f7f7f7;
}
/* section_reviews */
.section_reviews {
  padding: 60px 0 95px 0;
}
.section_reviews .sub_title,
.section_reviews .sub_title h1 {
  margin-bottom: 80px;
}
.reviews_box {
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid #dedede;
  display: inline-block;
  height: 150px;
  margin: 0 12px;
}
.reviews_box a {
  text-decoration: underline;
}
.reviews_box a:hover {
  color: var(--pinkBlack);
}
.foto {
  display: flex;
  width: 100%;
}
.foto img {
  width: 25px;
  height: 25px;
  margin: 10px 0;
}
.foto p {
  margin-left: 12px;
  color: #0d0c46;
  font-family: var(--Roboto);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
  padding-top: 10px;
}
.rev-1 {
  width: 303px;
}
.rev-2 {
  width: 408px;
}
.rev-3 {
  width: 440px;
}
.rev-4 {
  width: 410px;
}
.rev-5 {
  width: 470px;
}
.rev-6 {
  width: 530px;
}
.wrap_reviews {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: 100%;
}
.two_rows_reviews {
  margin-bottom: 35px;
}
.wrap_group_one {
  min-width: 1340px;
  display: flex;
  justify-content: center;
}
.wrap_group_two {
  min-width: 1500px;
}
/* footer */
footer {
  padding: 45px 0 45px 30px;
  background-color: var(--black);
}
footer .button_header {
  max-width: 180px;
  margin: 0 auto;
  margin-right: 30px;
}
footer .logo,
footer .menu,
footer {
  display: flex;
  align-items: center;
  height: 100%;
}
footer .menu {
  justify-content: center;
}
footer .menu a {
  color: #fff;
}
footer .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
/* slider */
.wrap_glider {
  padding: 0 10%;
}
/* menu */
.none,
.menu_box_mobile,
.mobile_menu {
  display: none;
}
/* section_parallax */
.section_parallax {
  position: relative;
  background-attachment: fixed;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section_parallax {
  background-image: url(../images/parr.svg);
  background-color: #f7f7f7;
}
.section_parallax .wrap_home_title,
.section_parallax .wrap_home_title h1 {
  padding: 45px 0 125px 0;
}
.blog_parallax {
  background-image: url(../images/blog.svg);
  background-color: #f9f9f9;
}
footer .logo img {
  width: 90%;
}
/* bredcrumbs */
.bredcrumbs {
  padding: 20px 0 50px 0;
  font-family: var(--Roboto);
  font-weight: 600;
  font-size: 13px;
  color: var(--Black);
  line-height: normal;
}
.bredcrumbs a {
  font-weight: 400;
  font-size: 13px;
  color: var(--Black);
}
.bredcrumbs a:hover {
  color: var(--pinkBlack);
}
.bredcrumbs span {
  padding: 0 5px;
}
/* section_about_content */
.section_about_content {
  padding: 80px 30px 100px 30px;
}
.section_about_content .sub_title,
.section_about_content .sub_title h1 {
  text-align: left;
}
.about_subtitles {
  color: var(--black);
  font-family: var(--Rubik);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
}
.about_content {
  color: var(--black);
  font-family: var(--Roboto);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 12px 0 100px 0;
}
/* section_blog */
.section_blog {
  padding: 80px 0 140px 0;
}
.section_blog .wrap_home_article {
  margin-bottom: 30px;
}
.wrap_title_article,
.wrap_title_article h1 {
  color: var(--Black);
  text-align: center;
  font-family: var(--Rubik);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  /* max-width: 800px; */
  margin: 0 auto;
}
.date_article {
  width: 100%;
  text-align: center;
  color: #747475;
  font-family: var(--Roboto);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 12px;
}
.section_article .date_article {
  text-transform: capitalize;
}
.wrap_box_intro {
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid #dedede;
  background: #f9f9f9;
  display: inline-block;
  margin: 50px 0;
  overflow: hidden;
  height: auto;
  transition: all 0.3s ease;
}
.hide {
  height: 60px;
}
.title_intro {
  color: var(--black);
  font-family: var(--Rubik);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 20px;
}
.title_intro span {
  color: #747475;
  font-family: var(--Rubik);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-left: 12px;
  cursor: pointer;
}
.wrap_box_intro ul {
  margin: 0;
}
.wrap_box_intro ul li {
  padding-bottom: 10px;
}
.wrap_box_intro ul li:last-child {
  padding-bottom: 0px;
}
.wrap_box_intro ul li a {
  color: var(--black);
  font-family: var(--Roboto);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.wrap_text_article {
  color: var(--black);
  font-family: var(--Roboto);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  padding-bottom: 120px;
}
.wrap_text_article p {
  padding-bottom: 8px;
  margin: 0;
}
.wrap_text_article a {
  text-decoration: underline;
  color: var(--black);
}
.wrap_text_article a:hover {
  color: var(--pink);
}
.wrap_text_article strong {
  display: block;
  padding: 10px 0;
}
.wrap_text_article h2,
.wrap_text_article h3 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 12px;
  padding-top: 8px;
  margin: 0;
}
.wrap_text_article ul,
.wrap_text_article ol {
  padding-bottom: 8px;
  padding-left: 20px;
  margin-bottom: 0;
}
.wrap_text_article ul li,
.wrap_text_article ol li {
  padding-bottom: 4px;
}
.section_article ol {
  padding-left: 0;
}
.wrap_text_article ul li strong {
  display: contents;
  padding: 10px 0;
}
/* section_compare */
.section_content_software {
  padding-top: 60px;
  padding-bottom: 120px;
}
.section_compare {
  background: #f7f7f7;
}
.section_compare .wrap_home_title,
.section_compare .wrap_home_title h1 {
  padding: 45px 0 125px 0;
}
.wrap_subtitle_compare {
  color: var(--black);
  font-family: var(--Roboto);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  padding-top: 8px;
}
.title_countries {
  color: var(--black);
  font-family: var(--Rubik);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 15px 0 45px 0;
}
.wrap_box_compare {
  border-radius: 10px;
  border: 1px solid #dedede;
  padding: 25px;
  color: var(--black);
  font-family: var(--Roboto);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 30px;
}
.grey_text {
  color: #747475;
  font-family: var(--Roboto);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.wrap_place {
  display: none;
}
.wrap_place .grey_text {
  padding-bottom: 8px;
}
.title_box_compare {
  color: var(--black);
  font-family: var(--Rubik);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dedede;
  margin: 0;
}
.title_box_compare a:hover {
  color: var(--black);
  text-decoration: underline !important;
}
.wrap_price {
  display: flex;
  padding-top: 10px;
  border-bottom: 1px solid #dedede;
  justify-content: space-between;
  display: none;
}
.wrap_price .grey_text,
.wrap_price .price {
  padding-bottom: 10px;
}
.cost {
  padding: 0;
  margin: 0;
  margin-bottom: 8px;
}
.price {
  color: var(--black);
  font-family: var(--Rubik);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.content_box_compare {
  padding-top: 20px;
  border-bottom: 1px solid #dedede;
  min-height: 444px;
  padding-bottom: 45px;
}
.content_box_compare ul {
  padding-left: 25px;
}
.content_box_compare p {
  padding-top: 15px;
  color: var(--black);
  font-family: var(--Roboto);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.link_box_compare a {
  color: var(--pink);
  font-family: var(--Roboto);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-top: 15px;
  display: block;
}
.link_box_compare a:hover {
  color: var(--pinkBlack);
}
/* form */
textarea {
  width: 100%;
}

label {
  font-family: var(--Roboto);
  font-weight: 400;
  font-size: 13px;
  margin-top: 10px;
  color: #747475;
  padding-bottom: 8px;
}

form .form-control:focus,
form textarea:focus {
  color: inherit;
  background-color: inherit;
  border-color: inherit;
  outline: 0;
  box-shadow: none;
  border: 2px solid var(--black) !important;
}
input:-internal-autofill-selected {
  background-color: inherit;
}
/* form .form-control:hover,
form textarea:hover {
  border: 1px solid #338309 !important;
} */

html body .form_box form input,
html body .form_box form textarea {
  border: 1px solid var(--black);
  border-radius: 6px;
  height: 40px;
  font-family: var(--Roboto);
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}

html body .form_box form textarea {
  height: 75px;
  padding: 12px 8px;
}

form textarea::placeholder {
  padding: 2px;
  color: #dedede !important;
  font-family: var(--Roboto);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

form input::placeholder {
  padding: 2px;
  color: #dedede !important;
  font-family: var(--Roboto);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

form button {
  background-color: var(--pink);
  color: #fff;
  border-radius: 8px !important;
  height: 45px;
  font-family: var(--Roboto);
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}

form button:focus {
  outline: none;
}

form button:hover,
.thanks_close:hover {
  background-color: var(--pinkBlack);
}

#errorMessName,
#errorMessEmail {
  font-family: var(--Roboto);
  font-weight: 400;
  font-size: 14px;
  color: #b50000;
  padding-top: 5px;
}

.thanks_title {
  color: #1b1b1b;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  font-family: var(--Roboto);
}
.button_form {
  font-family: var(--Roboto);
  font-weight: 400;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--black);
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
}
.button_form:hover {
  color: #338309;
  border: 1px solid #338309;
}
.button_push {
  color: #338309;
  border: 1px solid #338309;
}

/* pop up */
#singUp.active_pop {
  transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  backdrop-filter: blur(3px);
}
#singUp {
  position: fixed;
  background: rgb(227 227 227 / 60%);
  width: 100vw;
  height: 100vh;
  top: 0px;
  z-index: 9;
  transition: 0.4s;
  -o-transition: 0.4s;
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s ease;
  transform: scale(0);
  -o-transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  /* overflow-y: scroll; */
}
.modal__box {
  width: 95%;
  max-width: 400px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px 45px;
  -webkit-box-shadow: 1px 9px 19px 2px rgba(34, 60, 80, 0.24);
  -moz-box-shadow: 1px 9px 19px 2px rgba(34, 60, 80, 0.24);
  box-shadow: 1px 9px 19px 2px rgba(34, 60, 80, 0.24);
  border-radius: 12px;
}
.thanks_close {
  padding: 10px 0;
  width: 100%;
  background-color: var(--pink);
  border-radius: 8px;
  color: #fff;
  font-family: var(--Roboto);
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.thanks_text {
  color: var(--black);
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  font-family: var(--Roboto);
  padding: 10px 0 20px 0;
}
.wrap_footer_text span {
  margin: 0;
  max-width: 315px;
}
.wrap_footer_text {
  justify-content: flex-end;
  width: 100%;
}
.error,
.emailError {
  font-family: var(--Roboto);
  font-weight: 400;
  font-size: 14px;
  color: #b50000;
  padding-top: 5px;
}
.error.active,
.emailError .active {
  display: block;
}
.border_red {
  border: 1px solid #b50000 !important;
}
.title_modal {
  color: var(--black);
  text-align: center;
  font-family: var(--Roboto);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.menu_close_modal {
  background-image: url(../images/close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -20px;
  right: -35px;
  z-index: 2;
  cursor: pointer;
}
.sub_text_modal {
  color: #747475;
  text-align: center;
  font-family: var(--Roboto);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 0;
}
.form_box {
  position: relative;
}
.display_none {
  display: none;
}
.wrap_two_home .text_home {
  text-align: center;
}

@media screen and (max-width: 1500px) {
  .wrap_reviews {
    justify-content: normal;
  }
  .content_box_compare {
    min-height: 465px;
  }
  .title_text_article {
    min-height: 125px;
  }
}

@media screen and (max-width: 1400px) {
  .wrap_stay {
    padding-top: 40px;
  }
  .wrap_price {
    display: none;
    text-align: left;
  }
}
@media screen and (max-width: 1300px) {
  .content_box_compare {
    min-height: 505px;
  }
  .price {
    font-size: 17px;
  }
}
@media screen and (max-width: 1200px) {
  .title_text_article {
    min-height: 100px;
  }
  .menu a {
    margin-left: 15px;
  }
  .wrap_home_title,
  .wrap_home_title h1 {
    font-size: 66px;
  }
  .wrap_glider {
    padding: 0 0;
  }
  .content_box_compare {
    min-height: 548px;
  }
  .price {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .section_content_software {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .bredcrumbs {
    padding-left: 10px;
  }
  .logo img {
    width: 90%;
  }
  header {
    padding: 20px 10px;
  }
  footer {
    padding: 40px 10px;
  }
  .wrap_home_title,
  .wrap_home_title h1 {
    font-size: 50px;
    text-align: center;
  }
  .section_never_fly .text_home {
    text-align: center !important;
    padding: 15px 20px 25px 20px;
  }
  .wrap_two_home .text_home {
    text-align: center;
  }
  header .menu {
    margin-left: -30px;
  }
  .text_home {
    font-size: 21px;
  }
  footer .logo {
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }
  footer .menu {
    justify-content: left;
  }
  .footer_a {
    display: flex;
    width: 100%;
    justify-content: end;
  }
  footer .button_header {
    margin: 0;
  }
  section {
    padding: 0px 10px;
  }
  .section_about_content {
    padding: 70px 10px 80px 10px;
  }
  .section_parallax .wrap_home_title,
  .section_parallax .wrap_home_title h1 {
    font-size: 54px;
  }
  .content_box_compare {
    min-height: 506px;
  }
}
@media screen and (max-width: 767.98px) {
  .sub_title img {
    margin-left: 8px;
    margin-top: -10px;
    position: absolute;
  }
  header .menu,
  .a_header {
    display: none;
  }
  .wrap_home_title,
  .wrap_home_title h1 {
    font-size: 36px;
    text-align: center;
  }
  .sub_title,
  .sub_title h1 {
    font-size: 24px;
  }
  .wrap_home_article {
    padding: 15px;
  }
  .wrap_stay {
    padding-top: 30px;
  }
  .text_home {
    font-size: 18px;
  }
  .menu a {
    font-size: 17px;
  }
  .mobile_menu {
    color: var(--black);
    transform: rotate(90deg);
    position: relative;
    cursor: pointer;
    font-size: 20px;
    display: block;
  }
  .menu_box_mobile {
    position: fixed;
    top: 0;
    right: 0;
    left: 900px;
    z-index: 12;
    background-color: #fff;
    display: block;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding-top: 50%;
    transition: all 0.3s ease;
    -webkit-box-shadow: -7px 2px 13px 4px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: -7px 2px 13px 4px rgba(34, 60, 80, 0.2);
    box-shadow: -7px 2px 13px 4px rgba(34, 60, 80, 0.2);
  }
  .open {
    left: 50px !important;
  }
  .menu_close {
    background-image: url(../images/close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 35px;
    left: 30px;
    z-index: 2;
    cursor: pointer;
  }
  .menu_box_mobile ul {
    padding: 0;
    text-align: center;
  }
  .menu_box_mobile ul li {
    list-style: none;
    padding-bottom: 25px;
  }
  .menu_box_mobile ul li a {
    font-weight: 500;
    font-family: var(--Rubik);
    font-size: 22px;
    color: var(--black);
  }
  .about_content {
    padding: 12px 0 50px 0;
  }
  .wrap_title_about .sub_title,
  .wrap_title_about .sub_title h1 {
    margin-bottom: 20px;
  }
  .wrap_text_article {
    padding-bottom: 80px;
  }
  .content_box_compare {
    min-height: auto;
  }
  .wrap_price {
    display: none;
    text-align: left;
    flex-wrap: wrap;
  }
  .section_content_software {
    padding-bottom: 40px;
  }
  .hide {
    text-align: center;
  }
  .wrap_flex {
    display: flex;
    justify-content: center;
  }
  .content_box_compare {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 576px) {
  footer .menu {
    justify-content: center;
  }
  .footer_a {
    justify-content: center;
    margin-top: 20px;
  }
  .menu a {
    margin-left: 0px;
    margin-right: 15px;
    font-size: 14px;
  }
  .strike {
    text-align: center;
  }
  .section_home_blog {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .wrap_two_home {
    padding: 20px 0;
  }
  .section_reviews {
    padding: 50px 0 70px 0;
  }
  .section_reviews .sub_title,
  .section_reviews .sub_title h1 {
    margin-bottom: 40px;
  }
  .box_home_title span {
    display: block;
  }
  .wrap_home_title p {
    font-size: 18px;
    margin-top: 10px;
  }
  .wrap_home_title,
  .wrap_home_title h1 {
    font-size: 36px !important;
  }
  .section_blog .wrap_home_article {
    min-height: auto;
    padding: 20px;
  }
  .section_blog {
    padding: 50px 0 0px 0;
  }
  .section_content_software {
    padding-bottom: 80px;
  }
  .modal__box {
    padding: 20px 20px;
  }
  .menu_close_modal {
    right: 0;
  }
  .sub_title,
  .sub_title h1 {
    font-size: 20px;
  }
  .sub_title img {
    width: 30px;
  }
  .logo {
    margin-left: 0px;
  }
  .wrap_home_button {
    display: block;
  }
  .wrap_home_button .button_header {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
  .width_yellow {
    width: 220px;
    margin: 0 auto;
  }
  .wrap_box_intro {
    padding: 15px;
  }
  .title_intro,
  .title_intro span {
    font-size: 19px;
  }
  .wrap_box_intro ul {
    padding-left: 20px;
  }
  .wrap_box_intro ul li a {
    font-size: 17px;
  }
  .wrap_box_intro ul li {
    padding-bottom: 2px;
  }
  .section_reviews .sub_title,
  .section_reviews .sub_title h1 {
    width: 265px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .sub_title img {
    margin-left: 8px;
    margin-top: -2px;
    position: absolute;
  }
  .fire_icon {
    margin-top: -10px !important;
  }
  .section_content_software {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .wrap_stay .sub_title,
  .wrap_stay .sub_title h1 {
    text-align: center;
  }
}
