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;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  position: relative;
  overflow-x: hidden;
}

body {
  width: 100%;
  background-color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  color: #596067;
  min-height: 100vh;
}

a {
  transition: all 0.3s ease;
  color: #d8d0cc;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 20px;
}

h1, h2, h3 {
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

table {
  width: 100%;
  margin-bottom: 15px;
}
table td {
  border-collapse: collapse;
  padding: 5px;
  border: 1px solid rgba(134, 85, 39, 0.7);
}

img {
  max-width: 100%;
}

caption {
  margin-bottom: 15px;
}

select {
  background: rgba(142, 88, 43, 0.8);
  min-width: 150px;
  border: 1px solid rgba(201, 170, 113, 0.1);
  color: #fff;
  margin-bottom: 15px;
  padding: 6px 40px 6px 20px;
  position: relative;
  -webkit-appearance: none;
  background-image: url(../images/arrow-v.png);
  background-position: right 10px center;
  background-repeat: no-repeat;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  -ms-appearance: none;
  appearance: none !important;
}

input, textarea, select {
  background: #fff;
  border: 1px solid #078b24;
  color:  #000;
  padding: 10px 10px;
  position: relative;
  font-size: 14px;
  width: 100%;
  font-family: 'Roboto', sans-serif;
}

select {
  color: rgba(142, 88, 43, .8);
}

textarea {
  min-height: 150px;
}

button, .button {
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #ffdd00;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  color: #000;
  position: relative;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
}
button:hover, .button:hover {
  background: #28a745;
  color: #fff;
}

.button {
  display: inline-block;
  text-decoration: none;
}

:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: #9d7f55;
}

::-moz-placeholder {
  color: #9d7f55;
}

:-moz-placeholder {
  color: #9d7f55;
}

