/* -*- coding: utf-8 -*- */

:root {
  --min-width: 360px;
  --max-width: 1200px;
  --bg-color: #ffffff;
  --fg-color: #090909;
  --main-bg-color: #ebf3fa;
  --inactive-color: #e8e8e8;
  --iolo-dark-color: #231f20;
  --iolo-red-color: #cd3432;
  --iolo-teal-color: #4eb6de;
  --iolo-light-bg-color: #f4f4f4;
  --iolo-gray-bg-color: #ebebeb;
  --iolo-pale-bg-color: #ebf3fa;
  --iolo-gray-color: #616775;
  --iolo-fg-color: #2c2e30;
  --iolo-light-fg-color: #7e8085;
  --iolo-slate-fg-color: #113145;
  --iolo-button-bg-color: #328036;
  --iolo-button-fg-color: #f6f8f9;
  --iolo-white-fg-color: #f6f8f9;
}

html {
  background-color: var(--bg-color);
  box-sizing: border-box;
  color: var(--fg-color);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
  padding: 0;
}

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

body {
  min-height: 100vh;
}

iframe {
  border: none;
}

img {
  display: block;
  height: auto;
  width: auto;
}

figure {
  margin: 0;
}

blockquote {
  margin: 0;
}

code, kbd, pre, samp, var {
  font-family: "Roboto Mono", monospace;
}

a,
a:focus,
a:hover,
a:visited {
  color: inherit;
  text-decoration: underline;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
}

dfn {
  font-family: inherit;
  font-style: normal;
  font-weight: bold;
}

samp {
  font-family: inherit;
  font-style: normal;
  font-weight: bold;
}

.inline-block {
  display: inline-block;
}

.in-progress {
  cursor: progress;
}

.in-progress :disabled {
  cursor: progress !important;
}

.telephone {
  white-space: nowrap;
}

#livechat-eye-catcher-img img {
  display: none !important;
}

#header a {
  text-decoration: none;
}

.header-wrapper {
  /* background-color: #e5e5e5; */
}

.side-menu {
  display: none;
}

@media only screen and (min-width:721px) {
  .header-wrapper {
    display: flex;
    font-size: 14px;
    font-weight: 700;
  }
  .header-wrapper::before,
  .header-wrapper::after {
    content: '';
    display: block;
    flex: 1;
    height: 10px;
  }
  .header-content {
    align-items: center;
    display: flex;
    flex: 10000;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    max-width: var(--max-width);
    min-width: var(--min-width);
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
  }
  .header-link-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    justify-content: space-around;
    line-height: 35px;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .header-logo-section {
    flex-grow: 2;
  }
  .header-menu-section {
    flex-grow: 1;
  }
  #home .header-link-list .index,
  #index .header-link-list .index,
  #faq .header-link-list .faq,
  #devices .header-link-list .devices,
  #free-trial .header-link-list .devices,
  #guide .header-link-list .guide,
  #help .header-link-list .help {
    border-bottom: 2px solid #cd3432;
  }
}
#home .header-link-list .index a,
#index .header-link-list .index a,
#faq .header-link-list .faq a,
#devices .header-link-list .devices a,
#free-trial .header-link-list .devices a,
#guide .header-link-list .guide a,
#help .header-link-list .help a {
  color: var(--iolo-red-color);
}

@media only screen and (max-width:720px) {
  .header-content {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
  }
  .header-link-list {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    list-style-type: none;
    margin: 0 10px 0 auto;
    padding: 0;
    width: fit-content;
  }
  .header-link-list li {
    display: inline-block;
    margin-top: 1em;
    white-space: nowrap;
  }
  .header-menu-section {
    height: 100%;
    max-height: 0;
    max-height: 0;
    opacity: 0.95;
    overflow: hidden;
    padding-left: 10px;
    position: relative;
    transition: max-height .5s ease-out;
    width: 100%;
  }
  .header-link-list a {
    display: inline-block;
    color: #000000;
    padding: 0 5px;
  }
  .header-link-list .fa-user-alt {
    display: none;
  }
  .hamb {
    cursor: pointer;
    padding: 20px 10px 0 0;
    position: relative;
  }
  .hamb-line {
    background: #000000;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
  }
  .hamb-line::before,
  .hamb-line::after {
    background: #000000;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  .hamb-line::before {
    top: 5px;
  }
  .hamb-line::after {
    top: -5px;
  }
  .side-menu:checked ~ .header-menu-section {
    max-height: 100%;
  }
  .side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
  }
  .side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
  }
  .side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
  }
}

#footer {
}

#footer a {
  text-decoration: none;
}

.footer-top-wrapper,
.footer-wrapper {
  display: flex;
  font-size: 14px;
}

.footer-top-wrapper {
  background: #565b68;
  color: #ffffff;
}

.footer-wrapper {
  background: #616775;
  color: #ffffff;
  padding-bottom: 120px;
}

.footer-top-wrapper::before,
.footer-top-wrapper::after,
.footer-wrapper::before,
.footer-wrapper::after {
  content: '';
  display: block;
  flex: 1;
  height: 10px;
}

.footer-top-content,
.footer-content {
  flex: 10000;
  line-height: 1.5;
  max-width: var(--max-width);
  min-width: var(--min-width);
  padding-left: 10px;
  padding-right: 10px;
}

.footer-store-section {
  background: #565b68;
  font-size: 16px;
  padding-bottom: 60px;
  padding-top: 30px;
  text-align: center;
}

.footer-store-section .also-available {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 30px;
  text-transform: uppercase;
}

