:root {
    --color-bg-1: #0000ff;
    --color-bg-2: #b00742;
    --color-bg-3: #2b4f5f;
    --color-bg-4: #6c4140;
    --color-bg-5: #762cd5;

    --bg-opasiti-1: rgb(12, 14, 255, 0.532);
    --bg-opasiti-2: rgba(204, 4, 68, 0.532);
    --bg-opasiti-3: rgba(45, 94, 113, 0.532);;
    --bg-opasiti-4: rgba(133, 78, 73, 0.532);
    --bg-opasiti-5: rgba(118, 44, 213, 0.63);


    --border-color-1: #0a0b5c;
    --border-color-2: #52001d;
    --border-color-3: #162b36;
    --border-color-4: #583836;
    --border-color-5: #331263;

    --lite-color-1: #b3ccff;
    --lite-color-2: #ffc9d4;
    --lite-color-3: #b9e0e8;
    --lite-color-4: #e2cfc6;
    --lite-color-5: #c8b7fb;

    --bg-opasiti-late-1: rgb(209 191 0 / 43%);
    --bg-opasiti-late-2: rgb(83 184 0 / 21%);
    --bg-opasiti-late-3: rgb(255 111 0 / 43%);
    --bg-opasiti-late-4: #07c5bc75;
    --bg-opasiti-late-5: #d5d02c57;

    --bg-trilateral-1: #ffff00;
    --bg-trilateral-2: #8bff16;
    --bg-trilateral-3: #ff6f00;
    --bg-trilateral-4: #029d99;
    --bg-trilateral-5: #d5d02c;

    --col-accent-1: #e85d04;
    --col-accent-2: #be1616;


    --white-color: #fff;
    --white-section: #fffcfa;
    --black-color: #212121;

    --hover-tranz: all .5s cubic-bezier(.3, 1, .35, 1) 0s;


}

body {
    direction: ltr;
    font-family: 'Montserrat Alternates', sans-serif !important;
    font-size: 18px;
    margin: 0;
    padding: 0;
    line-height: 1.4;

}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
p {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--hover-tranz);
}

a:hover {
    color: var(--col-accent-2);
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

ul {
    list-style: none;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

[type='checkbox'] {
    box-sizing: border-box;
    padding: 0;
}

.base-btn {
    display: inline-block;
    padding: 13px 19px;
    width: fit-content;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-1 {
    display: inline-flex;
    position: relative;
    color: #FFF;
    text-transform: uppercase;
    background: #FFA500;
    border: 2px solid #BFE2FF;
    overflow: hidden;
    z-index: 1;
}

.btn-1:hover,
.btn-1:active,
.btn-1:focus {
    color: #FFF;
}

.btn-1:before,
.btn-1:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 100%;
    background-color: #bb5502;
    z-index: -1;
}

.btn-1:before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.btn-1:after {
    right: -20px;
    transform: translate(50%, -50%);
}

.btn-1:hover:before,
.btn-1:active:before,
.btn-1:focus:before {
    animation: from-left 0.5s both;
}

.btn-1:hover:after,
.btn-1:active:after,
.btn-1:focus:after {
    animation: from-right 0.5s both;
}

@keyframes from-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
    }
    100% {
        right: 50%;
        width: 100%;
    }
}

@keyframes from-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
    }
    100% {
        left: 50%;
        width: 100%;
    }
}


