@import url("https://fonts.googleapis.com/css?family=Montserrat");
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
span,
div,
p {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-weight: normal;
  outline: none;
  color: #4b2c20;
}

h1 {
  color: #4b2c20;
  font-style: normal;
  line-height: 42px;
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    margin-bottom: 36px;
  }
}

h2 {
  color: #4b2c20;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

@media (max-width: 768px) {
  h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }
}

h2:after {
  content: "";
  display: inline-block;
  width: 170px;
  height: 2.5px;
  border-radius: 10px;
  background-color: #4b2c20;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

h3 {
  color: #4b2c20;
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

p {
  color: #4b2c20;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}

.btn-part {
  font-size: 22px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 530px) {
  .btn-part {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.btn-part .btn {
  cursor: pointer;
  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;
  min-width: 180px;
}

@media (max-width: 530px) {
  .btn-part .btn {
    font-weight: 500;
    font-size: 15px;
    width: 100%;
  }
}

.btn-part .btn-full {
  padding: 12px 25px;
  text-align: center;
  color: #4b2c20;
  background: #fff176;
  border-radius: 10px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  cursor: pointer;
  margin-right: 20px;
}

@media (max-width: 530px) {
  .btn-part .btn-full {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.btn-part .btn-full:hover {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #fff176;
  background: #4b2c20;
}

.btn-part .btn-empty {
  padding: 12px 25px;
  text-align: center;
  border: 1px solid #4b2c20;
  border-radius: 10px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  color: #4b2c20;
}

.btn-part .btn-empty:hover {
  font-weight: 500;
  background-color: #fff176;
  color: #4b2c20;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: #4b2c20;
}

body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.content {
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 45px;
}

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

@media (max-width: 1000px) {
  .content {
    padding: 0 17px;
  }
}

header {
  position: fixed;
  top: 0;
  background: rgba(75, 44, 32, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  z-index: 100;
}

header .content .header-part {
  height: 70px;
  width: 100%;
  position: relative;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .content .header-part .logo-part a {
  position: relative;
}

header .content .header-part .logo-part a img {
  position: absolute;
  top: -40px;
  left: -7px;
  z-index: 1001;
  display: inline-block;
  width: 120px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 400px) {
  header .content .header-part .logo-part a img {
    width: 100px;
    height: 80px;
  }
}

header .content .header-part .main-nav {
  margin-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .content .header-part .main-nav ul {
  margin-right: 15px;
}

@media (max-width: 900px) {
  header .content .header-part .main-nav ul {
    display: none;
  }
}

header .content .header-part .main-nav ul .link {
  display: inline-block;
  margin: 0 10px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

header .content .header-part .main-nav ul .link:hover {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

header .content .header-part .main-nav ul .link a {
  color: #fff;
}

@media (max-width: 450px) {
  header .content .header-part .btn-part .btn-full {
    font-size: 14px;
  }
}

header .content .header-part .burger-part {
  margin-left: 20px;
  display: inline-block;
}

header .content .header-part .burger-part svg {
  cursor: pointer;
}

@media (max-width: 400px) {
  header .content .header-part .burger-part svg {
    width: 30px;
    height: 30px;
  }
}

header .content .header-part .burger-part svg:hover path {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  fill: #fff176;
}

header .content .header-part .burger-part svg g g path {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  fill: #fff176;
}

@media (min-width: 900px) {
  header .content .header-part .burger-part {
    display: none;
  }
}

header .content .side-bar {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.486);
  background-blend-mode: overlay;
  background-image: url(../img/photo2.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translateX(-150vw);
          transform: translateX(-150vw);
}

header .content .side-bar-content {
  width: 100vw;
  height: 100vh;
  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;
  position: relative;
}

header .content .side-bar-content ul .side-bar-link {
  font-size: 30px;
  margin-bottom: 30px;
}

header .content .side-bar-content .btn-part {
  position: absolute;
  bottom: 60px;
  font-size: 22px;
}

header .content .side-bar-content .close-btn {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}

header .content .side-bar-content .close-btn svg #cross_copy path {
  fill: #4b2c20;
}

header .content .side-bar-active {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translateX(0vw);
          transform: translateX(0vw);
}

.main {
  width: 100%;
}

.main section {
  background-color: #99a2af17;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main .section-intro {
  background-image: url(../img/photo1.jpeg);
  background-color: rgba(255, 255, 255, 0.486);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (min-width: 1700px) {
  .main .section-intro {
    height: 100vh;
  }
}

.main .section-intro .content {
  padding-top: 220px;
  padding-bottom: 250px;
}

@media (min-width: 1700px) {
  .main .section-intro .content {
    padding-top: 400px;
  }
}

@media (max-width: 768px) {
  .main .section-intro .content {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}

.main .section-intro .content .text-part .title {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .main .section-intro .content .text-part .title {
    margin-bottom: 10px;
  }
}

.main .section-intro .content .text-part .title h1 {
  font-style: normal;
  font-weight: 200;
  font-size: 48px;
  color: #4b2c20;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .main .section-intro .content .text-part .title h1 {
    font-size: 26px;
  }
}

@media (max-width: 340px) {
  .main .section-intro .content .text-part .title h1 {
    font-size: 24px;
  }
}

.main .section-intro .content .text-part .title h1 span {
  font-style: normal;
  font-weight: 600;
  font-size: 120px;
  line-height: 125px;
  margin-left: -10px;
  color: #4b2c20;
}

@media (max-width: 768px) {
  .main .section-intro .content .text-part .title h1 span {
    margin-left: 0;
    font-size: 72px;
    line-height: 75px;
  }
}

.main .section-about {
  padding-top: 120px;
  padding-bottom: 100px;
}

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

.main .section-about .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .section-about .content .text-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .main .section-about .content .text-part {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}

.main .section-about .content .text-part-block {
  max-width: 28%;
  width: 100%;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .main .section-about .content .text-part-block {
    max-width: 100%;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .main .section-about .content .text-part-block:nth-child(2) {
    margin: 0 20px;
  }
}

.main .section-about .content .img-part {
  position: relative;
  max-width: 700px;
  width: 100%;
  height: 390px;
  overflow: hidden;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .main .section-about .content .img-part {
    height: 300px;
  }
}

@media (max-width: 500px) {
  .main .section-about .content .img-part {
    height: 250px;
  }
}

.main .section-about .content .img-part iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main .section-advantage {
  padding: 150px 0;
  background-image: url(../img/photo2.jpeg);
  background-color: rgba(255, 255, 255, 0.486);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .main .section-advantage {
    padding: 70px 0;
  }
}

.main .section-advantage .content .text-part {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.main .section-advantage .content b {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 20px;
}

.main .section-advantage .content ul {
  max-width: 700px;
}

.main .section-advantage .content ul li {
  text-align: left;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
}

@media (max-width: 768px) {
  .main .section-advantage .content ul li {
    text-align: center;
  }
}

.main .section-advantage .content .certificate-part {
  margin-top: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main .section-advantage .content .certificate-part-block {
  margin-bottom: 50px;
  max-width: 400px;
}

.main .section-advantage .content .certificate-part-block p {
  margin: 0 auto;
  font-size: 18px;
  line-height: 22px;
  max-width: 300px;
  margin-bottom: 10px;
}

.main .section-profit {
  padding: 100px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .main .section-profit {
    padding: 50px 0;
  }
}

.main .section-profit .content h2 {
  margin-bottom: 40px;
}

.main .section-profit .content .img-part {
  margin: 40px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main .section-profit .content .img-part img {
  margin-bottom: 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .main .section-profit .content .img-part img {
    display: inline-block;
    max-height: 300px;
  }
}

.main .section-partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 100px 0;
  text-align: center;
  background-image: url(../img/photo3.jpeg);
  background-color: rgba(255, 255, 255, 0.486);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

@media (max-width: 768px) {
  .main .section-partners {
    padding: 50px 0;
  }
}

.main .section-partners .content {
  width: 92%;
}

.main .section-partners .content .main-block-content {
  overflow: hidden;
  margin-top: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
}

@media (max-width: 1100px) {
  .main .section-partners .content .main-block-content {
    max-width: 600px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.main .section-partners .content .main-block-content .text-part {
  max-width: 400px;
  margin-right: 30px;
}

@media (max-width: 768px) {
  .main .section-partners .content .main-block-content .text-part {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.main .section-partners .content .main-block-content .text-part p {
  font-weight: bold;
  font-size: 23px;
  line-height: 30px;
}

.main .section-partners .content .main-block-content .slider {
  outline: none;
  overflow: hidden;
  max-width: 600px;
  max-height: 700px;
  height: 100%;
  width: 100%;
  position: relative;
}

@media (max-width: 768px) {
  .main .section-partners .content .main-block-content .slider {
    max-width: 500px;
    max-height: 400px;
  }
}

@media (max-width: 500px) {
  .main .section-partners .content .main-block-content .slider {
    max-width: 320px;
  }
}

.main .section-partners .content .main-block-content .slider img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.main .section-partners .content .main-block-content .slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 90%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.main .section-partners .content .main-block-content .slick-dots li {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.main .section-partners .content .main-block-content .slick-dots li button {
  display: none;
}

.main .section-partners .content .main-block-content .slick-dots li:before {
  top: 1px;
  -webkit-transition: all .5s;
  transition: all .5s;
  content: '';
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  position: absolute;
  border-radius: 20px;
}

.main .section-partners .content .main-block-content .slick-dots li.slick-active:before {
  top: 0;
  width: 8px;
  height: 8px;
  margin-left: -2px;
  background-color: #fff176;
}

.main .section-partners .content .main-block-content .slick-arrow {
  top: 50%;
  height: 26px;
  width: 14px;
  margin-top: -13px;
  position: absolute;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  background-image: url(https://tarkikromanski.github.io/files/arrow-slider.png);
  background-repeat: no-repeat;
}

.main .section-partners .content .main-block-content .slick-prev {
  left: 40px;
  z-index: 2;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main .section-partners .content .main-block-content .slick-next {
  top: 53%;
  right: 40px;
}

.main .section-reviews {
  padding: 100px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .main .section-reviews {
    padding: 50px 0;
  }
}

.main .section-reviews .content .img-part {
  margin: 40px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main .section-reviews .content .img-part .iframe-block {
  position: relative;
  max-width: 550px;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 60px;
}

@media (max-width: 400px) {
  .main .section-reviews .content .img-part .iframe-block {
    height: 155px;
  }
}

.main .section-reviews .content .img-part .iframe-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
  background-image: url(../img/photo4.jpeg);
  background-color: rgba(255, 255, 255, 0.486);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 150px 0;
}

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

footer .content .contact-part {
  max-width: 400px;
}

footer .content .contact-part form {
  background: rgba(75, 44, 32, 0.6);
  border-radius: 39px;
  margin: 0 auto;
  width: 300px;
  text-align: center;
  padding: 30px 20px;
}

footer .content .contact-part form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

footer .content .contact-part form .form-group label {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff176;
}

footer .content .contact-part form .form-group input {
  border-radius: 10px;
  height: 40px;
  padding-left: 10px;
  border: 1.5px solid #fff176;
  outline: none;
}

footer .content .contact-part form .btn-full {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  text-align: center;
  color: #4b2c20;
  background: #fff176;
  border-radius: 10px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  cursor: pointer;
  font-size: 20px;
  border: none;
  font-weight: 600;
}

footer .content .contact-part form .btn-full:hover {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: #ABB5BB;
}

footer .content .contact-part .links-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: rgba(75, 44, 32, 0.6);
  border-radius: 25px;
  margin: 15px auto;
  width: 300px;
  text-align: center;
  padding: 20px;
}

footer .content .contact-part .links-block .links {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

footer .content .contact-part .links-block .links img {
  width: 50px;
  height: 50px;
  display: inline-block;
}

footer .content .contact-part .links-block .links:hover {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

footer .content .contact-part .links-block .call-me {
  font-size: 25px;
  font-weight: 600;
  color: #fff176;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

footer .content .contact-part .links-block .call-me:hover {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

@media (max-width: 500px) {
  * {
    background-attachment: initial !important;
  }
}
/*# sourceMappingURL=style.css.map */