.footer-store-section .available-stores {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-around;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-copy-section {
  padding-top: 30px;
  text-align: center;
}

.footer-menu-section {
  padding-top: 60px;
  padding-bottom: 30px;
}

.footer-divider {
  color: #ffffff;
  opacity: 0.28;
  margin-bottom: 30px;
  margin-top: 30px;
}

.footer-menu {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-around;
}

.footer-card {
  width: 210px;
}

.footer-link-title {
  color: #a1acb3;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}

.footer-link-list {
  line-height: 2.5;
  list-style-type: none;
  margin: 1.5em 0 0 0;
  padding: 0;
}

.footer-sns-list {
  align-items: center;
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 180px;
}

.footer-sns-list li {
  margin: 0;
  padding: 0;
}

.footer-certified {
  padding-top: 30px;
}

.footer-sns-list .fab {
  font-size: 24px;
}

.footer-link-subtitle {
  font-size: 14px;
  font-weight: 700;
}

.footer-contact-list {
  list-style-type: none;
  margin: 1.5em 0 0 0;
  padding: 0;
}

.footer-contact-list li {
  margin-top: 18px;
  padding-left: 24px;
  position: relative;
}

.footer-contact-list .fas {
  font-size: 16px;
  left: 0;
  position: absolute;
  top: 2px;
}

#main {
}

.main-wrapper {
  background: var(--main-bg-color);
  display: flex;
  font-size: 14px;
}

.main-wrapper::before,
.main-wrapper::after {
  content: '';
  display: block;
  flex: 1;
  min-height: 10px;
  /* min-width: 10px; */
}

.main-head {
  padding-bottom: 30px;
  padding-top: 30px;
}

.main-foot {
  padding-bottom: 30px;
  padding-top: 30px;
}

.main-head .main-title {
  font-size: 36px;
  font-weight: 800;
  margin: 0;
  padding: 0;
  text-align: center;
}
@media only screen and (max-width:720px) {
  .main-head .main-title {
    font-size: 5vw;
  }
}

#guide .main-board {
  background: #ffffff;
  border-radius: 5px;
  max-width: 960px;
  padding: 0 0 60px;
}

#guide .switches {
  align-items: stretch;
  display: flex;
  flex-wrap: no wrap;
  font-size: 21px;
  font-weight: 700;
  justify-content: space-between;
  width: 100%;
}

#guide .switches .switch {
  align-items: center;
  background: #e8e8e8;
  display: flex;
  height: 60px;
  justify-content: center;
  text-decoration: none;
  width: 50%;
}

#guide .switches .switch:first-child {
  border-radius: 5px 0 0 0;
}

#guide .switches .switch:last-child {
  border-radius: 0 5px 0 0;
}

#guide .switches .active {
  background: #43ac49;
  color: #ffffff;
}

#guide .tab {
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width:450px) {
  #guide .tab {
    padding-left: 30px;
    padding-right: 30px;
  }
}

#guide .qsg-item {
  /*
    border-top: 1px solid var(--inactive-color);
    */
  padding-bottom: 30px;
  padding-left: 30px;
  padding-top: 30px;
  position: relative;
}

#guide .warning {
  padding-bottom: 30px;
  padding-top: 30px;
}

#guide h2 {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

#guide .digit {
  align-items: center;
  background: var(--inactive-color);
  border-radius: 50%;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  height: 24px;
  justify-content: center;
  left: 0;
  position: absolute;
  width: 24px;
}

#guide .list-figure {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#guide .status-image {
  overflow: hidden;
  padding-top: 15px;
  max-width: calc(100vw - 50px);
}

#guide .status-list {
  list-style-type: none;
  margin: 0;
  max-width: 450px;
  padding: 0;
}

#guide .status-list li {
  margin-top: 1.5em;
  padding-left: 100px;
  position: relative;
}

#guide .status-list .buttonbox {
  align-items: center;
  border: solid 2px #cccccc;
  color: #ffffff;
  display: inline-flex;
  font-size: 12px;
  height: 30px;
  justify-content: center;
  left: 0;
  margin-right: 10px;
  margin-top: -5px;
  position: absolute;
  text-transform: uppercase;
  width: 90px;
}

#guide .status-list .buttonbox.encrypted {
  background: #00cc00;
}

#guide .status-list .buttonbox.secure {
  background: #3333ff;
}

#guide .status-list .buttonbox.activating {
  background: #dddd00;
}

#guide .status-list .buttonbox.unsecure {
  background: #ff3333;
}

#guide .wifi-list {
  list-style-type: none;
  padding-left: 30px;
}

#guide .wifi-list li {
  position: relative;
}

#guide .wifi-list li img {
  left: -30px;
  position: absolute;
}

#guide .columns {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#guide #getting .column {
  max-width: 480px;
}

#guide #using .column {
  max-width: 330px;
}


@media only screen and (max-width:400px) {
  #guide .status-activate-image {
    margin-left: -30px;
  }
}

#guide .menu-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#guide .menu-image {
  padding-left: 30px;
  padding-right: 30px;
}

#guide .more-inf {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

#guide .tip {
  max-width: 340px;
}

#guide .icon-question {
  display: inline;
}

#guide .help-image {
  padding-left: 20px;
}

#help .nav-bar,
#faq .nav-bar {
  display: none;
  left: 10px;
  position: fixed;
  top: 120px;
}

#help .nav-bar ul,
#faq .nav-bar ul {
  list-style-type: none;
}

#help .nav-bar ul li,
#faq .nav-bar ul li {
  margin-top: 1.5em;
}

#help .nav-bar .content,
#faq .nav-bar .content {
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.5;
  text-transform: uppercase;
}

#help .nav-bar a,
#faq .nav-bar a {
  font-weight: 700;
  text-decoration: none;
}

#help .click-nav,
#faq .click-nav {
  display: none;
}

#help .main-board,
#faq .main-board {
  background: #ffffff;
  border-radius: 5px;
  max-width: 960px;
  padding: 30px 30px 120px 30px;
  position: relative;
}

@media only screen and (max-width:600px) {
  #help .main-board,
  #faq .main-board {
    padding: 10px 10px 40px 10px;
  }
}

@media only screen and (min-width:721px) {
  #help.desktop-help .nav-bar,
  #faq.desktop-faq .nav-bar {
    display: block;
    width: 250px;
  }
  #help.desktop-help .main-board,
  #faq.desktop-faq .main-board {
    margin-left: 260px;
  }
  #help.desktop-help .click-nav,
  #faq.desktop-faq .click-nav {
    display: block;
  }
}

#faq .link-to-mobile,
#faq .link-to-desktop {
  top: -2em;
  color: #1a0dab;
  font-size: 11px;
  opacity: 0.5;
  position: absolute;
  right: 10px;
}

