body {
  background: #FCFCFC;
  background-image: url(../img/body-bg.png);
  background-repeat: repeat;
  background-size: cover;
  background-position: top;
}

.container {
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .container-fluid {
    padding: 0 15px;
  }
}

.section-title {
  font-weight: 400;
  font-size: clamp(1.875rem, 1.511rem + 1.82vw, 2.875rem);
  line-height: clamp(2.5rem, 2.136rem + 1.82vw, 3.5rem);
  text-align: center;
  color: #000000;
  position: relative;
  padding-bottom: clamp(1.563rem, 0.994rem + 2.84vw, 3.125rem);
  margin-bottom: clamp(1.563rem, 0.994rem + 2.84vw, 3.125rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-title::after {
  content: "";
  position: absolute;
  width: 175px;
  height: 5px;
  background: #F73D31;
  bottom: 0;
}

.section-pretitle {
  font-weight: 400;
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  line-height: 1.5;
  text-align: center;
  color: #828282;
}

nav {
  overflow: hidden;
  padding: clamp(1.563rem, 0.767rem + 3.98vw, 3.75rem) 0;
  border-bottom: 1px solid hsla(4deg, 93%, 58%, 0.3);
}

.navbar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}

.logo {
  padding-right: clamp(2.5rem, 1.818rem + 3.41vw, 4.375rem);
  position: relative;
}
.logo a {
  color: white;
}
.logo::after {
  content: "";
  position: absolute;
  top: -100px;
  right: 0;
  height: 500px;
  width: 1px;
  background: hsla(4deg, 93%, 58%, 0.3);
}

.menu {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-left: auto;
  padding-left: 70px;
  max-width: 1000px;
  width: 100%;
}
.menu::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  height: 500px;
  width: 1px;
  background: hsla(4deg, 93%, 58%, 0.3);
}
@media (max-width: 1100px) {
  .menu::after {
    display: none;
  }
}
@media (max-width: 1100px) {
  .menu {
    padding-left: 0;
  }
}
.menu__item-link {
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  opacity: 0.5;
  transition: all 0.3s;
}
.menu__item-link:hover {
  opacity: 1;
}

