@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1xlEA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfedw.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlEA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1xlEA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlEA.ttf) format('truetype');
}
body {
  min-height: 100vh;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.no-scroll {
  overflow: hidden;
  max-height: 100vh;
}
body ul,
body ol,
body p,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin: 0;
  padding: 0;
}
body a {
  text-decoration: none !important;
}
.alert-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.2);
  z-index: 555;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.alert-wrapper .alert-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  transform: translateX(8px);
  padding: 50px 0;
}
.alert-wrapper .alert-service .service-inner {
  padding: 50px;
  background: #fff;
  width: 100%;
  box-shadow: 0px 0px 32px 1px rgba(0, 0, 0, 0.15);
  text-align: center;
  border-top: 5px solid #fff;
  position: relative;
  transform: scale(0.8);
  transition: all 0.5s;
}
.alert-wrapper .alert-service .service-inner .inner-dismiss {
  top: 10px;
  right: 10px;
  position: absolute;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  padding: 5px;
  outline: none;
}
.alert-wrapper .alert-service .service-inner .inner-dismiss img {
  height: 15px;
}
.alert-wrapper .alert-service .service-inner.success {
  border-top: 5px solid #78b042;
}
.alert-wrapper .alert-service .service-inner.warning {
  border-top: 5px solid #d51a27;
}
.alert-wrapper .alert-service .service-inner.info {
  border-top: 5px solid #1a88d5;
}
.alert-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.alert-wrapper.active .alert-service .service-inner {
  transform: none;
}
.modal-service-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.5);
  z-index: 555;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-service-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.modal-service-wrapper .modal-service {
  padding: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.modal-service-wrapper .modal-service .service-inner {
  background: #fff;
  width: 700px;
  max-width: 100%;
  padding: 50px 25px 25px 25px;
  text-align: center;
  position: relative;
}
.modal-service-wrapper .modal-service .service-inner .service-button {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: #222;
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar:nth-child(1) {
  transform: rotate(45deg);
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar:nth-child(2) {
  transform: rotate(-45deg);
}
.modal-service-wrapper .modal-service .service-inner .service-content .heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-service-wrapper .modal-service .service-inner .service-content .btn {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
.modal-service-wrapper .modal-service .service-inner .service-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-service-wrapper .modal-service .service-inner .service-buttons .btn-link {
  padding: 0;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
nav.section-header .header-flexbox {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
  position: absolute;
  display: none;
  width: 100%;
  top: 20px;
  left: 0;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container {
  display: flex;
  justify-content: flex-end;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container:before,
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container:after {
  content: none;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button {
  outline: none;
  border: none;
  background: none;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #222;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(1) {
  transform: rotate(45deg);
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(2) {
  transform: rotate(-45deg);
}
nav.section-header .header-flexbox .nav-button {
  padding: 10px;
  border: none;
  background: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  outline: none;
  display: none;
}
nav.section-header .header-flexbox .nav-button .button-bar {
  height: 2px;
  width: 24px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.4s;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(2) {
  margin-top: 4px;
  width: 27px;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(3) {
  margin-top: 4px;
  width: 30px;
}
nav.section-header .header-flexbox .nav-button:hover .button-bar,
nav.section-header .header-flexbox .nav-button:focus .button-bar {
  width: 30px !important;
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 400;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Regular.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 400;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 250;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Thin.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 250;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Thin Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 275;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons ExtraLight.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 275;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons ExtraLight Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 300;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Light.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 300;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Light Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 500;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Medium.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 500;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Medium Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 600;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons DemiBold.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 600;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons DemiBold Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 700;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Bold.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 700;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Bold Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 800;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons ExtraBold.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 800;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons ExtraBold Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 900;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Black.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 900;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Black Italic.woff') format('woff');
}
body {
  font-family: 'TT Commons', sans-serif;
  font-style: normal;
  line-height: normal;
  margin: 0;
  padding: 0;
}
nav.section-header {
  transition: all 0.5s;
  position: fixed;
  z-index: 222;
  top: 0;
  left: 0;
  width: 100%;
}
nav.section-header .container {
  width: 100%;
  max-width: 1280px;
  padding-right: 0;
  padding-left: 0;
}
nav.section-header .header-flexbox {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
  position: absolute;
  display: none;
  width: 100%;
  top: 20px;
  left: 0;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container {
  display: flex;
  justify-content: flex-end;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container::before,
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container::after {
  content: none;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button {
  outline: none;
  border: none;
  background: none;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #222;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(1) {
  transform: rotate(45deg);
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(2) {
  transform: rotate(-45deg);
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 40px;
  width: 100%;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  text-transform: uppercase;
}
nav.section-header .header-flexbox .nav-button {
  padding: 10px;
  border: none;
  background: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  outline: none;
  display: none;
}
nav.section-header .header-flexbox .nav-button .button-bar {
  height: 2px;
  width: 24px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.4s;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(2) {
  margin-top: 4px;
  width: 27px;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(3) {
  margin-top: 4px;
  width: 30px;
}
nav.section-header .header-flexbox .nav-button:hover .button-bar,
nav.section-header .header-flexbox .nav-button:focus .button-bar {
  width: 30px !important;
}
nav.section-header.scrolled {
  background-color: rgba(245, 245, 245, 0.8);
  border-bottom: 0;
  padding: 15px 0 15px 0;
}
nav.section-header.scrolled .header-flexbox {
  padding: 10px 0 10px;
  justify-content: space-between;
}
section.section-slider {
  display: flex;
  position: relative;
  width: 100%;
  height: 100vh;
}
section.section-slider .bg-slider {
  position: absolute;
  z-index: 1;
  bottom: 0;
  pointer-events: none;
}
section.section-slider .owl-carousel .item {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100vh;
}
section.section-slider .owl-carousel .item .mobile {
  display: none;
}
section.section-slider .owl-carousel .item .desktop {
  display: block;
}
section.section-slider .owl-carousel .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.section-slider .owl-carousel .item .item-description {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 1280px;
}
section.section-slider .owl-carousel .item .item-description header h1 {
  font-weight: 500;
  font-size: 72px;
  line-height: 83px;
  color: #222222;
  padding: 25px 0 25px 0;
}
section.section-slider .owl-carousel .item .item-description header p {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777777;
}
section.section-slider .owl-carousel .item .item-description header a {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E2152C;
}
section.section-slider .owl-carousel .item .item-description header a:hover::after {
  transform: translateX(10px);
  transition: transform 250ms ease-in-out;
}
section.section-slider .owl-carousel .item .item-description header a::after {
  content: "";
  display: inline-block;
  background: url('../img/icons/arrow.svg') no-repeat;
  margin-left: 15px;
  width: 12px;
  height: 11px;
  transition: transform 250ms ease-in-out;
}
section.section-slider .owl-carousel .item .item-description header .a-color2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E89C0C;
}
section.section-slider .owl-carousel .item .item-description header .a-color2:hover::after {
  transform: translateX(10px);
  transition: transform 250ms ease-in-out;
}
section.section-slider .owl-carousel .item .item-description header .a-color2::after {
  content: "";
  display: inline-block;
  background: url('../img/icons/arrow-2.svg') no-repeat;
  margin-left: 15px;
  width: 12px;
  height: 11px;
  transition: transform 250ms ease-in-out;
}
section.section-slider .owl-carousel .item .item-description header .a-color3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EA7550;
}
section.section-slider .owl-carousel .item .item-description header .a-color3:hover::after {
  transform: translateX(10px);
  transition: transform 250ms ease-in-out;
}
section.section-slider .owl-carousel .item .item-description header .a-color3::after {
  content: "";
  display: inline-block;
  background: url('../img/icons/arrow-3.svg') no-repeat;
  margin-left: 15px;
  width: 12px;
  height: 11px;
  transition: transform 250ms ease-in-out;
}
section.section-slider .owl-carousel .owl-dots {
  position: absolute;
  bottom: 10%;
  right: 53%;
  outline: none;
}
section.section-slider .owl-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 10px;
  background-color: #fff;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 20px;
  outline: none;
}
section.section-slider .owl-carousel .owl-dots .owl-dot.active {
  background: #E2152C;
}
section.section-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 150px 0 0 0;
}
section.section-offer .section-wrapper {
  display: flex;
  flex-flow: row wrap;
  max-width: 1280px;
  width: 100%;
  gap: 80px;
}
section.section-offer .section-wrapper .wrapper-inner {
  display: flex;
  flex-flow: row nowrap;
}
section.section-offer .section-wrapper .wrapper-inner .inner-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 100px;
  gap: 20px;
}
section.section-offer .section-wrapper .wrapper-inner .inner-description header h1 {
  font-weight: 500;
  font-size: 72px;
  line-height: 83px;
  color: #222222;
}
section.section-offer .section-wrapper .wrapper-inner .inner-description p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #777777;
}
section.section-offer .section-wrapper .wrapper-inner .inner-description a {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 0 0;
  color: #E2152C;
}
section.section-offer .section-wrapper .wrapper-inner .inner-description a:hover::after {
  transform: translateX(10px);
  transition: transform 250ms ease-in-out;
}
section.section-offer .section-wrapper .wrapper-inner .inner-description a::after {
  content: "";
  display: inline-block;
  background: url('../img/icons/arrow.svg') no-repeat;
  margin-left: 15px;
  width: 12px;
  height: 11px;
  transition: transform 250ms ease-in-out;
}
section.section-offer .section-wrapper .wrapper-inner:nth-child(even) {
  flex-flow: row-reverse nowrap;
}
section.section-offer .section-wrapper .wrapper-inner:nth-child(even) .inner-description {
  padding: 0 100px 0 0;
}
section.section-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 150px 0 0 0;
  overflow: hidden;
}
section.section-price .shoe {
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(80%, -50%);
  width: 100%;
  z-index: 1;
}
section.section-price::before {
  content: '';
  display: block;
  position: absolute;
  width: 165px;
  height: 165px;
  background-color: #FEC14D;
  border-radius: 50%;
  transform: translate(-50%, 100%);
  top: 0;
  left: 0;
  z-index: 1;
}
section.section-price::after {
  content: '';
  display: block;
  position: absolute;
  width: 63px;
  height: 63px;
  background-color: #E2152C;
  border-radius: 50%;
  transform: translate(-70%, -200%);
  bottom: 0;
  right: 0;
  z-index: 1;
}
section.section-price .section-price-gradient {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-image: linear-gradient(#f5f5f5, #fdfdfd);
  width: 100%;
  padding: 0;
}
section.section-price .section-wrapper {
  display: flex;
  flex-flow: row wrap;
  max-width: 1280px;
  width: 100%;
  z-index: 1;
}
section.section-price .section-wrapper .wrapper-inner {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  width: 100%;
}
section.section-price .section-wrapper .wrapper-inner .inner-header {
  width: 100%;
  margin-bottom: 70px;
  padding-top: 30px;
}
section.section-price .section-wrapper .wrapper-inner .inner-header header h1 {
  font-weight: 500;
  font-size: 72px;
  line-height: 83px;
  color: #222222;
}
section.section-price .section-wrapper .wrapper-inner .inner-header header p {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #888888;
  padding-bottom: 25px;
}
section.section-price .section-wrapper .wrapper-inner .inner-description {
  width: 100%;
  position: relative;
}
section.section-price .section-wrapper .wrapper-inner .inner-description .description-table {
  width: 100%;
  margin-bottom: 70px;
}
section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row {
  display: flex;
  flex-direction: row;
  --bs-gutter-x: 0;
  margin: 0;
}
section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .table-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 37px;
  padding-bottom: 25px;
  color: #222222;
}
section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col {
  font-weight: 500;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 0 5px 0;
  color: #888888;
  width: 33.33%;
}
section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(2) {
  font-weight: 700;
  margin: 0 50px 0 50px;
}
section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(3) {
  font-weight: 300;
  font-style: italic;
}
section.section-price .section-wrapper .wrapper-inner .inner-description .description-table:nth-child(2) {
  margin-bottom: 0;
}
section.section-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 150px 0 0 0;
  background-image: linear-gradient(#fdfdfd, rgba(255, 255, 255, 0));
}
section.section-about .section-wrapper {
  display: flex;
  flex-flow: row wrap;
  max-width: 1280px;
  width: 100%;
}
section.section-about .section-wrapper .wrapper-inner {
  display: flex;
  width: 100%;
  gap: 50px;
}
section.section-about .section-wrapper .wrapper-inner .inner-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
section.section-about .section-wrapper .wrapper-inner .inner-image .img-box {
  position: relative;
  width: 100%;
  z-index: 0;
}
section.section-about .section-wrapper .wrapper-inner .inner-image .img-box::before {
  position: absolute;
  content: '';
  top: -90px;
  left: -43px;
  width: 224px;
  height: 224px;
  background-color: #F5AF98;
  border-radius: 50%;
  z-index: 0;
}
section.section-about .section-wrapper .wrapper-inner .inner-image .img-box::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 54px;
  max-width: 95px;
  max-height: 95px;
  width: 100%;
  height: 100%;
  background-color: #FEC14D;
  border-radius: 50%;
  z-index: 1;
}
section.section-about .section-wrapper .wrapper-inner .inner-image .img-img {
  width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}
section.section-about .section-wrapper .wrapper-inner .inner-image .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
section.section-about .section-wrapper .wrapper-inner .inner-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  padding: 0 0 0 0;
  gap: 20px;
}
section.section-about .section-wrapper .wrapper-inner .inner-description header h1 {
  font-weight: 500;
  font-size: 72px;
  line-height: 83px;
  color: #222222;
}
section.section-about .section-wrapper .wrapper-inner .inner-description p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #777777;
}
section.section-about .section-wrapper .wrapper-inner .inner-description a {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 0 0;
  color: #E2152C;
}
section.section-about .section-wrapper .wrapper-inner .inner-description a:hover::after {
  transform: translateX(10px);
  transition: transform 250ms ease-in-out;
}
section.section-about .section-wrapper .wrapper-inner .inner-description a::after {
  content: "";
  display: inline-block;
  background: url('../img/icons/arrow.svg') no-repeat;
  margin-left: 15px;
  width: 12px;
  height: 11px;
  transition: transform 250ms ease-in-out;
}
section.section-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 150px 0 0 0;
  overflow: hidden;
}
section.section-blog img {
  width: 100%;
}
section.section-blog .section-blog-gradient {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-image: linear-gradient(#f5f5f5, #fdfdfd);
  width: 100%;
  padding: 0;
}
section.section-blog .section-wrapper {
  display: flex;
  align-items: center;
  flex-flow: column;
  max-width: 1280px;
  width: 100%;
}
section.section-blog .section-wrapper .red-circle {
  content: '';
  position: absolute;
  width: 63px;
  height: 63px;
  background-color: #E2152C;
  border-radius: 50%;
  z-index: 1;
  transform: translateX(-100%);
  top: -60px;
  right: 0;
}
section.section-blog .section-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  width: 165px;
  height: 165px;
  background-color: #FEC14D;
  border-radius: 50%;
  bottom: 76px;
  right: -54px;
  z-index: 0;
}
section.section-blog .section-wrapper .wrapper-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 70px;
  z-index: 1;
}
section.section-blog .section-wrapper .wrapper-inner .inner-header {
  width: 100%;
}
section.section-blog .section-wrapper .wrapper-inner .inner-header header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.section-blog .section-wrapper .wrapper-inner .inner-header header h1 {
  font-weight: 500;
  font-size: 72px;
  line-height: 83px;
  color: #222222;
}
section.section-blog .section-wrapper .wrapper-inner .inner-header header p {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888888;
  padding-bottom: 25px;
}
section.section-blog .section-wrapper .wrapper-inner .inner-description {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-between;
}
section.section-blog .section-wrapper .wrapper-inner .inner-description .description {
  width: 100%;
  max-width: 350px;
}
section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}
section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #222222;
  width: 60%;
}
section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p:last-child {
  font-weight: 700;
  font-size: 14px;
  text-align: right;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888888;
  width: 40%;
}
section.section-blog .section-wrapper .wrapper-inner .inner-link {
  display: flex;
  gap: 0;
}
section.section-blog .section-wrapper .wrapper-inner .inner-link a {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E2152C;
}
section.section-blog .section-wrapper .wrapper-inner .inner-link a:hover::after {
  transform: translateX(10px);
  transition: transform 250ms ease-in-out;
}
section.section-blog .section-wrapper .wrapper-inner .inner-link a::after {
  content: "";
  display: inline-block;
  background: url('../img/icons/arrow.svg') no-repeat;
  margin-left: 15px;
  width: 12px;
  height: 11px;
  transition: transform 250ms ease-in-out;
}
section.section-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 250px 0 150px 0;
  overflow: hidden;
}
section.section-contact .kontakt-bg {
  content: '';
  position: absolute;
  background-color: #FEC14D;
  border-radius: 50%;
  width: 1800px;
  height: 1800px;
  transform: translateX(-20%);
  top: 0;
}
section.section-contact .section-wrapper {
  display: flex;
  align-items: center;
  flex-flow: column;
  max-width: 1280px;
  width: 100%;
  z-index: 1;
}
section.section-contact .section-wrapper .wrapper-inner {
  width: 100%;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description p {
  font-weight: 200;
  font-size: 48px;
  line-height: 66px;
  width: 100%;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left {
  display: flex;
  flex-direction: column;
  width: 80%;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 80px;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt {
  width: 60%;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt p {
  font-size: 48px;
  font-weight: 700;
  line-height: 66px;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-social {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 40%;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  margin-top: 48px;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li {
  display: inline;
  padding-right: 20px;
  font-size: 16px;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #000000;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 20%;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right ul {
  padding-top: 80px;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right ul li {
  list-style-type: none;
  line-height: 20px;
  padding: 15px;
}
section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right ul li a {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
@media (max-width: 767.98px) {
  nav.section-header .header-flexbox .nav-button {
    display: flex;
    margin-right: -10px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    background: #fff;
    z-index: 555;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
    display: block;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 50px;
    margin-right: 0;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1399.98px) {
  nav.section-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.section-slider .owl-carousel .item .mobile {
    display: none;
  }
  section.section-slider .owl-carousel .item .desktop {
    display: block;
  }
  section.section-slider .owl-carousel .item .item-description {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, 100%);
    width: 100%;
    padding: 0 20px 0 20px;
  }
  section.section-offer .section-wrapper .wrapper-inner {
    padding: 0 20px 0 20px;
  }
  section.section-price {
    padding: 150px 0 0 0;
  }
  section.section-price .section-price-gradient .section-wrapper .wrapper-inner {
    padding: 0 20px 0 20px;
  }
  section.section-price .section-price-gradient .section-wrapper .wrapper-inner .inner-header {
    padding-top: 30px;
  }
  section.section-about {
    padding: 150px 20px 0 20px;
  }
  section.section-blog .section-blog-gradient {
    padding: 0 20px 0 20px;
  }
  section.section-blog .section-blog-gradient .section-wrapper .wrapper-inner .inner-description {
    justify-content: space-around;
  }
  section.section-contact {
    padding: 250px 20px 150px 20px;
  }
}
@media (max-width: 1199.98px) {
  nav.section-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.section-slider {
    height: 100vh;
  }
  section.section-slider .owl-carousel .item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
  }
  section.section-slider .owl-carousel .item .mobile {
    display: none;
  }
  section.section-slider .owl-carousel .item .desktop {
    display: block;
  }
  section.section-slider .owl-carousel .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% 0;
  }
  section.section-slider .owl-carousel .item .item-description {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, 100%);
    width: 100%;
    padding: 0 20px 0 20px;
  }
  section.section-slider .owl-carousel .item .item-description header h1 {
    font-size: 72px;
    line-height: 83px;
    padding: 25px 0 25px 0;
  }
  section.section-slider .owl-carousel .item .item-description header p {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
  }
  section.section-slider .owl-carousel .owl-dots {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    outline: none;
    width: 90px;
  }
  section.section-offer {
    padding: 150px 0 0 0;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-image {
    width: 50%;
    height: auto;
    text-align: center;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-image img {
    width: 100%;
    height: auto;
    padding: 0 20px 0 0;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description {
    width: 50%;
    padding: 0 0 0 50px;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description header h1 {
    font-weight: 500;
    font-size: 60px;
    line-height: 60px;
  }
  section.section-offer .section-wrapper .wrapper-inner:nth-child(even) .inner-description {
    padding: 0 50px 0 0;
  }
  section.section-price {
    padding: 150px 0 0 0;
  }
  section.section-price .section-wrapper {
    width: 100%;
  }
  section.section-price .section-wrapper .wrapper-inner {
    width: 100%;
    padding: 0 20px 0 20px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header {
    width: 100%;
    margin-bottom: 70px;
    padding-top: 30px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header header h1 {
    font-size: 72px;
    line-height: 83px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header header p {
    padding-bottom: 20px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description {
    width: 100%;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table {
    width: 100%;
    margin-bottom: 70px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row {
    flex-direction: row;
    margin-bottom: 0;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col {
    width: 33.33%;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(2) {
    margin: 0 50px 0 50px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(3) {
    font-style: italic;
    font-weight: 300;
  }
  section.section-about {
    padding: 150px 20px 0 20px;
  }
  section.section-about .section-wrapper .wrapper-inner {
    display: flex;
    width: 100%;
  }
  section.section-blog {
    padding: 150px 0 0 0;
  }
  section.section-blog .section-blog-gradient {
    padding: 0 20px 0 20px;
  }
  section.section-blog .section-wrapper {
    width: 100%;
  }
  section.section-blog .section-wrapper .wrapper-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 70px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header {
    width: 100%;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header header h1 {
    font-size: 60px;
    line-height: 60px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-around;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description {
    width: 100%;
    max-width: 280px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-img img {
    max-width: 280px;
    width: 100%;
    height: auto;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt {
    flex-flow: row-reverse wrap;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p {
    width: 100%;
    order: 2;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p:last-child {
    width: 100%;
    order: 1;
    padding-bottom: 10px;
  }
  section.section-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 250px 20px 150px 20px;
    overflow: hidden;
  }
  section.section-contact .contact-bg {
    position: absolute;
    pointer-events: none;
    left: -700px;
    bottom: -100px;
    z-index: 0;
  }
  section.section-contact .section-wrapper {
    display: flex;
    align-items: center;
    flex-flow: column;
    max-width: 1280px;
    width: 100%;
    z-index: 1;
  }
  section.section-contact .section-wrapper .wrapper-inner {
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description p {
    font-weight: 200;
    font-size: 48px;
    line-height: 66px;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left {
    display: flex;
    flex-direction: column;
    width: 80%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 80px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt {
    width: 60%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt p {
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 40%;
    padding-top: 20px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-social a {
    padding-right: 15px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    margin-top: 48px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li {
    display: inline;
    padding-right: 20px;
    font-size: 16px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #000000;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 20%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right ul {
    padding-top: 80px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right ul li {
    list-style-type: none;
    line-height: 20px;
    padding: 15px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right ul li a {
    font-weight: 700;
    font-size: 16px;
    color: #000000;
  }
}
@media (max-width: 991.98px) {
  nav.section-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
    gap: 35px;
  }
  section.section-slider {
    height: 100vh;
  }
  section.section-slider .owl-carousel .item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
  }
  section.section-slider .owl-carousel .item .mobile {
    display: none;
  }
  section.section-slider .owl-carousel .item .desktop {
    display: block;
  }
  section.section-slider .owl-carousel .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% 0;
  }
  section.section-slider .owl-carousel .item .item-description {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, 100%);
    width: 100%;
    padding: 0 20px 0 20px;
  }
  section.section-slider .owl-carousel .item .item-description header h1 {
    font-size: 72px;
    line-height: 83px;
    padding: 25px 0 25px 0;
  }
  section.section-slider .owl-carousel .item .item-description header p {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
  }
  section.section-slider .owl-carousel .owl-dots {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    outline: none;
    width: 90px;
  }
  section.section-offer {
    padding: 150px 0 0 0;
  }
  section.section-offer .section-wrapper {
    flex-flow: column;
  }
  section.section-offer .section-wrapper .wrapper-inner {
    flex-flow: row;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-image {
    width: 50%;
    height: auto;
    text-align: center;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-image img {
    width: 100%;
    height: auto;
    padding: 0 20px 0 0;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 0;
    width: 50%;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description header h1 {
    font-weight: 500;
    font-size: 60px;
    line-height: 60px;
  }
  section.section-offer .section-wrapper .wrapper-inner:nth-child(even) {
    flex-flow: row-reverse wrap;
  }
  section.section-offer .section-wrapper .wrapper-inner:nth-child(even) .inner-description {
    padding: 0 0 0 0;
  }
  section.section-price {
    padding: 150px 0 0 0;
  }
  section.section-price .section-wrapper {
    width: 100%;
  }
  section.section-price .section-wrapper .wrapper-inner {
    width: 100%;
    padding: 0 20px 0 20px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header {
    width: 100%;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header header h1 {
    font-size: 60px;
    line-height: 60px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header header p {
    padding-bottom: 15px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description {
    width: 100%;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table {
    width: 100%;
    margin-bottom: 70px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row {
    flex-direction: row;
    margin-bottom: 0;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col {
    width: 33.33%;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(2) {
    margin: 0;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(3) {
    font-style: italic;
    font-weight: 300;
  }
  section.section-about {
    padding: 150px 20px 0 20px;
  }
  section.section-about .section-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  section.section-about .section-wrapper .wrapper-inner {
    flex-direction: row;
    width: 100%;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-description {
    width: 50%;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-description header h1 {
    padding-top: 20px;
    font-size: 60px;
    line-height: 60px;
  }
  section.section-blog {
    padding: 150px 0 0 0;
  }
  section.section-blog .section-blog-gradient {
    padding: 0 20px 0 20px;
  }
  section.section-blog .section-wrapper {
    width: 100%;
  }
  section.section-blog .section-wrapper .wrapper-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 70px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header {
    width: 100%;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header header h1 {
    font-size: 60px;
    line-height: 60px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header header p {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888888;
    padding-bottom: 25px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-around;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description {
    width: 100%;
    max-width: 230px;
    padding: 5px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-img img {
    max-width: 230px;
    width: 100%;
    height: auto;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt {
    flex-flow: row-reverse wrap;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p {
    width: 100%;
    order: 2;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p:last-child {
    width: 100%;
    order: 1;
    padding-bottom: 10px;
    text-align: left;
  }
  section.section-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 250px 20px 150px 20px;
    overflow: hidden;
  }
  section.section-contact .contact-bg {
    position: absolute;
    pointer-events: none;
    left: -700px;
    bottom: -100px;
    z-index: 0;
  }
  section.section-contact .section-wrapper {
    display: flex;
    align-items: center;
    flex-flow: column;
    max-width: 1280px;
    width: 100%;
    z-index: 1;
  }
  section.section-contact .section-wrapper .wrapper-inner {
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description p {
    font-weight: 200;
    font-size: 48px;
    line-height: 66px;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left {
    display: flex;
    flex-direction: column;
    width: 80%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 80px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt {
    width: 60%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt p {
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 40%;
    padding-top: 20px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-social a {
    padding-right: 15px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    margin-top: 48px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li {
    display: inline;
    padding-right: 20px;
    font-size: 16px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #000000;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 20%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right ul {
    padding-top: 80px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right ul li {
    list-style-type: none;
    line-height: 20px;
    padding: 15px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right ul li a {
    font-weight: 700;
    font-size: 16px;
    color: #000000;
  }
}
@media (max-width: 767.98px) {
  nav.section-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
    flex-direction: column;
    gap: 70px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a {
    font-size: 24px;
  }
  nav.section-header .header-flexbox .nav-button .button-bar {
    background: #000;
  }
  section.section-slider {
    height: 100vh;
  }
  section.section-slider .owl-carousel .item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
  }
  section.section-slider .owl-carousel .item .mobile {
    display: block;
  }
  section.section-slider .owl-carousel .item .desktop {
    display: none;
  }
  section.section-slider .owl-carousel .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% 0;
  }
  section.section-slider .owl-carousel .item .item-description {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, 120%);
    width: 100%;
    padding: 0 20px 0 20px;
  }
  section.section-slider .owl-carousel .item .item-description header h1 {
    font-size: 60px;
    line-height: 60px;
    padding: 25px 0 25px 0;
  }
  section.section-slider .owl-carousel .item .item-description header p {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
  }
  section.section-slider .owl-carousel .owl-dots {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    outline: none;
    width: 90px;
  }
  section.section-offer {
    padding: 150px 0 0 0;
  }
  section.section-offer .section-wrapper {
    flex-flow: column;
  }
  section.section-offer .section-wrapper .wrapper-inner {
    flex-flow: column;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-image {
    width: 100%;
    height: auto;
    text-align: center;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    padding: 10px;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 0;
    width: 100%;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description header h1 {
    font-weight: 500;
    font-size: 60px;
    line-height: 60px;
  }
  section.section-offer .section-wrapper .wrapper-inner:nth-child(even) {
    flex-flow: row wrap;
  }
  section.section-offer .section-wrapper .wrapper-inner:nth-child(even) .inner-description {
    padding: 0 0 0 0;
  }
  section.section-price {
    padding: 150px 0 0 0;
  }
  section.section-price .shoe {
    display: none;
  }
  section.section-price .section-wrapper {
    width: 100%;
  }
  section.section-price .section-wrapper .wrapper-inner {
    width: 100%;
    padding: 0 20px 0 20px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header {
    width: 100%;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header header h1 {
    font-size: 60px;
    line-height: 60px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header header p {
    padding-bottom: 15px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description {
    width: 100%;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table {
    width: 100%;
    margin-bottom: 70px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row {
    flex-direction: row;
    margin-bottom: 20px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col {
    width: 33.33%;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(2) {
    margin: 0;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(3) {
    font-style: italic;
    font-weight: 300;
  }
  section.section-about {
    padding: 150px 20px 0 20px;
  }
  section.section-about .section-blog-gradient {
    padding: 0 20px 0 20px;
  }
  section.section-about .section-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  section.section-about .section-wrapper .wrapper-inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-image {
    width: 80%;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-image img {
    text-align: center;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-description {
    width: 100%;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-description header h1 {
    padding-top: 20px;
    font-size: 60px;
    line-height: 60px;
  }
  section.section-blog {
    padding: 150px 0 0 0;
    background-size: contain;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header {
    width: 100%;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header header h1 {
    font-size: 42px;
    line-height: 42px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description {
    justify-content: space-around;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description {
    width: 100%;
    max-width: 170px;
    padding: 5px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-img img {
    max-width: 170px;
    width: 100%;
    height: auto;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p {
    width: 100%;
    order: 2;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p:last-child {
    width: 100%;
    order: 1;
    padding-bottom: 10px;
    text-align: left;
  }
  section.section-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 200px 20px 50px 20px;
    overflow: hidden;
  }
  section.section-contact .contact-bg {
    position: absolute;
    pointer-events: none;
    left: -800px;
    bottom: -220px;
    z-index: 0;
  }
  section.section-contact .section-wrapper {
    display: flex;
    align-items: center;
    flex-flow: column;
    width: 100%;
    z-index: 1;
  }
  section.section-contact .section-wrapper .wrapper-inner {
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description {
    flex-flow: column wrap;
    justify-content: space-between;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description p {
    font-size: 48px;
    line-height: 66px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt {
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt p {
    font-size: 24px;
    font-weight: 700;
    line-height: 44px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-social a {
    padding: 30px 15px 30px 0;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li {
    display: inline;
    padding-right: 5px;
    font-size: 14px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right {
    display: none;
  }
}
@media (max-width: 575.98px) {
  nav.section-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
    flex-direction: column;
    gap: 70px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a {
    font-size: 24px;
  }
  nav.section-header .header-flexbox .nav-button .button-bar {
    background: #000;
  }
  section.section-slider {
    height: 100vh;
  }
  section.section-slider .owl-carousel .item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
  }
  section.section-slider .owl-carousel .item .mobile {
    display: block;
  }
  section.section-slider .owl-carousel .item .desktop {
    display: none;
  }
  section.section-slider .owl-carousel .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% 0;
  }
  section.section-slider .owl-carousel .item .item-description {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, 120%);
    width: 100%;
    padding: 0 20px 0 20px;
  }
  section.section-slider .owl-carousel .item .item-description header h1 {
    font-size: 55px;
    line-height: 55px;
    padding: 25px 0 25px 0;
  }
  section.section-slider .owl-carousel .item .item-description header p {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
  }
  section.section-slider .owl-carousel .owl-dots {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    outline: none;
    width: 90px;
  }
  section.section-offer {
    padding: 150px 0 0 0;
  }
  section.section-offer .section-wrapper {
    flex-flow: column;
    max-width: 100%;
  }
  section.section-offer .section-wrapper .wrapper-inner {
    flex-flow: column;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-image {
    width: 100%;
    height: auto;
    text-align: center;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    padding: 10px;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 0;
    width: 100%;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description header h1 {
    padding-top: 40px;
    font-weight: 500;
    font-size: 48px;
    line-height: 48px;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description p {
    font-size: 16px;
  }
  section.section-offer .section-wrapper .wrapper-inner:nth-child(even) {
    flex-flow: row wrap;
  }
  section.section-offer .section-wrapper .wrapper-inner:nth-child(even) .inner-description {
    padding: 0 0 0 0;
    width: 100%;
  }
  section.section-price {
    padding: 150px 0 0 0;
  }
  section.section-price .shoe {
    display: none;
  }
  section.section-price .section-wrapper {
    width: 100%;
  }
  section.section-price .section-wrapper .wrapper-inner {
    width: 100%;
    padding: 0 20px 0 20px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header {
    width: 100%;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header header h1 {
    font-size: 48px;
    line-height: 48px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header header p {
    padding-bottom: 15px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description {
    width: 100%;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table {
    width: 100%;
    margin-bottom: 70px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row {
    flex-flow: row wrap;
    border-bottom: 1px solid #eee;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .table-title {
    font-size: 24px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col {
    font-size: 16px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(1) {
    min-width: 50%;
    font-size: 16px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(2) {
    min-width: 50%;
    font-size: 16px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(3) {
    min-width: 320px;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    padding-bottom: 15px;
  }
  section.section-about {
    padding: 150px 20px 0 20px;
  }
  section.section-about .section-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  section.section-about .section-wrapper .wrapper-inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-image {
    width: 80%;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-image img {
    text-align: center;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-description {
    width: 100%;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-description header h1 {
    padding-top: 40px;
    font-size: 48px;
    line-height: 48px;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-description p {
    font-size: 16px;
  }
  section.section-blog {
    padding: 150px 0 0 0;
  }
  section.section-blog .section-blog-gradient {
    padding: 0 20px 0 20px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header {
    width: 100%;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header header h1 {
    font-size: 42px;
    line-height: 42px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description {
    width: 100%;
    max-width: 320px;
    margin-bottom: 40px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-img img {
    max-width: 320px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt {
    flex-flow: row wrap;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p {
    width: 100%;
    order: 2;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p:last-child {
    width: 100%;
    order: 1;
    padding-bottom: 10px;
    text-align: left;
  }
  section.section-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 200px 20px 50px 20px;
    overflow: hidden;
  }
  section.section-contact .contact-bg {
    position: absolute;
    pointer-events: none;
    left: -800px;
    bottom: -220px;
    z-index: 0;
  }
  section.section-contact .section-wrapper {
    display: flex;
    align-items: center;
    flex-flow: column;
    width: 100%;
    z-index: 1;
  }
  section.section-contact .section-wrapper .wrapper-inner {
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description {
    flex-flow: column wrap;
    justify-content: space-between;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description p {
    font-size: 48px;
    line-height: 66px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt {
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt p {
    font-size: 24px;
    font-weight: 700;
    line-height: 44px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-social a {
    padding: 30px 15px 30px 0;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li {
    display: inline;
    padding-right: 5px;
    font-size: 14px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right {
    display: none;
  }
}
@media (max-width: 400px) {
  nav.section-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
    flex-direction: column;
    gap: 70px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a {
    font-size: 24px;
  }
  nav.section-header .header-flexbox .nav-button .button-bar {
    background: #000;
  }
  section.section-slider {
    height: 100vh;
  }
  section.section-slider .owl-carousel .item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
  }
  section.section-slider .owl-carousel .item .mobile {
    display: flex;
  }
  section.section-slider .owl-carousel .item .desktop {
    display: none;
  }
  section.section-slider .owl-carousel .item img {
    display: block;
    width: 100%;
    height: 100%;
  }
  section.section-slider .owl-carousel .item .item-description {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, 120%);
    width: 100%;
    padding: 0 20px 0 20px;
  }
  section.section-slider .owl-carousel .item .item-description header h1 {
    font-size: 50px;
    line-height: 50px;
    padding: 25px 0 25px 0;
  }
  section.section-slider .owl-carousel .item .item-description header p {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
  }
  section.section-slider .owl-carousel .owl-dots {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    outline: none;
    width: 90px;
  }
  section.section-offer {
    padding: 150px 0 0 0;
  }
  section.section-offer .section-wrapper {
    flex-flow: column;
  }
  section.section-offer .section-wrapper .wrapper-inner {
    flex-flow: column;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-image {
    width: 100%;
    height: auto;
    text-align: center;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-image img {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 0;
    width: 100%;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description header h1 {
    font-weight: 500;
    font-size: 48px;
    line-height: 48px;
    padding-top: 40px;
  }
  section.section-offer .section-wrapper .wrapper-inner .inner-description p {
    font-size: 16px;
  }
  section.section-offer .section-wrapper .wrapper-inner:nth-child(even) {
    flex-flow: row wrap;
  }
  section.section-offer .section-wrapper .wrapper-inner:nth-child(even) .inner-description {
    padding: 0 0 0 0;
  }
  section.section-price {
    padding: 150px 0 0 0;
  }
  section.section-price .shoe {
    display: none;
  }
  section.section-price .section-wrapper {
    width: 100%;
  }
  section.section-price .section-wrapper .wrapper-inner {
    width: 100%;
    padding: 0 20px 0 20px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header {
    width: 100%;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header header h1 {
    font-size: 48px;
    line-height: 48px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-header header p {
    padding-bottom: 15px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description {
    width: 100%;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table {
    width: 100%;
    margin-bottom: 70px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row {
    flex-flow: row wrap;
    border-bottom: 1px solid #eee;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .table-title {
    font-size: 24px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col {
    font-size: 16px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(1) {
    min-width: 50%;
    font-size: 16px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(2) {
    min-width: 50%;
    font-size: 16px;
  }
  section.section-price .section-wrapper .wrapper-inner .inner-description .description-table .row .col:nth-child(3) {
    min-width: 320px;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    padding-bottom: 15px;
  }
  section.section-about {
    padding: 150px 20px 0 20px;
  }
  section.section-about .section-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  section.section-about .section-wrapper .wrapper-inner {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-image {
    width: 100%;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-description {
    width: 100%;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-description header h1 {
    padding-top: 40px;
    font-size: 48px;
    line-height: 48px;
  }
  section.section-about .section-wrapper .wrapper-inner .inner-description p {
    font-size: 16px;
  }
  section.section-blog {
    padding: 150px 0 0 0;
  }
  section.section-blog .section-blog-gradient {
    padding: 0 20px 0 20px;
  }
  section.section-blog .section-wrapper {
    width: 100%;
  }
  section.section-blog .section-wrapper::before {
    bottom: 0px;
    right: -104px;
  }
  section.section-blog .section-wrapper .wrapper-inner {
    width: 100%;
    gap: 70px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header {
    width: 100%;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-header header h1 {
    font-size: 42px;
    line-height: 42px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description {
    width: 100%;
    max-width: 320px;
    margin-bottom: 40px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-img img {
    max-width: 320px;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt {
    flex-flow: row wrap;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p {
    width: 100%;
    order: 2;
  }
  section.section-blog .section-wrapper .wrapper-inner .inner-description .description .description-txt p:last-child {
    width: 100%;
    order: 1;
    padding-bottom: 10px;
    text-align: left;
  }
  section.section-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 200px 20px 50px 20px;
    overflow: hidden;
  }
  section.section-contact .contact-bg {
    position: absolute;
    pointer-events: none;
    left: -800px;
    bottom: -220px;
    z-index: 0;
  }
  section.section-contact .section-wrapper {
    display: flex;
    align-items: center;
    flex-flow: column;
    width: 100%;
    z-index: 1;
  }
  section.section-contact .section-wrapper .wrapper-inner {
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description {
    flex-flow: column wrap;
    justify-content: space-between;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description p {
    font-size: 48px;
    line-height: 66px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt {
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-txt p {
    font-size: 24px;
    font-weight: 700;
    line-height: 44px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description .description-social a {
    padding: 30px 15px 30px 0;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    margin-top: 70px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li {
    display: inline;
    padding-right: 5px;
    font-size: 14px;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-left .description-company ul li a {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
  }
  section.section-contact .section-wrapper .wrapper-inner .inner-description .description-right {
    display: none;
  }
}

/*# sourceMappingURL=maps/style.css.map */
