@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,300&display=swap");
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Roboto', sans-serif;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  color: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

html,
body {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #333;
  font-size: 16px;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: inherit;
}

h2 {
  color: #023373;
  font-size: 2rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  text-align: center;
}

h3 {
  font-size: 1.8rem;
  line-height: 2rem;
}

p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
}

.header__top {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.header__top:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
  z-index: 3;
  -webkit-box-shadow: 0 1px 5px #333;
          box-shadow: 0 1px 5px #333;
}

.header__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__list .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  position: relative;
  z-index: 4;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header__list .logo img {
  width: 100%;
  display: block;
}

.header__list ul {
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header__rightnav,
.header__leftnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 3;
}

.header__rightnav a,
.header__leftnav a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__rightnav a:active,
.header__leftnav a:active {
  color: #fff;
}

.header__rightnav a:after,
.header__leftnav a:after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(52%, white), color-stop(77%, rgba(255, 255, 255, 0.344975)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, white 52%, rgba(255, 255, 255, 0.344975) 77%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header__rightnav a:hover:after,
.header__leftnav a:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.header__leftnav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__leftnav li {
  margin: 0 12px 0 0;
}

.header__rightnav {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.header__rightnav li {
  margin: 0 0 0 12px;
}

.burger {
  display: none;
}

@media (max-width: 820px) {
  body.lock {
    overflow: hidden;
  }
  .header__list {
    height: 60px;
  }
  .header__list .logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
  }
  .burger {
    display: block;
    height: 30px;
    width: 40px;
    background: #023373;
    position: relative;
    z-index: 4;
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    cursor: pointer;
  }
  .burger:before,
  .burger:after {
    content: '';
    width: 100%;
    height: 3px;
    background: #f3f3f3;
    position: absolute;
    left: 0;
    top: 8px;
    -webkit-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
  }
  .burger:after {
    top: 19px;
  }
  .burger.active {
    background: #f3f3f3;
  }
  .burger.active:before {
    background-color: #023373;
    top: 11px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .burger.active:after {
    background-color: #023373;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 11px;
  }
  .header__leftnav,
  .header__rightnav {
    display: block;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/Pattern-BlueFlowers.jpg");
    padding: 100px 0 0 10px;
    overflow: auto;
    z-index: 2;
    -webkit-transition: all 1s ease-out 0s;
    transition: all 1s ease-out 0s;
    -webkit-box-shadow: 0 1px 5px #333;
            box-shadow: 0 1px 5px #333;
  }
  .header__leftnav li,
  .header__rightnav li {
    margin: 0 0 10px 0;
    font-size: 1rem;
  }
  .header__rightnav {
    left: 50%;
    background: url("../img/stripes-5399761_1280.jpg");
  }
  .header__leftnav.active,
  .header__rightnav.active {
    top: 0;
    font-size: 1.5rem;
  }
}

.header__body {
  margin: 90px 0 0 0;
  background: url("../img/2563786.jpg");
  height: 500px;
}

.header__body .container {
  height: 100%;
}

.header__card {
  background: url("../img/yellow.jpg");
  padding: 15px;
  min-height: 85%;
  min-width: 70%;
  -webkit-box-shadow: 2px -2px 5px #001933;
          box-shadow: 2px -2px 5px #001933;
  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;
  opacity: 0.9;
}

.header__text {
  text-align: center;
  width: 100%;
  height: 100%;
}

.header__text h1 {
  font-size: 3rem;
  line-height: 3.5rem;
  color: #023373;
}

.header__text .subtitle {
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 0 0 0;
  color: #653024;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

@media (max-width: 820px) {
  .header__body {
    margin: 60px 0 0 0;
  }
}

.about__top {
  text-align: center;
  padding: 50px 0 20px 0;
}

.about__body {
  text-align: center;
  padding: 0 0 30px 0;
}

.about__body p {
  font-size: 1.5rem;
  line-height: 2.5rem;
}

a.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 30px;
  background: url("../img/fabric.jpg");
  border-radius: 10px;
  margin: 30px 0;
  -webkit-box-shadow: 1px 2px 8px #333;
          box-shadow: 1px 2px 8px #333;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a.btn:hover {
  -webkit-box-shadow: 1px 2px 8px #1a6b65;
          box-shadow: 1px 2px 8px #1a6b65;
}

a.btn:active {
  -webkit-box-shadow: 1px 1px 3px #333;
          box-shadow: 1px 1px 3px #333;
}

.definition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-height: 50%;
  background-color: #f3f3f3;
}

.definition__left {
  width: 40%;
  height: 100%;
}

.definition__left img {
  width: 100%;
}

.definition__right {
  max-width: 60%;
  height: 100%;
  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;
}

.definition__container_right {
  width: 100%;
  height: 100%;
  padding: 5%;
}

.definition__container_right h3 {
  padding-bottom: 5%;
}

.definition__text {
  font-size: 1.2rem;
  line-height: 1.4rem;
  padding: 3% 0;
  position: relative;
  font-weight: 300;
  font-style: italic;
}

.definition__text:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: url("../img/icon/left-quote.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: -5px;
  left: 0;
  z-index: 2;
}

.definition__text:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: url("../img/icon/right-quote-sign.svg") no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.definition__source {
  text-align: right;
  padding: 3% 0 0 0;
}

@media (max-width: 900px) {
  .definition__text {
    font-size: 1rem;
    line-height: 1.2rem;
  }
  .definition__container_right {
    padding: 5% 5% 3% 5%;
  }
}

@media (max-width: 767px) {
  .definition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .definition__left {
    width: 100%;
    max-height: 70%;
  }
  .definition__right {
    max-width: 100%;
    min-height: 30%;
  }
  .definition__container_right {
    width: 100%;
    height: 100%;
    padding: 5%;
  }
  .definition__text {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .definition__text:before,
  .definition__text:after {
    width: 10px;
    height: 10px;
  }
}

.tools {
  width: 100%;
  height: 100%;
  padding: 50px 0;
}

.tools__header {
  text-align: center;
  padding: 0 0 20px 0;
}

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

.tools__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  margin: 20px 15px;
}

.tools__img {
  width: 100%;
  height: 200px;
}

.tools__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tools__text {
  padding: 15px 0;
}

.tools__text h3 {
  padding: 0 0 10px 0;
  text-align: center;
}

.tools__bottom {
  text-align: center;
  padding: 15px 0 0 0;
}

@media (max-width: 767px) {
  .tools__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .tools__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 200px;
    margin: 10px 0;
  }
  .tools__img {
    margin: 0;
    padding: 0 10px 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    height: 100%;
  }
  .tools__text {
    padding: 0 0 15px 0;
  }
  .tools__text h3 {
    text-align: left;
  }
}

