@font-face {
    font-family: 'Roboto Flex';
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/robotoflex/v30/NaNnepOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGbt8jZktqc2V3Zs0KvDLdBP8SBZtOs2IifRuUZQMsPJtUsR4DEK6cULNeUx9XgTnH37Ha_FIAp4Fm0PP1hw45DntW2x0wZGzhPmr1YNMYKYn9_1IQXGwJAiUJVUMdN5YUW4O8HtSoXjC1z3QSabshNFVe3e0O5j3ZjrZCu23Qd4G0EBysQNK-QKavMl1cKq3tHXtXi8mzLjaAQbE.ttf) format('truetype')
}

a,body,center,div,form,header,html,img,label,nav,p,span {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline
}

header,nav {
    display: block
}

body {
    line-height: 1
}

a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: 0 0;
    text-decoration: none;
    color: #000
}

input {
    margin: 0;
    font-size: 100%
}

input[type=checkbox] {
    vertical-align: bottom
}

input[type=radio] {
    vertical-align: text-bottom
}

* {
    font-family: "Roboto Flex",system-ui,verdana,tahoma,sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body,html {
    margin: 0;
    padding: 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased
}

:root {
    --white: #ffffff;
    --black: #000000;
    --blue: #00BCEB
}

img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

a {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    color: var(--black)
}

a:hover {
    color: var(--lblue);
    text-decoration: underline
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    max-width: 1170px;
    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
}

.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%
}

.text,.text * {
    line-height: 1.6;
    color: var(--black)
}

.text>p,p.text {
    margin-bottom: 25px;
    font-size: 18px;
}

.text-center {
    text-align: center
}

.h1 {
    font-size: 66px;
    font-weight: 700;
    margin: 19px 0 11px 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -.4px
}

.h2 {
    font-size: 50px;
    margin: 0 0 54px;
    font-weight: 700
}

.h3 {
    font-size: 20px;
    margin: 0 0 20px;
    font-weight: 600
}

@media screen and (min-width: 768px) {
    .grid-md-2 {
        grid-template-columns:repeat(2,1fr)
    }
}

@media screen and (min-width: 992px) {
    .grid-lg-3 {
        grid-template-columns:repeat(3,1fr)
    }
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -36px;
    width: 72px;
    height: 72px;
    border: 3px dotted #02c87e;
    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;
    display: none
}

.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 #02c87e;
    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
}

.form-messages {
    position: absolute;
    background-color: rgba(255,255,255,.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
}

.checkbox-mask {
    position: absolute;
    top: 0;
    width: 17px;
    height: 17px;
    text-decoration: none;
    border: 0;
    display: flex;
    align-items: center;
    z-index: 10;
    justify-content: center;
}

.checkbox input:checked ~.checkbox-mask:after {
	content: '✔';
	display: block;
}
.checkbox-mask:after {
	font-size: 11px;
}

.form-messages.active{display:-webkit-box;display:-ms-flexbox;display:flex}
@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotationBack {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

@keyframes rotationBack {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

.header {
    border-bottom: 1px solid #0e274d;
    padding: 21px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background-color: #fff
}

.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:last-child {
    width: 107px
}

.header--btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 52px;
    width: 265px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 34px;
    padding: 0 0 0 35px;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #000;
    position: relative
}

.header--btn span {
    margin-left: 5px
}

.header--btn:hover {
    text-decoration: none;
    border-color: #02c87e;
}

.header--btn:hover::after{
    border-color: #02c87e;
}

.header--btn::after {
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 1px;
    width: 45px;
    transition: .3s all;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #000;
    content: "";
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/icon-arrow.svg)
}

main {
    padding-top: 135px
}

.hero {
    padding: 48px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.hero-content {
    max-width: 450px
}

.hero--date {
    font-size: 28px;
    font-weight: 600;
    display: block
}

.hero--date::before {
    display: inline-block;
    margin-right: 20px;
    content: "";
    width: 50px;
    -webkit-transform: translateY(11px);
    -ms-transform: translateY(11px);
    transform: translateY(11px);
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0;
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/icon-calendar.png)
}

.hero--text {
    font-size: 42px;
    margin-bottom: 70px;
    line-height: 1.1
}

.hero--btn {
    width: 244px;
    height: 53px;
    font-size: 20px;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #02c87e;
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    position: relative
}

.hero--btn:hover {
    text-decoration: none;
    border-color: #02c87e;
}

.hero--btn:hover::after {
    background-color: #fff;
    border-color: #02c87e;
}

.hero--btn::after {
    position: absolute;
    left: 99%;
    content: "";
    border-radius: 50%;
    background-color: #02c87e;
    border: 1px solid #02c87e;
    height: 53px;
    width: 53px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/icon-arrow.svg)
}

