/*:root {*/
/*    --font-weight-inter: 400;*/
    /*var(--font-weight-inter);*/
/*}*/

body {
    position: relative;
    /*    width: 100vw;*/
    font-family: 'Montserrat';
    background-color: #fff;
    overflow-x: hidden;
}

html.stop,
body.stop {
    overflow: hidden;
    position: relative;
    height: 100%;
}

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*-webkit-font-smoothing: antialiased;*/
    /*-moz-osx-font-smoothing: grayscale;*/
}

.container {
    position: relative;
    width: 100%;
    max-width: 1290px;
    margin: auto;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

a {
    text-decoration: none;
}
.header .nav{
    position: relative;
    width: 40px;
    height: 30px;
    cursor: pointer;
    display: none;
}
.header .nav span:nth-child(1){
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: #084373;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.header .nav span:nth-child(2){
    position: absolute;
    top: 50%;
    right: 0;
    width: 60%;
    height: 5px;
    -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
            transform: translate(0,-50%);
    border-radius: 3px;
    background: #084373;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.header .nav span:nth-child(3){
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: #084373;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.header .nav.active span:nth-child(1){
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
}
.header .nav.active span:nth-child(2){
    top: 50%;
    left: 0;
    -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
            transform: translate(0,-50%);
    opacity: 0;
}
.header .nav.active span:nth-child(3){
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
}
.menu{
    padding-top: 150px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 111;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
}
.menu.active{
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
}
.menu .main-block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.menu .btn {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 0 20px;
    height: 46px;
    background: #C2001B;
    border: 1px solid #C2001B;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
}

.menu .btn:hover {
    -webkit-box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
            box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
}

.menu a {
    position: relative;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 161.19%;
    letter-spacing: 0.005em;
    color: #145184;
    margin-bottom: 20px;
}

.menu a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #084373;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.menu a:hover:before {
    opacity: 1;
}
.bg-dark{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.8)));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.bg-dark.active{
    opacity: 1;
    visibility: visible;
}
/*
html::-webkit-scrollbar,
body::-webkit-scrollbar{
    margin: 10px;
    background: none;
    width: 0px;
}
html::-webkit-scrollbar-button,
body::-webkit-scrollbar-button{
    display: none;
}
html::-webkit-scrollbar-track-piece,
body::-webkit-scrollbar-track-piece{
    background: rgba(0,0,0,0.15);
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb{
    margin: 10px;
    background: rgba(0,0,0,0.75);
    border-radius: 3px;;
}
*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
    padding-bottom: 15px;
    width: 100%;
    height: 135px;
    z-index: 1000;
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(20, 81, 132, 0.6);
}

.header .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header .cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header .btn {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 0 20px;
    height: 46px;
    background: #C2001B;
    border: 1px solid #C2001B;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.header .btn:hover {
    -webkit-box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
            box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
}

.header a {
    position: relative;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 161.19%;
    letter-spacing: 0.005em;
    color: #145184;
    margin-right: 50px;
}

.header a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #084373;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.header a:hover:before {
    opacity: 1;
}

.block-1 {
    z-index: 10;
    position: relative;
    overflow: hidden;
}

.block-1 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/block-1-bg.jpg') center center;
    background-size: 100%;
    opacity: 0.4;
}

.block-1 .ellipce {
    position: absolute;
    top: 475px;
    left: -500px;
    width: 380px;
    height: 380px;
    background: url('../img/block-1-ellipce.png') center center no-repeat;
    ;
    background-size: 100%;
    border-radius: 100%;
}

.block-1 .container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.block-1 h1 {
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 200px;
    line-height: 188px;
    color: #084373;
    margin-top: 222px;
}

.block-1 h2 {
    margin-top: -22px;
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 104px;
    text-transform: uppercase;
    color: #084373;
}

.block-1 p {
    margin-top: 45px;
    max-width: 670px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 169.2%;
    letter-spacing: 0.005em;
    color: #2F4354;
}

.block-1 .btn {
    margin-top: 62px;
    margin-bottom: 160px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    color: #C2001B;
    padding: 0 20px;
    height: 46px;
    border: 1px solid #C2001B;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.block-1 .btn:hover {
    background: #C2001B;
    color: #fff;
}

.block-1 .warriow {
    position: absolute;
    top: 120px;
    left: 500px;
    width: 940px;
    z-index: 10;
}

.block-1 .flag {
    position: absolute;
    top: -115px;
    right: -560px;
    width: 1100px;
    z-index: -1;
}

.block-2 {
    overflow: hidden;
    max-width: 100%;
    border: 1px solid rgba(20, 81, 132, 0.09);
    border-right: none;
    border-left: none;
}

.block-2 .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 40px 0;
}

.block-2 img {
    height: 100px;
    opacity: 0.3;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

.block-2 img:hover {
    opacity: 1;
}

.block-3-4{
    overflow: hidden;
}

.block-3 {
    padding-top: 100px;
    position: relative;
}

.block-3 .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 100px;
}

.block-3 .left {
    width: 630px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.block-3 h2 {
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 69px;
    letter-spacing: 0.1525em;
    text-transform: uppercase;
    color: #084373;
}

.block-3 p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 185.19%;
    letter-spacing: 0.005em;
    color: #2F4354;
    margin-bottom: 85px;
    margin-top: 40px;
}

.block-3 .btn {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 0 20px;
    height: 46px;
    background: #C2001B;
    border: 1px solid #C2001B;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.block-3 .btn:hover {
    -webkit-box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
            box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
}

.block-3 .img {
    width: 590px;
    border-radius: 4px;
}

.block-3 .right-logo{
    width: 215px;
    position: absolute;
    bottom: -150px;
    right: -200px;
}

.block-4 {
    position: relative;
}

.block-4 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/block-1-bg.jpg') center center;
    background-size: 100%;
    opacity: 0.4;
}

.block-4 .container {
    padding-top: 110px;
    padding-bottom: 115px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.block-4 .left {
    width: 410px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.block-4 .left h2 {
    margin-top: 17px;
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 69px;
    letter-spacing: 0.1525em;
    text-transform: uppercase;
    color: #084373;
    margin-bottom: 6px;
}

.block-4 .left p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #2F4354;
    margin-bottom: 40px;
}

.block-4 .btn {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 0 20px;
    height: 46px;
    background: #C2001B;
    border: 1px solid #C2001B;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.block-4 .btn:hover {
    -webkit-box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
            box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
}

.block-4 .right {
    position: relative;
    width: 850px;
    padding-left: 30px;
    padding-right: 65px;
    border-left: 1px solid #084373;
}

.block-4 .right:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 195px;
    width: 135px;
    border-top: 1px solid #084373;
    border-right: 1px solid #084373;
}

.block-4 .right:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 195px;
    height: 135px;
    border-bottom: 1px solid #084373;
    border-right: 1px solid #084373;
}

.block-4 h3 {
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #084373;
    margin-bottom: 25px;
    margin-top: 17px;
}

.block-4 .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.block-4 .box img {
    width: 50px;
    margin-right: 10px;
}

.block-4 h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 129.19%;
    letter-spacing: 0.005em;
    font-variant: small-caps;
    color: #084373;
    
    text-transform: none;
    font-style: normal;

}

.block-4 .box li {
    list-style: none;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #2F4354;
    position: relative;
    padding-left: 28px;
}

.block-4 .box li:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: url('../img/check.svg') center center no-repeat;
    background-size: 12px;
}

.block-4 .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.block-4 .l {
    margin-right: 50px;
}

.block-4 .l .box:nth-child(1) {
    margin-bottom: 65px;
}

.block-5 .container {
    margin-bottom: 125px;
    ;
}

.block-5 h2 {
    margin-top: 100px;
    margin-bottom: 50px;
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 69px;
    text-align: center;
    letter-spacing: 0.1525em;
    text-transform: uppercase;
    color: #084373;
}

.block-5 .cont .box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    /*    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);*/
    border-radius: 4px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*    height: 420px;*/
    /*    width: 630px;*/
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.block-5 .cont .box:hover{
    border: 1px solid rgba(8, 67, 115, 0.6);
}