@media (max-width: 567px) {
  .tools__header {
    padding: 30px 0 10px 0;
  }
  .tools__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tools__card {
    display: block;
    height: 33.333%;
  }
  .tools__card h3 {
    text-align: center;
  }
  .tools__img {
    height: 20%;
    padding: 10px 0;
  }
}

.fabric {
  height: 100%;
  width: 100%;
  background: url("../img/prev2-.jpg");
  opacity: 0.9;
}

.fabric .container {
  background: #f3f3f3;
  opacity: 1;
  margin: 5% auto;
  -webkit-box-shadow: 0 1px 5px #333;
          box-shadow: 0 1px 5px #333;
}

.fabric__top {
  padding: 50px 0 30px 0;
  text-align: center;
}

.fabric__body {
  padding: 0 20% 30px 20%;
}

.fabric__list li {
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: 'Roboto'sans-serif;
  padding: 0 0 15px 0;
  position: relative;
}

.fabric__list li:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../img/icon/location.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -30px;
}

.colors {
  width: 100%;
  height: 100%;
}

.colors__top {
  padding: 50px 0 30px 0;
}

.colors__body {
  height: 500px;
  width: 100%;
}

.colors__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50%;
}

.colors__pair {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  height: 100%;
}

.colors__box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  height: 100%;
}

