@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Krona+One&display=swap");

@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/ProximaNova-Regular.woff2") format("woff2"), url("fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/ProximaNova-Light.woff2") format("woff2"), url("fonts/ProximaNova-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("fonts/ProximaNova-Bold.woff2") format("woff2"), url("fonts/ProximaNova-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:hover,
a {
  text-decoration: none;
}

:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  color: rgb(48, 48, 48);
  -webkit-text-size-adjust: 100%;
  background: rgb(247, 250, 255);
}

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

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

@media (max-width: 991px) {
  .container {
    padding: 0 15px;
  }
}

.container--lg {
  max-width: 1500px;
}

.wrapper {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
#color {
  padding: 10px;
  width: 100%;
  border: 1px solid #d7d2d2;
  color: #777;
}
.burger {
  display: none;
  position: relative;
  width: 34px;
  height: 20px;
  cursor: pointer;
  z-index: 111;
}

.burger.open:before {
  background: #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 8px;
  height: 2px;
}

.burger.open:after {
  background: #000;
  top: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  height: 2px;
}

.burger.open span:before {
  display: none;
}

.burger:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 34px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.burger:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 34px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.burger span {
  position: relative;
  display: block;
  width: 34px;
  height: 20px;
}

.burger span:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 34px;
  height: 2px;
  background: #000;
}

@media (max-width: 991px) {
  .burger {
    display: block;
  }
}

main {
  padding-top: 120px;
}

@media (max-width: 1400px) {
  main {
    padding-top: 62px;
  }
}

@media (max-width: 767px) {
  main {
    padding-top: 50px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 11;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 3px 9px 16px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 3px 9px 16px 0px rgba(0, 0, 0, 0.13);
  height: 120px;
}

@media (max-width: 1400px) {
  header {
    height: 62px;
  }
}

@media (max-width: 767px) {
  header {
    height: 50px;
  }
}

header.sticky {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 50px;
}

header.sticky .logo img {
  width: 25px;
}

header.sticky .header-content {
  height: 50px;
}

header.sticky .main-menu ul li a {
  font-size: 16px;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 120px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

@media (max-width: 1400px) {
  .header-content {
    height: 62px;
  }
}

@media (max-width: 991px) {
  .header-content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .header-content {
    height: 50px;
  }
}

.logo {
  margin-right: 80px;
}

@media (max-width: 1400px) {
  .logo {
    margin-right: 40px;
  }
}

.logo img {
  width: 45px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 1400px) {
  .logo img {
    width: 23px;
  }
}

@media (max-width: 991px) {
  .main-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 190px;
    background: #fff;
    padding: 17px 30px 17px 10px;
  }
}

.main-menu.open {
  display: block;
}

.main-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991px) {
  .main-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: right;
  }
}

.main-menu ul li {
  padding: 0 10px;
}

@media (max-width: 991px) {
  .main-menu ul li {
    padding: 0;
    margin-bottom: 10px;
  }
}

.main-menu ul li.active a {
  font-weight: 700;
  border-color: #000;
}

.main-menu ul li a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0 10px;
  font-size: 24px;
  font-weight: 400;
  color: #000;
  border-bottom: 2px solid transparent;
}

.main-menu ul li a:hover {
  border-color: #000;
}