.btn-2 {
    display: block;
    width: fit-content;
    padding: 15px 32px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(130deg, #df4747, #d03636, #8e3636);
    border-radius: 13px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    border-style: solid;
    border-width: 2px;
}

.btn-2:before,
.btn-2:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.btn-2:before {
    left: 100%;
    background: linear-gradient(130deg, #ff6b6b, #c94d4d, #8e3636);
    z-index: -1;
}

.btn-2:hover:before {
    transform: translateX(-50%);
    opacity: 1;
}

.btn-2:after {
    right: 100%;
    background: linear-gradient(130deg, #ff6b6b, #c94d4d, #8e3636);
    z-index: -1;
}

.btn-2:hover:after {
    transform: translateX(50%);
    opacity: 1;
}

.btn-2:hover .button-text {
    transform: translateY(-3px);
    color: var(--white-color);
}

.btn-2:hover {
    color: var(--white-color);
}

.button-text {
    transition: transform 0.3s ease-in-out;
    color: #fff;
}

.btn-3 {
    color: var(--white-color);
    background: var(--col-accent-2);
    border-color: var(--col-accent-2);
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    padding: 16px;
    border-radius: 13px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0px 7px 10px -5px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out 0s;

}


.btn-3:hover {
    color: var(--bg-trilateral-1);
    background: #171717;
    border-color: var(--col-accent-2);
}


.btn-4 {
    position: relative;
    margin: 0;
    width: fit-content;
    text-align: center;
    padding: 15px 20px;
    outline: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid var(--white-section);
    text-transform: uppercase;
    background-color: #333;
    border-radius: 15px;
    color: #fff;
    font-weight: 300;
    font-size: 15px;
    font-family: inherit;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.btn-4:hover {
    animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }

    25% {
        transform: rotate(7deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-7deg) translate3d(0, 0, 0);
    }

    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }

    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}

.btn-4:hover span {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

.btn-4::before,
.btn-4::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
    z-index: -1;
    transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.btn-4:hover::before,
.btn-4:hover::after {
    opacity: 0.15;
    transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.btn-4:hover::before {
    transform: translate3d(50%, 0, 0) scale(0.9);
}

.btn-4:hover::after {
    transform: translate(50%, 0) scale(1.1);
}

.btn-5 {
    text-decoration: none;
    display: inline-block;
    padding: 15px 30px;
    position: relative;
    border: 2px solid var(--bg-trilateral-1);
    color: var(--bg-trilateral-1);
    transition: .4s;
    background-color: #FF0000;
}

.btn-5:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    border: 2px solid rgba(0, 0, 0, 0);
    transition: .4s;
}

.btn-5:hover:after {
    border-color: var(--bg-trilateral-1);
    width: calc(100% - 10px);
    height: calc(100% + 10px);
}

.btn-5:hover, .btn-5:focus {
    color: #fff;
}

.stale-prv {
    overflow: hidden;
    word-break: break-all;
}

.main-padding {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.privacy-contexPM {
    word-break: break-word;
}

.privacy-contexPM p {
    margin-bottom: 10px;
    text-indent: 3ch;
    font-size: 15px;

}

.privacy-contexPM h1 {
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.privacy-contexPM h2 {
    font-weight: 600;
    text-align: center;
    margin-bottom: 19px;
}

.privacy-contexPM table, .privacy-contexPM a {
    word-break: break-word;
    color: inherit;
}

.header {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-1);
}

.blok-logo {
    position: absolute;
    background-color: var(--white-section);
    right: 0;
    bottom: 0;
    width: 30%;
    height: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: end;
    justify-content: center;
    clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0% 100%);
}

.bg-opas {
    background-image: url(../img/mask-bg-HXLox0.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-bg-img {
    background-image: url(../img/visuals_header_69a86d637ab728.76554717.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 350px;
}

.triangle {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    z-index: 1;
    border-left: 273px solid transparent;
    border-top: 273px solid var(--bg-trilateral-1);

}

.header-blok-text {
    width: 66%;
    padding: 60px 30px;
    color: #fff;
    margin-right: auto;
    box-sizing: border-box;
}

.flex {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;

}

.logo-topMP {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--hover-tranz);
    align-items: center;
    justify-content: start;
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;

}

.logo-topMP:hover {
    color: var(--col-accent-2);
}

.logo-topMP img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.header-content {
    font-size: 25px;
    text-align: center;
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;

}

.section-who {
    padding: 80px 0 100px;
}

.who-wrapper {
    display: flex;
    gap: 30px;
    flex-direction: row;

    div {
        flex: 1;
    }
}

.who-bg-img {
    background-image: url(../img/photos_header_69a86d637ab840.61101631.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 0px;
}

.who-grup {
    display: flex;
    gap: 20px;
    flex-direction: column-reverse;
}

.who-grup_img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 0px;

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

.who-grup_content {
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4), inset 0 0 50px rgba(0, 0, 0, 0.2);
    border-radius: 0px;
    background-color: var(--white-section);
}

.inner-tit {
    font-size: 36px;
    color: var(--black-color);
    margin-bottom: 10px;
    line-height: 1.3;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;

}

.article-content p {
    margin-bottom: 10px;
    text-indent: 3ch;

}

.article-content ul, ol {
    list-style: inside;
}

.positionBlok {
    position: relative;
    z-index: 1;
}

.article-wrapper {
    display: flex;
    gap: 40px;
    flex-direction: column-reverse;
}

.article-img {
    width: 100%;
    height: 349px;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.article-price {
    display: inline-flex;
    padding: 10px 30px;
    background-color: var(--color-bg-1);
    color: #fff;
    gap: 10px;
    font-weight: 700;
    margin-top: 20px;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0% 100%);
    font-size: 26px;

}

.light-bg {
    position: relative;
    background-color: var(--white-section);
}

.triangle-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-right: 273px solid transparent;
    border-bottom: 273px solid var(--bg-trilateral-1);
}

.triangle-bottom-left {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 273px solid transparent;
    border-bottom: 273px solid var(--bg-trilateral-1);
}

.section-title {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 10px;
    background-color: var(--white-section);
}

.box-title {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.box-title::after, .box-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--black-color);
}

.box-title::after {
    right: 0;
    left: 0;
    bottom: 54%;
}

.box-title::before {
    top: 31%;
    left: 0;
    right: 0;
}

.ityemBenef-row {
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.ityemBenef-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ityemBenef-clip-img {

    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 350px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.ityemBenef-img::before {
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    bottom: 0;
    background-color: var(--bg-opasiti-late-1);
    height: 100%;
    z-index: 0;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.ityemBenef-wrapper {
    display: flex;
    gap: 20px;
}

.ityemBenef-colum {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.ityemBenef-colum1 {
    margin-bottom: -50px;
    justify-content: end;
}

.ityemBenef-blok {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: end;
    background-color: var(--color-bg-1);
    color: #fff;
    font-size: 14px;
    transition: all 0.7s ease-out 0s;
    border-radius: 0px;
}

.ityemBenef-blok:hover {
    transform: rotate(-5deg);
}

.ityemBenef-icon {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.section-statist {
    padding: 65px 0 130px;
}

.statist-bgImg {
    position: relative;
    background-image: url(../img/visuals_header_69a86d637ab728.76554717.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.statist-bgImg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--bg-opasiti-1);
}

.reyting-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: auto;
    grid-gap: 15px;
}

.counter-style {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 50px 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    position: relative;
    overflow: hidden;
    color: var(--white-color);
    border-radius: 0px;
}

.counter-style::after {
    content: "";
    height: 0;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transition: all .8s;
    -webkit-transition: all .8s;
    transform-origin: top;
    -webkit-transform-origin: top;
    background-color: var(--bg-trilateral-1);
}

.counter-style:hover::after {
    height: 100%;
    top: auto;
    bottom: 0;
    transform-origin: bottom;
    -webkit-transform-origin: bottom;
}

.reyting-number {
    font-size: 60px;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: 3px;
}

.counter-style h3 {
    display: block;
    font-size: 19px;
    font-weight: 400;
}

.counter-style svg {
    width: 50px;
    height: 50px;
    fill: #fff;
}

.servis-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.servis-blok {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.servis-item {
    flex: 1;
    padding: 50px 30px;
    text-align: center;
    overflow: hidden;
    transition: var(--hover-tranz);
    border-radius: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4), inset 0 0 50px rgba(0, 0, 0, 0.2);
    background-color: var(--white-section);
}

.servis-item:hover {
    transform: scale(1.06);
}

.servis-bgImg {
    background-image: url(../img/thumbnails_header_69a86d637ab8a4.05107982.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.servis-bgImg2 {
    background-image: url(../img/depictions_header_69a86d637ab8e5.84974595.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.servis-bgImg3 {
    background-image: url(../img/icons_header_69a86d637ab913.43047780.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.overley {
    position: relative;
}

.overley::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--bg-opasiti-1);
}

.servis-content-bg {
    position: relative;
    color: #fff;
}

.first-block {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: -130px;
    background-color: var(--lite-color-1);

}

.first-block h2 {
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.footerJK-bottom {
    background-color: var(--black-color);
    padding: 20px 0;
    border-top: 1px solid #4a4a4a;
}

.footer-copyrightJK {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: var(--white-section);
    justify-content: end;
}

.footerJK-top {
    padding: 60px 0;
    background-color: var(--white-section);
    border-top: 1px solid #3f3b3b26;
}

.footerJK-list {
    display: flex;
    flex-direction: row;
}

.footerJK-item {
    flex: 1;
    padding: 20px;
}

.privacy-list {
    display: flex;
    flex-direction: column;
}

.privacy-list > li {
    margin-bottom: 11px;
    padding-bottom: 12px;
    border-bottom: 1px dotted #a69d9d;
}

.privacy-list > li > a {
    word-wrap: break-word;
}

.privacy-list > li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.footerJK-item .logo-topMP {
    margin-bottom: 20px;
}

.privacy-page .section-title {
    background-color: #fff;
}

.colum-grup {
    display: flex;
    flex-direction: column-reverse;
}

.form-wrapper {
    display: flex;

    flex-direction: row;
}

.form-wrapper_item {
    flex: 1;
    padding: 30px;
}

.form-bg {
    color: #fff;
    background-image: url(../img/visuals_header_69a86d637ab728.76554717.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.galary-section {
    padding: 0 0 80px;
}

.form-section {
    padding: 80px 0;
}

.form-wrapper_iner {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;

    p {
        text-align: center;
        font-size: 20px;
    }
}

.formPKK {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 50px 20px;
    color: var(--border-color-1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4), inset 0 0 50px rgba(0, 0, 0, 0.2);
    border-radius: 0px;
}

.input-custom--panel_control, .textarea-custom--panel_control {
    padding: 12px 20px;
    max-width: 100%;
    background: none;
    color: var(--black-color);
    outline: none;
    border-radius: 0px;
    border: 1px dotted var(--border-color-1);
    font-size: 14px;
}

.textarea-custom--panel_control {
    min-height: 50px;
}

.form-checkIO {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    font-size: 13px;

}

.form-buttom {
    display: flex;
    flex-direction: column;
    gap: 20px;

    button {
        width: 100%;
        box-sizing: border-box;
    }
}

.form-wrapper_iner h2 {
    font-size: 40px;
    text-align: center;
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;

}

.gallery {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    transition: all 0.7s ease-out 0s;
}

.bt-inner-overlay, .bt-inner-overlay-2 {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    bottom: 0;
    right: 0;
    transition: all 0.7s ease-out 0s;
}

.bt-inner-overlay {
    background-image: -webkit-linear-gradient(-45deg, #152332 50%, transparent 50%);
}

.bt-inner-overlay-2 {
    background-image: -webkit-linear-gradient(-45deg, transparent 50%, var(--bg-opasiti-late-1) 50%);

}

.gallery-item:hover .bt-inner-overlay-2 {
    opacity: 0.7;
    animation: fadein3 0.7s;
    -moz-animation: fadein3 0.7s;
    -webkit-animation: fadein3 0.7s;
}

.gallery-item:hover .bt-inner-overlay {
    opacity: 0.7;
    animation: fadein2 0.7s;
    -moz-animation: fadein2 0.7s;
    -webkit-animation: fadein2 0.7s;
    -o-animation: fadein2 0.7s;
}

@keyframes fadein2 {
    0% {
        opacity: 0;
        top: -30%;
    }
    100% {
        opacity: 0.7;
        top: 0%;
    }
}

@keyframes fadein3 {

    0% {
        opacity: 0;
        bottom: -30%;
    }
    100% {
        opacity: 0.7;
        bottom: 0%;
    }

}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.gallery-item:nth-child(1),
.gallery-item:nth-child(3),
.gallery-item:nth-child(5) {
    height: 300px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(4),
.gallery-item:nth-child(6) {
    height: 400px;
}

.map_blok iframe {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4), inset 0 0 50px rgba(0, 0, 0, 0.2);
    border-radius: 0px;
}

.map_blok {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}

@media screen and (min-width: 480px) {
    .main-padding {
        max-width: 450px;
    }

}

@media screen and (min-width: 575px) {
    .main-padding {
        max-width: 540px;
    }
}

@media (max-width: 575px) {
    .header-content {
        font-size: 22px;
    }

    .reyting-wrapper {
        grid-template-columns: 1fr;
    }

    .inner-tit, .form-wrapper_iner h2 {
        font-size: 24px;
    }

    .footerJK-item {
        font-size: 14px;
    }

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        height: 300px;
    }

    .form-wrapper_item {
        padding: 30px 0;
    }

    .triangle-bottom, .triangle-bottom-left, .triangle {
        border-width: 300px;

    }

    .reyting-numbe {
        font-size: 40px;
        line-height: 40px;
    }

    .servis-item {
        padding: 50px 20px;
    }


}

@media screen and (min-width: 768px) {
    .main-padding {
        max-width: 730px;
    }
}

@media (max-width: 768px) and (min-width: 575px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(3) {
        height: 400px;
    }

    .gallery-item:nth-child(4) {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blok-logo {
        display: none;
    }

    .header-blok-text {
        width: 100%;
        padding: 60px 10px;

    }

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

    .who-wrapper {
        flex-direction: column-reverse;

        div {
            flex: auto;
        }
    }

    .who-bg-img {
        height: 250px;
        width: 100%;
    }

    .ityemBenef-wrapper {
        flex-direction: column;
    }

    .ityemBenef-colum1 {
        margin-bottom: 0;
    }

    .servis-list {
        flex-direction: column;
    }

    .first-block {
        margin-top: 0;
    }

}

@media screen and (min-width: 992px) {
    .main-padding {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .ityemBenef-row {
        flex-direction: column;
    }

    .ityemBenef-clip-img {
        min-height: auto;
        height: 350px;
    }

    .servis-blok {
        flex-direction: column;
    }

    .servis-item {
        flex: auto;
    }

    .footerJK-list {
        flex-direction: column;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .map_blok iframe {
        height: 200px;
    }

}

@media (max-width: 992px) and (min-width: 768px) {
    .servis-list {
        flex-direction: row;
    }

}

@media (max-width: 992px) and (min-width: 575px) {
    .reyting-wrapper {
        grid-template-columns: 1fr 1fr;
    }

}

@media screen and (min-width: 1200px) {
    .main-padding {
        max-width: 1170px;
    }
}