.box2,
.box4,
.box5,
.box7 {
  background: goldenrod;
  padding: 5%;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

.box1 {
  background: url("../img/floral2.jpg");
}

.box3 {
  background: url("../img/fabric-cloth-seamless.jpg");
}

.box6 {
  background: url("../img/s-l300.jpg");
}

.box8 {
  background: url("../img/yel-blue-floral.jpg");
}

@media (max-width: 950px) {
  .colors__body {
    height: 100%;
  }
  .colors__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 50%;
  }
  .colors__pair {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    height: 100px;
  }
  .pair2,
  .pair3 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .colors__box {
    min-height: 200px;
  }
  .box2,
  .box4,
  .box5,
  .box7 {
    padding: 3%;
  }
}

@media (max-width: 576px) {
  .box2,
  .box4,
  .box5,
  .box7 {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

@media (max-width: 400px) {
  .box2,
  .box4,
  .box5,
  .box7 {
    font-size: 0.9rem;
    line-height: 1.1rem;
  }
}

.techniques {
  padding: 50px 0;
  width: 100%;
  height: 100%;
}

.techniques__top {
  padding: 0 0 30px 0;
}

.techniques__top p {
  text-align: center;
}

.techniques__top p:first-of-type {
  padding-top: 20px;
}

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

.techniques__tabname {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  height: 50px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  position: relative;
  border-radius: 10px 10px 0 0;
  border: 2px solid #f3f3f3;
  padding: 15px;
  text-align: center;
}

.techniques__tabname span {
  position: relative;
  z-index: 2;
}

@media (max-width: 600px) {
  .techniques__tabname {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 15px 5px;
  }
}

.techniques__tabblock {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.5rem;
  display: none;
  position: relative;
  font-family: 'Roboto', sans-serif;
  height: 100%;
}

.techniques__tabblock p {
  padding: 5px 0;
}

.techniques__tabblock li {
  padding: 0 0 0 20px;
}

.techniques__tabblock li:before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("../img/icon/location.svg");
  padding: 0 20px 0 0;
}

.techniques__tabblock:before {
  content: "";
  height: 50px;
  width: 33.333%;
  position: absolute;
  top: -50px;
  border-radius: 10px 10px 0 0;
  background-color: #f3f3f3;
}

.techniques__tabblock:nth-child(1):before {
  left: 0;
}

.techniques__tabblock:nth-child(2):before {
  left: 33.333%;
}

.techniques__tabblock:nth-child(3):before {
  right: 0;
}

.techniques__tabblock:target {
  display: block;
}

.activetab {
  display: block;
}

.lessons {
  padding: 50px 0 30px 0;
  background: url("../img/stripes-blue-yellow.jpg");
  width: 100%;
  height: 300px;
}

.lessons__top {
  text-align: center;
  padding: 0 0 20px 0;
}

.lessons__body {
  text-align: center;
}

.intext-link {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .lessons {
    height: 350px;
  }
}

@media (max-width: 400px) {
  .lessons {
    height: 380px;
  }
}

footer {
  background: #f3f3f3;
  padding: 30px 0 0 0;
}

.footer__body {
  padding: 20px 0;
  min-height: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 568px) {
  footer .container {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__body {
    display: block;
  }
  .footer__contacts,
  .footer__social {
    width: 100%;
  }
}

.footer__phone,
.footer__email,
.footer__instagram,
.footer__pinterest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__icon {
  display: block;
  width: 40px;
  padding: 5px 5px 5px 0;
}

.footer__icon img {
  width: 100%;
}

.footer__social a {
  display: block;
  width: 40px;
  padding: 5px 5px 5px 0;
}

.footer__social img {
  width: 100%;
}

.footer__bottom {
  padding: 0 0 20px 0;
  font-size: 0.8rem;
  text-align: center;
  width: 100%;
}

@media (max-width: 568px) {
  .footer__bottom {
    padding: 20px 0 0 0;
  }
}
/*# sourceMappingURL=style.css.map */