:root {
    --menu-text: #D9E9CD;
    --gradient-from: #66AFD6;
    --gradient-middle: #3696C9;
    --gradient-to: #226081;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #2e2e2e;
    font-size: 16px
}

.uppercase {
    text-transform: uppercase
}

.clear {
    clear: both
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none
}

.wrapper {
    overflow-x: hidden
}

.content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px
}

.text-header {
    justify-content: center;
    color: #2e2e2e;
    font-size: 36px;
    display: flex;
    align-items: center;
    padding: 38px 8px;
    font-weight: bold
}

@media (max-width: 599px) {
    .text-header {
        font-size: 20px
    }
}

.text-header:before {
    content: '';
    display: inline-block;
    width: 4px;
    margin-right: 6px;
    height: 30px;
    background: var(--gradient-middle);
}

.text-header h1 {
    font-size: 36px
}

@media (max-width: 599px) {
    .text-header h1 {
        font-size: 20px
    }
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center
}

.header .grid .logo {
    display: flex;
    align-items: center;
    color: #2e2e2e;
    font-weight: 600;
}

.header .grid .logo img {
	width: 100%;
	max-width: 230px;
}

.footer .logo img {
	max-height: 140px;
}

.logo img {
    margin-right: 10px;
}

.header .grid1 {
    width: 20%
}

.header .logo-cambridge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo-cambridge div {
    margin-top: .5rem;
    text-align: center;
    font-weight: 600;
}

.header .logo-cambridge img {
    display: block;
    max-width: 30px;
    margin-right: 10px;
}

.header .grid2 {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

.header .grid2-content {
    display: grid;
}

@media screen and (max-width: 420px) {
	.header .grid2-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0;
	}
}

.header .grid2 .info-item {
    display: flex;
    font-size: 16px;
    margin: 5px 0;
    font-weight: 600;
    align-items: center;
}

.header .grid2 .info-item img {
    margin-right: 12px;
    object-fit: contain;
}

.header .grid3 {
    width: 20%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
}

.header .grid3 .phone {
    display: flex;
    font-size: 16px;
    font-weight: bold;
}

.header .grid3 .phone a {
    color: #2e2e2e;
    text-decoration: none
}

.header .grid3 .phone a:hover {
    text-decoration: underline
}

.header .grid3 .phone img {
    margin-right: 10px;
    width: 21px;
}

.header__btn-wrapper {
	width: 20%;
}

.header .button,
.navigation-content .button {
    background: var(--gradient-from);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    display: block;
    line-height: 40px;
    width: auto;
    text-decoration: none
}

.header .button:hover {
    background: linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
    background: -webkit-linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
}

@media (max-width: 1000px) {
    .header .grid1 {
        width: 100%;
        margin-top: 20px;
        justify-content: center
    }

    .header .grid2 {
        width: 100%;
        margin-top: 20px;
        justify-content: center
    }

    .header .grid3 {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        justify-content: center
    }

    .header .grid1-cambridge {
        width: 100%;
    }

    .header-content {
        flex-wrap: wrap
    }

    .header {
        height: auto
    }

    .header .grid .logo {
        justify-content: center
    }

    .header__btn-wrapper {
    		width: 100%;
    }
}

@media (max-width: 440px) {
    .header .grid .logo {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center
    }

    .header .grid2 .info-item {
        font-size: 14px
    }
}

.navigation {
    background: #328DBD;
    background: linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
    background: -webkit-linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
    display: block;
    height: 50px
}

.navigation .hamburger {
    display: none
}

@media (max-width: 819px) {
    .navigation .hamburger {
        display: block;
        position: absolute;
		    top: 0;
		    width: 100%;
    }
}

.navigation-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.navigation-content ul {
    display: flex;
    width: 100%;
    height: 50px;
    align-items: center
}

@media (max-width: 819px) {
    .navigation-content ul {
        display: none;
        /*position: absolute;*/
        height: auto;
        z-index: 100;
        /*top: 50px;*/
        margin-top: 50px;
        background: var(--gradient-from);
        border: 1px solid var(--gradient-to);
    }
}

.navigation-content ul li {
    list-style: none;
    height: 35px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2px solid #c7c7c7;
    text-align: center
}

@media (max-width: 819px) {
    .navigation-content ul li {
        height: 50px;
        border-top: 1px solid #dbd9d9;
        border-right: none
    }
}

.navigation-content ul li a {
    color: #fff;
    text-decoration: none
}

.navigation-content ul li a:hover {
    text-decoration: underline
}

.navigation-content ul li.active a {
    color: var(--menu-text);
}

.navigation-content ul li:last-child {
    border-right: 0
}

.slider {
    position: relative
}

.slider .prev-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(0, 0, 0, 0.58);
    z-index: 20
}

.slider .prev-button:hover {
    background: rgba(0, 0, 0, 0.7)
}

@media (max-width: 629px) {
    .slider .prev-button {
        display: none
    }
}

.slider .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 14px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(0, 0, 0, 0.58);
    z-index: 20
}

.slider .next-button:hover {
    background: rgba(0, 0, 0, 0.7)
}

@media (max-width: 629px) {
    .slider .next-button {
        display: none
    }
}

.slider .item {
    position: relative;
    overflow: hidden
}