@media (max-width: 1400px) {
  .main-menu ul li a {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .main-menu ul li a {
    padding: 0 0 0 20px;
    border-bottom: 1px solid transparent;
  }
}

.about {
  position: relative;
}

.about__content {
  position: relative;
  z-index: 9;
}

.about__image {
  position: absolute;
  right: -190px;
  top: -30px;
}

@media (max-width: 1200px) {
  .about__image {
    right: 30px;
    top: 20px;
  }
}

@media (max-width: 566px) {
  .about__image {
    right: -10px;
    top: 20px;
  }
}

@media (max-width: 479px) {
  .about__image {
    top: 70px;
  }
}

.about__image img {
  width: 820px;
}

@media (max-width: 1400px) {
  .about__image img {
    width: 550px;
  }
}

@media (max-width: 1200px) {
  .about__image img {
    width: 430px;
  }
}

@media (max-width: 991px) {
  .about__image img {
    width: 370px;
  }
}

@media (max-width: 767px) {
  .about__image img {
    width: 240px;
  }
}

@media (max-width: 479px) {
  .about__image img {
    width: 180px;
  }
}

.main-section {
  background: url(/images/main-bg.png) 50% 100% no-repeat;
  background-size: cover;
  padding: 105px 0 240px;
}

@media (max-width: 1200px) {
  .main-section {
    padding-bottom: 125px;
  }
}

@media (max-width: 991px) {
  .main-section {
    padding-bottom: 190px;
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .main-section {
    padding-bottom: 80px;
  }
}

@media (max-width: 479px) {
  .main-section {
    padding-bottom: 60px;
    padding-top: 20px;
  }
}

.main-section--error {
  background: url(/images/error-bg.jpg) 50% 50% no-repeat;
  background-size: cover;
  padding-bottom: 60px;
}

.main-section--error .about {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.main-section--error .about h1 {
  text-align: center;
  margin-bottom: 0;
}

.main-section--error .about__image {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  margin-left: 50px;
  padding-top: 50px;
}

@media (max-width: 991px) {
  .main-section--error .about__image {
    display: none;
  }
}

.main-section--error .about__image img {
  width: 450px;
}

.main-section p {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  max-width: 655px;
  margin-bottom: 52px;
}

@media (max-width: 1200px) {
  .main-section p {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .main-section p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

@media (max-width: 479px) {
  .main-section p {
    text-align: center;
  }
}

.whatsapp {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 251px;
  height: 252px;
  padding-bottom: 20px;
  background: url(/images/whasapp-bg.svg) 50% 50% no-repeat;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 1200px) {
  .whatsapp {
    width: 115px;
    height: 115px;
    font-size: 10px;
    background-size: 115px auto;
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .whatsapp {
    width: 70px;
    height: 70px;
    font-size: 7px;
    background-size: 70px auto;
    padding-bottom: 0;
    line-height: 20px;
  }
}

.whatsapp img {
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .whatsapp img {
    width: 41px;
    height: 41px;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .whatsapp img {
    width: 24px;
    height: 24px;
  }
}

h1,
.h1 {
  font-family: "Krona One", sans-serif;
  font-size: 100px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 30px;
}

@media (max-width: 1200px) {
  h1,
  .h1 {
    font-size: 62px;
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 37px;
    margin-bottom: 7px;
  }
}

@media (max-width: 479px) {
  h1,
  .h1 {
    text-align: center;
  }
}

h2,
.h2 {
  display: block;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  h2,
  .h2 {
    font-size: 22px;
    margin-bottom: 35px;
  }
}

@media (max-width: 479px) {
  h2,
  .h2 {
    font-size: 18px;
    margin-bottom: 22px;
  }
}

h2.white,
.h2.white {
  color: #fff;
}

h3,
.h3 {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  h3,
  .h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  h3,
  .h3 {
    font-size: 16px;
  }
}

h3.white,
.h3.white {
  color: #fff;
}

h4,
.h4 {
  display: block;
  color: #444;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  h4,
  .h4 {
    font-size: 16px;
  }
}

h4.white,
.h4.white {
  color: #fff;
}

.shirts-section {
  padding: 135px 0 300px;
}

@media (max-width: 1200px) {
  .shirts-section {
    padding-bottom: 120px;
    padding-top: 65px;
  }
}

@media (max-width: 767px) {
  .shirts-section {
    padding-bottom: 75px;
  }
}

.shirts {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}

.shirts__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .shirts__head {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}

.shirts__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(125.62deg, #ffee00 18.7%, #e6007e 49.95%, #00a6e2 88.47%);
}

.shirts__head-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 400px);
}

@media (max-width: 991px) {
  .shirts__head-right {
    width: calc(100% - 280px);
  }
}

@media (max-width: 479px) {
  .shirts__head-right {
    width: calc(100% - 180px);
  }
}

.shirts__head-right .shirts__head-item:first-child {
  color: #000;
  width: 50%;
}

@media (max-width: 767px) {
  .shirts__head-right .shirts__head-item:first-child {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .shirts__head-right .shirts__head-item:last-child {
    display: none;
  }
}

.shirts__head-item {
  width: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
}

@media (max-width: 1200px) {
  .shirts__head-item {
    font-size: 15px;
  }
}

@media (max-width: 479px) {
  .shirts__head-item {
    font-size: 13px;
  }
}

.shirts__head-item span {
  display: none;
}

@media (max-width: 767px) {
  .shirts__head-item span {
    display: inline-block;
  }
}

.shirts__head-item:first-child {
  color: rgb(12, 57, 105);
  width: 400px;
}

@media (max-width: 1200px) {
  .shirts__head-item:first-child {
    width: 250px;
  }
}

@media (max-width: 479px) {
  .shirts__head-item:first-child {
    width: 160px;
  }
}

.shirt-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.shirt-item.available .shirt-item__image {
  background: linear-gradient(270deg, #00a6e2 -10.26%, #004de2 118.68%),
    linear-gradient(269.85deg, rgba(255, 255, 255, 0) 10.72%, #ffffff 49.8%, rgba(255, 255, 255, 0) 84.3%);
}

.shirt-item.available .shirt-item__status span {
  background: linear-gradient(270deg, #00a6e2 -10.26%, #004de2 118.68%),
    linear-gradient(269.85deg, rgba(255, 255, 255, 0) 10.72%, #ffffff 49.8%, rgba(255, 255, 255, 0) 84.3%);
}

.shirt-item.out-of-stock .shirt-item__image {
  background: linear-gradient(180deg, #cacaca 0%, #898989 100%),
    linear-gradient(269.85deg, rgba(255, 255, 255, 0) 10.72%, #ffffff 49.8%, rgba(255, 255, 255, 0) 84.3%);
}

.shirt-item.out-of-stock .shirt-item__status span {
  background: linear-gradient(270deg, #b3b3b3 -10.26%, #7a7a7a 118.68%),
    linear-gradient(269.85deg, rgba(255, 255, 255, 0) 10.72%, #ffffff 49.8%, rgba(255, 255, 255, 0) 84.3%);
}

.shirt-item__image {
  width: 400px;
  height: 400px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0px 10px 25px -11px rgb(0, 0, 0);
  box-shadow: 0px 10px 25px -11px rgb(0, 0, 0);
  position: relative;
}

@media (max-width: 1200px) {
  .shirt-item__image {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 479px) {
  .shirt-item__image {
    width: 160px;
    height: 160px;
  }
}

.shirt-item__image::before {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  top: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.shirt-item__image::after {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  bottom: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.shirt-item__image img {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
  object-fit: contain;
}

.shirt-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 400px);
}

@media (max-width: 991px) {
  .shirt-item__content {
    width: calc(100% - 280px);
  }
}

@media (max-width: 767px) {
  .shirt-item__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  .shirt-item__content {
    width: calc(100% - 180px);
  }
}

.shirt-item__text {
  width: 50%;
}

@media (max-width: 767px) {
  .shirt-item__text {
    width: 100%;
    margin-bottom: 20px;
  }
}

.shirt-item__text p {
  max-width: 270px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 1200px) {
  .shirt-item__text p {
    font-size: 12px;
    line-height: 15px;
  }
}

@media (max-width: 767px) {
  .shirt-item__text p {
    max-width: 100%;
  }
}

.shirt-item__status {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .shirt-item__status {
    width: 100%;
  }
}

.shirt-item__status span {
  width: 100%;
  max-width: 300px;
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  border-radius: 8px;
  color: #fff;
  -webkit-box-shadow: 0px 10px 25px -11px rgb(0, 0, 0);
  box-shadow: 0px 10px 25px -11px rgb(0, 0, 0);
}

@media (max-width: 1200px) {
  .shirt-item__status span {
    width: 190px;
    height: 36px;
    font-size: 12px;
  }
}

.shirt-item__status span::before {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  top: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 1200px) {
  .shirt-item__status span::before {
    height: 1px;
  }
}

.shirt-item__status span::after {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  bottom: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 1200px) {
  .shirt-item__status span::after {
    height: 1px;
  }
}

.why-section {
  padding: 85px 0;
  background: url(/images/why-bg.jpg) 50% 50% no-repeat;
  background-size: cover;
}

@media (max-width: 1200px) {
  .why-section {
    padding: 35px 0;
  }
}

@media (max-width: 767px) {
  .why-section {
    padding: 25px 0;
  }
}

.why-list li {
  font-size: 25px;
  font-weight: 400;
  line-height: 29px;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
  padding-left: 33px;
}

@media (max-width: 1200px) {
  .why-list li {
    font-size: 16px;
    line-height: 22px;
    padding-left: 25px;
    margin-bottom: 20px;
  }
}

.why-list li::before {
  content: "";
  width: 26px;
  height: 26px;
  background: url(/images/marker-1.png);
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1200px) {
  .why-list li::before {
    width: 16px;
    height: 16px;
    background-size: 16px auto;
  }
}

.why-list li:last-child {
  margin-bottom: 0;
}

.why-list li:last-child::before {
  width: 19px;
  height: 18px;
  background: url(/images/marker-2.png);
  top: 4px;
}

@media (max-width: 1200px) {
  .why-list li:last-child::before {
    width: 12px;
    height: 12px;
    background-size: 12px auto;
  }
}

.cost-section {
  padding: 80px 0;
}

.cost {
  max-width: 1250px;
  margin: 0 auto;
}

.cost__head {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .cost__head {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

.cost__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(125.62deg, #ffee00 18.7%, #e6007e 49.95%, #00a6e2 88.47%);
}

.cost__head .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.cost__head .tabs a {
  display: block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  padding: 5px 10px;
  color: rgb(150, 150, 150);
}

@media (max-width: 991px) {
  .cost__head .tabs a {
    font-size: 15px;
  }
}

.cost__head .tabs a:hover,
.cost__head .tabs a.active {
  color: #000;
}

.tabgroup {
  margin-bottom: 40px;
}

.cost__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 1200px) {
  .cost__tab {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .cost__tab {
    flex-direction: column;
  }
}

.cost__table {
    flex: 1;
}

/* .cost__table {
  width: calc(100% - 420px);
}

@media (max-width: 1200px) {
  .cost__table {
    width: calc(100% - 270px);
  }
}

@media (max-width: 767px) {
  .cost__table {
    width: calc(100% - 260px);
  }
}

@media (max-width: 479px) {
  .cost__table {
    width: calc(100% - 170px);
  }
} */

.cost__image {
  position: relative;
  width: 392px;
  height: 422px;
  background: rgb(217, 217, 217);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 70px;
}

@media (max-width: 1200px) {
  .cost__image {
    width: 250px;
    height: 252px;
    margin-top: 35px;
  }
}

@media (max-width: 767px) {
  .cost__image {
    width: 240px;
    height: 252px;
    align-self: center;
  }
}

@media (max-width: 479px) {
  .cost__image {
    width: 154px;
    height: 172px;
  }
}

.cost__image img {
  max-width: 85%;
  max-height: 85%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cost__shirt-format {
  position: absolute;
  font-size: 50px;
  color: #fff;
  padding-right: 14px;
  padding-bottom: 20px;
}

@media (max-width: 1200px) {
  .cost__shirt-format {
    font-size: 30px;
    padding-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .cost__shirt-format {
    font-size: 20px;
    padding-bottom: 10px;
    padding-left: 8px;
  }
}

.shirt-table {
  width: 100%;
  text-align: center;
  border-collapse: separate;
}

.shirt-table th {
  font-size: 20px;
  font-weight: 600;
  line-height: 48px;
  text-align: center;
  padding: 10px 0;
  width: 50%;
}

@media (max-width: 1200px) {
  .shirt-table th {
    font-size: 13px;
    line-height: 20px;
    padding-top: 0;
  }
}

@media (max-width: 479px) {
  .shirt-table th {
    font-size: 9px;
  }
}

.shirt-table td {
  padding: 3px 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: center;
  height: 45px;
  vertical-align: middle;
  width: 50%;
}

@media (max-width: 1200px) {
  .shirt-table td {
    font-size: 13px;
    height: 26px;
  }
}

@media (max-width: 479px) {
  .shirt-table td {
    font-size: 9px;
    height: 17px;
  }
}

.shirt-table tr:nth-child(2n + 2) td {
  background: rgb(126, 221, 255);
}

.btn-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 380px;
  height: 76px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(270deg, #00a6e2 -10.26%, #004de2 118.68%),
    linear-gradient(269.85deg, rgba(255, 255, 255, 0) 10.72%, #ffffff 49.8%, rgba(255, 255, 255, 0) 84.3%);
  position: relative;
  -webkit-box-shadow: 0px 10px 25px -11px rgb(0, 0, 0);
  box-shadow: 0px 10px 25px -11px rgb(0, 0, 0);
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  bottom: 0;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .btn {
    width: 240px;
    height: 48px;
    font-size: 13px;
  }
}

.btn:hover {
  bottom: -2px;
  -webkit-box-shadow: 0px 10px 15px -11px rgb(0, 0, 0);
  box-shadow: 0px 10px 15px -11px rgb(0, 0, 0);
  background: linear-gradient(270deg, #0088b9 -10.26%, #003aaf 118.68%),
    linear-gradient(269.85deg, rgba(255, 255, 255, 0) 10.72%, #ffffff 49.8%, rgba(255, 255, 255, 0) 84.3%);
}

.btn::before {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  top: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 1200px) {
  .btn::before {
    height: 1px;
  }
}

.btn::after {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  bottom: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 1200px) {
  .btn::after {
    height: 1px;
  }
}

.btn--blue {
  color: #fff;
  background: linear-gradient(270deg, #00a6e2 -10.26%, #004de2 118.68%),
    linear-gradient(269.85deg, rgba(255, 255, 255, 0) 10.72%, #ffffff 49.8%, rgba(255, 255, 255, 0) 84.3%);
}

.questions-section {
  padding: 60px 0 50px;
  background: url(/images/question-bg.jpg) 50% 50% no-repeat;
  background-size: cover;
}

@media (max-width: 1200px) {
  .questions-section {
    padding: 35px 0;
  }
}

@media (max-width: 767px) {
  .questions-section {
    padding: 25px 0;
  }
}

.question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.question__image {
  position: absolute;
  right: 700px;
  bottom: -49px;
}

@media (max-width: 1200px) {
  .question__image {
    right: 500px;
    bottom: -34px;
  }
}

@media (max-width: 991px) {
  .question__image {
    right: 400px;
  }
}

@media (max-width: 767px) {
  .question__image {
    right: 300px;
    bottom: -24px;
  }
}

.question__image img {
  height: 1050px;
  display: block;
}

@media (max-width: 1200px) {
  .question__image img {
    height: 660px;
  }
}

@media (max-width: 767px) {
  .question__image img {
    height: 450px;
  }
}

@media (max-width: 479px) {
  .question__image img {
    display: none;
  }
}

.question__content {
  position: relative;
  z-index: 9;
  width: 100%;
  max-width: 800px;
  padding-right: 30px;
}

@media (max-width: 1200px) {
  .question__content {
    max-width: 500px;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .question__content {
    max-width: 340px;
  }
}

@media (max-width: 479px) {
  .question__content {
    max-width: 100%;
    padding-left: 20px;
  }
}

.accordion {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.accordion li {
  width: 100%;
  margin-bottom: 10px;
}

.accordion .opener {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  color: #000;
  text-decoration: none;
  padding: 5px 30px 5px 80px;
  height: 90px;
  background: rgb(255, 255, 255);
  font-family: Proxima Nova;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: left;
  -webkit-box-shadow: 0px 4px 29px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 29px 0px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  position: relative;
}

@media (max-width: 1200px) {
  .accordion .opener {
    min-height: 60px;
    font-size: 14px;
    padding-left: 50px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .accordion .opener {
    min-height: 50px;
    padding-left: 20px;
  }
}

.accordion .opener span {
  display: block;
  width: 63px;
  height: 63px;
  background: url(/images/accordion-bg.svg) 50% 50% no-repeat;
  position: absolute;
  right: -32px;
  top: calc(50% - 32px);
}

@media (max-width: 1200px) {
  .accordion .opener span {
    width: 38px;
    height: 38px;
    background-size: 38px 38px;
    right: -19px;
    top: calc(50% - 19px);
  }
}

.accordion .opener span:before {
  content: "";
  width: 17px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 8.5px);
}

@media (max-width: 1200px) {
  .accordion .opener span:before {
    width: 10px;
    height: 2px;
    top: calc(50% - 1px);
    left: calc(50% - 5px);
  }
}

.accordion .opener span:after {
  content: "";
  width: 2px;
  height: 17px;
  background: #fff;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 8.5px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 1200px) {
  .accordion .opener span:after {
    width: 2px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 1px);
  }
}

.accordion .active .opener span:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.submenu {
  overflow: hidden;
  padding: 20px 20px 20px 80px;
  list-style: none;
  line-height: 19px;
  display: none;
  width: 100%;
  background: #efefef;
  border-radius: 8px;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .submenu {
    padding: 15px 15px 15px 50px;
  }
}

@media (max-width: 767px) {
  .submenu {
    padding: 10px 10px 10px 20px;
  }
}

.submenu li {
  margin: 0;
  float: none;
  width: auto;
  font-size: 20px;
  line-height: 28px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 1200px) {
  .submenu li {
    font-size: 14px;
    line-height: 20px;
  }
}

.submenu li a:hover {
  text-decoration: none;
}

.benefits-section {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .benefits-section {
    padding-bottom: 30px;
  }
}

.benefits {
  padding-left: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 767px) {
  .benefits {
    padding-left: 0;
  }
}

.benefits__image {
  position: absolute;
  top: -330px;
  right: calc(100% - 330px);
}

@media (max-width: 1200px) {
  .benefits__image {
    top: -100px;
    right: calc(100% - 300px);
  }
}

@media (max-width: 767px) {
  .benefits__image {
    display: none;
  }
}

@media (max-width: 1200px) {
  .benefits__image img {
    width: 600px;
  }
}

.benefits__col {
  width: calc(50% - 30px);
}

@media (max-width: 767px) {
  .benefits__col {
    width: calc(50% - 15px);
  }
}

.benefits-item__title {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media (max-width: 1200px) {
  .benefits-item__title {
    margin-bottom: 20px;
    font-size: 15px;
  }
}

.benefits-item__image {
  width: 285px;
  height: 285px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 30px;
  position: relative;
  background: rgb(196, 196, 196);
}

@media (max-width: 991px) {
  .benefits-item__image {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .benefits-item__image {
    width: 120px;
    height: 120px;
  }
}

.benefits-item__image span {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .benefits-item__image span {
    width: 30px;
    height: 30px;
    bottom: 5px;
    right: 5px;
  }
}

.benefits-item__image.dtf {
  background: url(/images/dtf-bg.png) 50% 50% no-repeat;
  background-size: cover;
}

.benefits-item__image.dtf span {
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .benefits-item__image.dtf span {
    padding-bottom: 5px;
  }
}

.benefits-item__image img {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 767px) {
  .benefits-item__image img {
    max-width: 70%;
    max-height: 70%;
  }
}

.benefits-item ul li {
  margin-bottom: 25px;
  font-size: 25px;
  font-weight: 400;
  line-height: 29px;
}

@media (max-width: 1200px) {
  .benefits-item ul li {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 20px;
  }
}

.benefits-item ul li span {
  font-weight: 700;
  margin-right: 20px;
}

.clients-section {
  padding: 80px 0;
}

@media (max-width: 1200px) {
  .clients-section {
    padding: 35px 0;
  }
}

@media (max-width: 767px) {
  .clients-section {
    padding: 25px 0;
  }
}

.clients {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.clients span {
  width: 12.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0 10px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .clients span {
    margin-bottom: 10px;
  }
}

@media (max-width: 479px) {
  .clients span {
    width: 25%;
  }
}

.clients span:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.clients span img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts-section {
  position: relative;
}

.contacts-section__image {
  position: absolute;
  right: 0px;
  top: 150px;
}

@media (max-width: 1500px) {
  .contacts-section__image {
    top: auto;
    bottom: 100px;
  }
}

@media (max-width: 767px) {
  .contacts-section__image {
    bottom: 200px;
  }
}

.contacts-section__image img {
  max-width: 100%;
}

@media (max-width: 1500px) {
  .contacts-section__image img {
    width: 800px;
  }
}

@media (max-width: 1200px) {
  .contacts-section__image img {
    width: 660px;
  }
}

@media (max-width: 991px) {
  .contacts-section__image img {
    width: 520px;
  }
}

@media (max-width: 767px) {
  .contacts-section__image img {
    width: 360px;
  }
}

@media (max-width: 479px) {
  .contacts-section__image img {
    display: none;
  }
}

.delivery {
  position: relative;
  z-index: 9;
  margin-bottom: 70px;
}

.delivery p {
  max-width: 815px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .delivery p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}

.delivery p:last-child {
  margin-bottom: 50px;
}

.contacts-data {
  position: relative;
  z-index: 9;
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  background: #fff;
  padding: 50px 30px;
  -webkit-box-shadow: 4.2055187225px 12.6165561676px 50.4662246704px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 4.2055187225px 12.6165561676px 50.4662246704px 0px rgba(0, 0, 0, 0.13);
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  .contacts-data {
    width: 360px;
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .contacts-data {
    width: 100%;
    margin: 0 auto 30px;
    border-radius: 4px;
  }
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 27px;
  color: #000;
}

@media (max-width: 1200px) {
  .contact-item {
    font-size: 16px;
    line-height: 22px;
  }
}

.contact-item small {
  font-size: 16px;
  font-weight: 400;
  display: block;
  padding-top: 10px;
  color: rgb(48, 48, 48);
}

@media (max-width: 1200px) {
  .contact-item small {
    font-size: 12px;
    padding-top: 0;
  }
}

.contact-item__text {
  position: relative;
  padding-left: 35px;
}

.contact-item__text .icon {
  position: absolute;
  left: 0;
}

.contact-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #000;
}

@media (max-width: 1200px) {
  .contact-item a {
    font-size: 16px;
    padding-top: 0;
  }
}

.contact-item a .icon {
  width: 30px;
  margin-right: 5px;
  display: block;
  margin-right: 10px;
}

@media (max-width: 1200px) {
  .contact-item a .icon {
    margin-bottom: -5px;
  }
}

.social-block {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .social-block {
    margin-top: 15px;
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social a {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgb(118, 118, 118);
  border-radius: 50%;
  margin-right: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 1200px) {
  .social a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1200px) {
  .social a img {
    max-width: 40%;
    max-height: 40%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.social a:hover {
  opacity: 0.6;
}

.contacts-form {
  position: relative;
  z-index: 9;
  width: 100%;
  max-width: 630px;
  border-radius: 12px;
  background: #fff;
  padding: 50px 30px;
  -webkit-box-shadow: 4.2055187225px 12.6165561676px 50.4662246704px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 4.2055187225px 12.6165561676px 50.4662246704px 0px rgba(0, 0, 0, 0.13);
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  .contacts-form {
    max-width: 480px;
    padding: 30px 40px;
  }
}

@media (max-width: 767px) {
  .contacts-form {
    width: 80%;
    margin: 0 auto 30px;
    padding: 30px 20px;
    border-radius: 4px;
  }
}

.contacts-form__head {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 38px;
  color: rgb(68, 68, 68);
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  .contacts-form__head {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .contacts-form__head {
    font-size: 14px;
    line-height: 20px;
  }
}

.contacts-form__head span {
  display: block;
  padding-top: 0px;
}

@media (max-width: 767px) {
  .contacts-form__head span {
    padding-top: 10px;
    font-size: 20px;
  }
}

.contacts-form__head span a {
  color: #000;
}

.form-group {
  margin-bottom: 35px;
  width: 100%;
}

@media (max-width: 1200px) {
  .form-group {
    margin-bottom: 20px;
  }
}

.form-group label {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  display: block;
}

@media (max-width: 1200px) {
  .form-group label {
    font-size: 16px;
  }
}

.form-group--small label {
  color: #adadad;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1200px) {
  .form-group--small label {
    font-size: 14px;
  }
}

.form-group input {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  border: 0;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  border-bottom: 2px solid rgb(170, 170, 170);
}

@media (max-width: 1200px) {
  .form-group input {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
  }
}

.form-group textarea {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  border: 0;
  height: 60px;
  min-height: 60px;
  padding-top: 20px;
  resize: vertical;
  font-size: 20px;
  border-bottom: 2px solid rgb(170, 170, 170);
}

@media (max-width: 1200px) {
  .form-group textarea {
    height: 50px;
    min-height: 50px;
    font-size: 16px;
  }
}

footer {
  background: linear-gradient(92.87deg, #3d3d3d 0%, #1b1b1b 100%);
  padding: 65px 0;
}

@media (max-width: 1200px) {
  footer {
    padding: 35px 0;
  }
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .footer-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

.footer-content__col {
  padding-top: 65px;
}

@media (max-width: 991px) {
  .footer-content__col {
    padding-top: 0;
    width: calc(33.3333333333% - 20px);
  }
}

@media (max-width: 767px) {
  .footer-content__col {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-content__col:last-child {
    margin-bottom: 0;
  }
}

.footer-content__title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  display: block;
  color: rgb(125, 125, 125);
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .footer-content__title {
    font-size: 18px;
  }
}

.footer-content__item a {
  font-size: 22px;
  font-weight: 400;
  display: block;
  color: rgb(125, 125, 125);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .footer-content__item a {
    font-size: 16px;
  }
}

.footer-content__item a:hover {
  color: #fff;
}

.footer-content p {
  font-size: 22px;
  font-weight: 400;
  display: block;
  color: rgb(125, 125, 125);
}

@media (max-width: 767px) {
  .footer-content p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .footer-content__menu {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .footer-content__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .footer-content__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.footer-content__menu ul li a {
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
  color: rgb(150, 150, 150);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .footer-content__menu ul li a {
    font-size: 18px;
    margin: 0 10px 10px 10px;
  }
}

.footer-content__menu ul li a:hover {
  color: #fff;
}

.social-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .social-footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.social-footer a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgb(118, 118, 118);
  border-radius: 50%;
  margin-right: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 767px) {
  .social-footer a {
    margin: 0 10px;
  }
}

.social-footer a img {
  width: 15px;
  height: 15px;
}

.social-footer a:hover {
  opacity: 0.6;
}

.swiper-container {
  width: 100%;
  height: max-content;
}

.swiper-slide {
  background: transparent;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 30px;
}

.swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 73px;
  height: 8px;
  background: url(/images/arrow.svg) 0 0 no-repeat;
  margin: 6px 20px 0 0;
}

@media (max-width: 767px) {
  .swiper-button-prev {
    width: 45px;
    height: 6px;
    background-size: 45px auto;
    top: 2px;
  }
}

.swiper-button-prev:hover {
  background: url(/images/arrow-hover.svg) 0 0 no-repeat;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

@media (max-width: 767px) {
  .swiper-button-prev:hover {
    width: 45px;
    height: 6px;
    background-size: 45px auto;
  }
}

.swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 73px;
  height: 8px;
  background: url(/images/arrow.svg) 0 0 no-repeat;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  top: -2px;
  margin: 6px 0 0 20px;
}

@media (max-width: 767px) {
  .swiper-button-next {
    width: 45px;
    height: 6px;
    background-size: 45px auto;
    top: 2px;
  }
}

.swiper-button-next:hover {
  background: url(/images/arrow-hover.svg) 0 0 no-repeat;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

@media (max-width: 767px) {
  .swiper-button-next:hover {
    width: 45px;
    height: 6px;
    background-size: 45px auto;
  }
}

.swiper-pagination {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 100%;
  background: rgb(196, 196, 196);
  margin: 0 10px;
}

@media (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(/images/bullet-active.png);
  background-size: 12px auto;
}

@media (max-width: 767px) {
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-size: 10px auto;
  }
}

.slide-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
}

@media (max-width: 479px) {
  .slide-item {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.slide-item__image {
  width: 370px;
  height: 370px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /*  background: -webkit-gradient(linear, right top, left top, color-stop(-10.26%, #bbbbbb), color-stop(118.68%, #b3b3b3));
  background: linear-gradient(270deg, #bbbbbb -10.26%, #b3b3b3 118.68%);*/
}

@media (max-width: 991px) {
  .slide-item__image {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 767px) {
  .slide-item__image {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 479px) {
  .slide-item__image {
    margin: 0 auto 20px;
  }
}

.slide-item__image img {
  max-width: 90%;
  max-height: 90%;
}

.slide-item__content {
  width: calc(100% - 410px);
}

@media (max-width: 991px) {
  .slide-item__content {
    width: calc(100% - 250px);
  }
}

@media (max-width: 767px) {
  .slide-item__content {
    width: calc(100% - 190px);
  }
}

@media (max-width: 479px) {
  .slide-item__content {
    width: 100%;
  }
}

@media (max-width: 479px) {
  .slide-item__content .btn {
    margin: 0 auto;
  }
}

.slide-item__title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin-bottom: 30px;
  text-align: left;
}

@media (max-width: 991px) {
  .slide-item__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.slide-item p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .slide-item p {
    font-size: 14px;
  }
}

.services-section {
  position: relative;
  z-index: 9;
  padding: 70px 0;
}

@media (max-width: 1200px) {
  .services-section {
    padding: 35px 0;
  }
}

.work-section {
  padding: 70px 0;
}

.work-item {
  height: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(270deg, #00a6e2 -10.26%, #004de2 118.68%),
    linear-gradient(269.85deg, rgba(255, 255, 255, 0) 10.72%, #ffffff 49.8%, rgba(255, 255, 255, 0) 84.3%);
  border-radius: 8px;
  position: relative;
}

@media (max-width: 1200px) {
  .work-item {
    width: 100%;
    height: 230px;
  }
}

@media (max-width: 767px) {
  .work-item {
    width: 100%;
    height: 140px;
  }
}

.work-item:before {
  content: "";
  width: 250px;
  height: 34px;
  background: url(/images/line.svg) 0 0 no-repeat;
  position: absolute;
  top: 20px;
  left: calc(50% - 125px);
}

@media (max-width: 1200px) {
  .work-item:before {
    width: 135px;
    height: 18px;
    background-size: 135px auto;
    top: 10px;
    left: calc(50% - 67.5px);
  }
}

@media (max-width: 767px) {
  .work-item:before {
    width: 84px;
    height: 12px;
    background-size: 84px auto;
    top: 5px;
    left: calc(50% - 42px);
  }
}

.work-item:after {
  content: "";
  width: 34px;
  height: 250px;
  background: url(/images/line-side.svg) 0 0 no-repeat;
  position: absolute;
  top: calc(50% - 125px);
  left: 20px;
}

@media (max-width: 1200px) {
  .work-item:after {
    height: 135px;
    width: 18px;
    background-size: auto 135px;
    top: calc(50% - 67.5px);
  }
}

@media (max-width: 767px) {
  .work-item:after {
    height: 84px;
    width: 12px;
    background-size: auto 84px;
    top: calc(50% - 42px);
  }
}

.work-item img {
  position: relative;
  z-index: 9;
  max-width: 85%;
  max-height: 85%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts-bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .contacts-bottom {
    display: block;
  }
}

.ymaps-layers-pane {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.map {
  position: absolute;
  right: 0;
  width: 784px;
  height: 484px;
  z-index: 8;
}

.map #map {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {
  .map {
    height: 350px;
    top: calc(50% - 190px);
  }
}

@media (max-width: 767px) {
  .map {
    position: relative;
    width: 100%;
    height: 350px;
    top: auto;
    bottom: auto;
    margin-top: -80px;
  }
}

.map img {
  width: 100%;
  height: 100%;
  display: block;
}

.reviews-section {
  padding: 175px 0;
}

@media (max-width: 1200px) {
  .reviews-section {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .reviews-section {
    padding: 60px 0;
  }
}

.reviews-slider {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.reviews-slider .swiper-btns {
  padding-top: 50px;
}

.reviews-slider .swiper-container {
  overflow: visible;
}

.reviews-slider .swiper-container {
  position: relative;
  width: 50vw;
}

@media (max-width: 767px) {
  .reviews-slider .swiper-container {
    width: 100%;
  }
}

.reviews-slider .swiper-container > .swiper-slide__content {
  position: absolute;
  top: 0;
}

.reviews-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.reviews-slider .swiper-slide .review-image {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: -250px;
}

@media (max-width: 1200px) {
  .reviews-slider .swiper-slide .review-image {
    left: -300px;
  }
}

@media (max-width: 1200px) and (max-width: 767px) {
  .reviews-slider .swiper-slide .review-image {
    left: -100px;
  }
}

.reviews-slider .swiper-slide .review-image img {
  width: 490px;
}

@media (max-width: 767px) {
  .reviews-slider .swiper-slide .review-image img {
    width: 300px;
  }
}

.reviews-slider .swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  position: relative;
  z-index: 9;
}

.reviews-slider .swiper-slide.swiper-slide-active .review-image {
  opacity: 1;
}

.reviews-slider .swiper-slide.swiper-slide-active .review-item {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

@media (max-width: 1200px) {
  .reviews-slider .swiper-slide.swiper-slide-active .review-item {
    -webkit-transform: scale(1);
    transform: scale(1);
    margin-right: -180px;
  }
}

@media (max-width: 767px) {
  .reviews-slider .swiper-slide.swiper-slide-active .review-item {
    margin-right: 0;
    width: calc(100% - 100px);
  }
}

.review-item {
  max-width: 740px;
  height: auto;
  min-height: 260px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 4px;
  background: #fff;
  opacity: 0.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 40px;
  /* Drop Shadow */
  -webkit-box-shadow: 4.2055187225px 12.6165561676px 50.4662246704px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 4.2055187225px 12.6165561676px 50.4662246704px 0px rgba(0, 0, 0, 0.13);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-filter: blur(4.0878381729px);
  filter: blur(4.0878381729px);
  color: #444;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  /* 30.6px */
}

@media (max-width: 1200px) {
  .review-item {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@media (max-width: 767px) {
  .review-item {
    font-size: 14px;
    line-height: 20px;
    padding: 20px;
    min-height: 280px;
  }
}

.review-item__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: #444;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  /* 168.75% */
}

.review-item__bottom span {
  color: #b7b4b4;
  margin-left: 10px;
}

.constructor {
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 3px 9px 36px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 3px 9px 36px 0px rgba(0, 0, 0, 0.13);
  padding: 32px 100px 70px 100px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1600px) {
  .constructor {
    padding: 32px 30px 70px 30px;
  }
}

@media (max-width: 991px) {
  .constructor {
    padding: 30px 20px;
  }
}

.constructor__top {
  margin-bottom: 40px;
  text-align: center;
}

.constructor__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#changecolor {
  text-transform: lowercase;
}

@media (max-width: 767px) {
  .constructor__content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.constructor__leftside {
  width: calc(50% - 320px);
  display: flex;
  flex-direction: column;
}

@media (max-width: 1440px) {
  .constructor__leftside {
    width: calc(50% - 220px);
  }
}

@media (max-width: 991px) {
  .constructor__leftside {
    width: calc(50% - 180px);
  }
}

@media (max-width: 767px) {
  .constructor__leftside {
    width: calc(50% - 10px);
  }
}

.constructor__center {
  width: 600px;
  border-radius: 8px;
  background: #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1440px) {
  .constructor__center {
    width: 400px;
  }
}

@media (max-width: 991px) {
  .constructor__center {
    width: 320px;
  }
}

@media (max-width: 767px) {
  .constructor__center {
    width: 100%;
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    margin-bottom: 20px;
  }
}

.constructor__center > img {
  max-width: 90%;
  max-height: 90%;
}

.constructor__center .print {
  position: absolute;
  mix-blend-mode: multiply;
  top: 50%;
  left: 48%;
  height: max-content;
  transform: translate(-50%, -50%);
}
.constructor:has(.constructor__leftside .t-shirt-side #shirt-side-back-radio:checked) .constructor__center .print {
  left: 50%;
}

.back-dark,
.back-white,
.front-dark,
.front-white {
  display: none;
}

.constructor:has(.constructor__leftside .t-shirt-side #shirt-side-back-radio:checked):has(.constructor__leftside #color option[value="white"]:checked)
  .constructor__center
  .back-white {
  display: unset;
}
.constructor:has(.constructor__leftside .t-shirt-side #shirt-side-back-radio:checked):has(.constructor__leftside #color option[value="dark"]:checked)
  .constructor__center
  .back-dark {
  display: unset;
}
.constructor:has(.constructor__leftside .t-shirt-side #shirt-side-front-radio:checked):has(.constructor__leftside #color option[value="white"]:checked)
  .constructor__center
  .front-white {
  display: unset;
}
.constructor:has(.constructor__leftside .t-shirt-side #shirt-side-front-radio:checked):has(.constructor__leftside #color option[value="dark"]:checked)
  .constructor__center
  .front-dark {
  display: unset;
}

.constructor__center .print.dark {
  mix-blend-mode: lighten;
}

.constructor:has(.constructor__leftside .radio input[value="A3"]:checked) .constructor__center .print {
  width: 35%;
}
.constructor:has(.constructor__leftside .radio input[value="A4"]:checked) .constructor__center .print {
  width: 30%;
}
.constructor:has(.constructor__leftside .radio input[value="A5"]:checked) .constructor__center .print {
  width: 25%;
}
.constructor:has(.constructor__leftside .radio input[value="A6"]:checked) .constructor__center .print {
  width: 20%;
}
.constructor:has(.constructor__leftside .radio input[value="A7"]:checked) .constructor__center .print {
  width: 15%;
}
.constructor:has(.constructor__leftside .radio input[value="A8"]:checked) .constructor__center .print {
  width: 10%;
}

@media (max-width: 767px) {
  .constructor:has(.constructor__leftside .radio input[value="A3"]:checked) .constructor__center .print {
    width: 30%;
  }
  .constructor:has(.constructor__leftside .radio input[value="A4"]:checked) .constructor__center .print {
    width: 25%;
  }
  .constructor:has(.constructor__leftside .radio input[value="A5"]:checked) .constructor__center .print {
    width: 20%;
  }
  .constructor:has(.constructor__leftside .radio input[value="A6"]:checked) .constructor__center .print {
    width: 15%;
  }
  .constructor:has(.constructor__leftside .radio input[value="A7"]:checked) .constructor__center .print {
    width: 10%;
  }
  .constructor:has(.constructor__leftside .radio input[value="A8"]:checked) .constructor__center .print {
    width: 5%;
  }
}

.constructor__center .print > img {
  width: 100%;
}

.constructor__rightside {
  width: calc(50% - 320px);
}

@media (max-width: 1440px) {
  .constructor__rightside {
    width: calc(50% - 220px);
  }
}

@media (max-width: 991px) {
  .constructor__rightside {
    width: calc(50% - 180px);
  }
}

@media (max-width: 767px) {
  .constructor__rightside {
    width: calc(50% - 10px);
  }
}

.constructor {
  margin-bottom: 40px;
}

.constructor__title {
  display: block;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .constructor__title {
    font-size: 18px;
  }
}

.constructor__discription {
  display: block;
  color: #000;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 991px) {
  .constructor__discription {
    font-size: 14px;
  }
}

.constructor-item {
  margin-bottom: 15px;
}

.constructor-item__title {
  display: block;
  color: #000;
  font-family: Proxima Nova;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .constructor-item__title {
    font-size: 14px;
  }
}

.constructor-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.constructor-item #quantity {
  max-width: 80px;
  height: 40px;
  border: 1px solid #d7d2d2;
  padding: 10px;
}
.radio {
  margin-right: 15px;
  margin-bottom: 5px;
}

.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio input[type="radio"] + .radio-label {
  font-size: 17px;
  cursor: pointer;
}

.radio input[type="radio"] + .radio-label:before {
  content: "";
  background: #d9d9d9;
  border-radius: 100%;
  display: inline-block;
  width: 8px;
  height: 8px;
  position: relative;
  top: 6px;
  margin-right: 5px;
  vertical-align: top;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.radio input[type="radio"]:checked + .radio-label:before {
  background: -webkit-gradient(linear, right top, left top, from(#00a6e2), to(#004de2));
  background: linear-gradient(270deg, #00a6e2 0%, #004de2 100%);
}

.radio input[type="radio"]:focus + .radio-label:before {
  outline: none;
}

.radio input[type="radio"] + .radio-label:empty:before {
  margin-right: 0;
}

.range-slider {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.range-slider--colors {
  margin-bottom: 10px;
}

.range-slider--colors .range-slider__range {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#e60e00),
    color-stop(9.69%, #f100bc),
    color-stop(22.19%, #fe0),
    color-stop(43.54%, #00a6e2),
    color-stop(63.85%, #a700e2),
    color-stop(89.9%, #fff),
    color-stop(97.19%, #000)
  );
  background: linear-gradient(90deg, #e60e00 0%, #f100bc 9.69%, #fe0 22.19%, #00a6e2 43.54%, #a700e2 63.85%, #fff 89.9%, #000 97.19%);
}

.range-slider--colors .range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 15px;
  border-radius: 8px;
  background: -webkit-gradient(linear, right top, left top, from(#00a6e2), to(#004de2));
  background: linear-gradient(270deg, #00a6e2 0%, #004de2 100%);
  -webkit-box-shadow: 0px 10px 25px -11px #000;
  box-shadow: 0px 10px 25px -11px #000;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}

.range-slider__range {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 8px;
  background: #a3a3a3;
  outline: none;
  padding: 0;
}

.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 15px;
  border-radius: 4px;
  background: #606060;
  -webkit-box-shadow: 0px 10px 25px -11px #000;
  box-shadow: 0px 10px 25px -11px #000;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}

.range-slider__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 767px) {
  .range-slider__bottom {
    font-size: 14px;
  }
}

.range-slider__value {
  display: inline-block;
  position: relative;
  text-align: right;
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 767px) {
  .range-slider__value {
    font-size: 14px;
  }
}

input::-moz-focus-inner {
  border: 0;
}

input::-moz-focus-outer {
  border: 0;
}

.constructor-material {
  position: relative;
}

.constructor-material .range-slider__range {
  margin-bottom: 45px;
}

.constructor-material:before {
  content: "-";
  position: absolute;
  left: 0;
  top: 12px;
  color: #a3a3a3;
  font-size: 22px;
  font-weight: 600;
}

.constructor-material:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 15px;
  color: #a3a3a3;
  font-size: 22px;
  font-weight: 600;
}

.t-shirt-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
}

@media (max-width: 991px) {
  .t-shirt-side {
    margin-top: 20px;
  }
}

.t-shirt-side__item {
  position: relative;
  width: calc(50% - 10px);
  max-width: 128px;
  height: 128px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  background: -webkit-gradient(linear, right top, left top, from(#00a6e2), to(#004de2));
  background: linear-gradient(270deg, #00a6e2 0%, #004de2 100%);
  -webkit-box-shadow: 0px 10px 25px -11px #000;
  box-shadow: 0px 10px 25px -11px #000;
  cursor: pointer;
}

@media (max-width: 991px) {
  .t-shirt-side__item {
    width: 65px;
    height: 65px;
  }
}

.t-shirt-side__item::before {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  top: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.t-shirt-side__item::after {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  bottom: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.t-shirt-side__item img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
  object-fit: contain;
}

.image-wrap {
  width: 100%;
  height: 210px;
  border-radius: 8px;
  background: #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: both mandatory;
  scroll-padding: 15px;
  padding: 15px 0;
  gap: 15px 10px;
}

@media (max-width: 991px) {
  .image-wrap {
    height: 120px;
    scroll-padding: 30px;
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  .image-wrap {
    height: 130px;
    scroll-padding: 30px;
    padding: 15px 0;
  }
}

.image-wrap img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 120px;
  height: 100%;
  scroll-snap-align: start;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 660px;
  margin: 15px auto;
}

.btn-inputfile {
  width: 150px;
  height: 40px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.image-upload {
  margin-bottom: 10px;
}

.image-upload__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.image-upload__btn label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 56px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(270deg, #00a6e2 -10.26%, #004de2 118.68%),
    linear-gradient(269.85deg, rgba(255, 255, 255, 0) 10.72%, #ffffff 49.8%, rgba(255, 255, 255, 0) 84.3%);
  position: relative;
  -webkit-box-shadow: 0px 10px 25px -11px rgb(0, 0, 0);
  box-shadow: 0px 10px 25px -11px rgb(0, 0, 0);
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  bottom: 0;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .image-upload__btn label {
    height: 38px;
    font-size: 11px;
  }
}

.image-upload__btn label:hover {
  bottom: -2px;
  -webkit-box-shadow: 0px 10px 15px -11px rgb(0, 0, 0);
  box-shadow: 0px 10px 15px -11px rgb(0, 0, 0);
  background: linear-gradient(270deg, #0088b9 -10.26%, #003aaf 118.68%),
    linear-gradient(269.85deg, rgba(255, 255, 255, 0) 10.72%, #ffffff 49.8%, rgba(255, 255, 255, 0) 84.3%);
}

.image-upload__btn label::before {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  top: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 1200px) {
  .image-upload__btn label::before {
    height: 1px;
  }
}

.image-upload__btn label::after {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  bottom: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 1200px) {
  .image-upload__btn label::after {
    height: 1px;
  }
}

.image-upload__title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 991px) {
  .image-upload__title {
    font-size: 12px;
  }
}

@media (max-width: 479px) {
  .image-upload__title {
    font-size: 10px;
  }
}

.constructor__text {
  margin-bottom: 10px;
}

.constructor__text textarea {
  width: 100%;
  height: 210px;
  border-radius: 8px;
  background: #efefef;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  border: 0;
  line-height: 28px;
  /* 266.667% */
  padding: 10px;
}

@media (max-width: 991px) {
  .constructor__text textarea {
    height: 120px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .constructor__text textarea {
    height: 137px;
  }
}

.constructor__cost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 991px) {
  .constructor__cost {
    font-size: 18px;
  }
}

.constructor__cost span {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .constructor__cost span {
    font-size: 20px;
  }
}

.video-presents {
  margin-top: -200px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .video-presents {
    margin-top: -110px;
  }
}

@media (max-width: 479px) {
  .video-presents {
    margin-top: -60px;
  }
}

.video-preview {
  position: relative;
  border-radius: 8px;
  background: url(/images/preview-video.png) 0 0 no-repeat;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  background-size: cover;
  cursor: pointer;
}

.video-preview__text {
  display: block;
  color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  width: 140px;
  text-align: center;
  position: absolute;
  opacity: 0.8;
  top: calc(50% + 80px);
  left: calc(50% - 70px);
}

@media (max-width: 991px) {
  .video-preview__text {
    width: 120px;
    font-size: 10px;
    top: calc(50% + 40px);
    left: calc(50% - 60px);
  }
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 134px;
  height: 134px;
  background: url(/images/play.svg) center center/cover no-repeat;
}

@media (max-width: 991px) {
  .play-button {
    width: 60px;
    height: 60px;
    background-size: 60px 60px;
  }
}

.video-container {
  position: relative;
  width: 910px;
  height: 530px;
  margin: 0 auto;
  border-radius: 8px;
  background: linear-gradient(45deg, #000 0%, #363636 100%);
  margin-bottom: 40px;
  box-shadow: 0 0 14px 4px #000;
}

@media (max-width: 1200px) {
  .video-container {
    width: 580px;
    height: 350px;
  }
}

@media (max-width: 767px) {
  .video-container {
    width: 460px;
    height: 270px;
  }
}

@media (max-width: 479px) {
  .video-container {
    width: 300px;
    height: 180px;
  }
}

.video-frame {
  display: none;
  width: 100%;
  height: 100%;
}

main {
  position: relative;
}

.tr-img {
  position: absolute;
  top: 752px;
  right: -269px;
}

@media (max-width: 1600px) {
  .tr-img {
    top: 876px;
    right: -165px;
  }
}

@media (max-width: 1200px) {
  .tr-img {
    top: 435px;
  }
}

@media (max-width: 991px) {
  .tr-img {
    right: -179px;
  }
}

@media (max-width: 767px) {
  .tr-img {
    top: 275px;
    right: -80px;
  }
}

@media (max-width: 479px) {
  .tr-img {
    display: none;
  }
}

@media (max-width: 1600px) {
  .tr-img img {
    width: 612px;
  }
}

@media (max-width: 991px) {
  .tr-img img {
    width: 520px;
  }
}

@media (max-width: 767px) {
  .tr-img img {
    width: 275px;
  }
}

.tl-img {
  position: absolute;
  top: 1025px;
  left: -300px;
}

@media (max-width: 1200px) {
  .tl-img {
    top: 625px;
    left: -152px;
  }
}

@media (max-width: 991px) {
  .tl-img {
    left: -81px;
  }
}

@media (max-width: 767px) {
  .tl-img {
    top: 980px;
  }
}

@media (max-width: 479px) {
  .tl-img {
    display: none;
  }
}

@media (max-width: 1600px) {
  .tl-img img {
    width: 600px;
  }
}

@media (max-width: 991px) {
  .tl-img img {
    width: 385px;
  }
}

@media (max-width: 767px) {
  .tl-img img {
    width: 235px;
  }
}

.br-img {
  position: absolute;
  top: 2952px;
  right: -509px;
}

@media (max-width: 1600px) {
  .br-img {
    right: -150px;
    top: 3052px;
  }
}

@media (max-width: 1200px) {
  .br-img {
    top: 2052px;
  }
}

@media (max-width: 991px) {
  .br-img {
    display: none;
  }
}

@media (max-width: 767px) {
  .br-img {
    display: none;
  }
}

@media (max-width: 1600px) {
  .br-img img {
    width: 590px;
  }
}

@media (max-width: 1600px) {
  .br-img img {
    width: 490px;
  }
}

@media (max-width: 767px) {
  .br-img img {
    width: 275px;
  }
}

.bl-img {
  position: absolute;
  top: 3155px;
  left: -480px;
}

@media (max-width: 1600px) {
  .bl-img {
    top: 3209px;
    left: -262px;
  }
}

@media (max-width: 1200px) {
  .bl-img {
    top: 2155px;
    left: -202px;
  }
}

@media (max-width: 991px) {
  .bl-img {
    display: none;
  }
}

@media (max-width: 767px) {
  .bl-img {
    display: none;
  }
}

@media (max-width: 479px) {
  .bl-img {
    display: none;
  }
}

@media (max-width: 1600px) {
  .bl-img img {
    width: 600px;
  }
}

@media (max-width: 1200px) {
  .bl-img img {
    width: 450px;
  }
}

@media (max-width: 991px) {
  .bl-img img {
    width: 385px;
  }
}

@media (max-width: 767px) {
  .bl-img img {
    width: 235px;
  }
}

.blocker {
  z-index: 101;
}

.modal {
  padding: 0;
}

.modal--lg {
  max-width: 1440px;
}

.modal--sm {
  max-width: 640px;
}

.modal-head {
  position: relative;
  border-radius: 8px 8px 0px 0px;
  background: -webkit-gradient(linear, right top, left top, from(#00a6e2), to(#004de2));
  background: linear-gradient(270deg, #00a6e2 0%, #004de2 100%);
  padding: 0 0 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  position: relative;
  height: 130px;
}

@media (max-width: 1200px) {
  .modal-head {
    padding-left: 30px;
    height: 60px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .modal-head {
    font-size: 16px;
    padding-left: 15px;
  }
}

.modal-head::before {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  top: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.modal-head::after {
  content: "";
  width: 90%;
  height: 2px;
  position: absolute;
  left: 10%;
  bottom: 0;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.modal-head .cdek-logo {
  margin-right: 50px;
}

@media (max-width: 1200px) {
  .modal-head .cdek-logo {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .modal-head .cdek-logo {
    margin-right: 15px;
  }
}

.modal-head .cdek-logo img {
  width: 155px;
}

@media (max-width: 1200px) {
  .modal-head .cdek-logo img {
    width: 80px;
  }
}

.modal-content {
  padding: 50px 100px;
  border-radius: 0 0 8px 8px;
  background: #fff;
  -webkit-box-shadow: 3px 9px 36px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 3px 9px 36px 0px rgba(0, 0, 0, 0.13);
}

@media (max-width: 1200px) {
  .modal-content {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .modal-content {
    padding: 20px 15px;
  }
}

.modal-content p {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .modal-content p {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  .modal-content button {
    margin: 0 auto;
  }
}

.modal-content__form {
  padding-top: 20px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row .col-4 {
  width: calc(33.3333333333% - 40px);
}

@media (max-width: 1200px) {
  .row .col-4 {
    width: calc(33.3333333333% - 20px);
  }
}

@media (max-width: 767px) {
  .row .col-4 {
    width: 100%;
  }
}

.row .col-3 {
  width: calc(25% - 45px);
}

@media (max-width: 1200px) {
  .row .col-3 {
    width: calc(25% - 22.5px);
  }
}

@media (max-width: 767px) {
  .row .col-3 {
    width: calc(50% - 10px);
  }
}

.modal a.close-modal {
  position: absolute;
  top: -62.5px;
  right: -62.5px;
  display: block;
  width: 125px;
  height: 125px;
  text-indent: -9999px;
  background: url(/images/modal-close.png);
}

@media (max-width: 1200px) {
  .modal a.close-modal {
    width: 60px;
    height: 60px;
    background-size: 60px auto;
    top: -30px;
    right: -30px;
  }
}

/*custom-input-number*/
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.custom-input-number {
  text-align: center;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .custom-input-number {
    margin-bottom: 20px;
  }
}

.cin-btn {
  background: transparent;
  background: transparent;
  display: block;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  width: 33.3333333333%;
  height: 75px;
  background: #00a6e2;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  border: 0;
}

@media (max-width: 1200px) {
  .cin-btn {
    height: 40px;
    border-radius: 4px;
  }
}

.cin-btn:before {
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 10px);
}

.cin-btn:first-child::after {
  content: "";
  width: 2px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 1px);
}

.cin-btn:active {
  opacity: 0.5s;
}

.cin-btn:focus {
  outline: none;
}

.cin-btn-1 {
  display: inline-block;
}

.cin-input {
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 33.3333333333%;
  text-align: center;
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 1200px) {
  .cin-input {
    font-size: 20px;
  }
}

.error-search {
  width: 100%;
}

.error-search input {
  width: 100%;
  border-radius: 8px;
  background: #fff url(/images/search-icon.svg) 20px 50% no-repeat;
  -webkit-box-shadow: 0px 4px 31px 0px rgba(19, 47, 103, 0);
  box-shadow: 0px 4px 31px 0px rgba(19, 47, 103, 0);
  color: #1b1b1b;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  padding-left: 60px;
  height: 54px;
  border: 0;
}

@media (max-width: 767px) {
  .error-search input {
    height: 40px;
    font-size: 18px;
  }
}

.error-search input::-webkit-input-placeholder {
  color: #b8b8b8;
}

.error-search input::-moz-placeholder {
  color: #b8b8b8;
}

.error-search input:-ms-input-placeholder {
  color: #b8b8b8;
}

.error-search input::-ms-input-placeholder {
  color: #b8b8b8;
}

.error-search input::placeholder {
  color: #b8b8b8;
}

.error-input-message {
  display: none;
  color: red;
}

.error-input-message.show {
  display: block;
}

/*# sourceMappingURL=styles.css.map */