.block-5 .cont .box .img {
    min-width: 265px;
    min-height: 100%;
    background: url('../img/project.png') center center no-repeat;
    background-size: 100%;
}

.block-5 .cont .box .data {
    padding-left: 30px;
    padding-top: 20px;
    padding-right: 25px;
    padding-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%;
}
.block-5 .cont .box .data .b{
    width: 100%;
}
.block-5 .cont .box h3 {
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: #084373;
    margin-bottom: 15px;
}

.block-5 .cont .box .t p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #2F4354;
    margin-bottom: 20px;
}

.block-5 .cont .box .progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.block-5 .cont .box .progress p {
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 185.19%;
    text-align: right;
    letter-spacing: 0.005em;
    color: rgba(20, 81, 132, 0.95);
    text-align: center;
}

.block-5 .cont .box .progress p span {
    padding-left: 4px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 185.19%;
    text-align: right;
    letter-spacing: 0.005em;
    color: #2F4354;
}

.block-5 .cont .box .progress .percent-number{
    font-size: 40px;
    line-height: 100%;
}

.block-5 .cont .box .progress .line {
    width: 100%;
    height: 5.5px;
    border-radius: 4px;
    background: #D9D9D9;
    position: relative;
    overflow: hidden;
    margin-top: -2px;
}

