/* css reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* 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;
}
/* css reset */







html {
    font-size: 10px;
}

@media (max-width: 1300px) {
    html {
        font-size: .7vw;
    }
}
@media (max-width: 767px) {
    html {
        font-size: 10px;
    }
}


body{
    height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: var(--tg-theme-secondary-bg-color);
    color: var(--tg-theme-text-color);
}




.logo {
    width: 160px;
    cursor: pointer;
}

.header {
    background-color: var(--tg-theme-header-bg-color);
    z-index: 89;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.header_wrapper {
   
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;   
    padding-right: 30px;
    padding-left: 30px;
    box-sizing: border-box;
}


.nav_menu {
    display: flex;
    width: 400px;
    /* width: 470px; */
   justify-content: space-between;
}

.nav_item {
    text-decoration: none;
    cursor: pointer;
    font-size:  1.6rem;
    padding: 0.6rem 0.8rem;
    color: #323D26;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}

.nav_item:hover {
    background-color: #efefef;
    color: #000;
}



.burger {
    display: none;
}

.burger span {
    position: relative;
    display: block;
    width: 24px;
    height: 14px;
    margin: auto;
}
.burger span i {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    width: inherit;
    height: 3px;
    background-color: var(--tg-theme-button-color);
    border-radius: 4px;
    transition: top .35s ease-in-out,background-color .35s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000;
    transform: translateZ(0);
}

.burger span i:first-child {
    top: 0;
}
.burger span i:nth-child(2) {
    top: 6px;
}

.burger span i:last-child {
    top: 12px;
}


.burger.active span i:first-child {
    opacity: 1;
    top: 6px;
    transition: top .35s ease,width .35s ease .35s,transform .5s ease .35s,background-color .35s ease;
    transform: rotate(45deg);
}

.burger.active span i:nth-child(2) {
    opacity: 0;
    transition: opacity 50ms ease .35s;
}

.burger.active span i:last-child {
    opacity: 1;
    top: 6px;
    transition: top .35s ease,width .35s ease .35s,transform .5s ease .35s,background-color .35s ease;
    transform: rotate(-45deg);
}



.phone_menu {
    padding-bottom: 15px;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 999;
    animation: burgerAnimation2 0.5s ease-in-out;
}

.phone_menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav_link {
    text-decoration: none;
    color: var(--tg-theme-text-color);
    margin-bottom: 25px;
    display: inline-flex;
    font-size: 2.4rem;
    line-height: 100%;
}
.nav_link:hover {
    color: var(--tg-theme-link-color);
}

.open {
    display: flex;
   
    
}


@media (max-width: 1024px) {
    .nav_menu {
        display: none;
    }
    .header_wrapper{
        height: 61px;
    }

    .burger {
        display: flex;
        cursor: pointer;
    }
}

@media (max-width: 767px){
    .header_wrapper{
        height: 61px;
        padding-left: 20px;
        padding-left: 20px;
    }
}


@keyframes burgerAnimation2 {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }

}



.Prime{
    overflow: hidden;
    margin-bottom: 16rem;
    padding-top: 168px;
}


.Prime_wrapper{
    display:flex;
    align-items: center;
    justify-content: space-between;
}


.content_wrapper{
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    box-sizing: border-box;
    flex-wrap: nowrap;
}


.left_container{
    width: 100%;
    max-width: 71rem;

}

.prime_title{

    font-weight: 900;
    font-size: 8rem;
    line-height: 120%;
    margin: 0 0 20px;
}

.prime_description{
    max-width: 550px;
    margin:0; 
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 150%;
}

.prime_description:not(:last-child){
    margin-bottom:3rem ;
}

.prime_actions{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}


.btn{
    position: relative;
    display: inline-flex;
    cursor: pointer;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    border-radius: 5rem;
    transition: all .25s ease-in-out;
    text-decoration: none;
    
}

.btn--primary{
    background-color: #007bfb;
    color: #fff;
}

.logout-btn {
   cursor: pointer;
   margin: 0 auto;
   text-align: center;
   font-size: 1.5rem;
   margin-top: 2rem;
}

.btn--large{
    height: 7rem;
    padding: 0 4rem;
    font-weight: 700;
    font-size: 1.9rem;
    border: none !important;
}



.icon-left{
    margin-right: 1rem;
}



.telegram-icon{
    display: inline-block;
    width: 2em;
    height: 2em;
    vertical-align: middle;
    transition: fill .25s ease;
 

}

.arrow-icon{
    margin-left: 1rem;
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: #000;
    transition: fill .25s ease;
    
}

.right_container{
    width: 62rem;
    margin-right: -10%;

}

.right_container img{
    width: 100%;
    height: auto;
}

.arrow-link{
    display: inline-flex;
    color: #000;
    position: relative;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 100%;
    background-color: transparent;
    text-decoration: none;
    /* fill: currentColor */
    padding: 10px 13px;
    transition: 0.35s;
    border-radius: 5rem;
}


/* .arrow-link:before{
    opacity: 0;
    content: " ";
    position: absolute;
    left: -12px;
    right: -12px;
    background-color: red;
    bottom: 0;
    top: 0;
    
} */

.arrow-link:hover{
    background-color: #3056D3;
    fill: #fff;
    color: #fff;
    
}

.arrow-link:hover .arrow-icon {
    fill: #fff;
}



.btn:hover{
    background-color: #3056D3;
    fill: #fff;
    color: #fff;
}


@media (max-width: 1024px){
    .Prime{
        padding-top: 96px;
        margin-bottom: 12rem;
    }
    .prime_title{
        font-size: 5rem;
    }
    .right_container{
        margin-right: 5%;
    }

}


@media (max-width: 767px) {
    .Prime{
        margin-bottom: 5rem;
    }
    .Prime_wrapper{
        position: relative;
        display: block;
        padding-bottom: 0px;
    }
    .content_wrapper{
        padding-left: 20px;
        padding-right: 20px ;
    }
    .left_container{
        max-width: 100%;
    }
    .right_container{
        width: auto;
        margin-right: -10px;
        margin-left: -15px;
    }

    .prime_title{
        font-size: 3.6rem;
        text-align: center;
    }
    .prime_description:not(:last-child)
    {
        margin-bottom: 2.4rem;

    }
    .prime_description{
        max-width: 100%;
        text-align: center;
        font-size: 1.8rem;
    }
    .prime_actions{
        position:absolute;
        right: 20px;
        bottom: 0;
        left: 20px;
        flex-direction: column;
    }
   
}





.doing {
    width: 100%;
}

.doing_wrapper {
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    box-sizing: border-box;
}



.doing_item1 {
    cursor: pointer;
    align-items: center;
    background-color: #323d46;
    color: #fff;
    display: flex;
    justify-content: space-between;
    min-height: 100%;
    padding: 3rem;
    border-radius: 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.doing_item1__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.doing_item1__leftside {
    
    max-width: 605px;
    padding-right: 55px;
}

.doing_item1__rightside {
    max-width: 400px;
    display: flex;
}

.doing_item1__title {
    font-weight: 750;
    font-size: 3rem;
    line-height: 120%;
    margin: 0 0 30px;
}
.doing_item1__description {
    margin: 0 0 30px;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 150%;
}


.pdfExample {
    width: 100%;
    transition: 0.3s;
 
}

.example-btn {
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    outline: none;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 100%;
}

.arrowsvg {
    margin-left: 5px;
}

.doing {
    width: 100%;
    margin-bottom: 16rem;
}

.doing_wrapper {
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    box-sizing: border-box;
}



.doing_item1 {
    text-decoration: none;
    cursor: pointer;
    align-items: center;
    background-color: var(--tg-theme-accent-text-color);
    color: var(--tg-theme-text-color);
    display: flex;
    justify-content: space-between;
    min-height: 100%;
    padding: 5rem;
    border-radius: 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
}



.doing_item1__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 767px) {
    .doing_item1 {
        padding: 30px 24px;
    }

    .doing_item1__container {
        flex-direction: column;
        align-items: center;
    }
    .pdfExample {
        margin-top: 15px;
    }

}


.doing_item1__leftside {
    max-width: 605px;
    padding-right: 55px;
}

.doing_item1__rightside {
    max-width: 400px;
    display: flex;
}

.doing_item1__title {
    font-weight: 750;
    font-size: 5.2rem;
    line-height: 120%;
    margin: 0 0 30px;
}

@media (max-width:767px) {
    .doing_item1__leftside {
        padding: 0;
    }

    .doing_item1__title {
        font-size: 3rem;
    }
    .doing_item1__rightside {
        
    }
}

.doing_item1__description {
    width: 100%;
    margin: 0 0 30px;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 150%;
}

@media (max-width:1200px) {
    .doing_item1__description {
        font-size: 2rem;
    }
}
@media (max-width:767px) {
    .doing_item1__description {
        font-size: 1.8rem;
    }
}


.pdfExample {
    width: 100%;
    height: auto;
    transition: transform 0.4s;
 
}

.example-btn {
    cursor: pointer;
    background-color: transparent;
    color: var(--tg-theme-text-color);
    display: flex;
    align-items: center;
    outline: none;
    border: none;
    font-weight: 600;
    font-size: 1.8rem;
    padding: 10px;
    line-height: 100%;
    border-radius: 25px;
    transition: 0.4s;
}
.arrowsvg {
    margin-left: 5px;
    fill: var(--tg-theme-text-color);
}

.doing_item1:hover .example-btn {
    background-color: var(--tg-theme-button-color);
}
.doing_item1:hover .pdfExample {
    transform: scale(1.05);
}

.doing_items2_3 {
    display: flex;
}

.doing_item2 {
    width: 50%;
    padding-right: 1.5rem;
    
    box-sizing: border-box;
}

.doing_item2__container {
    display: flex;
    justify-content: space-between;
    min-height: 100%;
    background-color: var(--tg-theme-section-bg-color);
    padding: 5rem;
    border-radius: 20px;
    box-sizing: border-box;
}

.doing_item2__text {
    width: 100%;
}

.doing_item2__title {

    font-weight: 900;
    font-size: 4rem;
    line-height: 120%;
    margin: 0 0 20px;
}

.doing_item2__description {
    margin: 0;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 150%;
    margin-bottom: 3rem
}

.doing_item3 {
    width: 50%;
    
    padding-left: 1.5rem;
    box-sizing: border-box;

    text-decoration: none;
    
}

.doing_item3__container {
    flex-direction: column;
    background-color: var(--tg-theme-section-header-text-color);
    color: var(--tg-theme-text-color);
    display: flex;
    justify-content: space-between;
    min-height: 100%;
    padding: 5rem;
    border-radius: 20px;
    box-sizing: border-box;
}
.doing_item3__img {
    max-width: 353px;
    margin: 0 auto;
    
}

.checkbtn {
    margin-top: 30px;
    font-size: 18px;
    width: 240px;
    /* width: 51%; */
}

.doing_item3:hover .example-btn {
    background-color: #3056D3;
}
.doing_item3:hover .pdfExample {
    transform: scale(1.05);
}

@media (max-width:767px) {
    .doing_items2_3 {
        flex-wrap: wrap;
    }
    .doing_item2, .doing_item3  {
        margin: 0;
        padding: 0;
        width: 100%;
        display: block;
        margin-bottom: 30px;
    }

    .doing_item2__container, .doing_item3__container {
        padding: 30px 24px;
    }

    .doing_item2__title {
        margin-bottom: 2rem;
        font-size: 2.8rem;
    }

    .doing_item2__description {
        font-size: 1.8rem;
        
    }
}

.works {
    margin-bottom: 16rem;
}

.works_wrapper {
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    box-sizing: border-box;
}

.works_title {
    font-weight: 700;
    font-size: 5.2rem;
    line-height: 120%;
    margin: 0 0 5rem;
    text-align: center;
}


.works_box{
    overflow: hidden;
    position: relative;
    background-color: #fff;
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
    border-radius: 3rem;
}
/* .yt-lite>.lty-playbtn, .yt-lite>.lty-playbtn:before {
    
    transform: translate3d(-50%,-50%,0);
} */
.yt-lite {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: 50%;
    background-size: cover;
    cursor: pointer;
}

.yt-lite:after {
    content: "";
    display: block;
    
    padding-bottom: var(--aspect-ratio);
}

.stats{
    margin-bottom: 16rem;
    padding: 8.5rem;
    background-color: var(--tg-theme-accent-text-color);
}

.yt-lite>iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}