#faq .section {
  padding-left: 30px;
}

#help .question,
#faq .question {
  margin-top: 2em;
  position: relative;
}

#faq .question::before {
  align-items: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  content: '?';
  display: inline-flex;
  height: 1em;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-150%,25%);
  width: 1em;
}

#help .paragraph,
#faq .paragraph {
  margin-top: 1em;
}

#help ol,
#help ul,
#faq ol,
#faq ul {
  padding: 0 0 0 1em;
}

#help .section-jump a,
#faq .section-jump a {
  font-weight: 700;
}

#help .see-also {
  background: #ebf3fa;
  border-radius: 10px;
  margin-top: 1em;
  padding: 15px;
}

#help .see-also span {
  color: #777777;
}

#help .see-also a {
  color: #da2327;
  display: block;
}

#help .main-foot,
#faq .main-foot {
  padding-bottom: 120px;
  padding-top: 120px;
}

#help .tray-icon {
  display: inline;
  vertical-align: top;
}

#help .tray-list {
  list-style-type: none;
  padding-left: 30px;
}

#help .tray-list li {
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  position: relative;
}

#help .tray-list img {
  display: inline;
  margin-right: 1em;
  left: -30px;
  position: absolute;
}

#help .menu-activate-images {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-around;
  padding-bottom: 30px;
  padding-top: 30px;
}

#help .menu-activate-images figure {
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  padding: 10px;
}
@media only screen and (max-width:400px) {
  #help .menu-activate-images figure {
    margin-left: -40px;
  }
}

#help .settings-image,
#help .encrypted-image {
  padding-bottom: 30px;
  padding-top: 30px;
}
@media only screen and (max-width:400px) {
  #help .settings-image,
  #help .encrypted-image {
    margin-left: -30px;
  }
}

#help .settings-image img,
#help .encrypted-image img {
  border: 1px solid #000;
  margin: 0 auto;
}

#help .section {
  margin-top: 120px;
}

#devices.account-active .account-board {
  display: none;
}

#devices .account-abstract {
  font-size: 16px;
}

#devices .paragraph {
  margin-bottom: 1em;
  margin-top: 1em;
}

#devices .get-started {
  color: #0066cc;
}

#devices .expired-message,
#devices .error-message,
#devices .notfound-message {
  color: var(--iolo-red-color);
  display: none;
  font-size: 18px;
  font-weight: 700;
}

#devices.account-expired .expired-message,
#devices.account-error .error-message,
#devices.account-notfound .notfound-message {
  display: block;
}

#devices #account-form {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 1em;
  margin-top: 1em;
}
@media only screen and (max-width:600px) {
  #devices #account-form {
    justify-content: space-around;
  }
}

#devices .have-no-account {
  margin-top: 3em;
}

#devices .email-field {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
}

#devices .email-field input {
  display: inline;
  height: 30px;
  padding: 0 0.5em;
  width: 240px;
}

#devices .signin-button {
  align-items: center;
  background: #43ac49;
  border-radius: 3px;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 500;
  height: 30px;
  justify-content: center;
  outline: none;
  padding: 0 20px;
  text-decoration: none;
  vertical-align: middle;
}

#devices .signin-button:focus,
#devices .signin-button:hover {
  filter: brightness(0.95);
  text-shadow: 0 0 1px currentColor;
}

#devices .signin-button:disabled:focus,
#devices .signin-button:disabled:hover,
#devices .signin-button:disabled {
  cursor: default;
  filter: grayscale(1);
  text-shadow: none;
}

#devices .download-board {
  display: none;
}

#devices.account-active .download-board {
  display: block;
}

#devices .main-abstract {
  color: #555555;
  font-size: 16px;
  padding-bottom: 30px;
  text-align: center;
}

#devices .mobile-text {
  display: none;
}

#devices.mobile-device .mobile-text {
  display: block;
}

#devices.mobile-device .desktop-text {
  display: none;
}

#devices .main-board {
  background: #ffffff;
  border-radius: 5px;
  max-width: var(--max-width);
  padding: 30px 30px 120px 30px;
}

#devices .device-items {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

#devices .item {
  background: #f8f8f8;
  border-radius: 5px;
  padding: 30px 10px;
  text-align: center;
  width: 270px;
}

#devices .device-image {
  display: inline-block;
  height: 210px;
  padding-top: 30px;
}

#devices .device-image img {
  display: inline-block;
}

#devices .app-link img {
  display: inline-block;
}

#devices .device-title {
  font-size: 24px;
  font-weight: 700;
}

#devices .device-name {
  color: #555555;
  font-size: 14px;
  font-weight: 400;
}

#devices .download-button {
  align-items: center;
  background: #08ae4c;
  border-radius: 4px;
  color: #ffffff;
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  height: 45px;
  justify-content: center;
  text-decoration: none;
  width: 130px;
}

#devices .download-button:focus,
#devices .download-button:hover {
  filter: brightness(0.95);
  text-shadow: 0 0 1px currentColor;
}

#free-trial .main-board {
  background: #ffffff;
  border-radius: 5px;
  max-width: 720px;
  padding: 30px 30px 120px 30px;
  position: relative;
}

#free-trial .main-abstract {
  font-size: 16px;
  margin-bottom: 1.5em;
}

#free-trial .trial-email {
  font-size: 18px;
  font-weight: 500;
}

#free-trial .trial-email input {
  height: 30px;
  padding: 0 0.5em;
  width: 240px;
}

#free-trial .trial-button {
  align-items: center;
  background: #43ac49;
  border-radius: 3px;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 500;
  height: 30px;
  justify-content: center;
  outline: none;
  padding: 0 20px;
  text-decoration: none;
  vertical-align: top;
}

#free-trial .trial-button:focus,
#free-trial .trial-button:hover {
  filter: brightness(0.95);
  text-shadow: 0 0 1px currentColor;
}

#free-trial .trial-button:disabled:focus,
#free-trial .trial-button:disabled:hover,
#free-trial .trial-button:disabled {
  cursor: default;
  filter: grayscale(1);
  text-shadow: none;
}