.slider .item-content-overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 60%;
    left: -120px;
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    background: var(--gradient-middle);
    display: none;
}

@media (max-width: 1019px) {
    .slider .item-content-overlay {
        display: none
    }
}

.slider .item .text {
    position: absolute;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    left: 50%;
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

@media (max-width: 1019px) {
    .slider .item .text {
        position: static;
        transform: initial;
        background: var(--gradient-middle);
        padding: 20px;
        padding-bottom: 60px
    }
}

.slider .item .text .text1 {
    background: #fff;
    color: var(--gradient-middle);
    padding: 10px;
    max-width: 600px;
    font-size: 19px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block
}

.slider .item .text .text1:hover {
    color: #fff;
    background: var(--gradient-middle);
}

@media (max-width: 559px) {
    .slider .item .text .text1 {
        font-size: 16px
    }
}

.slider .item .text .text2 {
    color: #fff;
    font-size: 56px;
    margin-top: 30px;
    font-weight: 900
}

@media (max-width: 559px) {
    .slider .item .text .text2 {
        font-size: 25px
    }
}

.slider .item .text .text3 {
    color: #fff;
    font-size: 24px;
    margin-top: 23px
}

.about {
    background: #f8f8f8
}

.about-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    padding-bottom: 20px;
    line-height: 20px;
}

.page-services-full-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    padding-bottom: 20px
}

.page-comments-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    padding-bottom: 20px
}

.page-services-full-content .service-container {
    display: flex;
    max-height: 418px;
}

.page-services-full-content .service-container .short {
    max-height: 418px;
    position: relative;
}

.page-services-full-content .service-container .short:before {
    position: absolute;
    height: 50px;
    width: 100%;
    bottom: 10px;

    content: "";
    left: 0;
    -webkit-box-shadow: inset 0px -46px 63px -4px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0px -46px 63px -4px rgba(255, 255, 255, 1);
    box-shadow: inset 0px -46px 63px -4px rgba(255, 255, 255, 1);
    z-index: 1;
}

.mCSB_scrollTools {
    z-index: 1;
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #dbdbdb !important;
    width: 4px !important;
    border-radius: 0 !important;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: var(--gradient-middle) !important;
    border-radius: 0 !important;;
    width: 8px !important;;
    filter: "alpha(opacity=100)" !important;;
    -ms-filter: "alpha(opacity=100)" !important;;
}

.page-services-full-content .short {
    padding: 10px;
}

.page-services-full-content .service-container img {
    margin: 10px;

    flex-shrink: 0;
}

.page-services-full-content .content {
    margin-top: 30px;
}

.partners {
    background: #f8f8f8
}

.two-news-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.reviews-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    margin-top: 10px;
}

.partners-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

@media (max-width: 799px) {
    .about-content {
        flex-wrap: wrap
    }
}

.about-content .grid {
    width: 50%;
    padding: 20px;
    font-size: 14px;
    color: #2e2e2e;
    /*display: flex;*/
    align-items: center;
}

@media (max-width: 799px) {
    .about-content .grid {
        width: 100%
    }
}

.about-content .grid img {
    width: 100%
}

.plusi-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    padding-bottom: 20px
}

@media (max-width: 869px) {
    .plusi-content {
        flex-wrap: wrap
    }
}

.plusi-content .grid {
    width: 25%;
    padding: 20px;
    font-size: 14px;
    color: #2e2e2e;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

@media (max-width: 869px) {
    .plusi-content .grid {
        width: 50%
    }
}

@media (max-width: 419px) {
    .plusi-content .grid {
        width: 100%
    }
}

.plusi-content .grid img {
    width: 100%;
    max-width: 144px;
    margin: 0 auto
}

.plusi-content .grid .text1 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px
}

.plusi-content .grid .text2 {
    width: 100%;
    text-align: center;
    margin-top: 14px
}

.uslugi {
    background: #f8f8f8
}

.uslugi-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    padding-bottom: 20px
}

.uslugi-content .owl-stage {
    display: flex;
}

.uslugi-content .owl-item {
    display: flex;
}

@media (max-width: 814px) {
    .uslugi-content {
        flex-wrap: wrap
    }
}

.uslugi-content .grid {
    /* padding: 20px; */
    background: #fff;
    font-size: 14px;
    color: #2e2e2e;
    display: flex;
    border: 1px solid var(--gradient-middle);
    padding-top: 0;
    flex-wrap: wrap;
    flex-direction: column;
    /*align-items: center;*/
}

.uslugi-content .grid:hover .text1 {
    text-decoration: underline;
    color: #fff
}

@media (max-width: 814px) {
    .uslugi-content .grid {
        width: 100%
    }
}

.uslugi-content .grid a {
    margin: 0 auto
}

.uslugi-content .grid img {
    width: 100%;
    margin: 0 auto;
    height: 20vh;
    object-fit: cover;
}

.uslugi-content .grid .text1 {
    width: 100%;
    font-size: 15px;
    display: flex;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
    color: #2e2e2e;
    text-decoration: none;
    background: var(--gradient-middle);
    color: #fff;
    padding: 10px;
    margin: 0;
    justify-content: center;
    /* display: flex !important; */
    align-items: center;
    min-height: 70px;
}

.uslugi-content .grid .text2 {
    width: 100%;
    padding: 0 21px;
    max-width: 370px;
    margin: 0 auto;
    margin-top: 14px;
    font-size: 13px;
    min-height: 70px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px
}