.hero-img-1 {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 233px;
    max-width: 255px;
    width: 100%
}

.hero-img-1 img {
    width: 100%;
    height: 100%
}

.form-wrapper,.hero-img-1--icon,.hero-img-1--text,.hero-img-2--icon,.hero-img-2-content {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%
}

.hero-img-1--text {
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/hero1bg.png);
    width: 186px;
    height: 58px;
    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;
    position: absolute;
    left: 48px;
    top: 27px
}

.hero-img-1--text,.hero-img-2--text,.hero-img-2--text-2 {
    color: #000;
    font-weight: 600;
    font-size: 20px
}

.hero-img-1--icon {
    top: 15px;
    right: 13px;
    width: 30px;
    height: 30px
}

.hero-img-2--icon {
    bottom: 0;
    left: 0;
    width: 40px;
    height: 40px
}

.hero-img-1--icon,.hero-img-2--icon {
    position: absolute;
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/icon-like.svg)
}

.hero-img-2 {
    margin-left: 30px;
    max-width: 445px;
    height: 570px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative
}

.hero-img-2 img {
    width: 100%;
    height: 100%
}

.hero-img-2-content {
    position: absolute;
    left: 23px;
    bottom: 23px;
    height: 144px;
    width: 285px;
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/hero2bg.png);
    padding: 20px 15px
}

.hero-img-2--text {
    max-width: 140px;
    display: block;
    margin: 0 8px 0;
    line-height: 1.3
}

.hero-img-2--text-2 {
    width: 100%;
    margin-left: 55px;
    margin-top: 28px;
    display: block
}

.about {
    padding: 78px 0 103px 0
}

.prog {
    width: 100%;
    max-width: 730px;
    border: 1px solid #02c87e;
    padding: 50px 65px 62px 65px;
    border-radius: 32px;
    margin: 120px auto
}

.prog-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    margin: 50px 0 63px
}

.prog-nav-info {
    padding-top: 9px;
    background-repeat: no-repeat;
    background-position: 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.prog-nav-info span {
    font-size: 28px;
    font-weight: 600
}

.prog-nav-info span:nth-child(2) {
    font-size: 14px;
    font-weight: 500;
    display: block;
    width: 100%;
    max-width: 285px;
    margin-top: 16px
}

.prog-nav--date {
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/icon-calendar.png);
    background-size: 50px;
    padding-left: 72px
}

.prog-nav--loc {
    background-size: 54px;
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/icon-loc.png);
    padding-left: 77px
}

.prog-timeline--item {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.prog-timeline--item b {
    margin-right: 18px;
    white-space: nowrap
}

.prog-timeline--item span {
    color: #564c4c
}

.speaker {
    position: relative
}

.speaker::after {
    position: absolute;
    content: "";
    background-color: #02c87e;
    width: 200px;
    height: 65px;
    border-radius: 35px;
    z-index: -1;
    right: 0;
    bottom: 144px
}

.speaker h2 {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    text-align: center;
    margin: 10px 0
}

.speaker img {
    width: 350px;
    height: 350px;
    -o-object-fit: contain;
    object-fit: contain
}

.speaker span {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    display: block
}

.form-wrapper {
    border-radius: 32px;
    overflow: hidden;
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/form-bg.png);
    padding: 49px 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    margin-top: 132px
}

.form-wrapper * {
    color: #fff
}

.form-wrapper h2 {
    line-height: 1.1;
    margin-bottom: 32px
}

.form-wrapper .text {
    font-size: 18px
}

.form-info {
    max-width: 340px;
    margin-right: auto
}

.form {
    margin-left: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 100%;
    max-width: 635px;
    border-radius: 30px;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    -webkit-box-shadow: 0 1px 80px 0 rgba(0,0,0,.2392156863);
    box-shadow: 0 1px 80px 0 rgba(0,0,0,.2392156863);
    padding: 40px 48px
}

.inputs-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 17px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 64px
}

.inputs-2 .input-item {
    max-width: 221px
}

.input-item {
    width: 100%
}

