:root {
  --white-main: #fff;
  --black-main: #000;
  --gray-main: #212121;
}
:root {
  --font-family: 'Readex Pro', sans-serif;
  --second-family: 'Readex Pro', sans-serif;
}
* {
  padding: 0;
  margin: 0;
  border: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
html {
  background-color: #f4f4f5;
}
body {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 700;
}
body.sgk-noscroll {
  overflow: hidden;
}
a,
a:link,
a:visited {
  text-decoration: none;
  display: inline-block;
}
a,
a:hover,
a:focus,
a:active {
  outline: none;
  text-decoration: none;
  color: #ffbc03;
}
aside,
nav,
footer,
header,
section,
main {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
}
img {
  display: block;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
input {
  appearance: none;
}
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
}
input::-ms-clear {
  display: none;
}
button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
  border: none;
}
input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
a,
input,
button,
svg,
path,
span,
i,
em,
b,
strong {
  transition: 0.3s;
}
p,
a,
span,
input,
textarea {
  font-family: 'Readex Pro', sans-serif;
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Readex Pro', sans-serif;
}
input.sgk-btn,
button.sgk-btn {
  cursor: pointer;
}
textarea {
  resize: none;
}
ul,
ol {
  margin: 0;
  padding-left: 20px;
  list-style-position: outside;
}
ul li {
  list-style: disc;
}
ol li {
  list-style: decimal;
}
.sgk-row {
  display: flex;
  flex-wrap: wrap;
}
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
  flex: 0 0 100%;
}
@media (min-width: 576px) {
  .col-11 {
    flex: 0 0 calc(100% / 12 * 11);
  }
  .col-10 {
    flex: 0 0 calc(100% / 12 * 10);
  }
  .col-9 {
    flex: 0 0 calc(100% / 12 * 9);
  }
  .col-8 {
    flex: 0 0 calc(100% / 12 * 8);
  }
  .col-7 {
    flex: 0 0 calc(100% / 12 * 7);
  }
  .col-6 {
    flex: 0 0 calc(100% / 12 * 6);
  }
  .col-5 {
    flex: 0 0 calc(100% / 12 * 5);
  }
  .col-4 {
    flex: 0 0 calc(100% / 12 * 4);
  }
  .col-3 {
    flex: 0 0 calc(100% / 12 * 3);
  }
  .col-2 {
    flex: 0 0 calc(100% / 12 * 2);
  }
  .col-1 {
    flex: 0 0 calc(100% / 12);
  }
  body.search .sgk-blogGrid .sgk-row .col-4 {
    flex: 0 0 calc(32.133333%);
  }
}
.sgk-container {
  width: 100%;
  max-width: 1150px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
.sgk-container-fluid {
  width: 100%;
  padding: 0 15px;
  position: relative;
}
.sgk-clearfix::after {
  content: '';
  clear: both;
  display: table;
}
.sgk-btn,
a.sgk-btn,
button.sgk-btn,
input.sgk-btn,
.sgk-btn-reverse,
a.sgk-btn-reverse,
button.sgk-btn-reverse,
input.sgk-btn-reverse,
.sgk-btn-transparent,
a.sgk-btn-transparent,
button.sgk-btn-transparent,
input.sgk-btn-transparent {
  margin: 0 auto;
  border: 2px solid #000;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
  max-width: max-content;
  padding: 14px 40px;
  border-radius: 40px;
  background: #ffbc03;
  color: #000;
  text-decoration: none;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
}
.sgk-btn::after,
a.sgk-btn::after,
button.sgk-btn::after,
input.sgk-btn::after,
.sgk-btn-reverse::after,
a.sgk-btn-reverse::after,
button.sgk-btn-reverse::after,
input.sgk-btn-reverse::after,
.sgk-btn-transparent::after,
a.sgk-btn-transparent::after,
button.sgk-btn-transparent::after,
input.sgk-btn-transparent::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -130%;
  width: 60%;
  height: 200%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 45%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.25) 55%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.sgk-btn:hover::after,