.gallery-content .link {
    color: var(--gradient-middle);
    font-size: 20px;
    font-weight: 600;
    margin: 20px auto
}

.gallery-content .grid {
    width: 33.3%;
    padding: 15px;
    font-size: 14px;
    color: #2e2e2e;
    display: flex;
    align-items: center
}

@media (max-width: 819px) {
    .gallery-content .grid {
        width: 50%
    }
}

@media (max-width: 449px) {
    .gallery-content .grid {
        width: 100%
    }
}

.gallery-content .grid img {
    width: 100%;
    display: block
}

.gallery-content .grid .img-block {
    position: relative
}

.gallery-content .grid .img-block .overlay-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.gallery-content .grid .img-block .overlay-hover img {
    width: initial;
    display: block
}

.gallery-content .grid .img-block:hover .overlay-hover {
    display: flex
}

.form-1 {
    padding-top: 50px;
    padding-right: 10px;
    padding-left: 10px;
}

.form-1-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    color: #2e2e2e;
    justify-content: center;
    border: 1rem solid #bee4f7;
}

@media screen and (max-width: 360px) {
    .form-1-content {    
        padding: 1rem;
    }
}

.form-1-content .grid-left {
    width: 50%;
    display: none;
}

.form-1-content .grid-left img {
    display: block
}

@media (max-width: 809px) {
    .form-1-content .grid-left {
        display: none
    }
}

.form-1-content .grid-right {
    display: flex;
    align-items: center;
    width: 60%
}

@media (max-width: 809px) {
    .form-1-content .grid-right {
        width: 100%;
        padding-bottom: 20px
    }
}

.form-1-content .grid-right .text1 {
    font-size: 36px;
    font-weight: bold;
    color: #2e2e2e;
    text-align: center;
    margin-bottom: 2rem;
}

.form-1-content .grid-right .text1 span {
    color: var(--gradient-middle);
}

.form-1-content .grid-right .text2 {
    font-size: 18px;
    margin-top: 15px
}

.form-1-content .grid-right .text3 {
    font-size: 16px;
    color: var(--gradient-middle);
    margin-top: 10px;
}

.form-1-content .grid-right form {
    display: flex;
    flex-wrap: wrap
}

.form-1-content .grid-right form .input50 {
    padding-left: 30px;
    padding-bottom: 15px;
    margin-top: 15px;
    width: 50%
}

.form-1-content .grid-right form .input50 input[type=text] {
    line-height: 33px;
    font-style: italic;
    border-radius: 4px;
    font-weight: 300;
    font-size: 14px;
    padding: 0 15px;
    border: 1px solid #959595
}

.form-1-content .grid-right form .input50:first-child {
    padding-left: 0
}

.form-1-content .grid-right form .input50 input {
    width: 100%
}

.form-1-content .grid-right form .input100 {
    width: 100%
}

.form-1-content .grid-right form .input100 textarea {
    width: 100%;
    font-style: italic;
    border-radius: 4px;
    font-weight: 300;
    font-size: 14px;
    padding: 10px 15px;
    border: 1px solid #959595
}

.form-1-content .grid-right form .submit-conteiner {
    display: flex;
    align-items: center;
    margin-top: 13px;
    width: 100%;
    flex-direction: column;
}

@media (max-width: 419px) {
    .form-1-content .grid-right form .submit-conteiner {
        flex-wrap: wrap
    }
}

.form-1-content .grid-right form .submit-conteiner button {
    background: var(--gradient-from);
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 46px;
    max-width: 300px;
    height: 60px;
    cursor: pointer;
    display: block;
    border: 0;
    width: 100%;
    text-decoration: none;
    margin-top: 2rem;
}

@media (max-width: 419px) {
    .form-1-content .grid-right form .submit-conteiner button {
        width: 100%;
        max-width: 100%
    }
}

.form-1-content .grid-right form .submit-conteiner button:hover {
    background: linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
    background: -webkit-linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
}

.form-1-content .grid-right form .submit-conteiner .text4 {
    font-size: 12px;
    color: #9b9b9b;
    display: block;
    margin-left: 40px
}

@media (max-width: 419px) {
    .form-1-content .grid-right form .submit-conteiner .text4 {
        margin: 10px 0;
        text-align: center;
        width: 100%
    }
}

.seo {
    background: #f8f8f8;
    padding-bottom: 50px
}

.seo .text-header {
    padding: 50px 0
}

.seo-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
    color: #2e2e2e;
    flex-direction: column;
}

.footer {
    background: #2e2e2e;
    min-height: 127px;
}

.footer-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    color: #fff
}

.footer .line2 {
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    border-top: 1px solid #828282
}

@media (max-width: 399px) {
    .footer .line2 {
        font-size: 13px
    }
}

.footer .line2 a {
    color: #4c63c4
}

.footer .line1 {
    display: flex;
    width: 100%;
    min-height: 125px;
    align-items: center
}

@media (max-width: 1139px) {
    .footer .line1 {
        flex-wrap: wrap
    }
}

@media (max-width: 1139px) {
    .footer .line1 .grid1 {
        width: 100%
    }

    .footer .line1 .grid1 img {
        margin: 10px auto;
        display: grid
    }
}

