@charset "UTF-8";
html,
body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", "Open Sans", sans-serif;
}

section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.btn {
  font-size: 15px;
  outline: none;
  text-align: center;
  padding: 12px 22px;
  display: inline-block;
  text-decoration: none;
}

.btn-default {
  color: #3a3a3a;
  border: 2px solid #a7a9be;
  border-radius: 6px;
}

.btn-buy {
  color: #272343;
  background: #ffd803;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 1px;
}

.btn-features {
  color: #f25f4c;
  border: 2px solid #f25f4c;
  border-radius: 6px;
}

.mr-10 {
  margin-right: 10px;
}

.section-p100 {
  padding: 100px 0;
}

.section-tp100 {
  padding: 100px 0 0;
}

.section-p50 {
  padding: 50px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading .heading {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}
.section-heading .description {
  max-width: 700px;
  margin: auto;
  font-size: 14px;
}

.required {
  margin-left: 5px;
  color: red;
}

.input-fields {
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

#photoModal .modal-dialog {
  max-width: max-content;
}
#photoModal .modal-dialog .modal-content {
  background: transparent;
  border: none;
}
#photoModal .modal-dialog .modal-content .close {
  font-size: 40px;
  position: absolute;
  top: -20px;
  right: -10px;
  color: #fff;
}

.photo-box {
  max-width: 400px;
}

.header-one.sticky {
  position: fixed;
  width: 100%;
  background: #fffffe;
  z-index: 222;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.header-one .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-one .container .logo img {
  max-height: 65px;
}
.header-one .container .menu-toggle {
  display: none;
}
.header-one .container .phone {
  flex-grow: 1;
  padding-left: 40px;
}
.header-one .container .navbar-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: row;
}
.header-one .container .navbar-nav .nav-item .nav-link {
  padding: 20px 10px;
  display: block;
  text-decoration: none;
  font-weight: 500;
  color: inherit;
}

@media (max-width: 991px) {
  .header-one .container {
    display: flex;
    padding: 10px 25px;
    max-width: 100%;
  }
  .header-one .container .menu-toggle {
    display: block;
    font-size: 30px;
  }
  .header-one .container .navbar {
    position: fixed;
    width: 70%;
    right: -100%;
    transition: right 0.3s;
    top: 0;
    box-shadow: -3px 0 4px rgba(0, 0, 0, 0.07);
    height: 100%;
    background: #fff;
    z-index: 999;
    display: block;
  }
  .header-one .container .navbar .menu-toggle {
    padding-right: 15px;
    width: 100%;
    text-align: right;
  }
  .header-one .container .navbar.active {
    right: 0;
  }
  .header-one .container .navbar .navbar-nav {
    flex-direction: column;
    margin-top: 20px;
  }
  .header-one .container .navbar .navbar-nav .nav-item .nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    font-weight: 400;
  }
}
@media (max-width: 768px) {
  .header-one .container .logo {
    max-width: 40px;
  }
  .header-one .container .phone {
    padding: 0;
    text-align: center;
  }
}
.header-kek {
  position: relative;
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px;
  background: #ddd;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.header-kek .logo {
  float: left;
}
.header-kek nav {
  float: right;
}
.header-kek nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.header-kek nav ul li {
  list-style: none;
}
.header-kek nav ul li a {
  display: block;
  margin: 10px 0;
  padding: 10px 20px;
  text-decoration: none;
  color: #262626;
}
.header-kek .clearfix {
  clear: both;
}

.overflow-hidden {
  overflow: hidden;
}

.home-section {
  position: relative;
  display: block;
  height: 800px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 80px;
}
.home-section .thumb-animated img {
  position: relative;
  animation: bounceHero 3s infinite;
}
.home-section .home_title {
  line-height: 1.2;
  font-family: Ubuntu, sans-serif;
}

@keyframes bounceHero {
  0% {
    top: 0;
  }
  50% {
    top: 25px;
  }
  100% {
    top: 0;
  }
}
.shapes-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.shapes-box.shape-animated .bg-shape {
  animation: shape 3s infinite;
}

