@charset "utf-8";

/* start main */
@media screen and (max-width: 767px) {
  .main {
    margin-top: 105px;
  }
}
/* end main */

/* start bottom menu */
.bottom-menu {
  background-color: #c4243b;
}

.bottom-menu__list {
  display: flex;
  justify-content: center;
  height: 60px;
}

.bottom-menu__item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

.bottom-menu__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, .2);
  display: block;
  width: 1px;
  height: 80%;
}

.bottom-menu__item:last-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, .2);
  display: block;
  width: 1px;
  height: 80%;
}

.bottom-menu__item.current,
.page_securitybackup-acronis .bottom-menu__item:nth-of-type(4) {
  background-color: rgba(255, 255, 255, 0.2);
}

.bottom-menu__link {
  color: #fff;
  padding: 0 55px;
  display: flex;
  align-items: center;
  transition: all .4s cubic-bezier(.455,.03,.515,.955);
}

.bottom-menu__link:hover {
  background-color: rgba(255, 255, 255, .2);
}

.bottom-menu__text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.42;
  letter-spacing: 0.05em;
}

@media screen and (max-width:1024px) {
  .bottom-menu__text {
    font-size: 12px;
  }

  .bottom-menu__link {
    padding: 0 45px;
  }
}

@media screen and (max-width: 767px) {
  .bottom-menu {
    width: 100%;
    position: fixed;
    top: 55px;
    z-index: 3;
    box-shadow: 12px 0 18px 14px rgba(0, 0, 0, 0.17);
  }

  .bottom-menu__list {
    height: 50px;
  }

  .bottom-menu__item {
    width: 20%;
  }

  .bottom-menu__item:first-of-type:before {
    content: none;
  }

  .bottom-menu__item:last-of-type::after {
    content: none;
  }

  .bottom-menu__link {
    padding: 0;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .bottom-menu__text {
    font-size: 1vw;
    padding: 0 10px;
    letter-spacing: 0.06em;
  }
}
/* end bottom menu */

/* start main visual */
.main-visual {
  background-image: url(/cms/cloudfore/images/acronis/bg-main-visual.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
  z-index: 1;
}

.main-visual__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 60px 0 110px;
  max-width: 1400px;
  overflow: hidden;
}

.main-visual__media {
  position: relative;
  top: 15px;
  left: 60px;
}

.main-visual__ttl {
  font-weight: bold;
  font-size: 42px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.main-visual__ttl-catch {
  color: #6cedda;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.2em;
}

.main-visual__read {
  text-align: center;
  font-weight: bold;
  line-height: 1.88;
  font-size: 17.5px;
  margin-top: 17px;
  letter-spacing: 0.08em;
}

.main-visual__body {
  white-space: nowrap;
}

.main-visual__btn {
  text-align: center;
}

.main-visual__btn-link {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
  padding: 23px 60px 23px 34px;
  color: #fff;
  border-radius: 31px;
  background-color: #111952;
  background-image: -moz-linear-gradient( 32deg, rgba(17,25,82,0.79) 0%, rgba(48,54,109) 32%, rgba(79,83,136, 0.79) 47%, rgba(19,27,84, 0.79) 99%);
  background-image: -webkit-linear-gradient( 32deg, rgba(17,25,82,0.79) 0%, rgba(48,54,109) 32%, rgba(79,83,136, 0.79) 47%, rgba(19,27,84, 0.79) 99%);
  background-image: -ms-linear-gradient( 32deg, rgba(17,25,82,0.79) 0%, rgba(48,54,109) 32%, rgba(79,83,136, 0.79) 47%, rgba(19,27,84, 0.79) 99%);
  background-image: linear-gradient( 32deg, rgba(17,25,82,0.79) 0%, rgba(48,54,109) 32%, rgba(79,83,136, 0.79) 47%, rgba(19,27,84, 0.79) 99%);
  margin-top: 15px;
  transition: all .6s cubic-bezier(.455,.03,.515,.955);
}

.main-visual__btn-link:hover {
  opacity: 0.7;
}

.main-visual__btn-link::before {
    position: absolute;
    content: '';
}

.main-visual__btn-link::before {
  top: 50%;
  right: 30px;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  transform: rotate(-45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff
}

@media screen and (max-width: 767px) {
  .main-visual {
    background-image: url(/cms/cloudfore/images/acronis/bg-mobile-main-visual.png);
  }

  .main-visual__media {
    left: 0;
    top: 0;
  }

  .main-visual__inner {
    position: relative;
    flex-wrap: wrap;
    padding: 20px 0 30px;
  }

  .main-visual__ttl {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  .main-visual__ttl img {
    width: 70%;
  }

  .main-visual__ttl-catch {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .main-visual__read {
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
  }

  .main-visual__btn-link {
    font-size: 13px;
    margin-top: 15px;
    padding: 16px 28px;
    background-image: -moz-linear-gradient( 13deg, rgb(17,25,82) 0%, rgb(77,82,151) 100%);
    background-image: -webkit-linear-gradient( 13deg, rgb(17,25,82) 0%, rgb(77,82,151) 100%);
    background-image: -ms-linear-gradient( 13deg, rgb(17,25,82) 0%, rgb(77,82,151) 100%);
    background-image: linear-gradient( 13deg, rgb(17,25,82) 0%, rgb(77,82,151) 100%);
  }

  .main-visual__btn-link::before {
    right: 18px;
    width: 6.5px;
    height: 6.5px;
    margin-top: -3.5px;
  }

  .main-visual__media {
    padding-top: 20px;
  }
}
/* end main visual */

/* start acronis */
.acronis {
  background-color: #f5f6fd;
  position: relative;
  z-index: 1;
  padding: 0 10px 140px;
}

.acronis__inner {
  max-width: 1150px;
  margin: auto;
  position: relative;
  top: -55px;
}

.acronis__container {
  background-color: #fff;
  border-radius: 30px;
  padding: 70px 70px 100px;
  box-shadow: 0px 0px 5.16px 0.84px rgba(100, 104, 135, 0.16);
}

.acronis__container + .acronis__container {
  margin-top: 45px;
}

.acronis__box + .acronis__box {
  margin-top: 70px;
}

.acronis__box--wrapper {
  border-radius: 30px;
  border: 2px solid #f5f6fd;
  max-width: 950px;
  margin: auto;
  padding: 32px 74px 46px;
}

.acronis__heading {
  text-align: center;
  margin-bottom: 24px;
}

.acronis__heading-text {
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  font-family: "Montserrat";
  letter-spacing: 0.06em;
  background-color: #c4243b;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 5px;
  position: relative;
}

.acronis__heading-text::after {
  content: "";
  border: solid transparent;
  height:0;
  width:0;
  pointer-events:none;
  position:absolute;
  border-color: rgba(30, 66, 112, 0);
  border-top-width: 13px;
  border-left-width: 4.5px;
  border-right-width: 4.5px;
  margin-left: -4.5px;
  border-top-color: #c4243b;
  top: 98%;
  left: 50%;
}

.acronis__read-text p {
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 2;
}

.acronis__info {
  margin-top: 20px;
}

.acronis__info-text {
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 2;
}

.acronis__title {
  text-align: center;
  line-height: 1.77;
  color: #c4243b;
  font-size: 32px;
}

.acronis__title-01 {
  font-size: 33px;
}

.acronis__title-01 span {
  font-size: 32px;
}

.acronis__title-02 {
  font-size: 30px;
}

.acronis__title-03 {
  font-size: 31px;
}

.acronis__title-03 span {
  font-size: 30px;
}

.acronis__title-04 {
  font-size: 33px;
}

.acronis__title-05 {
  margin-top: 60px;
  font-size: 32px;
}

.acronis__title-05 span {
  font-size: 28px;
}

.acronis__sub-title {
  text-align: center;
}

.acronis__sub-title span {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.08em;
  background-color: #c4243b;
  color: #fff;
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 13px;
}

.acronis__read {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
}

.acronis__read-thumbnail {
  width: 48%;
}

.acronis__read-text {
  width: 48%;
}

.acronis__image-solution {
  max-width: 920px;
  margin: 26px auto 0;
}

.acronis__image-platform {
  max-width: 826px;
  margin: 26px auto 0;
}

.acronis-slide {
  margin-top: 35px;
}

.acronis-slide__list {
  max-width: 720px;
  margin: auto;
}

.acronis__offer {
  margin-top: 55px;
}

.acronis__offer-item {
  max-width: 950px;
  margin: auto;
  padding: 0 40px;
}

.acronis__offer-item {
  color: #4b4b4b;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  margin-left: 30px;
}

.acronis__offer-item img {
  position: absolute;
  top: 3px;
  left: 0;
}

.acronis__inner-our-service {
  max-width: 940px;
  margin: 30px auto 0;
}

.acronis__inner-service-plan {
  max-width: 840px;
  margin: 30px auto 0;
}

.acronis__table-plan {
  font-weight: bold;
  width: 100%;
  border-collapse: collapse;
}

.acronis__table-plan thead th {
  background-color: #ebebeb;
  color: #222222;
  padding: 20px;
  text-align: center;
  line-height: 1.5;
  font-size: 15px;
  border-top: 2px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  border-left: 2px solid #e3e3e3;
  letter-spacing: 0.06em;
}

.acronis__table-plan thead th:last-of-type {
  border-right: 2px solid #e3e3e3;
}

.acronis__table-plan tbody th {
  background-color: #eeeeee;
  color: #4b4b4b;
  padding: 20px;
  text-align: center;
  line-height: 1.5;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #e3e3e3;
  border-left: 2px solid #e3e3e3;
  letter-spacing: 0.04em;
}

.acronis__table-plan tbody td {
  background-color: #ffffff;
  color: #4b4b4b;
  padding: 20px;
  text-align: center;
  line-height: 1.5;
  font-size: 14px;
  text-align: center;
  border-left: 2px solid #e3e3e3;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  letter-spacing: 0.04em;
}

.acronis__table-plan tbody td:last-of-type {
  border-right: 2px solid #e3e3e3;
}

.acronis__table-plan tbody tr:last-of-type th,
.acronis__table-plan tbody tr:last-of-type td {
  color: #c4243b;
}

.acronis__table-plan tbody tr:last-of-type th {
  font-size: 15px;
}

.acronis__table-plan tbody tr:last-of-type td {
  font-size: 22px;
}

.acronis__table-plan thead th:nth-child(2) {
  width: 50%;
}

.acronis__table-service {
  font-weight: bold;
  font-size: 16px;
  width: 100%;
}

.acronis__table-service thead th {
  background-color: rgba(196, 36, 59, .9);
  color: #fff;
  padding: 20px;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.5;
}

.acronis__table-service tbody td {
  background-color: #f5f6fd;
  color: #555555;
  padding: 20px;
  text-align: center;
  line-height: 1.33;
  letter-spacing: 0.04em;
  font-size: 15px;
}

.acronis__table-service tbody td:nth-of-type(1) {
  text-align: left;
}

.acronis__table-service tbody tr:nth-of-type(odd) td {
  background-color: rgba(221,221,221,1);
}

.acronis__table-service tbody tr:nth-of-type(even) td {
  background-color: rgba(221,221,221,0.5);
}

.acronis__table-service tbody:nth-of-type(1) tr th {
  background-color: rgba(245,152,100,0.9);
  background-image: -moz-linear-gradient( 3deg, rgb(247,131,98) 0%, rgb(247,129,98) 0%, rgb(243,166,111) 63%, rgb(239,202,123) 99%, rgb(252,182,182) 100%);
  background-image: -webkit-linear-gradient( 3deg, rgb(247,131,98) 0%, rgb(247,129,98) 0%, rgb(243,166,111) 63%, rgb(239,202,123) 99%, rgb(252,182,182) 100%);
  background-image: -ms-linear-gradient( 3deg, rgb(247,131,98) 0%, rgb(247,129,98) 0%, rgb(243,166,111) 63%, rgb(239,202,123) 99%, rgb(252,182,182) 100%);
  background-image: linear-gradient( 3deg, rgb(247,131,98) 0%, rgb(247,129,98) 0%, rgb(243,166,111) 63%, rgb(239,202,123) 99%, rgb(252,182,182) 100%);
}

.acronis__table-service tbody:nth-of-type(2) tr th {
  background-color: rgba(245,152,100,0.9);
  background-image: -moz-linear-gradient( 3deg, rgb(247,131,98) 0%, rgb(245,103,113) 0%, rgb(245,104,112) 0%, rgb(245,105,111) 0%, rgb(247,133,98) 100%);
  background-image: -webkit-linear-gradient( 3deg, rgb(247,131,98) 0%, rgb(245,103,113) 0%, rgb(245,104,112) 0%, rgb(245,105,111) 0%, rgb(247,133,98) 100%);
  background-image: -ms-linear-gradient( 3deg, rgb(247,131,98) 0%, rgb(245,103,113) 0%, rgb(245,104,112) 0%, rgb(245,105,111) 0%, rgb(247,133,98) 100%);
  background-image: linear-gradient( 3deg, rgb(247,131,98) 0%, rgb(245,103,113) 0%, rgb(245,104,112) 0%, rgb(245,105,111) 0%, rgb(247,133,98) 100%);
}

.acronis__table-service tbody:nth-of-type(3) tr th {
  background-color: rgba(243,94,122,0.9);
  background-image: -moz-linear-gradient( 7deg, rgb(243,92,125) 0%, rgb(245,105,111) 100%, rgb(245,104,112) 100%, rgb(245,103,113) 100%, rgb(247,131,98) 100%);
  background-image: -webkit-linear-gradient( 7deg, rgb(243,92,125) 0%, rgb(245,105,111) 100%, rgb(245,104,112) 100%, rgb(245,103,113) 100%, rgb(247,131,98) 100%);
  background-image: -ms-linear-gradient( 7deg, rgb(243,92,125) 0%, rgb(245,105,111) 100%, rgb(245,104,112) 100%, rgb(245,103,113) 100%, rgb(247,131,98) 100%);
  background-image: linear-gradient( 7deg, rgb(243,92,125) 0%, rgb(245,105,111) 100%, rgb(245,104,112) 100%, rgb(245,103,113) 100%, rgb(247,131,98) 100%);
}

.acronis__table-service tbody tr th {
  width: 25%;
  color: #fff;
  font-size: 17px;
  line-height: 1.375;
  letter-spacing: 0.04em;
}

.acronis__table-service tbody td div {
  position: relative;
  display: inline-block;
}

.acronis__table-service tbody td div span {
  font-size: 11px;
  vertical-align: top;
  position: absolute;
  top: -2px;
  right: -1.78em;
}

.acronis__table-service tbody td:first-of-type div span {
  position: relative;
  right: 0;
}

.acronis__table-service thead th:first-child {
  width: 80%;
}

.acronis__topic-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.acronis__topic-item {
  width: calc(50% - 7px);
  background-color: #fcefde;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-radius: 12px;
}

.acronis__topic-item:nth-of-type(n + 3) {
  margin-top: 14px;
}

.acronis__topic-icon {
  flex-shrink: 0;
}

.acronis__topic-text {
  margin-left: 18px;
}

.acronis__topic-text-heading {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.98;
  text-underline-offset: -4px;
  text-decoration: underline 7px #fff;
}

.acronis__topic-text-read {
  font-size: 14px;
  color: #151229;
  line-height: 1.714;
}

.acronis__topic-list {
  margin-top: 20px;
}

.acronis__image-figure {
  margin-top: 75px;
  text-align: center;
}

.acronis__image-figure picture + picture {
  display: block;
  margin-top: 41px;
}

@media screen and (min-width: 768px) {
  .acronis-slide__list {
    display: flex;
    justify-content: space-between;
  }
  .acronis-slide__item {
    flex-shrink: initial !important;
    width: 32.11% !important;
  }
}

@media screen and (max-width: 767px) {
  .acronis {
    padding: 0;
  }

  .acronis__box + .acronis__box {
    margin-top: 40px;
  }

  .acronis__box--wrapper {
    margin-top: 10px !important;
    padding: 23px 10px;
  }

  .acronis__container + .acronis__container {
    margin-top: 14px;
  }

  .acronis__inner {
    top: -23px;
    padding: 0 10px 40px;
  }

  .acronis__container {
    padding: 20px 10px 35px;
  }

  .acronis__title {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.55;
  }

  .acronis__title-01 {
    font-size: 21px;
  }

  .acronis__title-01 span {
    font-size: 21px;
  }

  .acronis__title-03 {
    font-size: 20px;
  }

  .acronis__title-03 span {
    font-size: 20px;
  }

  .acronis__title-04 {
    font-size: 21px;
    line-height: 1.42;
    letter-spacing: 0.05em;
  }

  .acronis__title-05 span {
    font-size: 21px;
  }

  .acronis__title-05 span {
    font-size: 15px;
  }

  .acronis__title-06 {
    font-size: 20px;
  }
  
  .acronis__title-06 span {
    font-size: 15px;
  }

  .acronis__sub-title span {
    font-size: 10px;
    padding: 4px 10px;
  }

  .acronis__heading {
    margin-bottom: 17px;
  }

  .acronis__heading-text {
    font-size: 12px;
    padding: 6.5px 12px;
  }

  .acronis__heading-text::after {
    border-top-width: 9px;
    border-left-width: 4.5px;
    border-right-width: 4.5px;
    margin-left: -4.5px;
  }

  .acronis__info {
    margin-top: 5px;
  }

  .acronis__read {
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .acronis__box:nth-of-type(2n) .acronis__read {
    flex-direction: column-reverse;
  }

  .acronis__box:nth-of-type(2) .acronis__read-thumbnail {
    width: 100%;
    padding: 0 8%;
  }

  .acronis__read {
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .acronis__read-thumbnail {
    width: 100%;
    text-align: center;
    margin-top: 35px;
  }

  .acronis__read-thumbnail img {
    width: 83.59%;
  }

  .acronis__read-text {
    width: 100%;
  }

  .acronis__read-text p {
    font-size: 12px;
  }

  .acronis__read-text p + p {
    margin-top: 6px;
  }

  .acronis__info-text {
    font-size: 12px;
  }

  .acronis-slide {
    margin-top: 20px;
  }

  .acronis-slide__pagination {
    position: relative !important;
    bottom: 0 !important;
    margin: 17px 0;
  }

  .swiper-pagination-bullet-active {
    background-color: #5a5967 !important;
  }

  .acronis__offer {
    margin-top: 30px;
  }

  .acronis__offer-item {
    margin-left: 10px;
    font-size: 14px;
    padding: 0 0px 0 20px;
  }

  .acronis__offer-item img {
    width: 14px;
  }

  .acronis__table {
    font-size: 10px;
  }

  .acronis__table thead th {
    padding: 10px;
  }

  .acronis__table tbody td {
    padding: 10px;
  }

  .acronis__table tbody td span {
    font-size: 8px;
  }

  .acronis__table-notes {
    margin-top: 40px;
  }

  .acronis__table-notes p {
    font-size: 9px;
    line-height: 1.55;
    padding-left: 2em;
    text-indent: -2em;
  }
  .acronis__table-notes p + p {
    margin-top: 3px;
  }

  .acronis__topic-item {
    width: 100%;
    padding: 15px 22px;
    justify-content: flex-start;
  }

  .acronis__topic-item:nth-of-type(n + 3) {
    margin: auto;
  }

  .acronis__topic-item:not(:first-of-type) {
    margin-top: 10px;
  }

  .acronis__topic-icon {
    width: 26%;
    max-width: 75px;
  }

  .acronis__topic-text {
    margin-left: 18px;
  }

  .acronis__topic-text-heading {
    font-size: 14px;
    line-height: 1.4;
    text-underline-offset: -2px;
    text-decoration: underline 4px #fff;
  }

  .acronis__topic-text-read {
    font-size: 11px;
    line-height: 1.54;
    margin-top: 5px;
  }

  .acronis__topic-list {
    margin-top: 15px;
  }

  .acronis__image-figure {
    margin-top: 28px;
  }

  .acronis__inner-service-plan {
    margin-top: 15px;
  }

  .acronis__table-plan thead th {
    font-size: 10.5px;
    padding: 15px 14px;
  }

  .acronis__table-plan tbody th {
    font-size: 10px;
    padding: 15px 14px;
  }

  .acronis__table-plan tbody tr:last-of-type th {
    font-size: 10px;
  }

  .acronis__table-plan tbody tr:last-of-type td {
    font-size: 15px;
  }

  .acronis__table-plan tbody td {
    font-size: 10px;
    padding: 15px 14px;
  }

  .acronis__inner-our-service {
    margin-top: 13px;
  }

  .acronis__table-service-wrap {
    overflow-x: scroll;
  }

  .acronis__table-service {
    width: 508.65px;
  }

  .acronis__table-service thead th {
    font-size: 10px;
  }

  .acronis__table-service tbody tr th {
    font-size: 10.7px;
    width: 26.78%;
  }

  .acronis__table-service tbody td {
    text-align: left;
    font-size: 10px;
  }

  .acronis__table-service tbody td:last-of-type {
    text-align: left;
  }

  .acronis__image-figure picture + picture {
    margin-top: 20px;
  }
}
/* end acronis */