.footer .line1 .grid2 {
    flex-grow: 1;
    padding: 0 20px
}

@media (max-width: 999px) {
    .footer .line1 .grid2 {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap
    }

    .footer .line1 .grid2 ul {
        width: 100%;
        justify-content: center
    }
}

.footer .line1 .grid2 .info {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-top: 18px
}

.footer .line1 .grid2 .info img {
    margin-right: 12px
}

@media (max-width: 389px) {
    .footer .line1 .grid2 .info {
        font-size: 16px
    }
}

.footer .line1 .grid2 ul {
    display: flex
}

@media (max-width: 999px) {
    .footer .line1 .grid2 ul {
        flex-wrap: wrap
    }
}

.footer .line1 .grid2 ul li {
    list-style: none
}

.footer .line1 .grid2 ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 0 10px
}

.footer .line1 .grid2 ul li a:hover {
    text-decoration: underline
}

.footer .line1 .grid2 ul li:first-child a {
    padding-left: 0
}

.footer .line1 .grid2 ul li:first-last a {
    padding-right: 0
}

.footer .line1 .grid3 {
    flex-grow: 1;
    margin-top: 20px;
}

@media (max-width: 999px) {
    .footer .line1 .grid3 {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center
    }
}

.footer .line1 .grid3 .phone {
    display: flex;
    align-items: center;
}

.phone img {
    object-fit: contain;
}

.phone {
    margin-bottom: 5px;
}

@media (max-width: 999px) {
    .phone {
        margin-right: 20px;
    }
}

.footer .line1 .grid3 .phone img {
    margin-right: 10px;
    width: 21px;
}

.footer .line1 .grid3 .phone a {
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    font-weight: bold
}

@media (max-width: 389px) {
    .footer .line1 .grid3 .phone a {
        font-size: 18px
    }
}

.footer .line1 .grid3 .phone a:hover {
    text-decoration: underline
}

.footer .line1 .grid3 .location {
    display: flex;
    align-items: center
    margin-bottom: 20px;
}

@media (max-width: 389px) {
    .footer .line1 .grid3 .location {
        font-size: 14px
    }
}

.footer .line1 .grid3 .location img {
    margin-right: 10px
}

.footer .line1 .grid3 .location a {
    font-size: 18px;
    color: #fff;
    text-decoration: none
}

.footer .line1 .grid4 {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 0 0 0 40px
}

@media (max-width: 999px) {
    .footer .line1 .grid4 {
        padding: 20px 0;
        justify-content: center
    }
}

.footer .line1 .grid4 .button {
    background: var(--gradient-from);
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    display: block;
    width: 100%;
    line-height: 38px;
}

.footer .line1 .grid4 .button:hover {
    background: #465ec1;
    background: linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
    background: -webkit-linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
}

.footer .line1 .grid4 .social {
    margin-top: 15px;
    margin-left: 10px
}

.modal-zvonok {
    display: none
}

.modal-form {
    display: none
}

.modal-konf {
    display: none
}

.modal-zvonok-content .text1 {
    font-size: 24px;
    color: #2e2e2e;
    text-align: center;
    margin: 0 0 40px 0
}

.modal-zvonok-content input[type=text] {
    line-height: 48px;
    font-style: italic;
    width: 100%;
    max-width: 430px;
    background: #f8f8f8;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 14px;
    padding: 0 15px;
    border: 1px solid #959595
}

.modal-zvonok-content button[type=submit] {
    max-width: 300px;
    width: 100%;
    line-height: 46px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    background: var(--gradient-from);
    border: 0
}

.modal-zvonok-content button[type=submit]:hover {
    background: linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
    background: -webkit-linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
}

.modal-zvonok-content .text2 {
    font-size: 14px;
    text-align: center;
    color: #2e2e2e;
    margin-top: 20px
}

.modal-zvonok-content .text2 a {
    color: #3c54bb
}

.modal-form-content .text1 {
    font-size: 24px;
    color: #2e2e2e;
    text-align: center;
    margin: 0 0 40px 0
}

.modal-form-content input[type=text], .modal-form-content input[type=email], .modal-form-content textarea, .modal-form-content select {
    line-height: 48px;
    font-style: italic;
    width: 100%;
    max-width: 430px;
    background: #f8f8f8;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 14px;
    padding: 0 15px;
    border: 1px solid #959595
}

.modal-form-content select {
    font-style: normal;
    font-weight: bold;
    height: 48px
}