.bg-shape {
  position: absolute;
  width: 100%;
  height: 190%;
  border-radius: 40px;
  background: linear-gradient(-47deg, #8ddef7, #63cbfd);
  transform: translate(35%, -27%) rotate(-35deg);
  display: block;
  right: 0;
  bottom: 0;
}

.home-section-two .bg-shape {
  transform: translate(-37%, -23%) rotate(35deg);
}
.home-section-two .welcome-intro {
  text-align: right;
}
.home-section-two .welcome-intro .store-buttons {
  justify-content: flex-end;
}

@keyframes shape {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
  100% {
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .home-section .container {
    max-width: 90%;
  }

  .welcome-thumb {
    max-width: 350px;
    margin: auto;
    padding: 0;
  }

  .bg-shape {
    transform: translate(35%, -12%) rotate(-35deg);
  }

  .home-section-two .bg-shape {
    transform: translate(-40%, -10%) rotate(35deg);
  }
}
@media (max-width: 767px) {
  .order-top {
    order: -1;
  }

  .welcome-thumb {
    padding: 0 30px;
  }

  .home-section .home_title {
    font-size: 48px !important;
  }

  .bg-shape {
    transform: translate(4%, -22%) rotate(-35deg);
  }

  .home-section-two .bg-shape {
    transform: translate(-18%, -24%) rotate(35deg);
  }
  .home-section-two .welcome-intro {
    text-align: center;
  }
  .home-section-two .welcome-intro .store-buttons {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .home-section .home_title {
    font-size: 30px !important;
    font-weight: bold;
  }

  .bg-shape {
    transform: translate(-23%, -20%) rotate(-35deg);
  }

  .home-section-two .bg-shape {
    transform: translate(36%, -20%) rotate(35deg);
  }
  .home-section-two .welcome-intro {
    text-align: center;
  }
  .home-section-two .welcome-intro .store-buttons {
    justify-content: center;
  }
}
.features-section {
  padding: 100px 0;
}
.features-section .features-list {
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  list-style: none;
  padding: 0;
  color: #2d334a;
}
.features-section .features-list li {
  padding: 10px 20px;
  max-width: 50%;
  flex: 50%;
}
.features-section .features-list li .icon {
  font-size: 56px;
  line-height: 75px;
}

@media (max-width: 767px) {
  .features-section .features-list li {
    max-width: 100%;
    flex: 100%;
  }
}
.delivery-section {
  padding: 100px 0;
}
.delivery-section .center-flex {
  display: flex;
  align-items: center;
}
.delivery-section .box {
  border-radius: 15px 0;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  padding: 30px;
  transition: 0.5s;
}
.delivery-section .box .box-head {
  color: #272343;
}
.delivery-section .box .box-head .box-heading {
  font-size: 28px;
  font-weight: 500;
}
.delivery-section .box .box-head .icon-box {
  font-size: 46px;
  margin-right: 25px;
  position: relative;
}
.delivery-section .box .box-head .icon-box .animated-border {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
}
.delivery-section .box .box-head .icon-box .animated-border:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed;
  border-radius: 50%;
  top: 0;
  left: 0;
  right: 0;
  animation: circle 10s linear infinite;
}
.delivery-section .box .text-box {
  line-height: 1.5;
  color: #2d334a;
}

@keyframes folding {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0deg);
  }
  90%, 100% {
    transform: perspective(140px) rotateY(180deg);
  }
}
@keyframes circle {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 767px) {
  .payment-box {
    margin-top: 25px;
  }
}
.faq-section .img-box {
  align-self: center;
}
.faq-section .img-box img {
  max-width: 100%;
}
.faq-section .accordion-box {
  background: #fffffe;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.faq-section .accordion-box .box-heading {
  padding: 15px 40px 15px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}
.faq-section .accordion-box .box-heading:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  right: 20px;
  transition: 0.3s;
}
.faq-section .accordion-box .box-heading.active:before {
  transform: rotate(-45deg);
}
.faq-section .accordion-box .box-content {
  padding: 4px 20px;
  display: none;
}