#free-trial .trial-message {
  margin-top: 10px;
  margin-left: 3em;
}

#free-trial .trial-renew,
#free-trial .trial-message {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  opacity: 0%;
  transition: opacity 200ms;
}

#free-trial .trial-expired .trial-renew,
#free-trial .trial-expired .trial-message,
#free-trial .trial-error .trial-message,
#free-trial .trial-ok .trial-message {
  opacity: 100%;
}

#free-trial .trial-expired .trial-renew,
#free-trial .trial-error .trial-message,
#free-trial .trial-expired .trial-message {
  color: var(--iolo-red-color);
}

#free-trial .trial-ok .trial-message {
  color: #43ac49;
}

#free-trial .registered {
  display: none;
}

#free-trial .trial-ok .registered {
  display: block;
}

#free-trial .trial-ok .subscribed {
  display: none;
}

#free-trial .registered,
#free-trial .subscribed {
  font-size: 16px;
  margin-top: 30px;
}

#free-trial .registered .download-link,
#free-trial .subscribed .download-link {
  color: #1a0dab;
}

#index #main {
  padding-bottom: 60px;
}

#index .hero-wrapper {
  background: #ebf3fa;
}

#index .feature-wrapper {
  background: #f6f8f9;
}

#index .media-wrapper {
  background: #ffffff;
}

#index .reason-wrapper {
  background: #ffffff;
}

#index .compatibility-wrapper {
  background: #ebf3fa;
}

#index .pricing-wrapper {
  background: #ffffff;
}

#index .hero-content {
  direction: rtl;
  max-width: var(--max-width);
  overflow: hidden;
  padding-bottom: 60px;
  padding-top: 60px;
  width: 100vw;
}

#index .hero-content .hero-container {
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  min-width: 1100px;
  max-width: var(--max-width);
}

#index .hero-content .hero-image {
  display: none;
}

#index .hero-content .hero-text {
  min-width: 500px;
  padding-left: 10px;
  padding-right: 10px;
  width: 500px;
}
@media only screen and (max-width:500px) {
  #index .hero-content .hero-text {
    min-width: auto;
    width: 100vw;
  }
}

#index .hero-content .hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}
@media only screen and (max-width:600px) {
  #index .hero-content .hero-title {
    font-size: 7.5vw;
  }
}

#index .hero-content .hero-abstract {
  font-size: 21px;
  padding-top: 20px;
  width: 340px;
}

#index .hero-content .hero-cta {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: flex-start;
  padding-bottom: 30px;
  padding-top: 30px;
}

#index .hero-content .download-button {
  align-items: center;
  background: #43ac49;
  border-radius: 3px;
  color: #ffffff;
  display: inline-flex;
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  justify-content: center;
  text-decoration: none;
  width: 240px;
}

#index .hero-content .download-button:focus,
#index .hero-content .download-button:hover {
  filter: brightness(0.95);
  text-shadow: 0 0 1px currentColor;
}

#index .hero-content .brand-list {
  align-items: center;
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  opacity: 0.5;
  padding: 0;
  width: 150px;
}

#index .hero-content .hero-free-trial {
  font-size: 15px;
  opacity: 0.6;
}

#index .feature-wrapper .feature-container {
  max-width: min(calc(100vw - 20px), var(--max-width));
  padding-bottom: 40px;
  padding-top: 40px;
  width: 100%;
}

#index .feature-wrapper .feature-title {
  color: #384057;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
}

#index .feature-content {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-around;
  padding-top: 20px;
}

#index .feature-content .feature-item {
  position: relative;
}

#index .feature-content figure {
  flex-grow: 1;
  position: relative;
}

#index .feature-content figure img {
  margin: 10px auto 10px auto;
}

#index .feature-content figure.feature-easeofuse img {
  margin: 4px auto 5px auto;
}

#index .feature-content .crossed-out {
  position: relative;
}

#index .feature-content .crossed-out::after {
  background-color: #384057;
  content: '';
  display: inline-block;
  height: 3px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,0) rotate(-45deg);
  width: 60px;
}

#index .feature-content figcaption {
  color: #384057;
  font-size: 20px;
  font-weight: 500;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
}

#index .feature-content p {
  color: #384057;
  font-size: 14px;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
}

#index .media-content {
  max-width: 100vw;
  padding-bottom: 20px;
  padding-top: 40px;
  width: var(--max-width);
}

#index .media-content .media-title {
  font-size: 18px;
  font-weight: normal;
  opacity: 0.6;
  text-align: center;
}

#index .media-content .media-logos {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-around;
  opacity: 0.6;
  padding-bottom: 30px;
  padding-top: 30px;
  width: 100%;
}

#index .media-reason-ruler {
  border: 2px solid var(--iolo-red-color);
  height: 0;
  margin: 30px auto;
  width: 56px;
}

#index .reason-content .reason-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 30px auto;
  max-width: 700px;
  padding-bottom: 30px;
  padding-right: 15px;
  text-align: center;
}
@media only screen and (max-width:840px) {
  #index .reason-content .reason-title {
    font-size: 5vw;
  }
}

#index .reason-section {
  max-width: var(--max-width);
  width: 100vw;
}

#index .reason-content .reason-why-section {
  direction: rtl;
}

#index .reason-content .reason-container {
  align-items: center;
  direction: ltr;
  display: flex;
  justify-content: center;
  max-width: var(--max-width);
}

#index .reason-content .reason-why-container {
  flex-direction: row-reverse;
}

#index .reason-content .reason-why-image {
  display: none;
}

#index .reason-content .reason-how-image {
  display: none;
}

#index .reason-content .reason-text {
  margin-bottom: 30px;
  margin-top: 30px;
  min-width: var(--min-width);
  padding-left: 10px;
  padding-right: 10px;
  width: var(--min-width);
}

#index .reason-content .reason-icon {
  align-items: center;
  background: #fcf0f0;
  border-radius: 50%;
  display: flex;
  height: 65px;
  justify-content: center;
  width: 65px;
}