.input-item input {
    padding: 12px 0;
    background: 0 0;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.8);
    outline: 0
}

.input-item input::-webkit-input-placeholder {
    font-size: 18px;
    font-weight: 600;
    color: #fff
}

.input-item input::-moz-placeholder {
    font-size: 18px;
    font-weight: 600;
    color: #fff
}

.input-item input:-ms-input-placeholder {
    font-size: 18px;
    font-weight: 600;
    color: #fff
}

.input-item input::-ms-input-placeholder {
    font-size: 18px;
    font-weight: 600;
    color: #fff
}

.input-item input::placeholder {
    font-size: 18px;
    font-weight: 600;
    color: #fff
}

.input-item label {
    font-size: 18px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.acceptance {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 26px
}

.acceptance label {
    font-size: 12px;
    line-height: 1.1;
    max-width: 230px
}

.checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 18px;
    flex: 1 0 18px;
    max-width: 18px;
    border: 1px solid #fff;
    margin-top: -2px;
    margin-right: 12px
}

.checkbox input {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: relative;
    z-index: 20;
    padding-bottom: 0;
}

.checkbox input:checked {
    opacity: 1
}

.input-submit {
    width: 240px;
    margin: 61px auto 64px auto;
    position: relative
}

.input-submit::after {
    position: absolute;
    left: 82%;
    content: "";
    border-radius: 50%;
    background-color: #02c87e;
    height: 53px;
    width: 53px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/icon-arrow.svg)
}

.input-submit input {
    width: 239px;
    display: inline-block;
    text-align: center;
    height: 53px;
    background-color: #02c87e;
    padding: 10px 0;
    border: 0;
    border-radius: 32px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    margin-left: -40px
}

@media screen and (max-width: 1200px) {
    .hero-img-2-content {
        width:252px
    }

    .hero-img-2--icon {
        width: 30px;
        height: 30px;
        bottom: 10px
    }

    .hero-img-2--text {
        margin: 0
    }

    .hero-img-2--text-2 {
        margin-left: 45px
    }

    .hero-img-1--text {
        padding-right: 15px
    }

    .prog {
        padding: 50px 44px
    }

    .speaker img {
        width: 250px;
        height: 200px
    }

    .speaker::after {
        width: 165px;
        height: 54px;
        right: 50px;
        bottom: 143px
    }

    .form-info {
        max-width: 100%
    }

    .form-info br {
        display: none
    }

    .form {
        margin: 0 auto
    }
}

@media screen and (max-width: 992px) {
    .header {
        padding:5px 0
    }

    .hero-img-1--text,.hero-img-2-content {
        left: 15px
    }

    .h1 {
        font-size: 50px
    }

    .h2 {
        font-size: 36px
    }

    .hero--date,.hero--text {
        font-size: 25px
    }

    .hero-img-1--text,.hero-img-2--text,.hero-img-2--text-2 {
        font-size: 16px
    }

    .hero-img-2 {
        margin-left: 15px
    }

    .hero-img-1--text {
        width: 165px;
        background-size: contain
    }

    .hero-img-2-content {
        width: 175px;
        background-size: contain
    }

    .hero-img-2--text {
        margin: 15px 0 0 -6px
    }

    .hero-img-2--text-2 {
        margin-left: 28px;
        margin-top: 3px;
        max-width: 135px
    }

    .hero-img-2-content {
        bottom: -6px
    }

    .hero-img-2--icon {
        bottom: 23px
    }

    .about {
        padding: 50px 0 60px
    }

    .h2 {
        margin-bottom: 40px
    }

    .prog {
        margin: 50px 0;
        padding: 40px 30px
    }

    .speaker {
        text-align: center
    }

    .speaker::after {
        display: none
    }

    .speaker span {
        max-width: 500px;
        text-align: center;
        margin: 0 auto
    }

    .speaker img {
        width: 350px;
        height: 300px
    }

    .input-submit {
        margin-bottom: 20px
    }

    .hero-img-2 {
        max-width: 335px
    }
}