.modal-form-content button[type=submit] {
    max-width: 300px;
    width: 100%;
    line-height: 46px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    background: #2f48b4;
    background: -moz-linear-gradient(top, #2f48b4 0, #465ec1 100%);
    background: -webkit-linear-gradient(top, #2f48b4 0, #465ec1 100%);
    background: linear-gradient(to bottom, #2f48b4 0, #465ec1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2f48b4', endColorstr='#465ec1', GradientType=0);
    border: 0
}

.modal-form-content button[type=submit]:hover {
    background: #465ec1;
    background: -moz-linear-gradient(top, #465ec1 0, #2f48b4 100%);
    background: -webkit-linear-gradient(top, #465ec1 0, #2f48b4 100%);
    background: linear-gradient(to bottom, #465ec1 0, #2f48b4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#465ec1', endColorstr='#2f48b4', GradientType=0)
}

.modal-form-content .text2 {
    font-size: 14px;
    text-align: center;
    color: #2e2e2e;
    margin-top: 20px
}

.modal-form-content .text2 a {
    color: #3c54bb
}

.konf {
    cursor: pointer
}

.konf:hover {
    text-decoration: underline
}

.page-blog-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px
}

.page-blog .text-header {
    padding: 10px 8px 50px
}

.page-blog .item {
    display: flex;
    margin-bottom: 40px
}

@media (max-width: 739px) {
    .page-blog .item {
        flex-wrap: wrap
    }
}

.page-blog .item img {
    display: block
}

@media (max-width: 739px) {
    .page-blog .item .img-block {
        width: 100% !important
    }

    .page-blog .item .img-block img {
        margin: 10px auto;
        max-width: 370px;
        width: 100%
    }
}

.page-blog .item .text-block {
    padding: 0 30px
}

.page-blog .item .text-block .text1 {
    font-size: 18px;
    color: #2e2e2e;
    font-weight: bold
}

@media (max-width: 739px) {
    .page-blog .item .text-block .text1 {
        text-align: center
    }
}

.page-blog .item .text-block .text2 {
    font-size: 14px;
    color: #2e2e2e;
    margin-top: 20px
}

@media (max-width: 739px) {
    .page-blog .item .text-block .text2 {
        text-align: center
    }
}

.page-blog .item .text-block a {
    font-size: 14px;
    color: #3c54bb;
    float: right;
    margin-top: 20px
}

@media (max-width: 739px) {
    .page-blog .item .text-block a {
        float: none;
        margin: 20px auto 0;
        display: table
    }
}

.page-blog .item .text-block a:after {
    background: url("../img/right-arrow.png");
    width: 6px;
    height: 10px;
    margin-left: 5px;
    display: inline-block;
    content: ''
}

.breadcrumb {
    margin: 0;
    padding: 0;
    display: flex;
    margin: 20px 0
}

.breadcrumb li {
    list-style: none;
    font-size: 14px;
    color: #2e2e2e
}

.breadcrumb li:after {
    content: '>';
    margin: 0 5px
}

.breadcrumb li:last-child::after {
    display: none
}

.breadcrumb li a {
    color: var(--gradient-middle);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.pagination li {
    list-style: none;
    color: #2e2e2e;
    font-size: 18px;
    margin: 0 2px
}

.pagination li:first-child {
    margin-right: 6px
}

.pagination li:last-child {
    margin-left: 6px
}

.pagination li a {
    text-decoration: none;
    color: #2e2e2e;
    display: flex;
    align-items: center
}

.pagination li a:hover {
    color: #3c54bb
}

.pagination li.active a {
    color: #3c54bb;
    font-weight: bold
}

.page-gallery-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px
}

.page-gallery .gallery-container {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px
}

.page-gallery .text-header {
    padding: 10px 8px 50px
}

.page-gallery .grid {
    width: 33.3%;
    padding: 15px;
    font-size: 14px;
    color: #2e2e2e;
    display: flex;
    align-items: center
}

@media (max-width: 819px) {
    .page-gallery .grid {
        width: 50%
    }
}

@media (max-width: 449px) {
    .page-gallery .grid {
        width: 100%
    }
}

.page-gallery .grid img {
    width: 100%;
    display: block;
    object-fit: scale-down;
    height: 30vh;
}

.page-gallery .grid .img-block {
    position: relative;
    width: 100%;
    height: 100%;
}

.page-gallery .grid .img-block .overlay-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.page-gallery .grid .img-block .overlay-hover img {
    width: initial;
    display: block;
    height: auto;
}

.page-gallery .grid .img-block:hover .overlay-hover {
    display: flex
}

.page-services-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px
}

.page-services .text-header {
    padding: 10px 8px 50px
}

.page-news-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px
}

.page-news .text-header {
    padding: 10px 8px 50px
}

.page-services .button {
    background: var(--gradient-from);
    color: #fff;
    text-decoration: none;
    text-align: center;
    max-width: 270px;
    margin: 0 auto;
    margin-bottom: 50px;
    display: block;
    width: 100%;
    line-height: 38px
}

.page-services .button:hover {
   background: linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
    background: -webkit-linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
}

.page-services .services-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap
}

@media (max-width: 814px) {
    .page-services .services-container {
        flex-wrap: wrap
    }
}

.page-services .services-container .grid {
    width: 33.3%;
    padding: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    color: #2e2e2e;
    display: flex;
    padding-top: 0;
    flex-wrap: wrap;
    align-items: center
}

@media (max-width: 814px) {
    .page-services .services-container .grid {
        width: 100%
    }
}

.page-services .services-container .grid a {
    margin: 0 auto
}

.page-services .services-container .grid .to {
    color: #3c54bb;
    font-size: 14px;
    margin-top: 10px;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none
}

.page-services .services-container .grid .to:hover {
    text-decoration: underline
}

.page-services .services-container .grid img {
    width: 100%;
    max-width: 370px;
    margin: 0 auto
}

.page-services .services-container .grid .text1 {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
    color: #2e2e2e;
    text-decoration: none
}

.page-services .services-container .grid .text1:hover {
    text-decoration: underline;
    color: #3c54bb
}

.page-services .services-container .grid .text2 {
    width: 100%;
    padding: 0 5px;
    max-width: 370px;
    text-align: center;
    margin: 0 auto;
    margin-top: 14px
}

.page-contacts-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    min-height: 700px
}

.page-contacts .text-header {
    padding: 10px 8px 50px
}

.page-services-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    min-height: 700px
}