.block-5 .cont .box .progress .line span {
    position: absolute;
    top: 0;
    left: 0;
    height: 5.5px;
    border-radius: 4px;
    background: #C2001B;
}

.block-5 .cont .box .goal {
    margin-top: -1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.block-5 .cont .box .btns {
    width: 100%;
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.block-5 .cont .box .btn {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 0 20px;
    height: 46px;
    background: #C2001B;
    border: 1px solid #C2001B;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.block-5 .cont .box .btn:hover {
    -webkit-box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
            box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
}

.block-5 .cont .box .share {
    width: 46px;
    height: 46px;
    cursor: pointer;
    background: url(../img/share.svg) center center no-repeat;
    background-size: 30px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.block-5 .cont .box .share:hover{
    background: url(../img/share-hover.svg) center center no-repeat;
    background-size: 30px;
}

.block-5 .nav {
    margin-top: 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.block-5 .nav div {
    width: 40px;
    height: 14.5px;
    background: url('../img/arrow.svg') center center no-repeat;
    background-size: 100%;
    cursor: pointer;
}

.block-5 .nav div:nth-child(2) {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.swiper-pagination-bullet {
    width: 28px !important;
    height: 2px !important;
    background: #C2001B !important;
    border-radius: 0 !important;
    opacity: 0.55 !important;
    -webkit-transition: 0.3s !important;
    -o-transition: 0.3s !important;
    transition: 0.3s !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 44px !important;
    height: 4px !important;
    background: #C2001B !important;
    border-radius: 0 !important;
}

.swiper-pagination,
.swiper-pagination-m {
    position: relative !important;
    height: 4px !important;
    margin-top: 30px !important;
}

.block-6 .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding-bottom: 160px;
}

.block-6 .img {
    width: 590px;
    border-radius: 4px;
}

.block-6 .right {
    width: 630px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.block-6 h2 {
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 69px;
    letter-spacing: 0.1525em;
    text-transform: uppercase;
    color: #084373;
    margin-bottom: 15px;
}

.block-6 .desc {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 185.19%;
    letter-spacing: 0.005em;
    color: #2F4354;
    margin-bottom: 15px;
}

.block-6 li {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 266.69%;
    letter-spacing: 0.005em;
    color: #2F4354;
    position: relative;
    padding-left: 26px;
}

.block-6 li:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 1px;
    width: 12px;
    height: 12px;
    background: url(../img/check.svg) center center no-repeat;
    background-size: 12px;
}

.block-6 .main {
    margin-top: 15px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 185.19%;
    letter-spacing: 0.005em;
    color: #2F4354;
    margin-bottom: 15px;
}

.block-6 .btn {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 46px;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    height: 46px;
    background: #C2001B;
    border: 1px solid #C2001B;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.block-6 .btn:hover {
    -webkit-box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
            box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
}

.block-7 {
    position: relative;
}

.block-7 h2 {
    margin-top: 55PX;
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 69px;
    letter-spacing: 0.1625em;
    text-transform: uppercase;
    color: #084373;
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
}

.block-7 .cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 55px;
}

.block-7 .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.block-7 .sub {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 0.005em;
    color: #2F4354;
}

.block-7 .main {
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 128px;
    line-height: 135px;
    letter-spacing: 0.005em;
    color: #2F4354;
}

.block-7 .desc {
    min-height: 42px;
    max-width: 260px;
    margin-top: 0px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 0.005em;
    color: #2F4354;
    margin-bottom: 36px;
}

.block-7 .big {
    max-width: 260px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 130%;
    letter-spacing: 0.005em;
    color: #2F4354;
}

.block-7 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/block-1-bg.jpg') center center;
    background-size: 100%;
    opacity: 0.4;
}

.block-8 h2 {
    margin-top: 75px;
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 69px;
    letter-spacing: 0.1625em;
    text-transform: uppercase;
    color: #084373;
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
}

.block-8 .cont {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;

    display: -ms-grid;

    display: grid;
    -ms-grid-columns: 2fr 30px 1fr;
    grid-template-columns: 2fr 1fr;
    grid-gap: 30px;
}


.block-8-1 .img,
.block-8 .img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.block-8 .box:nth-child(1){
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
}
.block-8 .box .contt{
    width: 100%;
}
.block-8 .box:nth-child(1) .img {
    height: 630px;
    width: 100%;
    object-fit: cover;
}

.block-8-1 .box .img,
.block-8 .box .img {
    height: 300px;
}

.block-8-1 h3 ,
.block-8 h3 {
	font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: #084373;
    margin-top: 20px;
    margin-bottom: 10px;
}

.block-8-1 p,
.block-8 p {
    width: 100%;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 185.19%;
    letter-spacing: 0.005em;
    color: #2F4354;
    margin-bottom: 15px;
}

.block-8-1 .btn,
.block-8 .btn {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 46px;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    height: 46px;
    background: #C2001B;
    border: 1px solid #C2001B;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
}

.block-8-1 .btn:hover,
.block-8 .btn:hover {
    -webkit-box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
            box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
}


.block-8-1 .box,
.block-8 .box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.block-8-1 .container:nth-child(1){
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;

    display: -ms-grid;

    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-top: 30px;
}
.block-8-1 .container:nth-child(2){
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 50px;
    margin-bottom: 110px;
}
.block-8-1 .container:nth-child(2) .btn.hide{
    display: none;
}

.block-9 {
    position: relative;
}

.block-9 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/block-1-bg.jpg') center center;
    background-size: 100%;
    opacity: 0.4;
}

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

.block-9 h2 {
    margin-top: 75px;
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 69px;
    text-align: center;
    letter-spacing: 0.1625em;
    text-transform: uppercase;
    color: #084373;
    margin-bottom: 55px;
}

.block-9 .btn {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 66px;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    height: 66px;
    background: #C2001B;
    border: 1px solid #C2001B;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
    margin-bottom: 55px;
}

.block-9 .btn:hover {
    -webkit-box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
            box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
}

.block-9 p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 130%;
    text-align: center;
    letter-spacing: 0.005em;
    color: #2F4354;
    margin-bottom: 75px;
}