#index .reason-content .reason-subtitle {
  font-size: 36px;
  font-weight: 700;
  padding-top: 1em;
  padding-bottom: 1em;
}
@media only screen and (max-width:720px) {
  #index .reason-content .reason-subtitle {
    font-size: 5vw;
  }
}

#index .compatibility-content {
  padding-top: 90px;
}

#index .compatibility-content .compatibility-top {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-left: 30px;
}

#index .compatibility-content .compatibility-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 20px;
  text-align: left;
  width: var(--min-width);
}
@media only screen and (max-width:760px) {
  #index .compatibility-content .compatibility-title {
    font-size: 5vw;
  }
}

#index .compatibility-content .compatibility-brands {
  opacity: 0.5;
  padding-top: 10px;
  text-align: center;
  width: var(--min-width);
}

#index .compatibility-content .compatibility-brands figcaption {
  margin: 0 auto;
}

#index .compatibility-content .compatibility-brands .brand-list {
  align-items: center;
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin: 15px auto;
  padding: 0;
  width: 150px;
}

#index .compatibility-content .compatibility-middle {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-bottom: 60px;
  padding-left: 10px;
  padding-top: 60px;
}

#index .compatibility-content .compatibility-type {
  align-items: stretch;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  max-width: 50vw;
  min-width: var(--min-width);
}

#index .compatibility-content .compatibility-type .type-icon {
  align-items: center;
  background: #e8e8e8;
  border-radius: 50%;
  display: flex;
  height: 65px;
  justify-content: center;
  min-width: 65px;
  width: 65px;
}

#index .compatibility-content .compatibility-list figcaption {
  opacity: 0.5;
}

#index .compatibility-content .compatibility-list ul {
  padding: 15px;
}

#index .pricing-content {
  font-size: 18px;
  padding-bottom: 60px;
  padding-top: 90px;
}

#index .pricing-content .pricing-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width:840px) {
  #index .pricing-content .pricing-title {
    font-size: 5vw;
  }
}

#index .pricing-content .pricing-subtitle {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.7;
  padding-right: 15px;
  text-align: center;
}

#index .pricing-content .product-cards {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 60px;
}

#index .pricing-content .product-card {
  background: #ffffff;
  border-radius: 5px;
  width: 340px;
}

#index .pricing-content .popular-product {
  box-shadow: 0px 56px 90px rgba(0, 0, 0, 0.06);
}

#index .pricing-content .popular-bar {
  align-items: center;
  background: #ffeded;
  border-top: 1px solid #e8e8e8;
  border-radius: 5px 5px 0 0;
  color: #da2327;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  height: 30px;
  justify-content: center;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  visibility: hidden;
}

#index .pricing-content .product-body {
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 30px;
}

#index .pricing-content .popular-product .product-body {
  border-radius: 0 0 5px 5px;
}

#index .pricing-content .popular-product .popular-bar {
  visibility: visible;
}

#index .pricing-content .product-value {
  color: #b8b8b8;
  font-size: 24px;
  margin-top: 10px;
  text-decoration: line-through;
  text-align: center;
  transform: translate(-80px, 5px);
  visibility: hidden;
}

#index .pricing-content .popular-product .product-value {
  visibility: visible;
}

#index .pricing-content .product-type {
  color: #777777;
  font-size: 13px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

#index .pricing-content .product-price {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

#index .pricing-content .product-price .user {
  color: #b8b8b8;
}

#index .pricing-content .paid-upfront {
  color: #555555;
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

#index .pricing-content .paid-upfront .orig-price {
  color: #b8b8b8;
  text-decoration: line-through;
}

#index .pricing-content .product-link {
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #b8b8b8;
  border-radius: 3px;
  display: flex;
  font-weight: 500;
  height: 60px;
  justify-content: center;
  margin-top: 20px;
  text-decoration: none;
}

#index .pricing-content .popular-product .product-link {
  background: #43ac49;
  border: none;
  color: #ffffff;
}

#index .pricing-content .product-link:focus,
#index .pricing-content .product-link:hover {
  background: #43ac49;
  color: #ffffff;
  filter: brightness(0.95);
  text-shadow: 0 0 1px currentColor;
}

#index .pricing-content .product-detail {
  list-style-type: none;
  margin: 0;
  padding-left: 60px;
  padding-top: 1em;
}

#index .pricing-content .product-detail li {
  margin-top: 0.5em;
  position: relative;
}

#index .pricing-content .product-detail li::before {
  align-items: center;
  background: #ffeded;
  border-radius: 50%;
  color: var(--iolo-red-color);
  content: '\2713';
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  left: -10px;
  line-height: 1;
  position: relative;
  top: 0;
  width: 20px;
}

#index .pricing-content .pricing-bottom {
  margin-top: 60px;
}

#index .pricing-content .features-list-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width:560px) {
  #index .pricing-content .features-list-title {
    font-size: 5vw;
  }
}

#index .pricing-content .features-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 11em;
  list-style-type: none;
  margin: 1em 0 0 0;
  padding: 0 0 0 20px;
  width: 900px;
}

@media only screen and (max-width:900px) {
  #index .pricing-content .features-list {
    height: auto;
    width: auto;
  }
}

#index .pricing-content .features-list li {
  margin-top: 1em;
  position: relative;
}

#index .pricing-content .features-list li::before {
  align-items: center;
  background: var(--iolo-red-color);
  border-radius: 50%;
  color: #ffffff;
  content: '\2713';
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  left: -10px;
  line-height: 1;
  position: relative;
  top: 0;
  width: 20px;
}

#unsub #main .unsubscribed {
  color: #119922;
  padding-left: 10px;
}

#unsub .main-content {
  background: #ffffff;
  border-radius: 5px;
  margin-bottom: 60px;
  margin-top: 60px;
  max-width: 900px;
  padding: 30px 30px 60px 30px;
}

#unsub .main-body {
  padding-top: 1em;
}

#contact-us .main-board {
  background: #ffffff;
  border-radius: 5px;
  max-width: 720px;
  padding: 30px 30px 120px 30px;
  position: relative;
}

#contact-us .main-abstract {
  font-size: 16px;
  margin-bottom: 1.5em;
  text-align: center;
}

#contact-us .chat-container {
  padding-top: 60px;
  text-align: center;
}