.burger {
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 1100px) {
  .menu {
    position: fixed;
    background: #FCFCFC;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    display: none;
  }
  .menu.active {
    display: flex;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    pointer-events: all;
    justify-content: center;
    align-items: center;
    z-index: 22;
    -webkit-animation: fade 0.1s linear;
            animation: fade 0.1s linear;
  }
  .burger {
    display: block;
    position: relative;
    height: 20px;
    width: 30px;
    right: 15px;
    z-index: 102;
    cursor: pointer;
  }
  .burger.active-burger:before {
    width: 100%;
    background: #F73D31;
    transform: rotate(45deg);
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    top: 8px;
  }
  .burger.active-burger:after {
    width: 100%;
    background: #F73D31;
    transform: rotate(-45deg);
    bottom: 10px;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }
  .burger.active-burger span {
    transform: scale(0);
  }
  .burger:before, .burger:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 50%;
    background: #F73D31;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    border-radius: 2000px !important;
  }
  .burger:before {
    top: 0;
  }
  .burger::after {
    bottom: 0;
    right: 0;
  }
  .burger span {
    position: absolute;
    top: 9px;
    right: 0;
    width: 100%;
    background: #F73D31;
    height: 2px;
    transform: scale(1);
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    border-radius: 2000px !important;
  }
  .menu__item {
    margin-top: 15px;
  }
  .menu__item-link {
    color: #000;
    opacity: 1;
  }
}
.hero {
  padding: 50px 0;
  overflow: hidden;
}
.hero__content-title {
  font-weight: 400;
  font-size: clamp(1.625rem, 0.898rem + 3.64vw, 3.625rem);
  line-height: 1.05;
  color: #000;
}
.hero__content-title span {
  font-weight: 800;
  color: #F73D31;
}
@media (max-width: 480px) {
  .hero__content-title {
    text-align: center;
  }
}
.hero__content-pretitle {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  line-height: 1.1;
  padding-top: clamp(1.25rem, 0.909rem + 1.7vw, 2.188rem);
  padding-bottom: clamp(2.188rem, 1.847rem + 1.7vw, 3.125rem);
}
@media (max-width: 480px) {
  .hero__content-pretitle {
    text-align: center;
  }
}
.hero__content-list {
  max-width: 430px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__content-item {
  font-size: clamp(1rem, 0.864rem + 0.68vw, 1.375rem);
  line-height: 1.1;
  padding-left: 22px;
  position: relative;
}
.hero__content-item::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 4px solid #F73D31;
  border-radius: 999px;
}
.hero__big-box {
  top: 10px;
  position: relative;
  max-width: clamp(17.5rem, 10.227rem + 36.36vw, 45.5rem);
}
.hero__big-box::after {
  content: "";
  position: absolute;
  top: 140px;
  right: -440px;
  width: clamp(7.5rem, 4.773rem + 13.64vw, 15rem);
  height: clamp(7.5rem, 4.773rem + 13.64vw, 15rem);
  background-image: url(../img/sign.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .hero__big-box::after {
    top: 60px;
    right: -40px;
  }
}
@media (max-width: 480px) {
  .hero__big-box::after {
    top: auto;
    right: 0px;
    bottom: 0px;
  }
}
@media (max-width: 480px) {
  .hero__big-box {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
  }
}
.hero__big-img {
  position: absolute;
  top: -500px;
  right: -600px;
  z-index: -1;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .hero__big-img {
    top: -400px;
    right: -300px;
  }
}
@media (max-width: 480px) {
  .hero__big-img {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 15px;
  }
}
.hero__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  position: relative;
}
.hero__inner-img {
  max-width: 200px;
  width: 100%;
  position: absolute;
  top: 15px;
  left: 43%;
  z-index: -1;
}
@media (max-width: 768px) {
  .hero__inner-img {
    left: 70%;
  }
}
@media (max-width: 480px) {
  .hero__inner-img {
    position: relative;
    top: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.contact-form {
  margin-top: 40px;
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(0.938rem, 0.597rem + 1.7vw, 1.875rem);
  background: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
}
.contact-form__title {
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .contact-form__title {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .contact-form {
    margin-top: 20px;
  }
}

textarea {
  min-height: 150px;
}

input[type=text], input[type=tel], textarea {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  outline: none;
  max-width: 100%;
  padding: 12px 12px 12px 22px;
  margin-bottom: 10px;
  border: 1px solid #D8D8D8;
  border-radius: 90px;
  transition: all 0.4s;
}
select, textarea {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  outline: none;
  max-width: 100%;
  padding: 12px 12px 12px 22px;
  margin-bottom: 10px;
  border: 1px solid #D8D8D8;
  border-radius: 90px;
  transition: all 0.4s;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
  color: #9E9E9E;
}
input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #9E9E9E;
}
input[type=text]::placeholder, input[type=tel]::placeholder, textarea::placeholder {
  color: #9E9E9E;
}

input[type=text]:focus, textarea:focus {
  transition: all 0.4s;
}

button[type=submit] {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1;
  padding: 16px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #F73D31;
  border-radius: 90px;
  border: none;
  cursor: pointer;
  color: #fff;
}

input[type=submit]:hover {
  color: #FFF;
  transition: all 0.2s;
}

input[type=submit]:active {
  transition: all 0.4s;
  top: 3px;
  box-shadow: none;
}

input[type=submit]:focus {
  position: relative;
  transition: all 0.2s;
  outline: none;
}

.alert {
  padding: clamp(1.25rem, 0.24rem + 3.85vw, 3.125rem) 0;
}
.alert__wrapper {
  padding: 50px 0;
  display: grid;
  gap: 20px 20px;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}
@media (max-width: 1100px) {
  .alert__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .alert__wrapper {
    grid-template-columns: 1fr;
  }
}
.alert__item {
  padding: 20px;
  background: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  height: auto;
}
.alert__item-img {
  max-width: 100%;
  width: 100%;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.alert__item-title {
  font-weight: 700;
  font-size: clamp(1.063rem, 0.994rem + 0.34vw, 1.25rem);
  line-height: 1.2;
  text-align: center;
  padding: 20px 0;
}
.alert__item-text {
  font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem);
  line-height: 1.3;
  text-align: center;
  color: #828282;
}

.cause {
  padding: clamp(1.25rem, 0.24rem + 3.85vw, 3.125rem) 0;
}
.cause__wrapper {
  padding: 50px 0 20px;
  display: grid;
  gap: 20px 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .cause__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .cause__wrapper {
    grid-template-columns: 1fr;
  }
}
.cause__item {
  border: 2px solid hsla(4deg, 93%, 58%, 0.2);
  padding: clamp(1.125rem, 0.625rem + 2.5vw, 2.5rem);
  padding-bottom: 20px;
}
.cause__item-img {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #EEEEEE;
  padding: 10px;
  margin: 0 auto;
}
.cause__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.938rem, 0.597rem + 1.7vw, 1.875rem);
  background: #F73D31;
}
@media (max-width: 768px) {
  .cause__inner {
    flex-direction: column;
  }
}
.cause__inner-text {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  line-height: 1.2;
  color: #FFFFFF;
}
.cause__inner-text span {
  font-weight: 800;
}
@media (max-width: 768px) {
  .cause__inner-text {
    text-align: center;
    padding: 10px 15px 30px 15px;
  }
}
.cause__box {
  background: #fff;
  max-width: 480px;
  width: 100%;
  padding: 20px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .cause__box {
    flex-direction: column;
    padding: 15px 15px 20px 15px;
  }
}
@media (max-width: 768px) {
  .cause__box-icon {
    max-width: 55px;
    width: 100%;
    margin-top: -50px;
  }
}
.cause__box-text {
  font-weight: 700;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  line-height: 1.1;
}
@media (max-width: 768px) {
  .cause__box-text {
    text-align: center;
  }
}