.activated {
    display: none;
}


.stats_wrapper{
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    box-sizing: border-box;
}



.stats_row{
    display: flex;
    flex-wrap: wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
    color: var(--tg-theme-text-color);
}

.stats_column{
    width: 33.333333%;
    box-sizing: border-box;
}

.stat_item_title{
   
    font-size: 5.2rem;
    line-height: 120%;
    font-weight: 900;
    margin: 0 0 12px;
    white-space: nowrap;
    
}

.stat_item_description{
    max-width: 325px;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 140%;
    margin: 0;
}


@media (max-width: 1024px) {
    .stats{
        margin-bottom: 12rem;
    }
    .stats_wrapper{
        padding-right: 30px;
        padding-left: 30px;
    }
}


@media (max-width: 767px) {
    .stats{
        margin-bottom: 8rem;
        padding: 70px 0 ;
    }
    .stats_wrapper{
        padding-right: 20px;
        padding-left: 20px;
    }
    .stats_column:not(:last-child){
        margin-bottom: 70px;
    }
    .stats_column{
        width: 100%;
        margin-bottom: 0;
    }
    .stat_item_title{
        margin-bottom: 8px;
        font-size: 5.2rem;
        
    }
    .stat_item_description{
        max-width: 275px;
        font-size: 1.4rem;
    }
}






