@import url("./../fonts/stylesheet.css");
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.wrap {
  width: 1237px;
  max-width: 100%;
  margin: 0 auto;
}

body {
  font-family: "Gotham Rounded Book";
}

@media (max-width: 1245px) {
  .wrap {
    padding: 0 20px;
  }
}

i.ico {
  line-height: 0;
}

svg {
  max-width: 100%;
  max-height: 100%;
  line-height: 0;
}

input[type=submit] span,
.btn span {
  cursor: pointer;
}

input[type=submit].btn-whats,
.btn.btn-whats {
  background-color: #00ca4d;
  display: flex;
  justify-content: center;
  align-items: center;
}

input[type=submit].btn-whats i,
.btn.btn-whats i {
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 10px;
}

input[type=submit].btn-whats i svg path,
.btn.btn-whats i svg path {
  fill: #fff;
}

.header-section {
  width: 100%;
  height: 415px;
  background-size: cover;
  margin-top: 84px;
}

@media (max-width: 760px) {
  .header-section {
    height: 200px;
    margin-top: 65px;
  }
}

.header-main {
  background-color: rgba(16, 16, 31, 0.8);
  width: 100%;
  height: 85px;
  z-index: 9;
}

.header-main .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-main .menu li {
  display: inline-block;
  margin-left: 15px;
}

.header-main .menu li a {
  font-size: 14px;
  font-family: "Gotham Rounded Book";
  color: white;
  text-align: center;
}

@media (max-width: 768px) {
  .header-main {
    height: 65px;
  }
}

.site-footer {
  background-color: #3c3a56;
  padding: 64px 0;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
}

.site-footer .col {
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

.site-footer .col.col-full {
  line-height: 1.538;
  width: 100%;
  font-size: 13px;
}

.site-footer .col.col-right {
  text-align: right;
}

.site-footer .about-footer {
  max-width: 418px;
  font-size: 13px;
  color: white;
  line-height: 1.538;
  padding-top: 55px;
}

.site-footer .contact-footer {
  padding: 25px 0;
}

.site-footer .contact-footer .link {
  display: block;
  padding: 10px 0;
}

.site-footer .contact-footer .link span {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}

.site-footer .contact-footer .link i.ico {
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 17px;
  margin-left: 15px;
}

.site-footer .contact-footer .link i.ico svg path {
  fill: #ffc500 !important;
}

.site-footer .rights {
  font-size: 13px;
  width: 100%;
}

@media (max-width: 850px) {
  .site-footer .wrap {
    flex-direction: column;
    text-align: center;
  }
  .site-footer .about-footer {
    margin: 0 auto 30px;
  }
  .site-footer .col {
    width: 100%;
  }
  .site-footer .col.col-right {
    text-align: center;
  }
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.mask.active {
  visibility: visible;
  opacity: 1;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  min-height: 300px;
  background: #fff;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-out;
  transform: translate(-50%, -35%);
}

.modal .form {
  padding: 20px;
}

.modal .form input[type="text"] {
  background: #eee;
}

.modal h3 {
  font-size: 22px;
  padding-top: 60px;
  text-align: center;
  color: #3c3a56;
  font-weight: 600;
}

.modal .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 30px;
  background: #000;
  color: #fff;
  cursor: pointer;
  border: 0;
}

.modal.active {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffc500;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: -1;
}

.menu-mobile.active {
  z-index: 999;
  pointer-events: unset;
  opacity: 1;
  transform: scale(1);
}

.menu-mobile .btn {
  padding: 0px 15px !important;
}

.menu-mobile .btn i {
  position: relative;
  top: 3px;
}

.menu-mobile .btn span {
  color: #000;
}

.menu-mobile .phone {
  display: flex;
  align-items: center;
  margin-left: 0px;
  margin-top: 15px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.menu-mobile .phone span {
  color: #000;
  vertical-align: middle;
}

.menu-mobile .phone .ico {
  width: 19px;
  height: 17px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

.menu-mobile .phone .ico svg path {
  fill: #000 !important;
}

.menu-mobile .nav-mobile .nav {
  display: block;
  flex-wrap: unset;
  height: 50vh;
  width: 90vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%);
  position: absolute;
}

.menu-mobile .nav-mobile li {
  display: block;
  font-weight: 600;
  text-align: center;
  height: 10%;
  position: relative;
}

.menu-mobile .nav-mobile a {
  color: #000;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
}

.menu-mobile .social {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  border: #3c3a56 2px solid;
  padding: 7px 10px;
}

.menu-mobile .social a {
  display: inline-block;
  vertical-align: top;
}

.menu-mobile .social a svg path {
  fill: #3c3a56;
  transition: all 0.2s ease;
}

.menu-mobile .social a:hover svg path {
  fill: #3c3a56;
}

.menu-mobile .social .phone-contact {
  vertical-align: bottom;
  padding-right: 10px;
  color: #3c3a56;
}

.menu-mobile .social .phone-contact span {
  display: block;
  text-align: left;
  font-weight: 300;
  text-transform: none;
  line-height: 15px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.menu-mobile .social .phone-contact:hover {
  color: #3c3a56;
  text-decoration: none;
}

.menu-mobile .contacts-headers-mobile {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
}

.menu-mobile .contacts-headers-mobile a {
  display: block;
  font-weight: 600;
  text-align: center;
  position: relative;
  color: #2e363e;
  padding: 6px;
}

.menu-mobile .close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.menu-mobile .close svg path {
  fill: #000;
}

.burg-menu,
.header-main .burg-menu {
  position: absolute;
  top: -50px;
  right: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 1200px) {
  .contacts,
  .menu {
    display: none !important;
  }
  .burg-menu,
  .header-main .burg-menu {
    opacity: 1;
    pointer-events: unset;
    width: 39px;
    height: 24px;
    display: block;
    right: 0;
    top: 27px;
    z-index: 100;
  }
}

@media (max-width: 768px) {
  .burg-menu,
  .header-main .burg-menu {
    top: 21px;
  }
}

.burg-menu svg path,
.header-main .burg-menu svg path {
  fill: #ffc500;
}