#contact-us .chat-button {
  align-items: center;
  background-color: rgb(46,117,210);
  border-radius: 6px;
  border: none;
  color: #ffffff;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  margin: 0 auto;
  outline-offset: 2px;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
}
#contact-us .chat-button:focus,
#contact-us .chat-button:hover {
  filter: brightness(1.1);
}

#terms-of-service .main-header,
#privacy-policy .main-header {
  text-align: justify;
}

#terms-of-service .main-title,
#privacy-policy .main-title {
  font-size: 24px;
  text-align: center;
}

#privacy-policy .date-stamps,
#terms-of-service .date-stamps {
  align-items: flex-start;
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  margin-top: 2em;
  padding-left: 30px;
}

#terms-of-service .main-header .paragraph,
#privacy-policy .main-header .paragraph {
  margin-bottom: 1.5em;
  margin-top: 1.5em;
  padding-left: 30px;
  text-align: justify;
}

#terms-of-service .main-header ul.legal-list > li,
#privacy-policy .main-header ul.legal-list > li {
  margin-bottom: 1.5em;
}

#privacy-policy .main-body,
#terms-of-service .main-body {
  text-align: justify;
}

#terms-of-service .main-body .paragraph,
#privacy-policy .main-body .paragraph {
  margin-bottom: 1.5em;
  margin-top: 1.5em;
}

#terms-of-service dfn,
#privacy-policy dfn {
  font-style: inherit;
}

#terms-of-service a,
#privacy-policy a {
  color: inherit;
}

#terms-of-service .telephone,
#privacy-policy .telephone {
  color: inherit;
}

#terms-of-service ul,
#privacy-policy ul {
  list-style-type: disc;
}

#terms-of-service .main-body > ol.legal-list,
#privacy-policy .main-body > ol.legal-list {
  list-style-type: upper-roman;
}

#terms-of-service .main-body > ol.legal-list > li,
#privacy-policy .main-body > ol.legal-list > li {
  font-weight: 700;
  margin-bottom: 3em;
}

#terms-of-service .main-body > ol.legal-list > li *,
#privacy-policy .main-body > ol.legal-list > li * {
  font-weight: 400;
}

#terms-of-service .main-body > ol.legal-list > li > ol,
#privacy-policy .main-body > ol.legal-list > li > ol {
  list-style-type: decimal;
  margin-top: 1.5em;
}

#terms-of-service .main-body > ol.legal-list > li > ol > li,
#privacy-policy .main-body > ol.legal-list > li > ol > li {
  margin-bottom: 1.5em;
}

#terms-of-service .main-body > ol.legal-list > li > ol > li > ol,
#privacy-policy .main-body > ol.legal-list > li > ol > li > ol {
  list-style-type: lower-latin;
}

#terms-of-service .main-body > ol.legal-list > li > ol > li > ol > li,
#privacy-policy .main-body > ol.legal-list > li > ol > li > ol > li {
  margin: 0;
}

#terms-of-service .main-body > ol.legal-list > li > ul > li > ul,
#privacy-policy .main-body > ol.legal-list > li > ul > li > ul {
  list-style-type: circle;
}

#terms-of-service .main-container > *,
#privacy-policy .main-container > * {
  margin: 30px auto 120px;
  max-width: 960px;
  padding-right: 10px;
}

#home {
  background-color: #f6f8f9;
  color: var(--iolo-fg-color);
}

#home .cpa-button {
  align-items: center;
  background-color: var(--iolo-button-bg-color);
  border: none;
  border-radius: 5px;
  color: var(--iolo-button-fg-color);
  display: inline-flex;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 800;
  justify-content: center;
  line-height: 120%;
  outline: none;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding-left: 4em;
  padding-right: 4em;
  padding-top: 2em;
  padding-bottom: 2em;
  transition: all 0.5s ease;
  white-space: nowrap;
}

#home .cpa-button:focus,
#home .cpa-button:hover {
  filter: brightness(1.1);
  text-shadow: 0 0 1px currentColor;
}

#home .compatible-with {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

#home .compatible-container {
  align-items: stretch;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 480px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 30px;
}

#home .compatible-container > * {
  flex-shrink: 1;
}

#home .compatible-device {
  position: relative;
  text-align: center;
}

#home .compatible-device-image {
  align-items: center;
  display: flex;
  height: 66px;
  justify-content: center;
}

#home .compatible-device-image img {
  width: 100%;
}

#home .compatible-device-text {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 42px;
  text-align: center;
}

#home .compatible-device .coming-soon {
  color: #a7a5a6;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 11px;
  margin-top: -5px;
  max-width: 70px;
  text-align: center;
  text-transform: capitalize;
}

#home .main-wrapper {
  background-color: var(--iolo-pale-bg-color);
}

#home .hero-content {
  direction: rtl;
  max-width: 1440px;
  padding-bottom: 75px;
  padding-top: 30px;
  width: 100vw;
}

#home .hero-content .hero-container {
  align-items: stretch;
  direction: ltr;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  /* gap: 10px; */
}
#home .hero-content .hero-container > * {
  flex-basis: 710px;
  flex-shrink: 1;
}

#home .hero-text {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  margin: 0 auto;
  max-width: 450px;
  padding-bottom: 6vw;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3vw;
  justify-content: space-around;
}

#home .main-title {
  color: var(--iolo-slate-fg-color);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(48px, 6vw);
  line-height: min(56px, 9vw);
}

#home .main-blurb {
  color: var(--iolo-slate-fg-color);
  font-family: "Roboto", sans-serif;
  font-size: min(48px, 5.5vw);
  font-weight: 700;
  line-height: 1.2;
}

#home .main-abstract {
  color: var(--iolo-light-fg-color);
  font-family: "Roboto", sans-serif;
  font-size: min(18px, 3vw);
  font-weight: 400;
  line-height: 1.7;
  margin-top: 0.5em;
}

#home .hero-text-bottom {
  font-family: "Roboto", sans-serif;
  font-size: min(24px, 3vw);
  font-weight: 600;
  line-height: 75%;
}