@media (max-width: 991px) {
  .faq-section .img-box {
    width: 50%;
    margin: 0 auto 30px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .faq-section .img-box {
    width: 80%;
    margin: 0 auto 30px;
    text-align: center;
  }
}
.video-bg {
  position: relative;
  max-width: 700px;
  margin: auto;
}
.video-bg iframe {
  width: 100%;
}
.video-bg .play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video-bg .play-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 26px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  text-decoration: none;
  color: #272343;
}
.video-bg .play-icon a:before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  left: 50%;
  top: 50%;
  animation: play-border 1s ease-out infinite;
  z-index: -1;
}

@keyframes play-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}
.contact-section .contact-box {
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  text-align: center;
  position: relative;
  border-radius: 15px 0;
  background: #fffffe;
}
.contact-section .contact-box a {
  color: inherit;
}
.contact-section .contact-box .icon-box {
  position: relative;
  width: 70px;
  height: 70px;
  display: inline-block;
  line-height: 70px;
  font-size: 30px;
  margin-bottom: 25px;
}
.contact-section .contact-box .icon-box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px dashed;
  border-radius: 50%;
  animation: circle 10s linear infinite;
}
.contact-section .map-box {
  margin-top: 25px;
}
.contact-section .map-box iframe {
  border: none !important;
  width: 100% !important;
}
.contact-section .contact-form {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  padding: 30px;
  position: relative;
  border-radius: 15px 0;
  background: #fffffe;
  margin-top: 35px;
}
.contact-section .contact-form .textarea-field {
  height: 100%;
}

@media (max-width: 991px) {
  .contact-section .contact-box.place {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-box.place, .contact-section .contact-box.mail {
    margin-top: 20px;
  }
}
.reviews-box {
  position: relative;
  padding: 100px 0 20px;
  max-width: 700px;
  margin: auto;
  background: #272343;
  border-radius: 15px 0;
}
.reviews-box .photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  overflow: hidden;
}
.reviews-box .client-name {
  text-align: center;
  color: #fffffe;
  margin-top: 20px;
  font-style: italic;
}
.reviews-box .comment-box {
  position: relative;
  text-align: center;
  color: #fffffe;
  margin-top: 20px;
  padding: 0 40px;
}
.reviews-box .rate-wrapper {
  text-align: center;
}
.reviews-box .rate-wrapper span {
  color: #ffd803;
}
.reviews-box .rate-wrapper span.empty {
  color: #fffffe;
}

.product-section {
  position: relative;
}
.product-section .product-box {
  background: #fffffe;
  padding: 20px;
  border-radius: 15px;
  position: relative;
  z-index: 3;
}
.product-section .product-box.product-animation:after {
  content: "";
  width: 90%;
  height: 90%;
  position: absolute;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  top: 50%;
  background: #fffffe;
  border-radius: 15px;
  animation: pulse-border 1.5s ease-out infinite;
}
.product-section .skus-img {
  padding: 25px;
}
.product-section .skus-img .s-photos-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  text-align: center;
}
.product-section .skus-img .s-photos-list .s-photo-thumb {
  width: 80px;
  display: inline-block;
  margin-right: 5px;
}
.product-section .stock .available {
  color: #43882b;
}
.product-section .stock .not-available {
  color: #c71b1b;
}
.product-section .clock > span {
  margin: 5px;
  padding: 10px;
  width: 75px;
  position: relative;
  display: inline-block;
  text-align: center;
  border-radius: 6px 0;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}
