.logo-c-mob,
.menu-toggle {
  display: none;
}

@media screen and (max-width: 992px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 999;
    width: 40px;
    height: 40px;
  }
  .menu-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
  }
  .menu-toggle span:nth-child(1) {
    top: 5px;
    left: 0;
  }
  .menu-toggle span:nth-child(2) {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .menu-toggle span:nth-child(3) {
    bottom: 5px;
    left: 0;
  }
  .menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 46%;
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    bottom: 48%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.footer {
  padding: 1px;
}

.footer-logo {
  padding: 1px;
}

.copyright {
  padding: 1px;
}

.menu-toggle {
  display: none;
}

@media screen and (max-width: 992px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 999;
    width: 40px;
    height: 40px;
  }
  .menu-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
  }
  .menu-toggle span:nth-child(1) {
    top: 5px;
    left: 0;
  }
  .menu-toggle span:nth-child(2) {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .menu-toggle span:nth-child(3) {
    bottom: 5px;
    left: 0;
  }
  .menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 46%;
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    bottom: 48%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.footer {
  padding: 1px;
}

.footer-logo {
  padding: 1px;
}

.copyright {
  padding: 1px;
}

.menu-toggle {
  display: none;
}

@media screen and (max-width: 992px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 999;
    width: 40px;
    height: 40px;
  }
  .menu-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
  }
  .menu-toggle span:nth-child(1) {
    top: 5px;
    left: 0;
  }
  .menu-toggle span:nth-child(2) {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .menu-toggle span:nth-child(3) {
    bottom: 5px;
    left: 0;
  }
  .menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 46%;
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    bottom: 48%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.footer {
  padding: 1px;
}

.footer-logo {
  padding: 1px;
}

.copyright {
  padding: 1px;
}

* {
  font-family: "system-ui", "verdana", "tahoma", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

:root {
  --white: #f2f0eb;
  --black: #000;
  --green: #03962F;
  --lgreen: #0d802f;
}

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

a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  max-width: 1140px;
  z-index: 10;
}

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

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

.flex-column {
  flex-direction: column
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}

.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.text, .text * {
  line-height: 1;
  color: var(--black);
}

p.text, .text > p {
  margin-bottom: 25px;
}

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

.text-green {
  color: var(--green) !important;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 21px 24px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 0;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
}

.btn:hover {
  text-decoration: none;
}

.cover-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  cursor: pointer;
}

.icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon:before, .icon::after {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.block {
  padding: 130px 0 0 0;
}

.block-cyber {
  padding-top: 100px;
}

.block-form {
  padding-top: 83px;
}

@media screen and (min-width: 992px) {
  .grid-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.menu-toggle {
  display: none;
}

@media screen and (max-width: 992px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 999;
    width: 40px;
    height: 40px;
  }
  .menu-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
  }
  .menu-toggle span:nth-child(1) {
    top: 5px;
    left: 0;
  }
  .menu-toggle span:nth-child(2) {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .menu-toggle span:nth-child(3) {
    bottom: 5px;
    left: 0;
  }
  .menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 46%;
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    bottom: 48%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.footer {
  padding: 1px;
}

.footer-logo {
  padding: 1px;
}

.copyright {
  padding: 1px;
}

* {
  font-family: "Roboto Flex", "system-ui", "verdana", "tahoma", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*
.loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -36px;
  width: 72px;
  height: 72px;
  border: 3px dotted #000;
  border-style: solid solid dotted dotted;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 2s linear infinite;
  animation: rotation 2s linear infinite;
  z-index: 222;
}

.loader::after {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px dotted #000;
  border-style: solid solid dotted;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-animation: rotationBack 1s linear infinite;
  animation: rotationBack 1s linear infinite;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.loader::before {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -24px;
  border: 2px dotted #000;
  border-style: solid dotted solid dotted;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-animation: rotationBack 2.5s linear infinite;
  animation: rotationBack 2.5s linear infinite;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.form-messages {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 20;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2rem;
  display: none;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.form-messages.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotationBack {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes rotationBack {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}*/
.header--btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 52px; 
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 34px;
  padding: 0 67px 0 27px;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid #000;
  position: relative;
}

.header--btn span {
  margin-left: 5px;
}

.header--btn:hover {
  text-decoration: none;
}

.header--btn::after {
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 1px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #000;
  transition: all .3s;
  content: "";
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url("../images/am_cyber/icon-arrow.svg");
}

form {
  position: relative;
}

.header-soc {
  display: grid;
    margin: 7px 0 0 auto;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo:first-child {
  width: 94px;
  display: inline-block;
  margin-right: 24px;
} 

.logo:nth-child(2),
.logo:last-child {
    width: 107px
}


.header {
  border-bottom: 1px solid #0e274d;
  padding: 25px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background-color: #fff;
  height: 120px;
}

.hero {
  position: relative;
  height: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 120px;
  background-color: #000;
  padding: 95px 0 94px;
  overflow: hidden;
}


.above-h1 {
  color: #fff;
  width: 100%;
  font-size: 32px;
  margin-top: 80px;
}

.hero-circle1 {
  position: absolute;
  width: 362px;
  height: 185px;
  background-image: url("../images/am_cyber/ty1.png");
  bottom: 0;
  z-index: 9;
}
.hero-circle2 {
  position: absolute;
  width: 362px;
  height: 332px;
  background-image: url(../images/am_cyber/ty2.png);
  right: 0;
  top: 0;
  z-index: 9;
}

.under-h1 {
  color: #fff;
  width: 100%;
  font-size: 24px;
  margin-bottom: 67px;
  max-width: 700px;
  line-height: 1.1;
}
.h1 {
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0;
  -ms-flex-item-align: start;
  align-self: flex-start;
  max-width: 543px;
}

.h1-ty {
  max-width: 100%;
  margin: 19px 0 12px 0;
}

.h1 span {
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 700;
}

.sub-h1 {
  color: #fff;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: auto;
  margin-top: -45px;
  max-width: 436px;
}

.hero-text {
  width: 100%;
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 460px;
}

.hero-text p {
  font-size: 18px;
  color: #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hero-left {
  width: 51%;
}

.hero-right {
  width: 49%;
  margin-top: -72px;
}

.hero-form {
  max-width: 380px;
  background-image: url("../images/am_cyber/formbg.png");
  -webkit-box-shadow: 0px 1px 80px 0px rgba(0, 0, 0, 0.2392156863);
  box-shadow: 0px 1px 80px 0px rgba(0, 0, 0, 0.2392156863);
  padding: 45px 70px;
  border-radius: 16px;
  background-size: cover;
  margin-left: auto;
}

.hedaer-ty {
  background: transparent;
  border: 0;
}

.app-ty {
  background: #000;
  min-height: 100%;
  position: relative
}
 

.hero-ty {
  margin: 0;
  /* height: 100vh; */
  min-height: 700px;
  padding: 95px 0 0;
}

.hero-ty-img {
   position: absolute;
   bottom: 0;
   left: 69%;
   -webkit-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
   transform: translateX(-50%);
   z-index: 1;
   max-width: 543px;
   width: 100%;
   -o-object-fit: contain;
   object-fit: contain;
}
.hero-img {
  position: absolute;
  top: -135px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  max-width: 900px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
 
.icon-hero {
  background-image: url("../images/am_cyber/icon-hero.png");
  width: 42px;
  height: 42px;
  margin-right: 20px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.input-item {
  margin-top: 14px;
}

.input-item input {
  color: #fff;
  padding: 10px 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(0, 0, 0, 0);
  outline: none;
  width: 100%;
  max-width: 220px;
}

.input-item input::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.8;
}

.input-item input::-moz-placeholder {
  color: #fff;
  opacity: 0.8;
}

.input-item input:-ms-input-placeholder {
  color: #fff;
  opacity: 0.8;
}

.input-item input::-ms-input-placeholder {
  color: #fff;
  opacity: 0.8;
}

.input-item input::placeholder {
  color: #fff;
  opacity: 0.8;
}

.input-submit {
  position: relative;
  margin-top: 64px;
}

.soc-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.soc-ln {
  background-image: url("../images/am_cyber/ln.png");
}

.soc-fb {
  background-image: url("../images/am_cyber/fb.png");
}

.btn, .input-submit input {
  width: 220px;
  display: inline-block;
  height: 48px;
  background-color: var(--green);
  padding: 10px 27px;
  border: 0;
  border-radius: 32px;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  text-align: left;
}

.btn-ty {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  width: 261px;
  padding: 0 0 0 50px;
  height: 57px;
  text-align: center;
}

.btn:after, .input-submit:after {
  position: absolute;
  right: 24px;
  top: 2px;
  content: "";
  border-radius: 50%;
  height: 41px;
  transition: all .3s;
  width: 41px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url("../images/am_cyber/arr_whit.png");
  border: 1px solid #fff;
}

.btn-ty:after {
  right: 5px!important;!importan;!importa;!import;!impor;!impo;!imp;!im;!imo;!imop;!imopr;!imop;!im;!i;!;
  width: 51px;
  height: 51px;
}

.input-submit--white input {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.input-submit--white::after {
  border: 1px solid var(--green);
  background-image: url("../images/am_cyber/arr_green.png");
  background-repeat: no-repeat;
  background-position: 50%;
  right: 2px;
  top: 2px;
  background-size: 19px;
  transition: .3s all;
}

.quiz-btn-next:hover:after,
.header--btn:hover:after,
.input-submit--white:hover:after {
  background-image: url("../images/am_cyber/arr_whit.png");
  background-color: var(--green);
  border-color: var(--green);
}

.quiz-btn-next {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  min-width: 257px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-right: 56px;
  white-space: nowrap;
  width: auto;
}

.quiz-btn-prev {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-image: url(../images/am_cyber/arr_right.png);
    background-repeat: no-repeat;
    transform: rotate(180deg);
    z-index: 22;
    background-size: 21px;
    background-position: 50%;
    left: 98px;
    position: absolute;
    cursor: pointer;
}

.quiz-btn-next:after {
  background-image: url("../images/am_cyber/arr_right.png");
  right: 2px;
}

.quiz-btn-next:hover:after {
  background-image: url("../images/am_cyber/arr_right_white.png");
  right: 2px;
}

.block--title {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin: 0 0 20px;
}

.block--subtitle {
  text-align: center;
  font-size: 30px;
  margin: -4px 0 30px;
}

.quiz-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 80px;
}

.quiz-nav-item {
  border-radius: 16px;
  border: 1px solid var(--green);
  display: -webkit-box;
  display: -ms-flexbox;
  background-color: #fff;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff; 
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  height: 86px;
  color: #616262;
}

.quiz-nav-item.active {
  background-color: var(--green);
  color: #fff;
}

.quiz-content {
  margin-top: 15px;
  -webkit-box-shadow: 0px 1px 80px 0px rgba(0, 0, 0, 0.2392156863);
  box-shadow: 0px 1px 80px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 16px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 590px;
  overflow: hidden;
}

.quiz-content-static {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 60px 0 93px 39px;
  width: 288px;
  line-height: 1.1;
  border-right: 1px solid rgba(0, 72, 59, 0.1019607843);
}

.quiz--h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.quiz--h2 span {
  display: block;
}

.quiz-step {
  padding: 40px 20px 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.quiz-step[data-quiz-step="5"] {
  padding: 0;
}

.quiz-end-result {
  padding: 35px 98px 2px 98px;
}

.quiz-step.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.icon-quiz {
  width: 65px;
  height: 65px;
  background-image: url("../images/am_cyber/icon-qst.png");
  display: inline-block;
  margin: 0 0 17px;
}

.quiz-contnent-info {
  width: 100%;
  margin-top: auto;
}

.quiz-contnent-info p {
  font-size: 30px;
}

.quiz-step--title {
  font-size: 48px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.quiz-step-text {
  margin: -18px 0 0;
  max-width: 486px;
  height: calc(100% - 98px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.quiz-step-text p {
  line-height: 1.5;
  font-size: 24px;
}

.quiz-step-text p:last-child {
  margin-top: auto;
}

.quiz-step-text p:first-child {
  margin-bottom: auto;
}

.quiz-step-title--end {
  font-size: 32px;
  margin: 0 0 5px;
}

.quiz-end-item {
  margin-bottom: -4px;
}

.quiz-end-text {
  margin: 13px 0 3px;
  font-size: 20px;
  width: 100%;
  padding: 0 98px;
}

.quiz-end-item p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.quiz-end-item p span {
  font-size: 14px;
  margin-top: -5px;
}

.quiz-end-item b {
  font-size: 24px;
}

.quiz-step-result {
  padding: 11px 83px 21px;
  width: 100%;
  height: calc(100% - 98px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.questions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 51px;
}

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

.question--number {
  font-size: 32px;
  font-weight: 700;
  margin-right: 10px;
}

.question--text {
  line-height: 1.5;
}

.question-answers {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 3px;
}

.question-answers label {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.question-answers label:first-child {
  margin-right: 37px;
}

.question-answers input {
  opacity: 0;
  z-index: 10;
  position: relative;
  cursor: pointer;
}

.question-answers input:checked + .radio-mask {
  background-color: var(--green);
}

.radio-mask {
  position: absolute;
  z-index: 4;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 50%;
}

.radio-text {
  margin-left: 20px;
}

.quiz-btn {
  position: relative;
  background-color: #000;
  height: 98px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 84px 0 0;
  margin: auto -21px 0 -20px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  overflow: hidden;
}

.quiz-btn:after {
  position: absolute;
  content: '';
  background-image: url(../images/am_cyber/quizbgbtn.png);
  background-repeat: no-repeat;
  width: 600px;
  height: 282px;
  bottom: 0;
}

.quiz-btn-end {
  margin: 0;
}

.what-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.what-item {
  border: 1px solid #000;
  border-radius: 16px;
  padding-top: 82px;
  position: relative;
  overflow: hidden;
}

.what-item img {
  width: 294px;
  display: block;
  margin: 0 auto;
}

.what-item-text {
  position: relative;
  background-image: url("../images/am_cyber/bgwh.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #000;
  padding: 18px 20px 18px 30px;
  height: 70%;
}

.what-item-text * {
  color: #fff;
  line-height: 1.2;
}

.what-item-text p {
  margin-top: 13px;
  line-height: 1.7;
}

.what-item-text h3 {
  margin: 0 0 0;
  font-size: 24px;
}

.what-item--num {
  font-size: 32px;
  position: absolute;
  font-weight: 700;
  top: 24px;
  left: 28px;
  color: #666;
}

.what-item:nth-child(1) .what-item-text {
  background-position: 0 -114px;
}

.what-item:nth-child(2) .what-item-text {
  background-position: 0 0;
}

.what-item:nth-child(3) .what-item-text {
  background-position: 0 -154px;
}

.block-speakers {
  position: relative;
}

.speakers-line {
  background-color: #000;
  overflow: hidden;
  height: 149px;
  width: 100%;
  top: 625px;
  position: absolute;
  left: 0;
  z-index: 10;
}

.speakers-line .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

}

.speakers-line span {
  background-image: url("../images/am_cyber/speakbg.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 273px;
  display: block;
  margin-top: -142px;
  margin-left: -60px;
}

.speakers-item img {
  height: 300px;
  -o-object-fit: cover;
  object-fit: contain;
}

.speakers-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
  margin-top: 100px;
}

.speakers-item-info {
  padding: 22px 0;
}

.speakers-item-info * {
  color: #fff;
}

.speakers-item-info h3 {
  font-size: 28px;
  margin: 0;
}

.speakers-item-info p {
  color: #ddd;
  line-height: 1.5;
  max-width: 340px;
  margin-top: 18px;
}

.speakers-item-text {
  margin-top: 3px;
}

.speakers-item-text p {
  font-size: 18px;
  line-height: 1.5;
}

.icon-like {
  background-image: url("../images/am_cyber/icon-like.png");
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 7px;
}

.block-cyber .block--title span {
  text-transform: uppercase;
  display: block;
  line-height: 1.2;
}

.table {
  display: grid;
  grid-template-columns: 7fr 7fr 13fr;
  margin-top: 125px;
}

.table-item {
  border-left: 2px solid #000;
}

.table-item .text {
  padding: 12px 0 18px 65px;
  margin: 0;
  font-size: 24px;
  line-height: 1;
}

.table-item-time {
  border-top: 2px solid #000;
  padding: 18px 0 0 65px;
}

.table-item--num {
  font-size: 32px;
  font-weight: 700;
  padding: 0 0 0 65px;
  margin: -42px 0 0 0px;
  display: block;
}

.icon-time {
  background-image: url("../images/am_cyber/icon-time.png");
  width: 23px;
  height: 23px;
  display: inline-block;
  margin-right: 7px;
}

.icon-infinity {
  background-image: url("../images/am_cyber/icon-infinity.png");
  width: 24px;
  height: 24px;
  display: inline-block;
}

.form-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  -webkit-box-shadow: 0px 1px 80px 0px rgba(0, 0, 0, 0.2392156863);
  box-shadow: 0px 1px 80px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 16px;
  padding: 28px 21px 21px 68px;
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
}

.block-form-left {
  padding-top: 16px;
}

.block-form {
  margin-bottom: 100px;
}

.form-end .input-item input {
  width: 100%;
  max-width: 220px;
  color: #000;
  border-bottom: 1px solid #000;
}

.form-end .input-item input::-webkit-input-placeholder {
  color: #000;
}

.form-end .input-item input::-moz-placeholder {
  color: #000;
}

.form-end .input-item input:-ms-input-placeholder {
  color: #000;
}

.form-end .input-item input::-ms-input-placeholder {
  color: #000;
}

.form-end .input-item input::placeholder {
  color: #000;
}

.block-form-right {
  width: 300px;
  margin-left: auto;
}

.hero-img-mob,
.logo-mob, .quiz-content-mob {
  display: none;
}

@media screen and (max-width: 1200px) {
  .table-item .text, .table-item-time {
    padding-left: 22px;
  }
  .h1, .h1 span {
    font-size: 42px;
    line-height: 1.2;
  }
  .sub-h1 {
    font-size: 28px;
  }
  .quiz-content {
    height: 660px;
  }
}
@media screen and (max-width: 576px) {
  .block--title, .block--subtitle {
    text-align: left;
  } 
 

  .above-h1 {
    margin-top: 40px;
  }

  .logo-c-desk,
  .hero-ty-img,
  .hero-img-desk,
  .logo-desk,
  .header--btn {
    display: none;
  }
  .header {
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
  }
  .hero {
    padding-top: 162px;
    margin: 0;
  }
 
  .logo-c-mob,
  .hero-img-mob,
  .logo-mob {
    display: block;
  }

  .logo:first-child {
      width: 60px;
      margin-right: 15px
  }
  .logo:nth-child(2),
  .logo:last-child {
      width: 67px
  }
}
@media screen and (max-width: 992px) {
  .quiz-btn-prev {
    left: 20px;
  }

  .quiz-btn-next {
    margin-left: auto;
  }
  .quiz-content-static {
    display: none;
  }
  .quiz-content-mob {
    display: block;
    margin-top: 47px;
  }
  .sub-h1 {
    margin-top: 0;
    margin-bottom: 52px;
  }
  .hero-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero-text .text {
    line-height: 1.2;
    margin-bottom: 37px;
  }
  .icon-hero {
    margin: 0 0 10px;
  }
  .block--title {
    font-size: 40px;
  }
  .quiz--h2 {
    display: block;
    width: 100%;
    margin-bottom: 14px;
  }
  .quiz--h2, .quiz--h2 span {
    font-size: 36px;
    display: inline-block;
  }
  .quiz-contnent-info .text {
    line-height: 1.2;
  }
  .block--subtitle, .quiz-contnent-info p {
    font-size: 28px;
  }
  .hero {
    height: auto;
    padding-bottom: 355px;
  }

  .hero-ty {
    min-height: 100vh;
    height: auto;
    padding-bottom: 40px;
  }
  .hero-circle1 {
    width: 300px;
    height: 153px;
  }
  .hero-circle2 {
    width: 300px;
    height: 276px;
  }
  .btn:after {
    right: -15px;
  }
  .hero-img {
    top: auto;
    bottom: -36px;
  }
  .icon-quiz {
    width: 47px;
    height: 47px;
  }
  .quiz-nav-item {
    height: 60px;
    font-size: 16px;
    min-width: 158px;
    padding: 0 20px;
  }
  .quiz-nav {
    width: 100%;
    overflow: auto;
    margin-top: 35px;
  }
  .questions {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 30px;
  }
  .question-answers {
    margin-top: 14px;
  }
  .quiz-content {
    height: auto;
  }
  .quiz-btn {
    padding: 0 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .quiz-btn .btn:after {
    right: 3px;
  }
  .quiz-step-result {
    padding: 0;
    align-content: center;
  }
  .quiz-step-title--end {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .quiz-step.active {
    align-content: space-between;
  }
  .quiz-end-result, .quiz-end-text {
    padding: 20px;
    margin: 0;
  }
  .quiz-step--title {
    margin: 0 0 40px;
    font-size: 32px;
    width: 100%;
  }
  .quiz-step-text {
    height: auto;
  }
  .quiz-step-text p {
    font-size: 16px;
  }

  .quiz-step-text p:last-child {
    margin-top: 40px;
  }
  .block {
    padding-top: 105px;
  }
  .what-list {
    margin-top: 40px;
  }
  .what-list, .speakers-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .speakers-line {
    display: none;
  }
  .speakers-item-info p, .speakers-item-info h3 {
    color: #000;
  }
  .speakers-item-info {
    padding-bottom: 0;
  }
  .icon-like {
    display: none;
  }
  .table {
    width: 100%;
    margin-top: 40px;
    grid-template-columns: 1fr;
  }
  .table-item--num {
    margin: 20px 0 0;
    padding-left: 20px;
  }
  .table-item .text, .table-item-time {
    padding-left: 20px;
  }
  .table-item-time {
    border-top: 0;
    padding: 5px 0 20px 20px;
    border-bottom: 2px solid #000;
  }
  .form-end {
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% - 20px);
    padding: 15px 65px;
  }
  .block-form-right {
    margin-top: 20px;
    margin: 87px -42px 31px;
  }
  .input-submit {
    max-width: 205px;
    position: relative;
  }
  .input-submit:after {
    right: -10px;
  }  

}


@media screen and (max-width: 768px) {
  .hero-left, .hero-right {
    margin: 0;
    width: 100%;
  }

  .hero-form {
    margin: auto;
  }

}
@media screen and (max-width: 374px) {
  .hero-form {
    padding: 40px;
  }
  .quiz-btn-next {
    min-width: 200px;
  }
}