.yt-lite>.lty-playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 46px;
    background-color: #212121;
    z-index: 1;
    opacity: .8;
    border-radius: 14%;
    transition: all .2s cubic-bezier(0,0,.2,1);
}
.yt-lite>.lty-playbtn, .yt-lite>.lty-playbtn:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
    border: none;
}



.yt-lite>.lty-playbtn:before {
    border: none;
    content: "";
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 11px 0 11px 19px;
    
}

.lty-playbtn {
    cursor: pointer;
}


.works_box:hover .lty-playbtn {
    background-color: red;
    opacity: 1;
}

@media (max-width: 767px) {
    .works_title {
        font-size: 3rem;
        margin-bottom: 30px;
    }
}

.howmatch {
    margin-bottom: 16rem;
}

.howmatch_wrapper{
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    box-sizing: border-box;

}

.howmatch_link {
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 16rem;
    padding: 5rem;
    border-radius: 2rem;
    background-color: var(--tg-theme-section-bg-color);
    color: var(--tg-theme-text-color);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.howmatch_link:before {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(/images/howmatchIMG.png) 100% 100% no-repeat;
    background-size: auto 90%;
    transition: transform .6s ease;
    transform-origin: right bottom;
    border-radius: 20px;
    pointer-events: none;
}

.howmatch__title {
    max-width: 622px;
    font-weight: 700;
    font-size: 5.2rem;
    line-height: 120%;
    margin: 0 0 20px;

}


.howmatch__label {
    display: inline-flex;
    align-items: center;
    height: 32px;
    margin-bottom: 34px;
    padding: 0 20px;
    background-color: var(--tg-theme-text-color);
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 100%;
    letter-spacing: 1px;
    color: var(--tg-theme-section-bg-color);
    text-transform: uppercase;
}

.howmatch__from {
    font-size: 4rem;
    line-height: 120%;
    font-weight: 600;
    margin: 0 0 20px;
}


.howmatch_price {
    display: flex;
    align-items: baseline;
    margin-bottom: 40px;

}

.howmatch_price__value {
    font-weight: 700;
    font-size: 8rem;
    line-height: 100%;
}

.howmatch_price__value span {
    background: var(--tg-theme-link-color);
    display: block;
    padding-bottom: 2px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.howmatch_price__text{
    position: relative;
    top: -10px;
    margin-left: 25px;
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 100%;
    color: var(--tg-theme-hint-color);
}

.howmatch-btn {
    color: var(--tg-theme-button-text-color);
}

.howmatchsvg {
    padding-left: 5px;
    fill: var(--tg-theme-button-text-color);
    transition: 0.4s;
}

.howmatch_link:hover::before  {
    transform: scale(1.05);
}

.howmatch_link:hover .howmatch-btn {
    background-color: var(--tg-theme-button-color);
    color: var(--tg-theme-button-text-color);
}
.howmatch_link:hover .howmatchsvg {
    fill: #fff;
}

.howmatch_text{
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 150%;
    text-align: center;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}


@media (max-width: 767px) {
    .howmatch__title {
        font-size: 3rem;
        max-width: 100%;
    }

    .howmatch__label {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 1.2rem;
    
    }
    .howmatch__from {
        margin-bottom: 2rem;
        font-size: 2.8rem;
    }
    .howmatch_price {
        margin-bottom: 30px;
    }
    .howmatch_price__value {
        font-size: 6.4rem;
    }
    .howmatch_price__text {
        top: -5px;
        margin-left: 20px;
        font-size: 2rem;
    }
    .howmatch_link:before {
        background-size: 60% auto;
    }
}


@media (max-width: 1024px) {
    .howmatch_link {
        margin-bottom: 12rem;
    }
}


@media (max-width: 767px){
    .howmatch_link {
        margin-bottom: 8rem;
        padding: 64px 24px 280px;
    }
    .howmatch_text {
        font-size: 1.8rem;
    }
}



.whatelse {
    margin-bottom: 16rem;
}

.whatelse_wrapper {
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    box-sizing: border-box;
}

.whatelse_title {
    font-weight: 700;
    font-size: 5.2rem;
    line-height: 120%;
    margin: 0 0 5rem;
}

.whatelse_item {
    margin: 0;
}

.whatelse_item1 {
    background-color: var(--tg-theme-section-bg-color);
    color: var(--tg-theme-text-color);
    margin: 0;
    margin-bottom: 6rem;
    margin-top: 3rem;
}

.whatelse-btn {
    transition: 0.4s;
    color: var(--tg-theme-accent-text-color);
    fill: var(--tg-theme-accent-text-color);
}

.whatelse_item1:hover .whatelse-btn {
    /* background-color: #007bfb; */
    color: #fff;
}
.whatelse_item1:hover .whatelse-btn {
    fill: #fff;
}

/* section officers */



.officers{
    margin-bottom: 16rem;
}


.officers_wrapper{
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    box-sizing: border-box;

}


.officers_title{
    font-weight: 700;
    font-size: 5.2rem;
    line-height: 120%;
    margin: 0 0 3rem;
    text-align: center;
}

.officers_text{
    margin-bottom: 5rem;
    text-align: center;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 150%;
}



.officers_grid{
    display: flex;
    flex-wrap: wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}

.officers_grid_col{
    margin-bottom: 3rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    box-sizing: border-box;
    width: 33.3333333%;
}

.officer_card{
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.officer_card_photo{
    overflow: hidden;
    border-radius: 3rem 3rem 0 0;
}

.officer_card_photo>img{
    width: 100%;
    height: auto;
}


.officer_card_body{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 2.4rem;
    background-color: var(--tg-theme-bg-color);
    border-radius: 0 0 3rem 3rem;
    box-sizing: border-box;
}

.officer_body_label{
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 100%;
    color: #A1A1A1;
}

.officer_body_title{
    margin: 0 0 1.2rem;
    font-weight: 600;
    font-size: 2.8rem;
    line-height: 150%;
}

.officer_body_social{
    display: flex;
   margin-top: auto;
   
    
}

.officer_body_social>a:not(:last-child){
    margin-right: 12px
}

.officer_body_social>a {
    font-size: 2rem;
    color: var(--tg-theme-link-color);
}







svg.icon{
    display: inline-block;
    width: 1em ;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    transition: fill .25s ease;
}


.icon:hover{
    fill: var(--tg-theme-text-color);
   
}




/* officers adaptive media */
@media (max-width:767px) {   
    .officers{
        margin-bottom: 8rem;
    }
    .officers_text{
        font-size: 1.8rem;
    }
    .officers_title{
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .officers_grid_col{
        width: 100%;
        padding: 0 20px 0 0
    }
    .officers_grid_col:first-child{
        padding-left: 20px;
    }

    .officers_list{
        overflow: hidden;
        overflow-x: auto;
        flex-wrap:nowrap;
        margin-right: -20px;
        margin-left: -20px;
        padding-bottom: 18px;
       
    }
    .officer_card{
        min-width: 246px;
    }
    .officer_card_body{
        padding: 20px;
    }
    .officer_body_label{
        font-size: 1.6rem;
    }
    .officer_body_title{
        font-size: 2rem;
    }
}


@media (max-width:1024px) {   
   .officers{
       margin-bottom: 12rem;
    }
}



.boximg {
    object-position: 35px;
    object-fit: contain;
    max-width: 40rem;
    height: auto;
    transition: transform 0.4s;
    width: 100%;
}

.stolencrypto {
    max-width: 60rem;
}


.stolencrypto__right {
    width: 100%;
    max-width: 40rem;
}

.infoGuard {
    position: absolute;
    left: 28%;
    display: flex;
    align-items: center;
    border: 1px solid var(--tg-theme-hint-color);
    border-radius: 1.4rem;
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    /* width: 300px; */
    margin-left: 10px;
    max-width: 45.5rem;
}

.infoGuard_inner {
    line-height: 140%;
    font-size: 1.5rem;
    color: var(--tg-theme-hint-color);
    margin-left: 10px;
}


.whateles-btn1{
    max-width: 275px;
}

.whatelse_bot {
    display: flex;
    align-items: center;
}
@media (max-width:1135px) {
    .whatelse_bot {
        display: flex;
        /* flex-direction: column; */
    }
    .infoGuard {
        
        margin: 0;
        /* margin-top: 10px; */
    }
}
@media (max-width:767px) {
    .whatelse_bot {
        display: flex;
        /* flex-direction: column; */
    }
    .infoGuard {
        margin: 0;
        margin-top: 10px;
    }
}


.yearstats {
    margin-bottom: 16rem;
}
.why {
    margin-bottom: 16rem;
}

@media (max-width: 1024px) {
    .yearstats, .doing, .works, .stats, .howmatch, .whatelse, .why {
        margin-bottom: 12rem;
    }
}
@media (max-width: 767px) {
    .yearstats, .doing, .works, .stats, .howmatch, .whatelse, .why {
        margin-bottom: 8rem;
    }
}


.yearstats__wrapper {
    text-align: center;
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    box-sizing: border-box;
}
    
.yearstats_label {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 150%;
}

.yearstats_text {
    font-weight: 900;
    font-size: 10rem;
    line-height: 120%;
}

@media (max-width:1024px) {
    .yearstats_label {
        margin-bottom: 12px;
        font-size: 1.6rem;
    }
    .yearstats_text {
        font-size: 4.8rem;
    }
}




.why_title {
    font-weight: 700;
    font-size: 5.2rem;
    line-height: 120%;
    margin: 0 0 5rem;
}


.lockImg {
    max-width: 225px;
}

.why_items12 {
    margin-bottom: 30px;
}

.why_item3 {
    width: 66.666%;
}
.why_item4 {
    width: 33.333%;

}

.whyitem4cont {
    background-color: var(--tg-theme-hint-color);
}


.coinsimg {
    max-width: 185px;
}

.why_item__description small {
    display: block;
    font-size: 1.4rem;
    line-height: 140%;
    color: var(--tg-theme-hint-color);
}

.suppImg {
    max-width: 40rem;
    margin-bottom: -15%;
    margin-left: -10%;
}

@media (max-width: 767px) {
    .why_items34 {
        display: flex;
        flex-direction: column;
    }
    .why_item3 {
        width: 100%;
    }
    .why_item4 {
        width: 100%;
    }
    .coinsimg {
        max-width: 130px;
    }
}



.doing_item2__description b span {
    font-size: 3.2rem;
    line-height: 140%;
    white-space: nowrap;
    font-weight: 900;
}


.faq {
    margin-bottom: 16rem;
}


.faq_title {
    font-weight: 700;
    font-size: 5.2rem;
    line-height: 120%;
    margin: 0 0 5rem;
    text-align: center;
}

.faq__container {
    display: flex;
    justify-content: space-between;
}

.notfindquestion_info {
    text-align: left;
    align-self: flex-start;
    position: -webkit-sticky;
    position: sticky;
    top: 163px;
    width: 100%;
    max-width: 39rem;
    min-width: 39rem;
    padding: 4rem 4rem 3rem;
    border-radius: 2rem;
    background-color: rgba(167,234,255,.2);
    box-sizing: border-box; 
}

.notfindquestion_title {
    margin: 0 0 2rem;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 140%;
    color: #183b56;
}

.notfindquestion_description {
    margin: 0 0 2rem;
    font-size: 1.8rem;
    line-height: 140%;
    color: #323d46;
}

.notfindquestion_link::before {
    content: " ";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    border-radius: 1.6rem;
    transition: transform .25s ease-in-out;   
}


.notfindquestion_link {
    
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    cursor: pointer;
    
}

.notfindquestion_link:hover::before {
    transform: scale(1.05);
}



.notfindquestion_link__icon {
    display: flex;
    align-items: center;
    margin-right: 12px;
    font-size: 2.8rem;
}
.notfindquestion_link__icon svg {
    fill: #34aadf;
}

.notfindquestion_link__body h4 {
    margin: 0 0 3px;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 100%;
    color: #34aadf;
}

.notfindquestion_link__body p {
    margin: 0;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 100%;
    color: #82b2c8;
}


.notfindquestion_note small {
    display: block;
    font-size: 1.2rem;
    line-height: 140%;
    color: #064c61;
}

b {
    font-weight: bolder;
}


.faq_list {
    width: 67rem;
    margin-top: 10px;
    padding-left: 11rem;
}


.accordion_item {
    border-bottom: 1px solid var(--tg-theme-subtitle-text-color);
    padding-bottom: 1.5rem;
    text-align: left;
    height: auto;
}

.accordion_item:not(:last-child) {
    margin-bottom: 1rem;
}


.accordion_heading:before {
    content: " ";
    position: absolute;
    top: 4.7rem;
    right: 0;
    width: 2.4rem;
    height: 0.3rem;
    background-color: var(--tg-theme-button-color);
    border-radius: 2px;
}

.accordion_heading:after {
    content: " ";
    position: absolute;
    top: 3.6rem;
    right: 1rem;
    width: 0.3rem;
    height: 2.4rem;
    background-color: var(--tg-theme-button-color);
    border-radius: 2px;
    transition: all .25s ease-in-out;
}


.accordion_heading {
    margin: 0;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 150%;
    position: relative;
    padding: 3rem 4rem 1.5rem 0;
    font-weight: 500;
    line-height: 130%;
    cursor: pointer;
}

.accordion_content {
    overflow: hidden;
    padding-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 140%;
    color: var(--tg-theme-subtitle-text-color);
    pointer-events: none;
}


.accordion_item.accordion_is-active .accordion_heading:after {
    opacity: 0;
    transform: rotate(90deg);
}


.slideToggle_container {
    overflow: hidden;
    max-height: 0px;
    text-align: left;
    transition: all 0.5s ease-in-out ;
}


.accordion_item.accordion_is-active  .slideToggle_container {
    max-height: 500px ;
}   





@media (max-width: 767px) {
    .faq__container {
        flex-direction: column-reverse;
    }
    .faq_list {
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 30px;
        padding-left: 0;
    }
    .notfindquestion_info {
        top: 0;
        min-width: 100%;
        padding: 30px 24px;
    }
}


@media (max-width: 1024px) {
    .faq {
        margin-bottom: 12rem;
    }
}
@media (max-width: 767px) {
    .faq {
        margin-bottom: 8rem;
    }
}















.footer {
    padding: 3rem 0 4rem;
    background-color: var(--tg-theme-header-bg-color);
    width: 100%;
}

.footer_wrapper {
    width: 100%;
    max-width: 1230px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    box-sizing: border-box;
}


.footerLogo{
    max-width: 24rem;
    margin-bottom: 30px;
}

.footer_top {
    margin-bottom: 4rem;
    border-bottom: 1px solid #323d46;
    padding-bottom: 4rem;

}

.footer_requisites{
    max-width: 320px;
}

.footer_requisites p {
    margin: 0;
    text-transform: uppercase;
    font-size: 1.6rem;
    line-height: 140%;
    color: var(--tg-theme-hint-color);
    margin-top: 10px;
}

.footer_requisites p b {
    display: block;
    font-weight: 550;
    font-size: 1.8rem;
    line-height: 18px;
    color: var(--tg-theme-text-color);
}


.footer_nav {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .footer_nav{
        flex-wrap: wrap;
    }
}

.footer_links li{
    margin-bottom: 1.5rem;

}
.footer_links li a{
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all .25s ease-in-out;
    padding: 6px 8px;
    font-weight: 600;
    font-size: 1.6rem;
    display: inline-flex;
    align-items: center;
}

.footer_links ul li a:hover {
    background-color: hsla(0,0%,100%,.1);
}


.footer_links h4 {
    margin: 0 0 2rem;
    font-weight: 400;
    font-size: 2rem;
    line-height: 100%;
    color: #a1a1a1;
}

.footer_links ul li {
    display: flex;
}

.footer_links--social {
    max-width: 32%;
}

.footer_links--social ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer_links--social ul li {
    width: 50%;
}

@media (max-width: 767px) {
    .footer_links--social ul li {
        width: 100%;
    }
}


.footer_links ul li a svg {
    position: relative;
    margin-right: 1.2rem;

    font-size: 2.5rem;
    color: #1d1d1d;
}



.footer_copy p {
    margin: 0;
    margin-top: 40px;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 100%;
    color: var(--tg-theme-hint-color);
}



@media (max-width: 767px) {
    .yearstats__wrapper, .doing_wrapper, .works_wrapper, .stats_wrapper, .howmatch_wrapper, .whatelse_wrapper, .why__wrapper, .officers_wrapper, .footer_wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}


@media (min-width: 767px) {
    .phone_item {
        display: none;
    }
}






@media (max-width:767px) {
    .suppImg {
        max-width: 220px;
    }
    .stats_row {
        padding-left: 1.5rem;
    }

    .doing_item1__container {
        display: none;
    }
    .phone_item {
        display: flex;
    }
    .phone-btn {
        margin-top: 45px;
    }
    .phone-btn__center {
        margin: 0 auto;
        margin-top: 30px;
    }


    .savecrypto {
        max-width: 100%;
    }

    .savecrypto-btn {
        margin-top: 15px;
        font-size: 1.6rem;
    }

    .infoGuard__phone {
        max-width: 100%;
        position: static;
    }
    .phone_whatelse_bot {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .boximg {
        object-position: 0%;
    }
    

    .infoGuard_inner {
        font-size: 1.4rem;
        padding-left: 10px;
    }
}

.logo-icon {
   fill: var(--tg-theme-section-header-text-color)
}

.logo-text {
   fill: var(--tg-theme-text-color)
}

.Toastify__toast-theme--light {
   background: var(--tg-theme-header-bg-color) !important;
   color: var(--tg-theme-text-color) !important;
   font-size: 1.4rem !important;
}

.Toastify__close-button--light {
   color: var(--tg-theme-hint-color) !important;
}

.Toastify__progress-bar-theme--light {
   background: var(--tg-theme-accent-text-color) !important;
}