.order {
  padding: clamp(1.25rem, 0.24rem + 3.85vw, 3.125rem) 0;
}
.order__wrapper {
  padding: 50px 0;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -2.5rem + 10vw, 5rem);
}
@media (max-width: 900px) {
  .order__wrapper {
    flex-direction: column-reverse;
  }
}
.order__img {
  max-width: 400px;
  width: 100%;
  padding: 0 20px;
}
.order__content {
  max-width: 680px;
  width: 100%;
}
.order__text {
  font-size: clamp(1.188rem, 1.119rem + 0.34vw, 1.375rem);
  line-height: 1.45;
}
.order__text span {
  font-weight: 700;
}
.order__btn {
  font-size: clamp(1rem, 0.833rem + 0.56vw, 1.25rem);
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 10px;
  padding-left: 40px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #F73D31;
  border-radius: 90px;
  transition: all 0.3s;
}
.order__btn:hover {
  box-shadow: 2px 4px 30px rgba(0, 0, 0, 0.3);
}
.order__btn span {
  font-weight: 800;
}
@media (max-width: 900px) {
  .order__btn {
    margin-top: 40px;
    padding: 25px;
    justify-content: center;
    text-align: center;
  }
  .order__btn svg {
    display: none;
  }
}

.practic {
  padding: clamp(1.25rem, 0.24rem + 3.85vw, 3.125rem) 0;
}
.practic__swiper {
  padding: 20px 0;
}
@media (max-width: 768px) {
  .practic__swiper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .practic__swiper-wrapper {
    padding-bottom: 120px;
  }
}
.practic__slide {
  max-width: 580px;
  width: 100%;
}
@media (max-width: 768px) {
  .practic__slide {
    max-width: 100%;
  }
}
.practic__swiper-prev {
  display: none !important;
}
@media (max-width: 766px) {
  .practic__swiper-prev {
    display: flex !important;
  }
}
.practic__swiper-next {
  display: none !important;
}
@media (max-width: 766px) {
  .practic__swiper-next {
    display: flex !important;
  }
}
.practic__swiper-pagination {
  bottom: 30px !important;
}

