@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
:root{
    --red: #DB3030;
    --green: #4B573F;
    --black: #171717;
    --dark-gray: #1F1F1F;
    --gray: #5F5F5F;
    --light-gray: #C8C8C8;
    --white: #D9D9D9;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Manrope', sans-serif;
    background-color: var(--black);
    color: #fff;
}

a, p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    text-decoration: none;
    line-height: 1.2;
}
a[href^="tel:"], a[href^="mailto:"]{
    white-space: nowrap;
}

button:focus,
textarea:focus,
select:focus {
    outline: none !important;
    -webkit-appearance: none;
    box-shadow: none;
}

input:focus {
    outline: none !important;
}

a:active, a:focus {
    outline: 0;
    outline: none !important;
    -moz-outline-style: none;
}

a, img, span, input, button, svg, path {
    transition: .3s all ease;
}

a {
    display: inline-block;
    text-decoration: none;
}

span {
    display: inline-block;
}


.wrapper {
    overflow: hidden;
}

.owl-drag {
    overflow: hidden;
}

.owl-item {
    float: left;
}

.owl-dots {
    display: none;
}

.none{
    display: none !important;
}

[data-video]{
    cursor: pointer;
}
[data-video] *{
    pointer-events: none;
}

.cross{
    --width: 10px;
    --weight: 1px;
    --color: black;
    --angle: 45deg;
    grid-template-rows:var(--width);
    grid-template-columns: var(--width);
    overflow: hidden;
    border: none;
    background: none;
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
    align-content: center;
    padding: 0;
}
.cross:before, .cross:after{
    content: '';
    width: var(--width);
    height: var(--weight);
    background: var(--color);
    transform-origin: center;
    grid-area: 1/1;
}
.cross:before{
    transform: rotate(var(--angle));
}
.cross:after{
    transform: rotate(calc(var(--angle) + 90deg));
}

.txt-block>*:nth-child(1){
    margin-top: 0;
}
.txt-block>*:last-child{
    margin-bottom: 0;
}

.gray-txt{
    color: var(--gray) !important;
}

#popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.5);
    padding: 30px;
}
.popup_content{
    width: 100%;
}
#popup.active{
    display: grid;
    grid-template-columns: 100%;
    align-items: flex-start;
    justify-items: center;
    z-index: 1055;
}
#popup .video iframe{
    width: 100%;
    max-height: 600px;
    aspect-ratio: 16/9;
}

#popup .success{
    background: var(--dark-gray);
    color: white;
    padding: 55px 100px 65px 100px;
    max-width: 540px;
}

#popup .success .check{
    width: 110px;
    height: 110px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 45px auto 0 auto;
}

.form-success_title{
    font-size: clamp(20px, calc(15px + 1vw), 30px);
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    text-align: center;
}
.form-success_subtitle{
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}


header {
    border-bottom: 1px solid #4F4F4F;
    position: relative;
    z-index: 2;
    background-color: var(--black);
}

header .top-con {
    border-bottom: 1px solid #4F4F4F;
}

header .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 1px solid #4F4F4F;
    border-left: 1px solid #4F4F4F;
}

header .top-nav ul {
    margin: 0;
    padding: 0;
}
.head-link{
    flex-shrink: 0;
}

header .head-logo {
    display: flex;
    align-items: center;
}

header .head-logo span {
    width: 146px;
    margin-left: 8px;
    font-size: 9px;
    font-weight: 400;
    line-height: 14px;
    color: #fff;
}

header .head-drop {
    font-size: 10px;
    font-weight: 400;
    line-height: 10px;
    letter-spacing: 0em;
    color: #E5E5E5;
    margin-top: 7px;
}

header .location-drop {
    margin-left: 14px;
    margin-right: 16px;
    padding: 12px 16px;
    border-right: 1px solid #4F4F4F;
    border-left: 1px solid #4F4F4F;
}

.dropdown-toggle::after {
    content: none;
}

header .head-drop img {
    margin-left: 5px;
}

header .head-drop[aria-expanded="true"] img {
    transform: rotate(180deg);
}

header .head-contact {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 20px;
}

header .head-contact a {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
    position: relative;
}

header .head-contact a::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 58px;
    height: 100%;
    background: linear-gradient(270deg, #1B1B1B 0%, rgba(29, 29, 29, 0) 100%);
    transition: .3s all ease;
}

header .head-contact a:hover::after {
    width: 0;
}

header .free-call {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

header .free-call a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    margin-right: 10px;
}

header .free-call span {
    font-size: 12px;
    line-height: 14px;
    color: rgba(255, 255, 255, .6);
}

.red-btn {
    padding: 5px 14px;
    background: var(--red);
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    position: relative;
}

.red-btn:hover {
    background: #4E4E4E;
    color: #fff;
}

/* navbar */
header .navbar {
    padding: 17px 43px;
    border-right: 1px solid #4F4F4F;
    border-left: 1px solid #4F4F4F;
}

header .navbar .navbar-nav {
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

header .navbar .nav-item .nav-link {
    color: #E5E5E5;
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    padding: 0;
    position: relative;
}

/* header .navbar .nav-item .nav-link:hover {
	color: var(--red);
} */
header .navbar .nav-item .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: var(--red);
    transition: .3s all ease;
}

header .navbar .nav-item .nav-link:hover::after {
    width: 30px;
}
/* header end */

.section{
    margin: 100px 0;
}
.section_title{
    font-size: clamp(20px, calc(10px + 2vw), 44px);
    text-transform: uppercase;
    font-weight: 700;
}
.section_title-big{
    font-size: clamp(24px, calc(15px + 2vw), 44px);
    text-transform: uppercase;
    font-weight: 700;
}

.breadcrumbs{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    gap: .5em;
}
.breadcrumb-item{
    display: flex;
    align-items: center;
    gap: .25em;
    color: white;
    line-height: 1em;
    padding: 0;
    padding-left: 0;
}
.breadcrumb-item:not(:last-child):after{
    content: '/';
}
.breadcrumb-item:before{
    display: none;
}
.breadcrumb-item:last-child{
    color: #B9B9B9;
}

.article-card{
    background: var(--dark-gray);
    display: grid;
    grid-template-columns: 100%;
    color: white;
    align-items: flex-start;
    grid-template-rows: auto 1fr;
}