#home .hero-text .dollar-value {
  font-family: "Roboto", sans-serif;
  font-size: min(48px, 6vw);
  font-weight: 900;
  line-height: 75%;
}

#home .hero-text .orig-value {
  color: #a7a5a6;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: line-through;
  text-decoration-color: var(--iolo-light-fg-color);
  text-decoration-thickness: 3px;
}

#home .hero-text .save {
  color: var(--iolo-light-fg-color);
  margin-top: 1em;
}

#home .hero-text .cpa-button {
  font-size: min(18px, 3.75vw);
  margin-top: 1.5em;
  padding-bottom: min(2em, 3vw);
  padding-top: min(2em, 3vw);
  /*
  padding-left: min(8.5em, 15vw);
  padding-right: min(8.5em, 15vw);
  */
  width: calc(100% - 10px);
}

#home .hero-text .compatible-with {
  font-size: min(16px, 3vw);
  text-align: left;
}

#home .hero-text .compatible-container {
  padding-top: min(30px, 1vw);
  padding-left: 0;
  padding-right: min(10px, 1vw);
}

#home .hero-text .compatible-device-text {
  font-size: min(16px, 2.5vw);
}

#home .hero-text .compatible-device .coming-soon {
  font-size: min(12px, 2.5vw);
}

@media only screen and (max-width:600px) {
  #home .hero-text {
    min-height: 600px;
  }
  #home .main-blurb {
    font-size: min(48px, 10vw);
  }
  #home .main-abstract {
    font-size: min(18px, 4.5vw);
  }
  #home .hero-text-bottom {
    font-size: min(24px, 4.5vw);
  }
  #home .hero-text .dollar-value {
    font-size: min(48px, 9vw);
  }
  #home .hero-content .hero-image {
    display: none;
  }
  #home .hero-text .cpa-button {
    font-size: min(18px, 5.5vw);
    padding-bottom: min(2em, 6vw);
    padding-top: min(2em, 6vw);
  }
}

#home .choose-wrapper {
  padding-bottom: 120px;
  padding-top: 60px;
}

#home .choose-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(32px, 6vw);
  margin-bottom: 1em;
  text-align: center;
}

#home .choose-plan-container {
  align-items: flex-end;
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: space-around;
  max-width: 1440px;
  margin: 0 auto;
}

#home .choose-plan-container > * {
  flex-shrink: 1;
}

#home .plan-card {
  border-radius: 15px;
  border: 1px solid #e3e2e2;
  font-family: "Roboto", sans-serif;
  font-size: min(18px, 2.5vw);
  font-weight: 500;
  line-height: 150%;
  max-width: 410px;
  text-align: center;
  width: 100%;
}

#home .plan-card-body {
  display: flex;
  flex-direction: column;
  height: 50vw;
  justify-content: space-around;
  min-height: 200px;
  max-height: 410px;
  padding-left: min(20px, 2vw);
  padding-right: min(20px, 2vw);
  padding-bottom: 10px;
  padding-top: 20px;
}

#home .plan-card .billing-cycle {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 200%;
}

#home .plan-card .orig-value {
  color: #a7a5a6;
  font-size: 150%;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: line-through;
  text-decoration-color: var(--iolo-light-fg-color);
  text-decoration-thickness: 3px;
}

#home .monthly-plan-card .orig-value {
  visibility: hidden;
}

#home .plan-card .orig-price {
  color: #a7a5a6;
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-color: var(--iolo-light-fg-color);
  text-decoration-thickness: 2px;
}

#home .plan-card .value-per-month {
  align-items: flex-start;
  display: flex;
  font-size: 150%;
  font-weight: 500;
  justify-content: center;
  line-height: 75%;
}

#home .plan-card .price {
  font-size: 200%;
  font-weight: 900;
  line-height: 75%;
}

#home .plan-card .per-mo {
  align-self: flex-end;
}

#home .plan-card .plan-best-value {
  background-color: var(--iolo-red-color);
  border-radius: 15px 15px 0 0;
  color: var(--iolo-white-fg-color);
  font-family: "Roboto", sans-serif;
  font-size: 120%;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
}

#home .plan-card .text-best-value {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 160%;
  line-height: 1;
  text-transform: uppercase;
}

#home .plan-card .cpa-button {
  display: flex;
  font-size: 100%;
  margin: 0.5em auto;
  max-width: 320px;
  padding-bottom: min(1.5em, 1.75vw);
  padding-left: min(2.5em, 2.5vw);
  padding-right: min(2.5em, 2.5vw);
  padding-top: min(1.5em, 1.75vw);
}

@media only screen and (max-width:600px) {
  #home .choose-plan-container {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
  #home .plan-card {
    font-size: 18px;
  }
  #home .biennial-plan-card {
    order: -1;
  }
  #home .plan-card-body {
    height: 100vw;
  }
  #home .plan-card .cpa-button {
    padding-bottom: 1.5em;
    padding-left: 2.5em;
    padding-right: 2.5em;
    padding-top: 1.5em;
  }
}

#home .key-wrapper {
  background-color: var(--iolo-pale-bg-color);
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 60px;
  padding-top: 60px;
}

#home .key-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(32px, 6vw);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 2em;
}

#home .key-feature-container {
  align-items: stretch;
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  justify-content: space-around;
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 2px;
  padding-right: 2px;
}
#home .key-feature-container > * {
  flex-shrink: 1;
}

#home .key-feature {
  width: 125px;
}

#home .key-feature-image {
  max-width: 100%;
  width: 16vw;
}

#home .key-feature .key-feature-text {
  font-family: "Roboto", sans-serif;
  font-size: min(20px, 2.5vw);
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 60px;
  padding-top: 30px;
  text-align: center;
}

#home .multiple-device-wrapper {
  padding-top: 90px;
  padding-bottom: 120px;
}

#home .multiple-device-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(32px, 6vw);
  text-align: center;
  text-transform: capitalize;
}

#home .multiple-device-image {
  margin: 0 auto 60px;
  max-width: 100vw;
}

#home .multiple-device-wrapper .compatible-with {
  margin-top: -60px;
}