@media screen and (max-width: 768px) {
    .hero-img-2 {
        width:200px
    }

    .hero-img-1 {
        max-width: 205px
    }

    .h1 {
        font-size: 40px
    }

    .h2 {
        font-size: 32px
    }

    .hero--date,.hero--text {
        font-size: 20px
    }

    .hero--date::before {
        height: 38px;
        margin-right: 0
    }

    .hero-img-2--text-2 {
        margin-top: 0
    }

    .about p {
        margin: 0
    }

    .grid {
        gap: 20px
    }

    .prog-nav-info span {
        font-size: 22px
    }

    .prog-nav-info {
        background-size: 40px
    }

    .prog-nav {
        gap: 20px
    }

    .prog-nav-info {
        padding-left: 60px
    }

    .prog-nav {
        margin: 40px 0
    }

    .form {
        padding: 30px;
        border-radius: 20px
    }

    .inputs-2 {
        gap: 20px;
        width: 100%
    }

    .inputs-2 input {
        width: 100%
    }

    .inputs-2 .input-item {
        max-width: 100%
    }

    .form-wrapper {
        padding: 40px
    }
}

@media screen and (max-width: 576px) {
    .header--btn span {
        display:none
    }

    .logo:first-child {
        width: 60px;
        margin-right: 15px
    }

    .logo:last-child {
        width: 67px
    }

    .header--btn {
        font-size: 16px;
        padding-left: 15px;
        width: 160px;
        width: 148px
    }

    main {
        padding-top: 100px
    }

    .h2 {
        font-size: 28px;
        text-align: left;
        margin-bottom: 20px
    }

    .prog-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .prog-nav-info {
        background-size: 34px
    }

    .prog {
        padding: 30px 15px;
        border-radius: 20px
    }

    .prog-timeline--item b {
        white-space: normal;
        display: inline-block;
        max-width: 51px;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 51px;
        flex: 1 0 51px
    }

    .prog-timeline--item {
        font-size: 16px
    }

    .speaker img {
        max-width: 350px;
        width: 100%
    }

    .speaker h2 {
        margin-top: 0
    }

    .form-wrapper {
        margin-top: 50px;
        padding: 58px 20px 0;
        gap: 10px
    }

    .form-wrapper h2 {
        font-size: 36px;
        max-width: 200px;
        margin-bottom: 20px
    }

    .form {
        padding: 32px 20px;
        margin: -13px -20px 0;
        border-radius: 0;
        width: 100%
    }

    .form-info br {
        display: block
    }

    .input-submit {
        width: 100%
    }

    .input-submit input {
        margin-left: 0;
        width: 100%;
        max-width: 240px;
        border-radius: 0
    }

    .input-submit::after {
        left: auto
    }

    .hero-content {
        max-width: 100%
    }
}

.form-messages {
    color: #000;
    font-size: 24px;
    line-height: 1.6;
    text-align: center;
    font-weight: 600
}

.h3 {
    position: relative;
    z-index: 22
}

.input-item input {
    -webkit-appearance: none;
    border-radius: 0
}

.input-item input[type=radio] {
    -webkit-appearance: auto;
    font-size: 14px;
    margin-right: 15px
}

.form-messages {
    color: #000!important
}

.spealers {
    margin-top: 0
}

.hero-content {
    border-radius: 30px;
    border: 2px solid #02c87e;
    padding: 93px 53px 100px 64px;
    width: 100%;
    max-width: 634px
}

.panel {
    display: flex;
    flex-wrap: wrap;
    gap: 125px;
    margin: 120px 0 0
}

.panel .text * {
    font-size: 18px
}

.panel .text ul {
    padding: 0 0 0 29px;
    margin: 18px 0 30px
}

.panel .text li {
    margin-bottom: -4px
}

.panel-left {
    flex: 0 1 350px;
    width: 100%
}

.panel-left img {
    width: 100%;
    max-width: 350px;
    margin-bottom: 40px
}

.panel-speaker h3 {
    text-align: center;
    width: 100%;
    font-size: 28px!important;
    line-height: 1.5;
    margin: 0 0 8px
}

.panel-speaker p {
    font-size: 18px;
    text-align: center
}

.panel-right {
    flex: 1
}

.continue {
    background-color: #f5f5f5;
    border-radius: 32px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 66px 44px;
    margin: 91px 0
}

.continue-left {
    flex: 1;
    padding-top: 50px
}

.continue-right {
    position: relative;
    flex: 0 1 590px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/tnmk-bg.png);
    border-radius: 30px;
    overflow: hidden
}

.continue-right:after {
    position: absolute;
    content: '';
    width: 102px;
    height: 102px;
    top: -10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/tnmk.png);
}

.continue-right img {
    width: 100%;
    height: 100%
}