.doc__avatar {
  position: relative;
  max-width: 100%;
  width: 100%;
  background: #F73D31;
  background-position-x: 100px;
  border-radius: 30px 30px 0px 0px;
  margin-top: 100px;
  background-image: url(../img/doc-1-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.doc__avatar.ava-blue {
  background: #0194FE;
  background-image: url(../img/doc-2-bg.png);
}
.doc__avatar::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 50%;
  margin-left: -45px;
  border-radius: 999px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  z-index: 3;
  width: 90px;
  height: 90px;
  background-image: url(../img/doc-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.doc__avatar-img {
  max-width: 580px;
  width: 100%;
  margin-top: -100px;
  position: relative;
  top: 0;
}
@media (max-width: 768px) {
  .doc__avatar-img {
    margin-top: -60px;
  }
}
.doc__content {
  background: #FFFFFF;
  border-radius: 0px 0px 30px 30px;
  padding: 0 clamp(1.125rem, 0.398rem + 3.64vw, 3.125rem) 40px;
  padding-top: clamp(3.125rem, 2.67rem + 2.27vw, 4.375rem);
}
.doc__name {
  font-weight: 700;
  font-size: clamp(1.75rem, 1.659rem + 0.45vw, 2rem);
  line-height: 1.3;
  text-align: center;
}
.doc__prof {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  line-height: 1.56;
  text-align: center;
  color: #F73D31;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 30px;
}
@media (max-width: 768px) {
  .doc__prof {
    max-width: 260px;
    padding: 10px 0;
  }
}
.doc__text {
  font-size: clamp(0.938rem, 0.892rem + 0.23vw, 1.063rem);
  line-height: 1.53;
  text-align: center;
  color: #828282;
  max-width: 476px;
  width: 100%;
  margin: 0 auto;
}

.swiper-pagination-bullet-active {
  background: #828282 !important;
}

.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: auto;
  bottom: 0 !important;
  width: 70px;
  height: 70px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F73D31;
  border-radius: 999px;
  transition: all 0.3s;
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background: #fff;
}
.swiper-button-prev.swiper-button-disabled path, .swiper-button-next.swiper-button-disabled path {
  stroke: #828282;
}
.swiper-button-prev path, .swiper-button-next path {
  stroke: #fff;
}
.swiper-button-prev::after, .swiper-button-next::after {
  content: "";
}

.swiper-button-prev {
  left: 20px;
}

.swiper-button-next {
  right: 20px;
}

.how {
  padding: clamp(1.25rem, 0.24rem + 3.85vw, 3.125rem) 0;
}
.how .section-pretitle {
  max-width: 820px;
  margin: 0 auto;
}
.how__wrapper {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 766px) {
  .how__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.how__item {
  max-width: 100%;
  width: 100%;
  min-height: clamp(17.5rem, 16.136rem + 6.82vw, 21.25rem);
  padding: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  background: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
@media (max-width: 766px) {
  .how__item {
    min-height: auto;
  }
}
.how__item-icon {
  width: 80px;
  height: 80px;
  background: #F73D31;
  padding: 24px;
  border-radius: 999px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how__item-title {
  font-weight: 700;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  line-height: 1.2;
  text-align: center;
  padding: 30px 0 20px;
}
@media (max-width: 480px) {
  .how__item-title {
    padding: 15px 0 10px;
  }
}
.how__item-text {
  font-size: clamp(0.813rem, 0.767rem + 0.23vw, 0.938rem);
  line-height: 1.4;
  text-align: center;
  color: #828282;
}

.story {
  padding: clamp(1.25rem, 0.24rem + 3.85vw, 3.125rem) 0;
}
.story .section-pretitle {
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
}
.story__swiper {
  padding: 50px 0;
}
.story__swiper-wrapper {
  padding-top: 50px;
  padding-bottom: 90px;
}
.story__swiper-slide {
  width: 1000px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  transition: all 0.5s;
  transform: translateY(50px) !important;
}
.story__swiper-slide.swiper-slide-active {
  max-width: 780px;
  width: 100%;
  transform: translateY(0) !important;
}
@media (max-width: 1100px) {
  .story__swiper-slide {
    max-width: 100%;
    width: 100%;
  }
}
.story__content {
  padding: clamp(0.938rem, 0.142rem + 3.98vw, 3.125rem);
  padding-bottom: 30px;
  padding-top: clamp(1.563rem, 0.994rem + 2.84vw, 3.125rem);
}
.story__icon {
  max-width: 100px;
  width: 100%;
  padding: 5px;
  background: #fff;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  margin: 0 auto;
  margin-top: -50px;
}
.story__icon-img {
  max-width: 100%;
  width: 100%;
  border-radius: 999px;
}
.story__text {
  font-size: clamp(0.813rem, 0.767rem + 0.23vw, 0.938rem);
  line-height: 1.4;
  text-align: center;
  color: #828282;
  padding-bottom: 40px;
}
@media (max-width: 480px) {
  .story__text {
    padding-bottom: 30px;
  }
}
.story__box {
  position: relative;
}
.story__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #EAEAEA;
}
.story__name {
  font-weight: 700;
  font-size: clamp(1.15rem, 1.08rem + 0.23vw, 1.3rem);
  line-height: 1.2;
  text-align: center;
  padding: 30px 0 8px;
}
@media (max-width: 480px) {
  .story__name {
    padding: 20px 0 5px;
  }
}
.story__age {
  font-weight: 500;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  line-height: 1.56;
  text-align: center;
  color: #F73D31;
}
.story__navigations {
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.story__swiper-prev {
  position: relative !important;
}
.story__swiper-next {
  position: relative !important;
}/*# sourceMappingURL=main.css.map */



.price_previous {
  color: #999;
  }
  .clearfix::before, .clearfix::after {
  content: " ";
  display: table;
  }
  .previous {
  font-size: 13px;
  font-weight: 400;
  }
  .x_price_previous {
  display: inline-block;
  font-size: 22px;
  text-decoration: line-through;
  font-family: 'Open Sans';
  margin-right: 5px;
  font-weight: 700;
  }
  .x_currency {
  display: inline-block;
  font-size: 14px;
  font-family: 'Open Sans';
  font-weight: 700;
  }
  .clearfix::after {
      clear: both;
  }
  .price_current {
  color: #ff513a;
  }
  .current {
  font-size: 13px;
  font-weight: 400;
  }
  .x_price_current {
  display: inline-block;
  font-size: 36px;
  font-family: 'Open Sans';
  margin-right: 3px;
  font-weight: 700;
  }
  .price1 {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  box-sizing: border-box;
}



.cpu{
  padding: 10px 0 30px;
  text-align: center;
  }
  .cpu img{
  display:block;
  margin: 0 auto;
  width: auto;
  }
  .cpu a{
  display: inline-block;
  margin: 5px;
  color: #333;
  font-size: 14px;
  }