#home .privacy-wrapper {
  background-color: #e9e9e9;
  background-image: url("../images/bg-with-lock-1920x930.png");
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
  padding-top: 60px;
  padding-bottom: 60px;
}

#home .privacy-content {
  direction: rtl;
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
  width: 100vw;
}

#home .privacy-container {
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  justify-content: space-around;
}

#home .privacy-text {
  font-size: min(18px, 4vw);
  font-weight: 400;
  max-width: 100vw;
  padding-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 60px;
  width: 480px;
}

#home .privacy-image {
  width: min(calc(100vw - 480px), 600px);
}

#home .privacy-text .cpa-button {
  max-width: calc(100vw - 20px);
  width: 440px;
}

@media only screen and (max-width:720px) {
  #home .privacy-container {
    flex-direction: column;
  }
  #home .privacy-image {
    width: min(calc(100vw - 20px), 640px);
  }
}

#home .coverage-text .continuous,
#home .privacy-text .because {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: min(32px, 6vw);
  margin-bottom: 0.5em;
  text-transform: capitalize;
}

#home .coverage-text .continuous {
  text-shadow: 0 0 4px rgba(0,0,0,0.9);
}

#home .coverage-text .from-couch,
#home .privacy-text .do-more {
  padding-bottom: 60px;
}

#home .coverage-wrapper {
  background-position: center;
  background-repeat: repeat;
  position: relative;
  background: linear-gradient(89.96deg, #000000 14.71%, rgba(0,0,0,0) 99.97%), url("../images/bg-coverage-1920x652.png");
  background-blend-mode: darken;
}

#home .coverage-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100vw;
}

#home .coverage-text {
  color: var(--iolo-white-fg-color);
  font-size: min(18px, 4vw);
  font-weight: 400;
  padding-bottom: 180px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 150px;
  width: 480px;
  max-width: 100vw;
}

#home .coverage-text .cpa-button {
  max-width: calc(100vw - 20px);
  width: 440px;
}

#home .comparison-wrapper {
  padding-bottom: 150px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 150px;
}

#home .comparison-table {
  max-width: 1200px;
  margin: 0 auto;
  white-space: nowrap;
}

#home .comparison-header {
  align-items: center;
  display: flex;
  font-family: 'Roboto';
  font-size: min(36px, 4vw);
  font-weight: 800;
  justify-content: space-between;
  line-height: 42px;
  text-align: center;
}

#home .comparison-row {
  align-items: center;
  border-bottom: 1px dotted var(--iolo-dark-color);
  border-left: 1px dotted var(--iolo-dark-color);
  display: flex;
  font-family: 'Roboto';
  font-size: min(26px, 4vw);
  font-weight: 400;
  height: 20px;
  justify-content: space-between;
  line-height: 75px;
  margin-top: 50px;
  position: relative;
  text-align: center;
}
#home .comparison-row::before {
  background-color: #000000;
  border-radius: 50%;
  content: ' ';
  display: block;
  height: 3px;
  left: -2px;
  position: absolute;
  top: -2px;
  width: 3px;
}
#home .comparison-row::after {
  background-color: #000000;
  border-radius: 50%;
  bottom: -2px;
  content: ' ';
  display: block;
  height: 3px;
  right: -2px;
  position: absolute;
  width: 3px;
}

#home .comparison-col1 {
  text-align: left;
  max-width: 300px;
  width: 40vw;
}

#home .comparison-col2 {
  color: var(--iolo-red-color);
  font-weight: 800;
  max-width: 300px;
  width: 25vw;
}

#home .comparison-col3 {
  max-width: 300px;
  width: 25vw;
}

#home .comparison-header .comparison-col1 {
  padding-left: 0.6em;
  width: 40vw;
}
#home .comparison-header .comparison-col2 {
  width: 30vw;
}
#home .comparison-header .comparison-col3 {
  width: 30vw;
}

#home .comparison-row .comparison-col1,
#home .comparison-row .comparison-col2,
#home .comparison-row .comparison-col3 {
  margin-top: -25px;
}

#home .comparison-row .comparison-col1 {
  padding-left: 20px;
}

#home .comparison-header .logo-image {
  max-width: 230px;
  width: 25vw;
}

#home .comparison-cpa {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 75px;
}

#home .comparison-cpa .cpa-button {
  max-width: calc(100vw - 20px);
  width: 440px;
}

#home .faq-wrapper {
  background-color: transparent;
  background-image: url("../images/bg-faq-1920x1143.png");
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
}

#home .faq-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100vw;
}

#home .faq-text {
  font-size: min(18px, 4vw);
  font-weight: 400;
  padding-bottom: 180px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 150px;
  width: 640px;
  max-width: 100vw;
}

#home .faq-title {
  font-family: 'Roboto';
  font-weight: 700;
  font-size: min(32px, 6vw);
  line-height: 200%;
  padding-bottom: 10px;
}

#home .faq-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#home .faq-item {
  border-top: 1px dotted var(--iolo-dark-color);
  padding-bottom: 1em;
  padding-top: 1em;
  position: relative;
}
#home .faq-item::before {
  background-color: #000000;
  border-radius: 50%;
  content: ' ';
  display: block;
  height: 3px;
  left: -2px;
  position: absolute;
  top: -2px;
  width: 3px;
}
#home .faq-item::after {
  background-color: #000000;
  border-radius: 50%;
  content: ' ';
  display: block;
  height: 3px;
  right: -2px;
  position: absolute;
  top: -2px;
  width: 3px;
}

#home .faq-q {
  cursor: pointer;
  font-family: 'Roboto';
  font-weight: 700;
  font-size: min(24px, 5vw);
  line-height: 47px;
  position: relative;
}

#home .faq-q::after {
  content: '\2796';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

#home .faq-closed .faq-q::after {
  content: '\2795';
}

#home .faq-a {
  font-family: 'Roboto';
  font-weight: 400;
  font-size: min(18px, 4vw);
  line-height: 1.5;
  padding-left: 40px;
  padding-right: 20px;
}

#home.lp .header-menu-section {
  display: none;
}

#home.lp .footer-menu-top {
  display: none;
}

#home.lp .footer-divider {
  display: none;
}