.h1 {
    color: #02c87e;
    font-size: 66px;
    text-transform: capitalize;
    margin-bottom: 0
}

.hero-info {
    border-radius: 30px;
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/hero.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    padding: 13px 27px 8px 36px;
    flex: 1
}

.hero-info-item {
    border-radius: 30px;
    border: 1px solid #fff;
    margin-block:24px;position: relative;
    z-index: 2;
    padding: 31px 12px 6px 12px;
    width: 100%
}

.hero-info--item-big {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px
}

.hero-info--item-big a:hover {
    text-decoration: underline;
}

.hero-info--item-big a,
.hero-info--item-big p {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    display: flex;
    text-decoration: none;
    gap: 12px
}

.hero-info--item img {
    width: 74px;
    margin: 0 0 -5px 5px
}

.hero-info--item-big .icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px
}

.hero-info--item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-left: 9px;
    margin: 10px 0 40px;
    max-width: 336px
}

.hero-info--item p {
    font-size: 20px;
    color: #fff;
    line-height: 1
}

.hero-info--item .icon {
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    margin: -30px 0 0
}


.hero-info--item-last .icon {
    margin: 0
}


.icon {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat
}

.icon-calendar {
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/icon-calendar.png)
}

.icon-location {
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/icon-loc.png)
}

.icon-check {
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/check.png)
}

.hero {
    gap: 30px
}

.hero--btn {
    border: 1px solid #000;
    background-color: transparent;
    font-weight: 500
}

.hero--btn::after {
    left: calc(100% + 1px);
    border: 1px solid #000;
    background-color: transparent
}

.speaker::after {
    display: none
}

.input-submit input,.input-submit::after {
    background-color: #02c87e;
    border: 1px solid #02c87e;
    transition: .3s all
}

.input-submit:hover::after {
    background-color: transparent;
    background-image: url(https://am-bits.com/wp-content/themes/am-bits/assets/1850/images/icon-arrow-b.svg)
}

.input-item label {
    display: block
}

.prog {
    border-color: #02c87e
}

.panel>.h2 {
    display: none
}

@media screen and (max-width: 1200px) {
    .hero-content {
        max-width:550px;
        padding: 93px 36px 70px 35px
    }

    .continue-right {
        flex: 0 1 490px
    }

    .h2 {
        font-size: 46px
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
        padding:30px
    }

    .spealers {
        margin-top: 50px
    }

    .h1 {
        font-size: 45px;
        margin: 20px 0
    }

    .hero-info {
        padding: 13px 20px 8px
    }

    .hero-info-item {
        padding: 20px 12px 6px 12px;
        margin-block:15px}

    .hero-info--item-big .icon {
        width: 40px;
        height: 40px
    }

    .hero-info--item-big p {
        font-size: 24px
    }

    .hero-info--item p {
        font-size: 18px
    }

    .hero-content {
        max-width: 400px
    }

    .hero-info--item {
        margin-bottom: 25px
    }

    .hero-info--item-last {
        margin: 0 0 25px
    }

    .hero-info--item-last .icon {
        margin: 0
    }

    .panel {
        gap: 30px
    }

    .h2 {
        font-size: 40px
    }

    .continue-right {
        flex: 0 1 290px
    }
}

@media screen and (max-width: 768px) {
    .panel>.h2 {
        display:block
    }

    .panel-right .h2 {
        display: none
    }

    .panel-left img {
        max-width: 250px
    }

    .hero {
        flex-direction: column;
        padding: 0
    }

    .continue-left,.continue-right,.hero-content,.panel-left,.panel-right {
        width: 100%;
        max-width: 100%
    }

    .continue-left,.continue-right,.panel-left,.panel-right {
        flex: auto
    }

    .spealers {
        margin-top: 20px
    }

    .panel-left {
        text-align: center
    }

    .continue {
        margin-top: 50px;
        padding: 30px;
        border-radius: 16px
    }

    .h2 {
        font-size: 32px
    }

    .panel .text li {
        margin-bottom: 1px
    }
}

@media screen and (max-width: 576px) {
    .hero {
        flex-direction:column
    }

    .speaker--img {
        position: relative
    }

    .speaker--img img {
        height: auto;
        max-height: 300px
    }

    .input-submit input {
        border-radius: 32px
    }

    .continue-right:after {
    	top: auto;
    	bottom: 0;
    }
}