.page-services .text-header {
    padding: 10px 8px 50px
}

.page-contacts .grid-container {
    display: flex;
    margin-top: 20px;
    width: 100%;
    justify-content: space-between
}

@media (max-width: 899px) {
    .page-contacts .grid-container {
        flex-wrap: wrap;
        justify-content: center;
        width: initial
    }
}

.page-contacts .grid-container .grid {
    display: flex
}

@media (max-width: 899px) {
    .page-contacts .grid-container .grid {
        width: 50%;
        margin-top: 20px
    }
}

@media (max-width: 649px) {
    .page-contacts .grid-container .grid {
        width: 100%
    }
}

.page-contacts .grid-container .grid .grid-right {
    margin-left: 15px
}

.page-contacts .grid-container .grid .text1 {
    font-size: 18px;
    font-weight: bold;
    color: #2e2e2e;
    margin-top: 4px
}

.page-contacts .grid-container .grid .text2 {
    font-size: 14px;
    margin-top: 15px;
    color: #2e2e2e
}

#map {
    width: 100%;
    height: 400px;
    margin-top: 60px;
    margin-bottom: 40px
}

.page-about-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    min-height: 700px
}

.page-about .text-header {
    padding: 10px 8px 30px
}

.page-about .content-text {
    margin-bottom: 70px;
    font-size: 14px;
    color: #2e2e2e
}

.page-about .content-text img {
    float: left;
    display: block;
    margin-right: 30px
}

@media (max-width: 939px) {
    .page-about .content-text img {
        float: none;
        max-width: 570px;
        width: 100%;
        margin: 10px auto
    }
}

.page-about .content-text p {
    margin-top: 10px
}

.page-about .content-text p:first-child {
    margin-top: 20px
}

.page-about .about-slider {
    margin-top: 20px;
    margin-bottom: 50px;
    padding-bottom: 60px
}

.page-about .about-slider .item {
    max-width: 200px;
    margin: 0 auto
}

.page-about .about-slider .item .text1 {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px
}

.page-about .about-slider .item .text2 {
    font-size: 14px;
    text-align: center;
    margin-top: 8px
}

.page-reviews-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 10px;
    min-height: 700px
}

.page-reviews form input[type=text], .page-reviews form textarea {
    line-height: 48px;
    font-style: italic;
    width: 100%;
    max-width: 430px;
    background: #f8f8f8;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 14px;
    padding: 0 15px;
    border: 1px solid #959595
}