.product-section .clock > span .time {
  display: block;
}
.product-section .price-box {
  margin-bottom: 10px;
}
.product-section .price-box .price {
  font-size: 34px;
  color: #c71b1b;
  font-weight: 500;
}
.product-section .price-box .compare-price {
  margin-left: 10px;
  text-decoration: line-through;
  font-weight: 500;
  font-size: 20px;
}
.product-section .skus-box .feature-label {
  font-weight: 500;
}
.product-section .skus-box .inline-select a {
  display: inline-block;
  background: #e0e0e0;
  border: 1px solid #bfbfbf;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 3px;
}
.product-section .skus-box .inline-select a:first-child {
  margin-left: 0;
}
.product-section .skus-box .inline-select a.selected {
  background: #fffffe;
}
.product-section .skus-box .color-features a {
  width: 38px;
  height: 38px;
  display: inline-block;
  margin: 5px;
  border: 1px solid #969595;
  position: relative;
  text-decoration: none;
  border-radius: 3px;
  text-align: center;
}
.product-section .skus-box .color-features a:first-child {
  margin-left: 0;
}
.product-section .skus-box .color-features a i {
  position: relative;
  top: 20%;
  opacity: 0;
}
.product-section .skus-box .color-features a .color_name {
  font-size: 12px;
  position: absolute;
  bottom: -22px;
  left: 50%;
  color: #000;
  display: none;
  width: 100px;
  margin-left: -50px;
}
.product-section .skus-box .color-features a.selected i {
  opacity: 1;
}
.product-section .skus-box .color-features a.selected .color_name {
  display: block;
}
.product-section ._landing_quantity span {
  display: inline-block;
  padding: 3px 12px;
  background: #e0e0e0;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  cursor: pointer;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .product-section .product-box {
    padding: 0;
  }
  .product-section .product-box .product-info {
    padding: 20px;
    text-align: center;
  }
  .product-section .product-box:after {
    display: none;
  }
  .product-section .product-box .skus-img {
    text-align: center;
  }
}
.who-row {
  align-items: center;
  margin-bottom: 50px;
}
.who-row .who-box {
  padding: 0 140px 0 15px;
}
.who-row .who-box .who-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 20px;
}
.who-row.who2 .who-box {
  text-align: right;
  padding: 0 15px 0 140px;
}

.who-variant-2 {
  text-align: center;
}
.who-variant-2 .row .who-title {
  line-height: 1.2;
  font-weight: 500;
  margin: 10px 0 20px;
}
.who-variant-2 .row .who-img {
  max-width: 80%;
  margin: auto auto 25px;
}

@media (max-width: 991px) {
  .who-row .who-img {
    text-align: center;
  }
  .who-row .who-img img {
    max-width: 50%;
  }
  .who-row .who-box {
    padding: 0 15px;
  }
  .who-row.who2 .who-box {
    order: -1;
    text-align: left;
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .who-row .who-img {
    text-align: center;
  }
  .who-row .who-img img {
    max-width: 70%;
  }
  .who-row .who-box {
    padding: 0 15px;
  }
  .who-row.who2 .who-box {
    order: -1;
  }
}
footer .footer-text-box .footer-text {
  color: #b8c1ec;
  margin-top: 20px;
}
footer .footer-items.footer-menu-box {
  width: 50%;
}
footer .footer-items .item {
  color: #b8c1ec;
  display: flex;
  align-items: center;
  padding: 5px 0;
}
footer .footer-items .item i {
  font-size: 18px;
  margin-right: 10px;
}
footer .footer-items .items-title {
  color: #fffffe;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}
footer .footer-items .links-item {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #b8c1ec;
}
footer .footer-items .links-item li {
  padding: 5px;
}
footer .footer-items .links-item li a {
  color: inherit;
}
footer .socials {
  color: #b8c1ec;
  text-align: center;
  margin-top: 30px;
}
footer .socials a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: inherit;
  border: 1px solid;
  border-radius: 50%;
  margin: 0 5px;
}

@media (max-width: 991px) {
  .footer-logo,
.footer-text,
.footer-menu-box {
    text-align: center;
  }

  .footer-contact-box {
    margin-top: 20px;
  }
}
#checkoutModal .checkout_form .checkout-features-name {
  font-weight: 500;
  font-size: 18px;
}
#checkoutModal .select-product-img {
  max-width: 45%;
  margin: auto;
}
#checkoutModal ._total_product_price {
  font-size: 22px;
  font-weight: bold;
}
#checkoutModal ._total_product_price .ruble {
  padding-left: 5px;
}
#checkoutModal ._total_product_compare_price {
  text-decoration: line-through;
  margin-left: 10px;
}

@media (max-width: 767px) {
  .section-tp100 {
    padding: 70px 0 0;
  }
}
.clearfix {
  clear: both;
}