:-ms-input-placeholder {
  color: #9d7f55;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

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

.flex-s {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex-s-c {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.flex-c-c {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.bright:hover {
  filter: brightness(120%);
}

.header {
  background: #1c7e68;
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 10;
}

.header.scrolled .header-wrapper-bottom {
  padding: 0px;
}
.header.scrolled .logo {
  padding: 0px 10px 0px 0px;
}

.header-wrapper-top {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
}

.logo {
  padding: 10px 10px 10px 0px;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  color: #fff;
}
.logo img {
  height: 60px;
}

.header-text {
  position: relative;
  padding-left: 10px;
  color: #ffdd00;
  font-size: 22px;
}
.header-text:before {
  content: "";
  position: absolute;
  height: 40px;
  width: 1px;
  background-color: #fff;
  top: 50%;
  margin-top: -20px;
  left: 0px;
}

.header-info {
  position: relative;
  padding-right: 10px;
}
.header-info:before {
  content: "";
  position: absolute;
  height: 40px;
  width: 1px;
  background-color: #fff;
  top: 50%;
  margin-top: -20px;
  right: 0px;
}

.header-info_tel {
  margin-bottom: 5px;
}
.header-info_tel a {
  color: #fff;
}
.header-info_tel a:hover {
  text-decoration: underline;
}

.mail-link {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.mail-link:hover {
  text-decoration: underline;
}

.soc-block {
  margin-left: 10px;
}
.soc-block a {
  display: block;
  width: 25px;
  height: 25px;
  background-size: 25px 25px;
  margin-left: 5px;
}

.fb {
  background-image: url(../images/telegram-48.png);
}

.vb {
  background-image: url(../images/viber-48.png);
}

.header-info_soc {
  justify-content: flex-end;
}

.header-button {
  margin-left: 10px;
  position: relative;
}
.header-button a {
  color: #000;
  display: block;
  padding: 15px 20px;
  background-color: #ffdd00;
  border-radius: 10px;
  font-size: 18px;
  text-transform: uppercase;
}
.header-button a:hover {
  background-color: #fff;
}

.header-wrapper-bottom {
  background: #f5f5f5;
  padding: 10px 0px;
  transition: 0.3s;
}
.header-wrapper-bottom nav {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
}

.menu li a {
  padding: 10px 10px;
  color: #000;
  display: inline-block;
  font-size: 22px;
}

.container {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  height: 100%;
}

.hero-section {
  background: url(../images/hero-section.jpg) top no-repeat fixed;
  background-size: cover;
}

.hero-section-dark {
  background: rgba(0, 0, 0, 0.8);
  height: 940px;
  display: flex;
  width: 100%;
  align-items: center;
  padding-top: 140px;
}

.hero-section-text {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-section-text h1 {
  color: #fff;
  font-size: 80px;
  margin-bottom: 50px;
}
.hero-section-text h2 {
  color: #fff;
  font-size: 50px;
  margin-bottom: 70px;
}

.hero-button {
  display: inline-block;
  color: #000;
  padding: 20px 50px;
  background-color: #feff05;
  border-radius: 10px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
}
.hero-button:hover {
  color: #fff;
  background: #078b24;
}

.page-title {
  text-align: center;
}
.page-title h2 {
  font-size: 50px;
  margin-bottom: 30px;
}

.about-info_img, .about-info_text {
  width: 50%;
}

.about-info_img {
  text-align: center;
}
.about-info_img img {
  border-radius: 50%;
  width: 400px;
}

.aboutBlock {
  margin-bottom: 50px;
}

.about-info_text {
  line-height: 1.4;
}

.about-counter_block {
  width: 22%;
  padding: 20px 20px;
  border-radius: 20px;
}

.about-counter_block-number {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #1c7e68;
  color: #fffa0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 38px;
  margin: 0 auto;
}

.about-counter_block-text {
  text-align: center;
  color: #000;
  font-size: 24px;
  padding-top: 20px;
}

.section {
  padding: 50px 0px;
}

.section-color {
  background-color: #f5f8ff;
}

.poslugi-block {
  width: 30%;
  padding: 20px;
  background-color: #fff;
  margin-top: 50px;
  position: relative;
  transition: 0.3s;
}
.poslugi-block:hover {
  transform: scale(1.1);
}

.poslugi-block_img {
  position: relative;
  margin-bottom: 20px;
}
.poslugi-block_img img {
  transition: 0.3s;
  position: relative;
  margin-top: -40px;
}
.poslugi-block_img img:hover {
  transform: scale(1.05);
}

.poslugi-block_title {
  font-weight: bold;
  color: #000;
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.poslugi-block_text {
  margin-bottom: 160px;
  line-height: 25px;
  font-size: 16px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.poslugi-block_price {
  font-size: 16px;
  position: absolute;
  bottom: 20px;
  left: 0px;
  width: 100%;
  padding: 0px 20px;
}
.poslugi-block_price:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 30px;
  height: 1px;
  width: calc(100% - 30px - 30px);
  background-color: rgba(0, 0, 0, 0.1);
}
.poslugi-block_price span {
  font-size: 28px;
  display: block;
  font-weight: bold;
  padding-top: 10px;
  color: #1355bb;
}

.button-pr {
  display: block;
  color: #fff;
  background-color: #28a745;
  padding: 15px 0px;
  text-align: center;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 18px;
}
.button-pr:hover {
  background-color: #1c7e68;
}

.autoparkBlock {
  width: 22%;
  position: relative;
  background: #fff;
  padding-bottom: 15px;
  transition: 0.3s;
}
.autoparkBlock:hover {
  transform: scale(1.1);
}

.autoparkBlock_title {
  font-weight: bold;
  color: black;
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  padding: 20px 0px;
}
.autoparkBlock_title span {
  color: #596067;
  font-size: 16px;
  display: block;
  padding-top: 7px;
}
.text-ab {
  color: #000;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  line-height: 1.5;
}
.autoparkBlock_price {
  font-size: 16px;
  position: relative;
  padding: 0px 20px;
}
.autoparkBlock_price:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 30px;
  height: 1px;
  width: calc(100% - 30px - 30px);
  background-color: rgba(0, 0, 0, 0.1);
}
.autoparkBlock_price span {
  font-size: 24px;
  display: block;
  font-weight: bold;
  padding-top: 10px;
  color: #1355bb;
}

.section-avto {
  background: #edf2ff;
  background-image: url(../images/bus.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.section-avto h2 {
  color: #fff;
}

.consultation {
  height: 400px;
  background: url(../images/consultation.jpg) left top no-repeat;
}

.section-cons {
  padding: 50px 0px 0px 0px;
}

.consultation {
  width: 100%;
  justify-content: flex-end;
}

.consultation-block {
  width: 100%;
  max-width: 600px;
  background-color: #1c7e68;
  padding: 20px;
  height: max-content;
  border-radius: 10px;
}

.formGroup {
  margin-bottom: 15px;
}

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

.page-title-cons h2 {
  font-size: 30px;
}

.causes {
  justify-content: center;
}

.causesBlock {
  width: 33%;
  display: flex;
  padding: 20px 20px;
}

.causesBlock-number {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: #ffdd00;
  border-radius: 50%;
  font-size: 30px;
  position: relative;
}
.causesBlock-number:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
  border-radius: 50%;
  border-left: 1px solid #596067;
  border-right: 1px solid #596067;
}

.causesBlock-text {
  width: calc(100% - 80px);
  margin-left: 15px;
  font-size: 14px;
  line-height: 20px;
}
.causesBlock-text h3 {
  font-size: 20px;
}

.section-causes {
  background-color: #fff2b6;
}

.accordion {
  cursor: pointer;
  font-size: 20px;
  line-height: 22px;
  display: block;
  transition: 0.4s;
  position: relative;
  background-color: #edf2ff;
  margin: 10px 0px;
  padding: 20px 20px 20px 50px;
  border-radius: 15px;
}
.accordion span {
  position: absolute;
  height: 30px;
  width: 30px;
  background-color: #1c7e68;
  border-radius: 50%;
  left: -14px;
  top: 50%;
  margin-top: -15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion span:before {
  content: "+";
  color: #fff;
}

.panel {
  padding: 0 18px;
  line-height: 25px;
  font-size: 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p {
  margin-top: 20px;
}

.faq {
  max-width: 800px;
  padding-left: 40px;
  margin: 0 auto;
}

.footerBlocks {
  width: 100%;
}

.footer-left {
  width: 40%;
}
.footer-left h2 {
  color: #fff;
  font-size: 40px;
}

.footer-right {
  width: 60%;
}

.footer {
  background: url(../images/footer-img.webp) center no-repeat;
  background-size: cover;
}
.footer .section {
  background-color: rgba(77, 36, 191, 0.9);
}

.cont-froup {
  display: flex;
  align-items: center;
  padding: 10px 0px;
}
.cont-froup a {
  color: #fff;
  margin-left: 10px;
  font-size: 24px;
}
.cont-froup a:hover {
  color: #ffdd00;
}

.header-wrapper_left {
  position: relative;
}

.footer-soc-block {
  display: flex;
  padding-top: 20px;
}
.footer-soc-block a {
  display: block;
  background-size: 50px 50px;
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.footer-soc-block a:hover {
  transform: scale(1.1);
}

.f-tl {
  background-image: url(../images/telegram.png);
}

.f-vb {
  background-image: url(../images/viber.png);
}

.m-button {
  width: 30px;
  height: 30px;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 14;
  display: none;
}
.m-button span {
  width: 30px;
  height: 4px;
  background: #fff;
  display: block;
  transition: 0.3s;
  position: relative;
}

.m-button.active span {
  background: #000;
}
.m-button.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}
.m-button.active span:nth-child(2) {
  display: none;
}
.m-button.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 8px;
}

.mobile-menu {
  background: #fff;
  width: 300px;
  height: 100%;
  position: fixed;
  top: 0px;
  right: -300px;
  z-index: 12;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  display: flex;
}

.mobile-menu.active {
  right: 0px;
}

.m-menu li {
  padding: 15px 0px;
}
.m-menu li a {
  color: #000;
  font-size: 24px;
}

/*SGK Styles START*/
.consultation-block textarea {
  resize: none;
}
.sgk-dn {
  display: none;
}
.sgk-popup-overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: 1000;
  transition: visibility .3s, opacity .3s;
}
.sgk-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: 600px;
  transition: transform .3s;
}
.sgk-popup .consultation-block {
  margin: 0 auto;
}
.sgk-popup select {
  width: 100%;
}
.sgk-popup-close,
.sgk-message-close {
  position: absolute;
  top: -20px;
  right: -20px;
  cursor: pointer;
  font-size: 20px;
  color: #000;
  transition: .3s;
  opacity: .5;
  border-radius: 100%;
  background-color: #fff;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  padding-left: 1px;
}
.sgk-popup-close span,
.sgk-message-close span {
  position: relative;
  top: -1px;
}
.sgk-popup-close:hover,
.sgk-message-close:hover {
  opacity: 1;
}
.sgk-message-overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: visibility .3s, opacity .3s;
}
.sgk-message-content {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  position: relative;
  transition: transform .3s;
  transform: scale(.8);
  z-index: 1011;
}
.sgk-message-overlay.show {
  visibility: visible;
  opacity: 1;
  transition: visibility .3s, opacity .3s;
}
.sgk-message-content.show {
  transform: scale(1);
  transition: transform .3s;
}
.sgk-message-content p {
  color: #000;
  margin-bottom: 0;
}
span.sgk-price-minimum {
  font-size: 12px;
  display: block;
  color: #596067;
  text-align: center;
  font-weight: normal;
}
.poslugi-block span.sgk-price-minimum {
  text-align: left;
}
@media (max-width: 768px) {
  .sgk-popup,
  .sgk-message-content {
    width: 85%;
  }
}
/*SGK Styles END*/

@media (max-width: 1200px) {
  .header-wrapper-top, .hero-section-text, .container {
    padding: 0px 15px;
  }

  .logo img {
    height: 55px;
  }
}
@media (max-width: 992px) {
  .hero-section-text h1 {
    font-size: 60px;
  }

  .hero-section-text h2 {
    font-size: 30px;
  }

  .hero-button {
    font-size: 20px;
    padding: 15px 30px;
  }

  .logo img {
    height: 25px;
  }

  .header-text {
    font-size: 18px;
  }

  .header-button a {
    font-size: 14px;
    padding: 10px 15px;
  }

  .header-wrapper-top {
    padding: 5px 10px;
  }

  .header-info_tel a {
    font-size: 18px;
  }

  .menu li a {
    font-size: 18px;
  }

  .header-wrapper-bottom {
    padding: 0px;
  }

  .about-info_img, .about-info_text {
    width: 100%;
  }

  .about-info_img {
    margin-bottom: 20px;
  }

  .about-counter_block {
    width: 50%;
  }

  .poslugi-block {
    width: 48%;
  }

  .autoparkBlock {
    width: 48%;
    margin-bottom: 25px;
  }

  .autoparkBlock_img {
    text-align: center;
  }

  .causesBlock {
    width: 50%;
  }

  .footer-left, .footer-right {
    width: 100%;
  }

  .footer-left {
    margin-bottom: 20px;
    text-align: center;
  }

  .cont-froup, .footer-soc-block {
    justify-content: center;
  }

  .footer-left h2, .page-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 776px) {
  .header-wrapper_left, .header-wrapper_right {
    width: 100%;
  }

  .header-wrapper-bottom {
    display: none;
  }

  .header-text:before, .header-info:before {
    height: 20px;
    margin-top: -10px;
  }

  .hero-section-text h1 {
    font-size: 50px;
  }

  .hero-section-dark {
    height: 100%;
    padding-bottom: 40px;
  }

  .m-button, .mobile-button {
    display: flex;
  }

  .header-wrapper_right {
    justify-content: center;
  }
  .main {
    display: flex;
    flex-direction: column;
  }
  .hero-section {
    order: 1;
  }
  #poslugi {
    order: 2;
  }
  #avtopark {
    order: 3;
  }
  #pro-nas {
    order: 4;
  }
  .section-cons {
    order: 5;
  }
  #nashi-perevagi {
    order: 6;
  }
  #faq {
    order: 7;
  }
}
@media (max-width: 670px) {
  .causesBlock {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .poslugi-block {
    width: 100%;
  }

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

  .autoparkBlock {
    width: 100%;
  }

  .hero-section-text h1 {
    font-size: 40px;
  }
}
@media (max-width: 475px) {
  .header-text {
    font-size: 14px;
  }

  .header-button a {
    padding: 7px 10px;
  }

  .about-counter_block {
    width: 100%;
  }

  .faq {
    padding-left: 10px;
  }

  .accordion {
    padding: 10px 10px 10px 30px;
    font-size: 18px;
  }

  .hero-section-text h1 {
    font-size: 30px;
  }

  .hero-section-text h2 {
    font-size: 24px;
  }
  .logo span {
    font-size: 12px;
  }
}
.formGroupServ .formGroupServ__title p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 5px;
}
.formGroupServ .formGroupServ__checkbox {
  display: flex;
  flex-wrap: wrap;
}
.formGroupServ .formGroupServ__checkbox label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 0 0 33%;
  cursor: pointer;
}
.formGroupServ .formGroupServ__checkbox label input {
  transition: .3s;
  width: auto;
}
.formGroupServ .formGroupServ__checkbox label span {
  color: #fff;
  font-size: 12px;
}
.formGroupServ .formGroupServ__checkbox label input:checked span {
  color: #ffdd00;
}
.sgk-language-switcher {
  position: relative;
  display: inline-block;
}
.sgk-language-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  position: absolute;
  width: 100%;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,.2);
  z-index: 1;
}
.sgk-language-list.sgk-language-hidden {
  display: none;
}
.sgk-language-list li a {
  padding: 10px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.sgk-language-list li a svg {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,.2);
}
.sgk-language-list li a span {
  color: #000;
  font-size: 16px;
}
.sgk-language-list li a:hover {
  background-color: #f1f1f1;
}
.sgk-current-lang {
  cursor: pointer;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
}
.header-wrapper-top {
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.header-wrapper_left {
  margin-right: 20px;
}










@media (max-width: 1190px) {
  .header-wrapper_left,
  .header-wrapper_right {
    margin-right: 0;
    margin-bottom: 10px;
    flex: 0 0 100%;
    justify-content: center;
  }
  .header-wrapper_right {
    margin-bottom: 0;
  }
}
@media (max-width: 776px) {
  .header-wrapper_right.flex-c {
    width: 80%;
  }
  .hero-section {
    margin-top: 80px;
  }
}
@media (max-width: 500px) {
  .formGroupServ .formGroupServ__checkbox label {
    flex: 0 0 50%;
  }
  .cont-froup a {
    font-size: initial;
  }
  .hero-section-text h2 {
    margin-bottom: 40px;
  }
  .header-wrapper_left .logo,
  .header-wrapper_left .header-text {
    flex: 0 0 100%;
    justify-content: center;
    text-align: center;
  }
  .header-text,
  .header-info {
    padding: 0;
    text-align: center;
  }
  .header-text:before,
  .header-info:before {
    content: none;
  }
  .hero-section-text h1 {
    font-size: 28px;
  }
}
/*SGK Styles END*/