.article-card:hover{
    background: var(--black);
}
.article-card_img{
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.article-card_content{
    padding: 25px;
    display: grid;
    grid-template-columns: 100%;
}
.article-card_date{
    color: #808080;
    font-size: 14px;
    margin: 0 0 1em 0;
}
.article-card_title{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
}
.article-card_txt{
    color: #BBBBBB;
    font-size: 16px;
    line-height: 1.5em;
    margin: 10px 0 0 0;
}
.article-card_more{
    margin: 30px 0 0 0;
    box-shadow: 0 0 0 1px #707070;
    font-size: 16px;
    font-weight: 600;
    padding: 1em 2.6em;
    line-height: 1em;
    width: fit-content;
}
.article-card_more:hover{
    background: var(--red);
    box-shadow: none;
}

.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #A1A1A1;
    font-size: 16px;
}
.pagination_btn{
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    padding: 10px;
}
.pagination_btn :where(img, svg){
    width: 10px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.next-page.pagination_btn :where(img, svg){
    transform: scale(-1, 1);
}
.pagination_btn path{
    fill: #757575;
}
.pagination_list{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.pagination_page{
    width: 40px;
    height: 40px;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination_page.active{
    background: var(--green);
    color: white;
}

.main-sec {
    position: relative;
    padding: 94px 0 0;
    background-image: url('../images/main-bg.png');
    z-index: 1;
    overflow: hidden;
}

.main-sec::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(23, 23, 23, 0.97) 0%, rgba(23, 23, 23, 0.97) 100%), lightgray 50%, cover, no-repeat;
}

.main-sec .main-left {
    position: relative;
    z-index: 2;
}

.main-sec .main-left h1 {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.main-sec .main-left .h1-title img {
    margin-left: 27px;
}

.main-sec .main-left .h2-title {
    color: var(--gray);
    font-size: 33.647px;
    font-weight: 700;
    line-height: 50.471px;
    text-transform: uppercase;
}

.main-sec .main-left .main-tags {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin: 100px 0 86px;
}

.main-sec .main-left .main-tags span {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 10px 22px;
    border: 1px solid #4F4F4F;
}

.second-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 255px;
    background: var(--red);
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    position: relative;
}

.second-btn .btn-bg {
    width: 8px;
    height: 8px;
    position: absolute;
    background: #fff;
}

.second-btn .left-top {
    left: 0;
    top: 0;
}

.second-btn .right-top {
    right: 0;
    top: 0;
}

.second-btn .left-bottom {
    left: 0;
    bottom: 0;
}

.second-btn .right-bottom {
    right: 0;
    bottom: 0;
}

.second-btn:hover {
    color: #fff;
    background: #4F4F4F;
}

.main-sec .main-img {
    position: relative;
    left: -100px;
}

.main-sec .main-img img {
    width: 180%;
}

.dropdown-menu {
    min-width: 520px;
    padding: 34px 30px;
    background: var(--dark-gray);
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 0;
    left: -17px !important;
     top: 16px !important;
    z-index: 10;
}

.dropdown-menu .menu-inner p {
    margin-bottom: 24px;
    color: #E5E5E5;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

.dropdown-menu .menu-inner form {
    width: 100%;
}

.dropdown-menu .menu-inner form .search-form {
    width: 100%;
    position: relative;
    margin-bottom: 17px;
}

.dropdown-menu .menu-inner form .search-form input {
    width: 100%;
    height: 50px;
    background: var(--black);
    padding: 15px 20px;
    border: none;
}

.dropdown-menu .menu-inner form .search-form input,
.dropdown-menu .menu-inner form .search-form input::placeholder {
    color: #A7A7A7;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.dropdown-menu .menu-inner form .search-form .search-btn {
    position: absolute;
    right: 15px;
    top: 11px;
    border: none;
    background: transparent;
}

.search-block {
    display: flex;
    gap: 8px 0;
}

.dropdown-menu .menu-inner .search-block .search-item {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.dropdown-menu .menu-inner .search-block .search-item a {
    color: #E5E5E5;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.dropdown-menu .menu-inner .search-block .search-item a:hover {
    color: var(--red);
}

.dropdown-menu .menu-inner {
    position: relative;
}

.dropdown-menu .menu-inner .menu-closer {
    position: absolute;
    top: 0;
    right: 0;
    transition: .5s;
}

.dropdown-menu .menu-inner .menu-closer:hover {
    transform: rotate(90deg);
}


/* main section end */
.forces-sec {
    background-color: var(--dark-gray);
    overflow: hidden;
}

.forces-sec .forces-block {
    height: 422px;
    position: relative;
    padding-top: 54px;
    padding-bottom: 40px;
}

.forces-sec .one-col {
    border-right: 1px solid #4F4F4F;
}

.forces-sec .forces-block .forces-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}

.forces-sec .forces-block .forces-inner .forces-title {
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
    line-height: 46px;
    margin-top: 7px;
}

.forces-sec .forces-block .forces-inner p {
    margin-top: 26px;
    color: #707070;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 244px;
}

.forces-sec .forces-left .forces-img {
    position: absolute;
    right: -12px;
    top: 70px;
}

.forces-sec .forces-left-two .forces-img {
    position: absolute;
    right: -12px;
    top: 140px;
}

.forces-sec .forces-right .forces-img {
    position: absolute;
    right: -180px;
    top: -48px;
}

.forces-sec .forces-right-two .forces-img {
    position: absolute;
    right: -130px;
    top: 85px;
}

.forces-right-two,
.forces-right {
    padding-left: 60px;
}

.forces-sec .forces-con {
    position: relative;
    border-bottom: 1px solid #4F4F4F;
}

.forces-sec .forces-con::before {
    content: "";
    width: 26px;
    height: 26px;
    background: var(--dark-gray);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -13px;
    display: block;
    z-index: 2;
}


/* --------------- */
.red-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
}

.link-btn {
    display: flex;
    align-items: center;
}

.link-btn .link-text {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

.link-btn .link-arrow {
    height: 36px;
    width: 36px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
}

.link-btn:hover .link-arrow {
    background: var(--red);
}

/* --------------- */

.set-sec {
    padding-top: 100px;
}

.set-sec .title .h2-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.set-sec .title p {
    color: var(--gray);
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
    margin-bottom: 47px;
}

.set-list {
    border: 1px solid #5B5B5B;
    padding: 40px;
    height: 100%;
}

.set-list .set-tag {
    background: var(--green);
    padding: 6px 22px;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.set-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.set-list ul li {
    position: relative;
    color: #B4B4B4;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 20px;
    padding-left: 22px;
}

.set-list ul li:last-child {
    margin-bottom: 0;
}

.set-list ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    background: var(--green);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.set-sec .set-rov {
    margin-bottom: 26px;
}

.set-contact {
    padding: 54px 60px;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.set-contact .set-left {
    max-width: 530px;
}

.set-contact .set-left .set-title {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 44px;
    text-transform: uppercase;
}

.set-contact .set-left p {
    color: var(--gray);
    font-size: 26px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
    margin-bottom: 45px;
}

.set-right .right-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 34px;
}

.set-right .right-contact:last-child {
    margin-bottom: 0;
}

.set-right .right-contact .icon {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.set-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.set-numbers a {
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    line-height: 28.854px;
    text-transform: uppercase;
}

.set-numbers p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 18.362px;
    opacity: 0.6;
}

/* video section */
.video-sec {
    padding-top: 80px;
}

.video-sec .title {
    margin-bottom: 40px;
    text-align: center;
}

.video-sec .title .video-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 70px;
}

.video-sec .title .video-title img {
    margin-left: 30px;
}

.video-sec .title p {
    color: var(--gray);
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
}


.video-sec .video-block {
    position: relative;
}

.video-sec .video-block img,
.video-sec .video-block video,
.video-sec .video-block iframe {
    width: 100%;
}

.video-sec .video-block .video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-sec .video-block .video-btn a img {
    width: 109px;
    height: 109px;
}

.video-sec .video-block .video-btn .play-radius {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.video-sec .video-block .video-btn .play-radius img {
    width: 193px;
    height: 193px;
    transition: .8s all ease;
}

.video-sec .video-block .video-btn:hover .play-radius img {
    transform: rotate(360deg);
}

/* new-volunteers */
.new-volunteers {
    padding: 80px 0 10px;
    position: relative;
}

.new-volunteers .flag-img {
    position: absolute;
    left: 0;
    top: 75px;
    height: 250px;
    z-index: -1;
}

.new-volunteers .new-rov {
    justify-content: flex-end;
    padding-bottom: 70px;
}

.new-volunteers .new-block {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

.new-volunteers .new-block p {
    color: #FFF;
    text-align: right;
    font-size: 58px;
    font-weight: 700;
    line-height: 78px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.new-volunteers .new-block .new-in {
    display: flex;
    align-items: center;
}

.new-volunteers .new-block .new-in .in-text {
    color: var(--gray);
    text-align: right;
    font-size: 26px;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
    /*margin-right: 80px;*/
}

.new-volunteers .new-con {
    padding-top: 80px;
    border-top: 1px solid #4F4F4F
}

.new-volunteers .new-info {
    margin-bottom: 70px;
}

.new-volunteers .new-info p {
    color: #F8F8F8;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.new-volunteers .new-info img {
    width: 100%;
}

/* monetary-sec */
.monetary-sec {
    padding: 80px 0;
    background: var(--dark-gray);
}


.monetary-block.two {
    margin-top: 40px;
}

.monetary-sec .title {
    margin-bottom: 80px;
}

.monetary-sec .title .h2-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
}

.monetary-sec .title p {
    color: var(--gray);
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
}

.monetary-sec .monetary-block-title span {
    color: var(--gray);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.monetary-sec .monetary-block-title p {
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: 49px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.monetary-sec .monetary-block-text p {
    color: #B4B4B4;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 17px;
}

.monetary-sec .monetary-block-text p:last-child {
    margin-bottom: 0;
}

.monetary-sec .monetary-block-text a {
    margin-top: 40px;
    padding: 19px 40px;
    width: auto;
}

.monetary-sec .monetary-second-left,
.monetary-sec .monetary-left-col {
    border-right: 1px solid #4F4F4F;
}

.monetary-sec .monetary-left-col .monetary-block-text {
    max-width: 420px;
}

.monetary-sec .monetary-second-right,
.monetary-sec .monetary-right-col {
    padding: 0 40px;
}

.monetary-sec .monetary-rov {
    margin-top: 80px;
}


.monetary-sec .monetary-second-title span {
    color: var(--gray);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.monetary-sec .monetary-second-title p {
    color: #FFF;
    font-size: 35px;
    font-weight: 700;
    line-height: 49px;
    text-transform: uppercase;
    margin-bottom: 65px;
}

.monetary-sec .monetary-list-text p {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.monetary-sec .monetary-list-text > span {
    color: #B4B4B4;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.monetary-sec .monetary-list-text {
    margin-bottom: 50px;
}

.monetary-sec .monetary-list-text:last-child {
    margin-bottom: 0;
}

.monetary-sec .monetary-list p {
    margin-bottom: 24px;
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
}

.monetary-sec .monetary-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.monetary-sec .monetary-list ul li {
    position: relative;
    color: #B4B4B4;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 14px;
    padding-left: 22px;
}

.monetary-sec .monetary-list ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 8px;
    background: var(--red);
    width: 8px;
    height: 8px;
}

/* Социальные гарантии и льготы */
.social-sec {
    padding: 100px 0 70px;
}

.social-sec .title {
    margin-bottom: 50px;
}

.social-sec .title .h2-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.social-sec .title p {
    color: var(--gray);
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
}

.social-sec .social-block {
    padding: 20px 20px 20px 30px;
    border: 1px solid #4F4F4F;
    background: var(--black);
    height: 100%;
}

.social-sec .social-block.green {
    background: var(--green);
}

.social-sec .social-block p {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.social-rov {
    margin-left: -15px;
    margin-right: -15px;
}

.social-col {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

/* Если ты готов пойти на службу и защитить Родину, заполни форму */

.form-sec .form-rov {
    background: var(--green);
    padding: 58px 58px 68px;

}

.form-sec .form-title {
    max-width: 417px;
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 46px;
    text-transform: uppercase;
}

.for-height {
    height: 100%;
}

.form-left-col {
    border-right: 1px solid #B4B4B4;
}

.form-sec .form-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.form-sec .form-contact {
    display: flex;
    align-items: flex-start;
}

.form-sec .form-contact .icon {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}

.form-sec .form-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.form-sec .form-numbers a {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 49px;
    text-transform: uppercase;
}

.form-sec .form-call a {
    color: #FFF;
    font-size: 57.678px;
    font-weight: 700;
    line-height: 88.319px;
    text-transform: uppercase;
}

.form-sec .form-call p {
    color: #FFF;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.216px;
}

.form-sec .form-contact .icon {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}


.form-block {
    padding-left: 15px;
}

.form-block .form-group {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-block .form-group span {
    margin-bottom: 10px;
    color: var(--light-gray);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.16px;
    text-transform: uppercase;
}

.form-block .form-group input {
    border: none;
    border-bottom: 1px solid #B4B4B4;
    padding: 10px 0;
    max-width: 334px;
    width: 100%;
    background: transparent;
}

.form-block .form-group input,
.form-block .form-group input::placeholder {
    color: var(--light-gray);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.16px;
}

.form-block .form-btn {
    padding-top: 20px;
    margin-bottom: 15px;
}

.form-block .form-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #000;
    padding: 0;
}

.form-block .form-btn button:hover {
    background: var(--red);
}

.form-items-block {
    margin-top: 30px;
}

.form-items-block .form-item {
    background: var(--dark-gray);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.form-items-block .form-item p {
    margin-bottom: 30px;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}

.form-items-block .form-item a .link-text {
    font-size: 14px;
    line-height: 22px;
}

/* quote section */
.quote-sec {
    padding-top: 100px;
}

.quote-sec .quote-left {
    border-top: 1px solid #323232;
    border-right: 1px solid #323232;
    padding-top: 55px;
    padding-right: 30px;
}

.quote-sec .quote-left .quote-text {
    margin: 40px 0 70px;
    height: 150px;
    overflow: hidden;
}

.quote-sec .quote-left .quote-text p {
    font-family: 'Gilroy', sans-serif;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.quote-sec .quote-left .quote-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.quote-sec .quote-left .quote-author p {
    font-family: 'Gilroy', sans-serif;
    color: #8B8B8B;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
}

.quote-sec .quote-left .quote-author span {
    font-family: 'Gilroy', sans-serif;
    color: #8B8B8B;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}

.quote-sec .quote-img {
    height: 415px;
}

.quote-sec .quote-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* equipment-sec */
.equipment-sec {
    padding-top: 100px;
    position: relative;
}

.equipment-sec .equipment-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.equipment-sec .title .h2-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.equipment-sec .title p {
    color: var(--gray);
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
}

.equipment-slide .eqt-img img {
    height: 200px;
}

.equipment-slide .eqt-block {
    text-align: center;
}

.equipment-slide .eqt-block p {
    margin-top: 13px;
    color: #FFF;
    font-size: 18px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
}

.equipment-sec .equipment-content {
    overflow: hidden;
}

.swiper-btns {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.swiper-btns button {
    position: unset;
    background: transparent;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: none;
}


/* этапы */
.steps-sec {
    padding-top: 100px;
}

.steps-sec .title {
    display: inline-block;
    margin-bottom: 50px;
}

.steps-sec .title .h2-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.steps-sec .title p {
    color: var(--gray);
    font-size: 40px;
    font-weight: 700;
    line-height: 58px;
    text-transform: uppercase;
}

.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: var(--black);
    box-shadow: none;
}

.accordion-item {
    border: none;
    background: transparent;
}

.steps-sec .accordion-item .accordion-header {
    max-width: 730px;
    margin-left: auto;
}

.accordion-item .accordion-header .accordion-button {
    padding: 30px 0;
    border-top: 1px solid var(--light-gray);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-item:last-of-type .accordion-button {
    border-bottom: 1px solid var(--light-gray);
}

.accordion-item .accordion-header .accordion-button .text {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.accordion-item .accordion-header .accordion-button .icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
}

.accordion-item .accordion-header .accordion-button[aria-expanded="true"] .icon img {
    transform: rotate(45deg);
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-body {
    padding: 40px 40px 60px;
    background: var(--green);
    margin-bottom: 40px;

    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.steps-sec .accordion-body .body-in {
    max-width: 740px;
    width: 100%;
    margin-left: auto;
}

.accordion-body .body-text {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.accordion-body .body-text span {
    margin-right: 24px;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.accordion-body .body-text p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.accordion-button::after {
    content: none;
}

/* slide */
.slide-content {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.slide-content .owl-nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    left: -117px;
    bottom: 0;
}

.slide-content .owl-nav button {
    padding: 0;
    background: transparent;
    border: none;
}

.slide-content .owl-nav .owl-prev {
    margin-bottom: 16px;
}

.slide-content .owl-nav button.disabled {
    opacity: 0.5;
}

.slide-content .body-slide .slide-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.steps-accordion {
    margin-top: -90px;
}

/* our heroes */
.our-heroes {
    padding-top: 100px;
}

.our-heroes .title {
    margin-bottom: 50px;
}

.our-heroes .title .h2-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.our-heroes .title .h2-title img {
    margin-left: 30px;
}

.our-heroes .heroes-content {
    padding: 40px 40px 86px;
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.our-heroes .heroes-slide {
    overflow: hidden;
}
.our-heroes .heroes-slide .swiper-wrapper{
    height: auto;
}

.heroes-content .slide-num {
    position: absolute;
    left: 0;
    top: 0;
    color: #535353;
    font-size: 90.435px;
    font-weight: 400;
    line-height: 1;
}

.hero-block {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
}

.hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.hero-top .hero-in-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hero-top .hero-in {
    margin-left: 40px;
}

.hero-top .hero-img img {
    height: 288px;
    width: 254px;
    object-fit: cover;
}

.hero-top .hero-info p {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 2px;
}

.hero-top .hero-info span {
    color: #8B8B8B;
    font-size: 16px;
    line-height: 25px;
}

.hero-top .hero-tag {
    color: #FFF;
    font-size: 12px;
    font-family: 'Gilroy', sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    padding: 4px 10px;
    background: var(--red);
}

.hero-text {
    height: 150px;
    overflow: hidden;
}

.hero-text p {
    color: #FFF;
    font-size: 16px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    line-height: 25px;
}

.hero-block .hero-awards {
    padding: 24px 34px;
    background: var(--black);
    margin-top: 27px;
}

.heroes-content .swiper-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 40px;
    bottom: 40px;
}

.heroes-content .swiper-btns .swiper-button-next {
    margin-bottom: 12px;
}

.heroes-content .swiper-btns button {
    background: var(--green);
}

.heroes-content .swiper-btns button svg path {
    stroke: #fff;
}

.heroes-content .swiper-btns button.swiper-button-disabled svg path {
    opacity: 0.6;
}

.award-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}

.hero-block .award-title {
    color: #FFF;
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 25px;
}

.award-block .award-img {
    max-width: 130px;
    width: 100%;
    text-align: center;
}

.award-block .award-img span {
    color: #8B8B8B;
    text-align: center;
    font-family: 'Gilroy', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    margin-top: 8px;
}


/* faq section */
.faq-sec {
    padding-top: 100px;
}

.faq-sec .title .h2-title {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.faq-sec .accordion-item .accordion-header .accordion-button .text {
    color: #FFF;
    font-size: 16px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    line-height: 25px;
}

.faq-sec .accordion-item .accordion-header .accordion-button {
    padding: 24px 40px;
    border: none;
    background: var(--dark-gray);
    margin-bottom: 20px;
}

/* map */
.map-sec {
    padding: 100px 0;
}

.map-sec .map-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.map-sec .map-title .title span {
    background: var(--red);
    color: #FFF;
    font-size: 14px;
    font-family: 'Gilroy', sans-serif;
    padding: 3px 10px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 18px;
}

.map-sec .map-title .title p {
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
}

.map-sec .map-title .location-drop .map-drop {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 19px 30px;
    border: 1px solid #4E4E4E;
}

.map-sec .map-title .location-drop .map-drop img {
    margin-left: 11px;
}

.map-sec .map-title .location-drop .map-drop[aria-expanded="true"] img {
    transform: rotate(180deg);
}

.map-sec .dropdown-menu {
    left: auto !important;
    right: 0 !important;
}

/* footer */

footer {
    padding-top: 60px;
    background-image: url('../images/footer-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

footer .ftr-left > span {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 30px;
}

footer .ftr-left .for-mob a {
    color: #FFF;
    font-size: 52.473px;
    font-weight: 700;
    line-height: 65.591px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

footer .ftr-left .for-mob a:hover {
    color: var(--red);
}

footer .ftr-left .ftr-call {
    display: flex;
    align-items: center;
}

footer .ftr-left .ftr-call p {
    color: #FFF;
    font-size: 75.507px;
    font-weight: 700;
    line-height: 83.897px;
    text-transform: uppercase;
    margin-right: 22px;
}

footer .ftr-left .ftr-call span {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 35.656px;
}

footer .ftr-right .ftr-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding-left: 21px;
}

footer .ftr-right .ftr-menu a {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    position: relative;
}

footer .ftr-right .ftr-menu a::after {
    content: "";
    display: block;
    position: absolute;
    left: -21px;
    top: 11px;
    width: 12px;
    height: 2px;
    background: #fff;
    transition: .3s all ease;
}

footer .ftr-right .ftr-menu a:hover {
    color: var(--red);
}

footer .ftr-right .ftr-menu a:hover::after {
    left: -13px;
    background: var(--red);
}

footer .ftr-right .ftr-address {
    max-width: 255px;
}

footer .ftr-right .ftr-address p {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 8px;
}

footer .ftr-right .ftr-address address {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

footer .ftr-end {
    margin-top: 45px;
    padding: 24px 0;
    border-top: 1px solid #959595;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .ftr-end p {
    max-width: 201px;
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

footer .ftr-end .ftr-end-right {
    display: flex;
    align-items: center;
}

footer .ftr-end .ftr-end-right a {
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    border: 1px solid #CCC;
    padding: 8px 14px;
    margin-right: 45px;
}

footer .ftr-end .ftr-end-right a:hover {
    background: #4E4E4E;
    color: #fff;
}

footer .ftr-end .ftr-end-right span {
    display: flex;
    align-items: center;
    color: #CCC;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

footer .ftr-end .ftr-end-right span svg {
    margin-right: 4px;
}

/* custom checkbox */
.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;

    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.12px;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: transparent;
    border: 1px solid #FFF;
}

.control--radio .control__indicator {
    border-radius: 50%;
}

.control input:checked ~ .control__indicator {
    background: var(--green);
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.control input:checked ~ .control__indicator:after {
    display: block;
}

.control--checkbox .control__indicator:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}

/* modal */
.modal .modal-dialog {
    max-width: 717px;
}

.modal .modal-content {
    border-radius: 0;
    border: none;
    padding: 50px 60px 50px 50px;
    background: var(--dark-gray);
    box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.06);
    position: relative;
}

.modal .modal-body,
.modal .modal-header {
    padding: 0;
    border: none;
}

.modal .modal-title {
    margin-bottom: 26px;
    color: #FFF;
    font-family: 'Gilroy', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}

.modal .close-btn {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 34px;
    right: 34px;
    background: transparent;
    border: none;
}

.modal .close-btn:hover {
    transform: rotate(90deg);
}

.modal .modal-form .form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal .modal-form .form-group span {
    color: var(--light-gray);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 10px;
}

.modal .modal-form .form-group input {
    padding: 18px 20px;
    border: none;
    background: var(--black);
    width: 100%;
}

.modal .modal-form .form-group input,
.modal .modal-form .form-group input::placeholder {
    color: #8B8B8B;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

.modal .modal-form .modal-btns {
    padding-top: 18px;
    display: flex;
    align-items: center;
}

.modal .modal-form .modal-btns button {
    margin-right: 30px;
    border: none;
}

.modal .modal-form .modal-btns label {
    color: #A7A7A7;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    max-width: 285px;
    margin-bottom: 0;
}

.modal .modal-form .modal-btns label .control__indicator {
    border: 1px solid #4E4E4E;
    width: 17px;
    height: 17px;
    top: 9px;
}

.modal .modal-form .modal-btns .control--checkbox .control__indicator:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
}

.modal .modal-form .modal-btns .control input:checked ~ .control__indicator {
    background: transparent;
}

.modal .modal-list ul {
    padding-left: 0;
    margin-bottom: 40px;
    list-style: none;
}

.modal .modal-list ul li {
    padding-left: 22px;
    position: relative;
    color: #B4B4B4;
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 20px;
    position: relative;
}

.modal .modal-list ul li::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    background: var(--red);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.modal .modal-list ul li:last-child {
    margin-bottom: 0;
}

#monetary-modal .modal-title {
    margin-bottom: 34px;
}

#monetary-modal .modal-dialog {
    max-width: 776px;
}

#monetary-modal .modal-content {
    padding: 40px;
}

#monetary-modal .modal-list-btn button {
    border: none;
}

/* end */

.mob {
    display: none !important;
}


.display-none {
    display: none;
}


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1110px;
    }
}


@media only screen and (max-width: 1200px) {
    .steps-accordion {
        margin-top: 0;
    }

    footer .ftr-left .for-mob a {
        font-size: 44px;
    }

    footer .ftr-left .ftr-call p {
        font-size: 52px;
        margin-right: 12px;
    }

    .hero-block {
        max-width: 680px;
    }

    .new-volunteers .new-block .new-in .in-text {
        font-size: 20px;
        margin-right: 20px;
        line-height: 1.2;
    }

    .set-contact {
        padding: 30px;
    }

    header .free-call {
        display: none;
    }

    /* .main-sec .main-img img {
        width: 58%;
    } */
}

@media (max-width: 1024px){
    .section{
        margin: 60px 0;
    }
    .article-card_img{
        height: 135px;
    }
    .article-card_content{
        padding: 20px;
    }
    .article-card_date{
        font-size: 12px;
    }
    .article-card_title{
        font-size: 14px;
    }
    .article-card_txt{
        font-size: 14px;
    }
    .article-card_more{
        margin: 25px 0 0 0;
        font-size: 14px;
    }
}

@media only screen and (max-width: 992px) {
    .mob {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    .video-sec .video-block img,
    .video-sec .video-block video,
    .video-sec .video-block iframe {
        height: 100%;
        object-fit: cover;
    }

    header .navbar {
        position: unset;
    }

    header .top-nav {
        border: none;
        padding: 0;
    }

    header .head-link,
    header .free-call,
    header .head-contact {
        display: none;
    }

    header .location-drop {
        margin-left: 14px;
        margin-right: 16px;
        padding: 12px 0;
        border-right: none;
        border-left: none;
    }
    .header .head-logo span{
        width: 100%;
        max-width: 120px;
    }
    .dropdown-menu .menu-inner form .search-form input{
        background: none;
        padding-left:0;
        border-bottom: 1px solid #969696;
    }
    .cities-mobile{
        width: 100%;
    }
    .search-block{
        max-height: 190px;
        overflow: auto;

    }
    .search-block::-webkit-scrollbar {
        width: 8px;
        background-color: #B8B8B8;
        border-radius: 10px;
    }
    .search-btn{
        display: none;
    }
    .search-block::-webkit-scrollbar-thumb {
        background: #898989;
        border-radius: 10px;
    }
    .dropdown-menu{
        left: 0 !important;
        top: 66px !important;
        transform: none !important;
        min-width: 100%;
    }
    .dropdown, .dropend, .dropstart, .dropup{
        position: inherit;
    }

    header .mob .free-call,
    header .mob .head-contact {
        display: flex;
    }

    header .mob .head-contact {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin-right: 0;
    }

    header .mob .free-call {
        margin-top: 30px;
        justify-content: flex-end;
        margin-right: 0;
    }

    header .navbar {
        border-right: none;
        border-left: none;
        padding: 9px 12px;
    }

    header .navbar-collapse {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        background: var(--black);
        z-index: 10001;
        transition: .5s all ease;
        padding: 30px 15px;
        box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, .5);
        display: none;
    }

    header .navbar-collapse.active {
        display: block;
        right: 0;
    }

    header .navbar .navbar-nav {
        align-items: flex-end;
        gap: 20px;
    }

    header .navbar .nav-item .nav-link {
        font-size: 18px;
    }

    header .navbar .nav-item .nav-link:hover::after {
        width: 100%;
        bottom: -1px;
    }

    header .red-btn {
        font-size: 10px;
    }

    header .navbar .menu-opener {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        position: relative;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1/1;
    }
    .menu-opener *{
        pointer-events: none;
    }

    header .navbar .menu-opener span {
        position: relative;
        width: 33px;
        height: 2px;
        background: #fff;
        margin-bottom: 6px;
    }

    header .navbar .menu-opener span.three {
        margin-bottom: 0;
    }

    header .navbar .menu-opener.active span.one {
        transform: rotate(45deg);
        top: 4px;
        background: var(--red);
    }

    header .navbar .menu-opener.active span.three {
        transform: rotate(-45deg);
        top: -4px;
        background: var(--red);
    }

    header .navbar .menu-opener.active span.two {
        display: none;
    }

    .main-sec {
        padding: 45px 0;
    }

    .main-sec .left-bg {
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .main-sec .right-bg {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .main-sec .main-left h1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 24px;
        line-height: 66px;
    }

    .main-sec .main-left .h1-title img {
        margin-left: 0;
        order: 1;
    }

    .main-sec .main-left .h1-title span {
        order: 2;
    }

    .main-sec .main-left .h2-title {
        font-size: 19px;
        line-height: 30px;
        text-align: center;
    }

    .main-sec .main-left .main-tags {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .main-sec .main-left .main-tags span {
        margin-top: -1px;
        width: 100%;
        text-align: center;
        background: var(--black);
    }

    .main-sec .main-btn a {
        margin-left: auto;
        margin-right: auto;
    }

    .second-btn {
        font-size: 14px;
        height: 50px;
        width: 240px;
    }

    .main-sec .main-img img {
        display: none;
    }

    .forces-sec .forces-block {
        padding: 60px 0 35px;
        height: 400px;
        border-bottom: 1px solid #4F4F4F;
    }

    .forces-sec .forces-block .forces-inner .forces-title {
        font-size: 26px;
    }

    .forces-sec .two-col,
    .forces-sec .one-col {
        border-right: none;
    }

    .forces-sec .forces-con {
        border: none;
    }

    .forces-sec .forces-con::before {
        content: none;
    }

    .forces-sec .forces-left .forces-img {
        transform: rotate(65deg);
        right: -100px;
        top: 130px;
    }

    .forces-sec .forces-right .forces-img {
        transform: rotate(25deg);
        right: -270px;
        top: 80px;
    }

    .forces-sec .forces-right .forces-img img {
        width: 60%;
    }

    .forces-sec .forces-right-two .forces-img {
        right: -180px;
        top: 155px;
        transform: rotate(-20deg);
    }

    .forces-sec .forces-right-two .forces-img img {
        width: 65%;
    }

    .video-sec .title .video-title,
    .title .h2-title {
        font-size: 20px !important;
        line-height: 28px !important;
        margin-bottom: 8px;
    }

    .set-contact .set-left p,
    .title p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .set-sec .title p {
        margin-bottom: 26px;
    }

    .set-contact .set-left .set-title {
        font-size: 18px;
        line-height: 28px;
    }

    .set-sec {
        padding-top: 60px;
    }

    .set-list {
        padding: 20px;
    }

    .set-list .set-tag {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .set-list ul li {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .set-sec .set-rov {
        margin-bottom: 20px;
    }

    .set-contact {
        flex-direction: column;
        padding: 20px;
        align-items: flex-start;
    }

    .set-contact .set-left p {
        margin-bottom: 28px;
    }

    .set-numbers a {
        font-size: 20px;
        line-height: 24px;
    }

    .set-contact .set-left {
        max-width: 100%;
        margin-bottom: 45px;
    }

    .set-right .right-contact .icon {
        min-width: 36px;
        margin-right: 14px;
    }

    .set-numbers p {
        font-size: 14px;
    }

    .set-numbers {
        gap: 0;
    }

    .video-sec {
        padding-top: 60px;
    }

    .video-sec .title .video-title img {
        display: none;
    }

    .video-sec .title .video-title {
        padding-left: 0;
    }

    .video-sec .title {
        margin-bottom: 30px;
    }

    .video-sec .video-block {
        height: 350px;
    }

    .video-sec .video-block .video-btn .play-radius img {
        width: 110px;
        height: 110px;
    }

    .video-sec .video-block .play-btn img {
        width: 70px;
        height: 70px;
    }

    .new-volunteers .flag-img {
        display: none;
    }

    .new-volunteers .new-block p {
        font-size: 30px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .new-volunteers .new-block .new-in {
        flex-direction: column;
    }

    .new-volunteers .new-block .new-in .in-text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
        margin-right: 0;
    }

    .new-volunteers .new-block {
        align-items: flex-start;
    }

    .new-volunteers .new-block .new-in a {
        margin-right: auto;
    }

    .new-volunteers .new-rov {
        padding-bottom: 40px;
    }

    .new-volunteers {
        padding: 40px 0 50px;
        background-image: url('../images/flag-img-mob.png');
        background-repeat: no-repeat;
        background-position: top right;
    }

    .new-volunteers .new-con {
        padding-top: 0;
        border: none;
        padding: 0;
    }

    .new-volunteers .new-info p {
        font-size: 14px;
        line-height: 24px;
    }

    .new-volunteers .new-info {
        margin-bottom: 16px;
    }

    .new-volunteers .order-mob-1 {
        order: 1;
    }

    .new-volunteers .order-mob-2 {
        order: 2;
    }

    .new-volunteers .order-mob-3 {
        order: 4;
    }

    .new-volunteers .order-mob-4 {
        order: 3;
    }

    .new-volunteers .new-info img {
        height: 187px;
        object-fit: cover;
    }

    .monetary-sec {
        padding: 40px 0;
    }

    .monetary-sec .title {
        margin-bottom: 30px;
    }

    .monetary-sec .monetary-block-title span {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 0;
    }

    .monetary-sec .monetary-block-title p {
        font-size: 23px;
        line-height: 33px;
        margin-bottom: 14px;
    }

    .monetary-sec .monetary-block-text p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 0;
    }

    .monetary-sec .monetary-second-right, .monetary-sec .monetary-right-col {
        padding: 0 12px;
    }

    .monetary-sec .monetary-left-col .monetary-block-text {
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid #4F4F4F;
    }

    .monetary-sec .monetary-right-col .monetary-block-title span {
        margin-bottom: 18px;
    }

    .monetary-sec .monetary-rov {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #4F4F4F;
    }

    .monetary-sec .monetary-second-title span {
        font-size: 22px;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .monetary-sec .monetary-second-title p {
        font-size: 20px;
        margin-bottom: 30px;
        line-height: 34px;
    }

    .monetary-sec .monetary-list-text p {
        font-size: 23px;
        line-height: 34px;
        margin-bottom: 4px;
    }

    .monetary-sec .monetary-list-text > span {
        font-size: 14px;
        line-height: 22px;
    }

    .monetary-sec .monetary-list-text:last-child,
    .monetary-sec .monetary-list-text {
        margin-bottom: 24px;
    }

    .monetary-sec .monetary-list p {
        font-size: 23px;
        line-height: 34px;
        margin-bottom: 14px;
    }

    .monetary-sec .monetary-list ul li {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .social-sec {
        padding: 64px 0 0;
    }

    .social-sec .title {
        margin-bottom: 40px;
    }

    .social-sec .social-block {
        padding: 18px;
    }

    .social-sec .social-block p {
        line-height: 22px;
    }

    .social-col {
        margin-bottom: 20px;
    }

    .form-sec .form-rov {
        padding: 20px 12px;
    }

    .form-sec .form-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 40px;
    }

    .form-sec .form-numbers a {
        font-size: 20px;
        line-height: 24px;
    }

    .form-sec .form-contact .icon {
        margin-right: 14px;
    }

    .form-sec .form-contact .icon img {
        height: 18px;
    }

    .form-sec .form-call {
        margin-left: 50px;
        margin-top: 20px;
    }

    .form-sec .form-call a {
        font-size: 20px;
        line-height: 26px;
    }

    .form-sec .form-call p {
        font-size: 14px;
        line-height: 18px;
    }

    .form-sec .form-contact.mob {
        display: flex !important;
        margin-top: 30px;
    }

    .form-block {
        padding-left: 0;
    }

    .form-block .form-btn {
        padding-top: 10px;
    }

    .form-block .form-btn button {
        margin-left: auto;
        margin-right: auto;
    }

    .form-block .form-agree {
        margin-left: 17px;
    }

    .form-items-block {
        margin-top: 20px;
    }

    .form-items-block .form-item {
        padding: 20px;
        height: 178px;
        margin-bottom: 20px;
    }

    .form-items-block .form-item p {
        font-size: 16px;
        line-height: 24px;
    }

    .link-btn .link-arrow {
        margin-left: 14px;
        width: 24px;
        height: 24px;
    }

    .quote-sec {
        display: none;
    }

    .equipment-slide .eqt-img img {
        height: 150px;
    }

    .equipment-slide .eqt-block p {
        font-size: 12px;
        line-height: 22px;
    }

    .swiper-btns button {
        width: 40px;
        height: 40px;
    }

    .swiper-btns button svg {
        height: 12px;
    }

    .swiper-btns {
        gap: 7px;
    }

    .equipment-sec .equipment-title {
        position: unset;
    }

    .equipment-sec {
        position: relative;
    }

    .equipment-sec .swiper-btns {
        position: absolute;
        bottom: -50px;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%;
        justify-content: center;
    }

    .steps-sec .title {
        margin-bottom: 32px;
    }

    .accordion-item .accordion-header .accordion-button {
        padding: 14px 0;
    }

    .accordion-item .accordion-header .accordion-button .text {
        font-size: 18px;
        line-height: 32px;
        width: 90%;
    }

    .accordion-body {
        padding: 12px 12px 30px;
    }

    .accordion-body .body-text span {
        display: none;
    }

    .accordion-body .body-text p {
        font-size: 14px;
        line-height: 22px;
        margin-top: 18px;
        position: relative;
        padding-left: 16px;
    }

    .accordion-body .body-text p::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 9px;
        background: var(--red);
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }

    .accordion-body .body-text {
        margin-bottom: 0;
    }

    .slide-content {
        padding-bottom: 95px;
        margin-top: 35px;
    }

    .slide-content .owl-nav {
        left: 0;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 8px;
        margin-bottom: 35px;
    }

    .slide-content .owl-nav button {
        margin: 0;
        padding: 0;
    }

    .slide-content .owl-nav button img {
        width: 40px;
        height: 40px;
    }

    .slide-content .owl-nav .owl-prev {
        margin-bottom: 0;
    }

    .slide-content .body-slide .slide-item img {
        height: auto;
        object-fit: unset;
    }

    .our-heroes .title .h2-title img {
        display: none;
    }

    .our-heroes {
        padding-top: 60px;
    }

    .our-heroes .heroes-content {
        padding: 20px 20px 60px;
    }

    .hero-top .hero-img img {
        width: 100%;
        height: 163px;
    }

    .hero-top {
        display: block;
    }

    .heroes-content .slide-num {
        display: none;
    }

    .hero-top .hero-in {
        margin-left: 0;
        margin-top: 14px;
    }

    .hero-top .hero-info p {
        font-size: 14px;
        line-height: 22px;
    }

    .hero-top .hero-info span {
        font-size: 12px;
        line-height: 1.2;
    }

    .hero-top .hero-tag {
        font-size: 10px;
    }

    .heroes-content .swiper-btns {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        left: 0;
        bottom: 20px;
    }

    .heroes-content .swiper-btns .swiper-button-next {
        order: 2;
        margin: 0;
    }

    .heroes-content .swiper-btns .swiper-button-prev {
        order: 1;
        margin: 0;
    }

    .award-block .award-img {
        margin: auto;
    }

    .award-block .owl-nav {
        display: flex;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        justify-content: space-between;
    }

    .award-block .owl-nav button img {
        height: 22px;
    }

    .hero-block .award-title {
        font-size: 14px;
        margin-bottom: 14px;
        text-align: center;
    }

    .award-block {
        position: relative;
    }

    .faq-sec {
        padding-top: 60px;
    }

    .faq-sec .title .h2-title {
        margin-bottom: 40px;
    }

    .faq-sec .accordion-item .accordion-header .accordion-button .text {
        font-size: 14px;
        width: 90%;
    }

    .faq-sec .accordion-item .accordion-header .accordion-button {
        padding: 12px;
    }

    .map-sec .map-title {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .map-sec .map-title .location-drop .map-drop {
        display: none;
    }

    .map-sec .map-title .title p {
        font-size: 18px;
        line-height: 28px;
        max-width: 270px;
        margin-left: auto;
        margin-right: auto;
    }

    .map-sec {
        padding: 60px 0;
    }

    footer {
        padding-top: 47px;
        padding-bottom: 50px;
    }

    footer .ftr-left > span {
        font-size: 14px;
        line-height: 22px;
        max-width: 187px;
    }

    footer .ftr-left .for-mob {
        display: flex;
        align-items: flex-start;
    }

    footer .ftr-left .for-mob img {
        margin-right: 14px;
    }

    footer .ftr-left .for-mob a {
        font-size: 22px;
        line-height: 24px;
        display: flex;
        align-items: center;
    }

    footer .ftr-left .for-mob a {
        margin-bottom: 12px;
    }

    footer .ftr-left .for-mob.two {
        margin: 20px 0 35px;
    }

    footer .ftr-left .ftr-call p {
        font-size: 20px;
        line-height: 26px;
    }

    footer .ftr-left .ftr-call {
        flex-direction: column;
        align-items: flex-start;
    }

    footer .ftr-left .ftr-call span {
        font-size: 14px;
        line-height: 18px;
    }

    footer .ftr-mob span {
        color: #FFF;
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
    }

    footer .ftr-mob p {
        color: #FFF;
        font-size: 14px;
        font-weight: 600;
        line-height: 22px;
        margin-top: 10px;
    }

    footer .ftr-mob {
        padding-bottom: 30px;
        margin-bottom: 44px;
        border-bottom: 1px solid #4F4F4F;
    }

    footer .ftr-end {
        margin-top: 36px;
        padding-top: 26px;
    }

    footer .ftr-end p {
        display: none;
    }

    footer .ftr-end .ftr-end-right {
        flex-direction: column;
        align-items: flex-start;
    }

    footer .ftr-end .ftr-end-right a {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .modal .modal-content {
        padding: 30px 20px;
    }

    .modal .modal-form .modal-btns {
        flex-direction: column;
    }

    .modal .modal-form .modal-btns button {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .modal .modal-title {
        font-size: 18px;
        line-height: 26px;
        width: 83%;
    }

    #monetary-modal .modal-content {
        padding: 20px 18px;
    }

    .modal .modal-list ul li {
        font-size: 16px;
    }
}


@media only screen and (max-width: 375px) {
    .equipment-slide .eqt-img img {
        height: 100px;
    }

    .forces-sec .forces-left .forces-img {
        right: -150px;
    }

    .forces-sec .forces-right .forces-img {
        right: -300px;
    }

    .forces-sec .forces-block .forces-inner p {
        max-width: 240px;
    }

    .forces-sec .forces-left-two .forces-img {
        right: -12px;
        top: 140px;
    }
    .forces-sec .forces-left-two .forces-img.raketa{
        right: -190px;
        top: 150px;
    }
}