.page-reviews form button {
    background: #2f48b4;
    background: -moz-linear-gradient(top, #2f48b4 0, #465ec1 100%);
    background: -webkit-linear-gradient(top, #2f48b4 0, #465ec1 100%);
    background: linear-gradient(to bottom, #2f48b4 0, #465ec1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2f48b4', endColorstr='#465ec1', GradientType=0);
    font-size: 20px;
    color: #fff;
    max-width: 270px;
    border: 0;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    display: block;
    cursor: pointer;
    width: 100%;
    line-height: 38px;
    margin-bottom: 50px
}

.page-reviews form button:hover {
    background: #465ec1;
    background: -moz-linear-gradient(top, #465ec1 0, #2f48b4 100%);
    background: -webkit-linear-gradient(top, #465ec1 0, #2f48b4 100%);
    background: linear-gradient(to bottom, #465ec1 0, #2f48b4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#465ec1', endColorstr='#2f48b4', GradientType=0)
}

.page-reviews .text-header {
    padding: 10px 8px 30px
}

.page-reviews .text4 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #2e2e2e
}

.page-reviews .item {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 40px;
    justify-content: space-between
}

@media (max-width: 669px) {
    .page-reviews .item {
        flex-wrap: wrap
    }
}

.page-reviews .item .text1 {
    color: #2e2e2e;
    font-weight: bold;
    font-size: 18px
}

@media (max-width: 669px) {
    .page-reviews .item .text1 {
        text-align: center
    }
}

.page-reviews .item .text2 {
    color: #909090;
    font-size: 14px;
    margin-top: 5px
}

@media (max-width: 669px) {
    .page-reviews .item .text2 {
        text-align: center;
        margin-bottom: 20px
    }
}

@media (max-width: 669px) {
    .page-reviews .item .grid-left {
        width: 100%
    }
}

.page-reviews .item .grid-right {
    width: 80%
}

@media (max-width: 669px) {
    .page-reviews .item .grid-right {
        width: 100%
    }
}

.page-reviews .item .grid-right-content {
    padding: 20px 30px;
    background: #ededed;
    font-size: 14px;
    color: #2e2e2e
}

.imge-service-block {
    width: 100%;
}

.uslugi .owl-dots {
    display: none !important;
}

.two-news .item {
    position: relative;
    padding: 10px;
    max-width: 574px;
}

.two-news .item .img-block {
    position: relative;
}

.two-news .item .img-block img {
    max-width: 100%;
}

.two-news .item .name {
    position: absolute;
    color: #fff;
    background: var(--gradient-middle);
    padding: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    height: 68px;
}

.two-news .item .short {
    color: #2e2e2e;
    font-size: 14px;
    margin: 10px 0;
}

.two-news .item:hover .short {
    color: var(--gradient-middle) !important;
}

.two-news .item .podr {
    color: var(--gradient-middle);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.two-news .item .podr img {
    margin: 0 6px;
}

.two-news a {
    text-decoration: none;
}

.reviews .radius-block {
    width: 270px;
    background: var(--gradient-middle);
    height: 270px;
    padding: 10px;
    border-radius: 50%;
    margin: 0 auto;
}

.reviews .radius-block-2 {
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: #fff;
    text-align: center;
}

.reviews .name {
    margin-top: 50px;
    color: #ffffff;
    font-size: 20px;
}

.reviews .date {
    margin-top: 10px;
    color: #ffffff;
    font-size: 14px;
}

.reviews .comment {
    background: #f8f8f8;
    padding: 35px;
    margin-top: -123px;
    font-size: 14px;
    min-height: 150px;
    color: #484848;
}

.reviews .item {
    padding: 10px;
    width: 50%;
}

.reviews .button {
    background: var(--gradient-from);
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 46px;
    max-width: 300px;
    height: 46px;
    cursor: pointer;
    display: block;
    border: 0;
    width: 100%;
    text-decoration: none;
    margin: 0 auto;
    margin-bottom: 50px;
}

.reviews .button:hover,
.two-news .button:hover {
    background: linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
    background: -webkit-linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
}

.two-news .button {
    background: var(--gradient-from);
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 46px;
    max-width: 300px;
    height: 46px;
    cursor: pointer;
    display: block;
    border: 0;
    width: 100%;
    text-decoration: none;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 788px) {
    .reviews-content {
        flex-wrap: wrap;
    }

    .reviews .item {
        width: 100%;
    }
}

@media (max-width: 370px) {
    .reviews .radius-block {
        width: 220px;
        height: 220px;
    }
}

.page-services .grid-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.page-services .grid-container .grid {
    width: 33%;
    padding: 15px;
    box-sizing: border-box;
}

@media (max-width: 870px) {
    .page-services .grid-container .grid {
        width: 50%;
    }
}

@media (max-width: 640px) {
    .page-services .grid-container .grid {
        width: 100%;
    }
}

.page-services .grid-container .grid-content img {
    width: 100%;

}

.page-services .grid-container .grid-content {
    border: 1px solid var(--gradient-middle);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.page-services .grid-container .grid-content:hover {
    transform: translateY(-20px);
}

.page-services a {
    text-decoration: none;
    color: #2e2e2e;
}

.page-services .grid .text3 {
    text-decoration: underline;
    color: var(--gradient-middle);
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.page-services .grid .text2 {
    width: 100%;
    padding: 0 11px;
    max-width: 370px;
    text-align: center;
    margin: 0 auto;
    margin-top: 14px;
    font-size: 13px;
    min-height: 70px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-services .grid-container .grid-content .text1 {
    width: 100%;
    font-size: 15px;
    display: flex;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
    color: #2e2e2e;
    text-decoration: none;
    background: var(--gradient-middle);
    color: #fff;
    padding: 10px;
    margin: 0;
    justify-content: center;
    /* display: flex !important; */
    align-items: center;
    min-height: 70px;
}

.page-services .grid-container .grid-content:hover .text1 {
    text-decoration: underline;
    background: linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
    background: -webkit-linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
}

.service-form-block .text11 {
    font-size: 24px;
    color: #2e2e2e;
    margin: 0 20px;
    text-align: center;
}

.service-form-block form {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: space-between;
}

.service-form-block {
    box-shadow: 0px 0px 16.8px 3.2px rgba(0, 0, 0, 0.09);
    padding: 30px 100px;
    margin-bottom: -20px;
    margin-top: 50px;
}

.service-form-block form .name,
.service-form-block form .phone {
    background: #f8f8f8;
    font-style: italic;
    box-sizing: border-box;
    line-height: 46px;
    border: 1px solid #adadad;
    padding-left: 55px;
    width: 100%;
    outline: none;
}

.service-form-block form .message {
    width: 100%;
    font-style: italic;
    border: 1px solid #adadad;
    padding-left: 55px;
    box-sizing: border-box;
    min-height: 100px;
    padding-top: 15px;
    outline: none;
    background: #f8f8f8;
    margin-top: 35px;
}

.service-form-block form .submit {
    background: var(--gradient-from);
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: 100%;
    cursor: pointer;
    line-height: 38px;
    border: 0;
    max-width: 270px;
    margin: 30px auto 0;
}

.service-form-block form .submit:hover {
    background: linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
    background: -webkit-linear-gradient(top, var(--gradient-from) 0, var(--gradient-middle) 40%, var(--gradient-to) 100%) no-repeat;
}

.service-form-block form .name {
    position: relative;
}

.service-form-block form .input-name:before {
    content: "";
    position: absolute;
    background: url(../images/service-form/name.png);
    width: 17px;
    height: 18px;
    z-index: 1;
    display: block;
    top: 14px;
    left: 19px;
}

.service-form-block form .input-name,
.service-form-block form .input-phone {
    width: calc(50% - 14px);
    position: relative;
}

.service-form-block form .input-message {
    width: 100%;
    position: relative;
}

.service-form-block form .input-phone:before {
    content: "";
    width: calc(50% - 14px);
    position: absolute;
    top: 14px;
    left: 19px;
    background: url(../images/service-form/phone.png);
    width: 18px;
    height: 18px;
    z-index: 1;
    display: block;
}

.service-form-block form .input-message:before {
    content: "";
    width: 100%;
    position: absolute;
    background: url(../images/service-form/message.png);
    width: 20px;
    height: 13px;
    z-index: 1;
    top: 52px;
    left: 18px;
    display: block;
}

.service-form-block .text-center {
    width: 100%;
    text-align: center;
    color: #17ad16;
    font-size: 17px;
}

.br {
    height: 50px;
}

@media (max-width: 1140px) {
    .page-services-full-content .service-container {
        display: block;
        max-height: initial;
    }

    .page-services-full-content .service-container img {
        margin: 0 auto;
        max-width: 100%;
        display: block;
    }

    .br {
        display: none;
    }

    .page-services-full-content .service-container .short {
        max-height: unset;
    }

    .page-services-full-content .service-container .short:before {
        display: none;
    }

    .page-services-full-content .content {
        margin-top: 0;
    }

}

@media (max-width: 680px) {
    .service-form-block {
        padding: 30px 30px;
    }
}

@media (max-width: 415px) {
    .service-form-block {
        padding: 22px 11px;
    }

    .service-form-block form .input-name, .service-form-block form .input-phone {
        width: calc(50% - 4px);
    }
}

.review-item {
    display: flex;
    margin: 20px 0;
    align-items: stretch;
}

.review-item .name-block {
    display: flex;
    align-items: center;
    padding-left: 20px;
    flex-wrap: wrap;
    flex-shrink: 0;
    background: #ededed;
    width: 170px;
}

.review-item .text-block {
    padding: 20px;
    background: var(--gradient-middle);
    width: 100%;
    color: #fff;
    font-size: 14px;
}

.review-item .name-block .name {
    font-size: 18px;
    color: #2e2e2e;
    font-weight: bold;
}

.review-item .name-block .date {
    font-size: 14px;
    margin-top: 10px;
    display: block;
    color: #909090;
}

.page-comments .service-form-block form .input-name {
    width: 100% !important;
}

@media (max-width: 650px) {
    .review-item {
        display: block;
    }

    .review-item .name-block {
        width: 100% !important;
        padding: 10px;
    }
}

.page-news .item {
    display: flex;
    margin-bottom: 40px;
}

.page-news .item .img-block img {
    max-width: 370px;
}

.page-news .item .text-block {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 30px;
    flex-grow: 1;
}

.page-news .item .text-block .text1_1 {
    text-decoration: none;
    color: #2e2e2e;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase
}
.page-news .podr-block{
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: flex-end;
}

.page-news .item .text-block .text2_2 {
    text-decoration: none;
    color: #2e2e2e;
    font-size: 14px;
    margin-top: 15px;
    text-transform: uppercase
}
.page-news .item .text-block .podr {
    color: var(--gradient-middle);
    display: flex;
    align-items: center;
}
.page-news .item .text-block .podr img{
    margin-left: 7px;
}

button:disabled {
    opacity: .5;
}

.form-1-content .grid-right form .input100 textarea,
.form-1-content .grid-right form .input50 input[type=text] {
    border-bottom: 1px solid #ccc;
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
    font-style: normal;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}

.form-1-content .grid-right form .input100 textarea::placeholder,
.form-1-content .grid-right form .input50 input[type=text]::placeholder {
    color: #b0b0b0;
}

.form-1-content .grid-right form input[type="checkbox"] {
    display: none;
}

.form-1-content .grid-right form .form-check-label i {
    position: relative;
    float: left;
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 1px solid #dadada;
}

.form-1-content .grid-right form .form-check-label i:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(2);
    display: block;
    width: 10px;
    height: 10px;
    background: var(--gradient-middle);
    opacity: 0;
    transition: .3s ease;
    pointer-events: none;
}

.form-1-content .form-check {
    text-align: center;
}

.form-1-content .form-check input[type=checkbox]:checked+label i:after {
    transform: translate(-50%,-50%) scale(1);
    opacity: 1;
}

.form-1-content .grid-right form .input100 textarea:focus,
.form-1-content .grid-right form .input50 input[type=text]:focus,
.form-1-content .grid-right form .input100 textarea:active,
.form-1-content .grid-right form .input50 input[type=text]:active {
    color: var(--gradient-middle);
}

.page-about-content .owl-carousel .owl-item img{
  height: 265px;
  object-fit: cover;
}

.navigation-content .grid {
	display: none;
	background: var(--gradient-from);
  border-width: 0 1px 1px 1px;
  border-style: solid;
  text-align: center;
  border-color: transparent #226081 #226081;
  text-align: center;
  color: #fff;
  padding: .5rem 0;
}

.navigation-content .grid a {
	color: #fff;
}

@media screen and (max-width: 819px) {
		.header .grid2,
		.header .grid3,
		.header__btn-wrapper {
			display: none;
		}
		.header .grid1 {
			margin-top: 0;
		}
		.header .grid .logo img{
			max-width: 130px;
		}
}