.footer {
    position: relative;
    padding-top: 20px;
    overflow: hidden;
}

.footer .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/block-1-bg.jpg') center center;
    background-size: 100%;
    opacity: 0.4;
}

.footer span {
    position: absolute;
    bottom: 100px;
    z-index: 1000;
    left: 0;
    width: 100%;
    height: 0.25px;
    background: rgba(20, 81, 132, 0.47);
}

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

.footer .l1 img {
    width: 140px;
    margin: auto;
    margin-bottom: 5px;
}

.footer .l2 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.footer .l2 .img{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.footer .box {
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.footer .box:last-child {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.footer .head {
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 185.19%;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: #084373;
    margin-bottom: -29px;
}

.footer .box .desc,
.footer .box a {
    max-width: 410px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 228.19%;
    letter-spacing: 0.005em;
    color: #2F4354;
}

.footer .btn {
    margin-top: 35px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    color: #C2001B;
    padding: 0 20px;
    height: 46px;
    border: 1px solid #C2001B;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.footer .btn:hover {
    background: #C2001B;
    color: #fff;
}

.footer .l3 {
    height: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.footer .l3 a,
.footer .l3 p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 185.19%;
    text-align: right;
    letter-spacing: 0.005em;
    color: #2F4354;
}

.footer .footer-bird{
    width: 285px;
    position: absolute;
    top: 40px;
    right: -265px;
	z-index: -1;
}
.block-10{
    padding-top: 80px;
    padding-bottom: 130px;
}
.block-10 .container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

.block-10 .left {
    width: 410px;
}

.block-10 .left .img {
    width: 100%;
    height: 410px;
    margin-bottom: 15px;
}

.block-10 .right {
    width: 810px;
}

.block-10 h2 {
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 69px;
    letter-spacing: 0.1625em;
    text-transform: uppercase;
    color: #084373;
    margin-bottom: 55px;
}

.block-10 .main {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 185.19%;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: #084373;
    margin-bottom: 40px;
}

.block-10 .bottom {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 130%;
    letter-spacing: 0.005em;
    color: #2F4354;
}

.block-10 .left h3 {
    font-family: 'UA Army Labels';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 185.19%;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: #084373;
    text-align: center;
}

.block-10 .left p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 185.19%;
    text-align: center;
    letter-spacing: 0.005em;
    color: #2F4354;
}

.block-10 .input {
    position: relative;
    opacity: 0.6;
    margin-top: 40px
}

.block-10 .i1 {
    margin-top: 20px;
}

.block-10 input {
    width: 100%;
    ;
    position: relative;
    color: rgba(0, 0, 0, 0.6);
    border: none;
    background: none;
    outline: none;
    border-bottom: 1px solid rgb(59, 59, 59);
    height: 50px;
    padding: 26px 20px 10px;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.33;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.block-10 .error {
    border-bottom: 1px solid red;
}

.block-10 input::-moz-placeholder {
    color: transparent;
}

.block-10 input::-webkit-input-placeholder {
    color: transparent;
}

.block-10 input:-ms-input-placeholder {
    color: transparent;
}

.block-10 input::-ms-input-placeholder {
    color: transparent;
}

.block-10 input::placeholder {
    color: transparent;
}
.block-10 input.phone::-moz-placeholder {
    color: rgba(0,0,0,0.6);
}

.block-10 input.phone::-webkit-input-placeholder {
    color: rgba(0,0,0,0.6);
}

.block-10 input.phone:-ms-input-placeholder {
    color: rgba(0,0,0,0.6);
}

.block-10 input.phone::-ms-input-placeholder {
    color: rgba(0,0,0,0.6);
}

.block-10 input.phone::placeholder {
    color: rgba(0,0,0,0.6);
}

.block-10 .input label {
    position: absolute;
    width: 100%;
    top: 20px;
    left: 0;
    font-weight: 400;
    font-size: 14px;
    height: 15px;
    color: #000;
    -webkit-transform: translateY(0%) scale(1);
    -ms-transform: translateY(0%) scale(1);
    transform: translateY(0%) scale(1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
}

.block-10 input:not(:-moz-placeholder-shown) ~ label {
    transform: translate( -15%, -100%) scale(.7);
    left: 0;
}

.block-10 input:not(:-ms-input-placeholder) ~ label {
    -ms-transform: translate( -15%, -100%) scale(.7);
    transform: translate( -15%, -100%) scale(.7);
    left: 0;
}

.block-10 input:not(:placeholder-shown) ~ label,
.block-10 input:focus ~ label {
    -webkit-transform: translate( -15%, -100%) scale(.7);
    -ms-transform: translate( -15%, -100%) scale(.7);
    transform: translate( -15%, -100%) scale(.7);
    left: 0;
}

.block-10 button {
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    margin-top: 25px;
    height: 54px;
    border: none;
    position: relative;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    background: #C2001B;
    border: 1px solid #C2001B;
    border-radius: 4px;
    margin-bottom: 20px;
}

.block-10 button:hover {
    -webkit-box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
    box-shadow: 5px 5px 20px rgba(194, 0, 27, 0.25);
    background: #A90017;
    border-color: #A90017;
}

.block-10 .t-btn_wrap-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(-85px);
    -ms-transform: translateX(-85px);
    transform: translateX(-85px);
    -webkit-animation-name: flash;
    animation-name: flash;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.block-10 .t-btn_effects {
    background: -o-linear-gradient(left, rgba(255, 255, 255, .1), rgba(255, 255, 255, .4));
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, .1)), to(rgba(255, 255, 255, .4)));
    background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .4));
    width: 45px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 30px;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
}