a.sgk-btn:hover::after,
button.sgk-btn:hover::after,
input.sgk-btn:hover::after,
.sgk-btn-reverse:hover::after,
a.sgk-btn-reverse:hover::after,
button.sgk-btn-reverse:hover::after,
input.sgk-btn-reverse:hover::after,
.sgk-btn-transparent:hover::after,
a.sgk-btn-transparent:hover::after,
button.sgk-btn-transparent:hover::after,
input.sgk-btn-transparent:hover::after {
  left: 160%;
}
.sgk-btn,
a.sgk-btn,
input.sgk-btn,
button.sgk-btn {
  background-color: #ffbc03;
  color: #000;
}
.sgk-btn:hover,
a.sgk-btn:hover,
input.sgk-btn:hover,
button.sgk-btn:hover,
.sgk-btn:focus,
a.sgk-btn:focus,
input.sgk-btn:focus,
button.sgk-btn:focus,
.sgk-btn:active,
a.sgk-btn:active,
input.sgk-btn:active,
button.sgk-btn:active {
  background-color: #fff;
  color: #000;
}
.sgk-btn-reverse,
a.sgk-btn-reverse,
input.sgk-btn-reverse,
button.sgk-btn-reverse {
  background-color: #fff;
  color: #000;
}
.sgk-btn-reverse:hover,
a.sgk-btn-reverse:hover,
input.sgk-btn-reverse:hover,
button.sgk-btn-reverse:hover,
.sgk-btn-reverse:focus,
a.sgk-btn-reverse:focus,
input.sgk-btn-reverse:focus,
button.sgk-btn-reverse:focus,
.sgk-btn-reverse:active,
a.sgk-btn-reverse:active,
input.sgk-btn-reverse:active,
button.sgk-btn-reverse:active {
  background-color: #ffbc03;
  color: #000;
}
.sgk-btn-transparent,
a.sgk-btn-transparent,
button.sgk-btn-transparent,
input.sgk-btn-transparent {
  background-color: transparent;
  color: #000;
}
.sgk-btn-transparent:hover,
a.sgk-btn-transparent:hover,
button.sgk-btn-transparent:hover,
input.sgk-btn-transparent:hover,
.sgk-btn-transparent:focus,
a.sgk-btn-transparent:focus,
button.sgk-btn-transparent:focus,
input.sgk-btn-transparent:focus,
.sgk-btn-transparent:active,
a.sgk-btn-transparent:active,
button.sgk-btn-transparent:active,
input.sgk-btn-transparent:active {
  background-color: #ffbc03;
  color: #000;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #212121;
}
::-webkit-scrollbar-thumb {
  background-color: #ffbc03;
  border-radius: 10px;
  border: 3px solid #212121;
}
body {
  scrollbar-width: thin;
  scrollbar-color: #000 #212121;
}
.sgk-general {
  margin-bottom: 50px;
}
.sgk-general h2 {
  font-size: 32px;
}
.sgk-general h3 {
  font-size: 28px;
}
.sgk-general h4 {
  font-size: 26px;
}
.sgk-general h5 {
  font-size: 24px;
}
.sgk-general h6 {
  font-size: 12px;
}
.sgk-general h2,
.sgk-general h3,
.sgk-general h4,
.sgk-general h5,
.sgk-general h6 {
  margin-bottom: 20px;
}
.sgk-general p {
  margin-bottom: 15px;
}
.sgk-general ul,
.sgk-general ol {
  padding-left: 20px;
  margin-bottom: 15px;
}
.sgk-general ol li {
  list-style: decimal;
}
.sgk-general ul li {
  list-style: disc;
}
.sgk-container .sgk-container-fluid,
.sgk-container-fluid .sgk-container-fluid,
.sgk-container .sgk-container,
.sgk-container-fluid .sgk-container {
  padding-left: 0;
  padding-right: 0;
}
.sgk-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px;
}
.sgk-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sgk-header__logoLink {
  padding: 25px 0;
}
.sgk-header__logoLink svg {
  display: block;
  margin: 0 auto;
  max-width: 280px;
}
.sgk-footer {
  background: #212121;
  position: relative;
}
.sgk-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
}
.sgk-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sgk-footer__logoLink {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.sgk-footer__logoLink svg {
  display: block;
  max-width: 160px;
  height: auto;
}
.sgk-footer__copy {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
.sgk-footer__copy span {
  color: #fff;
}
.sgk-footer__contacts {
  display: flex;
  justify-content: end;
}
.sgk-footer__title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.sgk-footer__link {
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
}
.sgk-footer__link:hover {
  text-decoration: underline;
}
.sgk-accessHero {
  position: relative;
  background-image: url(/img/landing/favicon/hero_bg.png);
  background-size: cover;
  background-position: center;
  padding: 170px 0 220px;
  margin-bottom: -150px;
  color: #fff;
}
.sgk-accessHero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.sgk-accessHero__col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sgk-accessHero__steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.sgk-accessHero__step {
  position: relative;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 0 10px #000;
  padding: 40px 30px;
  transition: 0.3s;
}
.sgk-accessHero__step:hover {
  transform: translateY(-20px);
  box-shadow: 0 20px #000;
}
.sgk-accessHero__stepNum {
  position: absolute;
  top: -20px;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #ffbc03;
  border: 2px solid #000;
  box-shadow: 3px 3px #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.sgk-accessHero__stepTitle,
.sgk-accessHero__stepText {
  font-size: 24px;
  line-height: 1.45;
}
.sgk-accessHero__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 0 10px #000;
  padding: 55px;
  text-align: center;
  transition: 0.3s;
}
.sgk-accessHero__panel:hover {
  transform: translateY(-20px);
  box-shadow: 0 20px #000;
}
.sgk-accessHero__title {
  font-size: 40px;
  font-size: 32px;
  margin-bottom: 20px;
}
.sgk-accessHero__desc {
  font-size: 20px;
  margin-bottom: 50px;
}
.sgk-accessHero__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sgk-accessHero__error {
  background-color: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.sgk-accessHero__label {
  font-size: 20px;
}
.sgk-accessHero__fieldRow {
  display: flex;
  margin-bottom: 35px;
}
.sgk-accessHero__input {
  width: 100%;
  text-align: center;
  color: #000;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 20px;
  font-size: 20px;
  outline: none;
}
.sgk-accessHero__input::placeholder {
  color: #000;
}
.sgk-accessHero .sgk-btn {
  background-color: #02b1ff;
  box-shadow: 7px 7px #000;
}
.sgk-quickCards {
  position: relative;
  background: #02b1ff;
  padding-top: 20px;
  padding-bottom: 280px;
  margin-bottom: -150px;
}
.sgk-quickCards__inner {
  position: relative;
  z-index: 2;
}
.sgk-quickCards__grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 110px;
  justify-content: center;
}
.sgk-quickCards__card {
  position: relative;
  background: #fff;
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 0 10px #000;
  padding: 95px 35px 70px;
  text-align: center;
  height: 380px;
  max-width: 350px;
  margin: 0 auto;
  transition: 0.3s;
}
.sgk-quickCards__card:hover {
  transform: translateY(-20px);
  box-shadow: 0 20px #000;
}
.sgk-quickCards__badge {
  position: absolute;
  top: -24%;
  left: -10%;
}
.sgk-quickCards__badge svg {
  display: block;
  max-width: 340px;
}
.sgk-quickCards__content {
  margin-top: 10px;
}
.sgk-quickCards__text {
  font-size: 24px;
  margin-bottom: 30px;
  height: 105px;
}
.sgk-quickCards .sgk-btn {
  box-shadow: 7px 7px #000;
}
.sgk-infoStrip {
  background: #ffbc03;
  padding-bottom: 250px;
  margin-bottom: -150px;
}
.sgk-infoStrip__text {
  max-width: 810px;
  margin: 0 auto;
}
.sgk-infoStrip__text p {
  text-align: center;
  font-size: 24px;
  line-height: 1.45;
}
.sgk-bg {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 150px;
}
.sgk-bg-blue {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI5NTQiIHZpZXdCb3g9IjAgMCAxNDQwIDk1NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMTE3LjIxNSA5MTcuNTQ2TDAgOTAyLjI3NVY0Mi4zNjVMODYuMjkwMyAxOC4yMjY4TDI2Mi4zNjIgNjQuMDQwMkwzMzYuMTgzIDQyLjM2NUw1NDguNjY2IDBINjM4LjQ0OEw4MTQuMDIxIDQyLjM2NUw5MjguMjQ0IDBMMTA4NS4zNiA0Mi4zNjVMMTE3MS42NSAwSDEyNDIuNDhMMTM0Ny4yMyA2NC4wNDAyTDE0NDAgNDIuMzY1VjkxNy41NDZMMTM2NS42OCA5NTRMMTE2OCA5MDguNUw5NTIuNjg0IDkzOC43MjlMODI5LjQ4NCA5MTcuNTQ2SDY3Mi4zNjZINTA5LjVIMzg4LjU1NkwzMDguMjUxIDkwMi4yNzVIMjA2LjQ5OEwxMTcuMjE1IDkxNy41NDZaIiBmaWxsPSIjMDJCMUZGIiAvPgo8L3N2Zz4=');
}
.sgk-bg-yellow {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI2NDEiIHZpZXdCb3g9IjAgMCAxNDQwIDY0MSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMTM3Ni4xMyA1Ni41MzcxTDE0NDAgMzMuNTIyVjY0MUgtMVY0NC41MjkzTDI4LjkzNzcgNTYuNTM3MUwxMTAuMjY4IDIzLjAxNTFMMTgyLjYxOCA1Ni41MzcxSDI5OS4zNzVMMzkxLjE4NCAyMy4wMTUxTDU1Mi4zNDggMEg2NjAuMTI0TDgzNS4yNTkgNTYuNTM3MUw5MjMuNTc1IDBMMTEwMi4yIDU2LjUzNzFMMTE5Ny41IDIzLjAxNTFIMTI4MC44M0wxMzc2LjEzIDU2LjUzNzFaIiBmaWxsPSIjRkZCQzAzIiAvPgo8L3N2Zz4=');
}
.sgk-bg-black {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQyMCIgaGVpZ2h0PSIzNjMiIHZpZXdCb3g9IjAgMCAxNDIwIDM2MyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNMTQyMCA0Mi4zNjVWMzYyLjVILTIwVjQyLjM2NUw2Ni4yOTAzIDE4LjIyNjhMMjQyLjM2MiA2NC4wNDAyTDMxNi4xODMgNDIuMzY1TDUyOC42NjYgMEg2MTguNDQ4TDc5NC4wMjEgNDIuMzY1TDkwOC4yNDQgMEwxMDY1LjM2IDQyLjM2NUwxMTUxLjY1IDBIMTIyMi40OEwxMzI3LjIzIDY0LjA0MDJMMTQyMCA0Mi4zNjVaIiBmaWxsPSIjMjEyMTIxIiAvPgo8L3N2Zz4=');
}
@media (max-width: 992px) {
  .sgk-accessHero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .sgk-accessHero__panel {
    padding: 40px 25px;
  }
  .sgk-accessHero__title {
    font-size: 26px;
  }
  .sgk-quickCards__grid {
    grid-template-columns: 1fr;
    gap: 110px;
  }
}
@media (max-width: 575px) {
  .sgk-bg {
    height: 100px;
  }
  .sgk-quickCards {
    padding-top: 50px;
    padding-bottom: 120px;
  }
  .sgk-footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sgk-footer__brand,
  .sgk-footer__contacts__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sgk-footer__contacts {
    justify-content: center;
  }
  .sgk-quickCards {
    margin-bottom: -50px;
  }
  .sgk-quickCards__badge {
    left: -5%;
  }
}