@-webkit-keyframes flash {
    20% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes flash {
    20% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}






.block-10 details {
    position: relative;
    width: 100%;
    margin-top: 40px;
}
.block-10 details input{
    border-bottom: none;
}
.block-10 details[open] {
    z-index: 1;
}

.block-10 summary {
    padding: 10px;
    padding-left: 0;
    border-bottom: 1px solid rgb(59, 59, 59);
    cursor: pointer;
    list-style: none;
}

.block-10 summary::-webkit-details-marker {
    display: none;
}

.block-10 details[open] summary:before {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    position: relative;
}

.block-10 summary:after {
    content: '';
    display: inline-block;
    float: right;
    width: .5rem;
    height: .5rem;
    border-bottom: 1px solid currentColor;
    border-left: 1px solid currentColor;
    border-bottom-left-radius: 2px;
    -webkit-transform: rotate(45deg) translate(50%, 0%);
        -ms-transform: rotate(45deg) translate(50%, 0%);
            transform: rotate(45deg) translate(50%, 0%);
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
    -webkit-transition: -webkit-transform ease-in-out 100ms;
    transition: -webkit-transform ease-in-out 100ms;
    -o-transition: transform ease-in-out 100ms;
    transition: transform ease-in-out 100ms;
    transition: transform ease-in-out 100ms, -webkit-transform ease-in-out 100ms;
    position: absolute;
    top: 50%;
}

.block-10 summary:focus {
    outline: none;
}

.block-10 details[open] summary:after {
    -webkit-transform: rotate(-45deg) translate(0%, 0%);
        -ms-transform: rotate(-45deg) translate(0%, 0%);
            transform: rotate(-45deg) translate(0%, 0%);
}

.block-10 ul {
    width: 100%;
    background: #f5f5f5;
    border: 1px solid rgba(20, 81, 132, 0.6);
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    padding: 1rem;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
}

.block-10 li {
    margin: 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(20, 81, 132, 0.6);
}

.block-10 li:first-child {
    padding-top: 0;
}

.block-10 li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* FAKE SELECT */

.block-10 summary.radios {
    counter-reset: radios;
}

.block-10 summary.radios:before {
    content: var(--selection);
}

.block-10 input[type=radio] {
    counter-increment: radios;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    display: none;
}

.block-10 input[type=radio]:checked {
    display: inline;
    --display: block;
}

.block-10 input[type=radio]:after {
    content: attr(title);
    display: inline;
    font-size: 1rem;
}

.block-10 ul.list {
    counter-reset: labels;
}

.block-10 label {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.block-10 label span {
    --display: none;
    display: var(--display);
    width: 1rem;
    height: 1rem;
    border: 1px solid #727272;
    border-radius: 3px;
}