@font-face {
	font-family: 'Comfortaaa-Bold'; 
	src: url(/assets/fonts/static/Comfortaa-Bold.ttf); 
}
@font-face {
	font-family: 'Comfortaaa-Light'; 
	src: url(/assets/fonts/static/Comfortaa-Light.ttf); 
}
@font-face {
	font-family: 'Comfortaaa-Medium'; 
	src: url(/assets/fonts/static/Comfortaa-Medium.ttf); 
}
@font-face {
	font-family: 'Comfortaaa-Regular'; 
	src: url(/assets/fonts/static/Comfortaa-Regular.ttf); 
}
@font-face {
	font-family: 'Comfortaaa-SemiBold'; 
	src: url(/assets/fonts/static/Comfortaa-SemiBold.ttf); 
}

:root {
  --color-var1: #f2be66;  /*  #ffe377 */
  --color-wight: #fbf6ec !important; /*  #fff */
  --color-bg-inner-in: #09264b; /* #dbb18e */
  --color-bg-inner-out: #405e84; /* #ca9977 */
  --color-bg-light: #fffefe; /* #ededed */
  --color-bg-light-transp: #fffefecc; /* #edededcc */
  
  --sm: 576px;
  --md: 768px;
  --lg: 992px;
  --xl: 1200px;
  --xxl: 1400px;
}

html, body {
    height: 100vh;
}
body {
    background-color: var(--color-wight);
}
#wrapper {
    min-height: calc(100vh - 100px);
}

h1, h2, h3, h4, h5 {
    font-family: Verdana /* 'Comfortaaa-Bold' */;
    font-weight: 600;
}
p {
    font-family: Verdana/* 'Comfortaaa-Regular' */;
}

body {
    margin: 0;
}
a {text-decoration: none; font-family: Verdana/* Comfortaaa-Regular */;}
#header {
    height: 120px;
    transition: .3s all;
    top: 0;
    height: 120px;
    width: 100%;
    position: fixed;
    z-index: 999;
}
#header.header-min {
    background: var(--color-bg-inner-in);
    background: -webkit-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: -moz-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: -o-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
}
#header_top {
    padding-top: 120px;
}
.top-section {
    background: var(--color-bg-inner-in);
    background: -webkit-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: -moz-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: -o-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    align-items: center;
    display: block;
    height: 676px;
}
#header.scrolled {
    background: var(--color-bg-inner-in);
    background: -webkit-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: -moz-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: -o-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    position: relative;
}
.header-container div {
    width: 100%;
}
.header-container .logotip {
    max-width: 220px;
    position: absolute;
    top: 0;
    left: 0;
    height: 200px;
    background:var(--color-bg-inner-in);
    border:1px solid #e7b561;
    border-bottom-right-radius: 20px;
    border-top: 0;
}

.header-container .logotip a {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .header-container .logotip svg g#g16 path, .header-container .logotip g#g12 path {
    fill: #fff !important;
} */
.header-container .logotip svg {
    width: 80%;
    height: 200px;
}

.header-container .menu {
    margin-left: 240px;
    height: 120px;
    display: flex;
    align-items: center;
}

.menu-mobile-button, .mobile-close-button {display: none;}

.menu ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu ul li a {
    padding: 4px 10px;
    color: var(--color-wight);
    position: relative;
}
.menu ul li a:hover {
    color: var(--color-var1);
}
.menu ul li a:after {
    content: " ";
    display: block;
    position: absolute;
    left: 10PX;
    bottom: 0;
    height: 2px;
    wIdth: 0;
    background: var(--color-var1);
    transition: .3s;
}
.menu ul li a:hover:after {
    width: calc(100% - 20px);
}
.main-menu ul ul li {
    padding: 2px;
    font-size: 14px;
}
.main-menu ul li a {
    padding: 4px 10px;
    color: #000000;
    position: relative;
    font-family: Verdana /* 'Comfortaaa-Bold' */;
    font-weight: 600;
}
.main-menu ul ul li a {
    font-family: Verdana/* 'Comfortaaa-Regular' */;
    font-weight: 100;
}

.menu-item ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    background: var(--color-wight);
    z-index: 999;
    padding: 10px;
    border: 1px solid #ddd;
    transition: .3s all;
    visibility: hidden;
    opacity:0;
    left:-1000px;
}

.menu-item.open ul {
    visibility: visible;
    opacity:1;
    left: auto;
}

.menu-item ul ul {
    position: relative;
    border: none;
    top: auto;
    z-index: 999;
}

.header-container .contants {
    width: 100%;
    display: flex;
}

.header-container .phone {
    display: flex;
    flex-direction: column;
    align-items: end;
}
.header-container .phone span {
    margin-bottom: 5px;
}
.header-container .phone a {
    color: var(--color-wight);
    font-family: Verdana/* 'Comfortaaa-Regular' */;
    transition: .3s;
    position: relative;
}
.header-container .phone a:hover {
    color: var(--color-var1);
}
.header-container .phone a:after {
    content: " ";
    display: block;
    position: absolute;
    bottom: -4px;
    height: 2px;
    wIdth: 0;
    background: var(--color-var1);
    transition: .3s;
}
.header-container .phone a:hover:after {
    width: 100%;
}


/* header-menu */
#header_top {
    
    
}
#header_top .col:last-child {
    position: relative;
    display: flex;
    height:556px;
    align-items: end;
    justify-content: flex-end;
}
#header_top .header-form {
    position: relative;
    background: var(--color-wight);
    width: 100%;
    max-width: 530px;
    height: 420px;
    border-top-left-radius: 40px;
    padding: 40px;
    border: 1px solid var(--color-bg-inner-in);
    bottom: -20px;
}
.header-title-block {
    position: absolute;
    display: flex;
    flex-direction: column;
    font-family: Verdana /* 'Comfortaaa-Bold' */;
    font-weight: 600;
    color: #fffdf7;
    font-size: 40px;
    top: 290px;
    text-transform: uppercase;
}
/* #header_top .header-form::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    clip-path: path('M0,40 C40,40 40,10 40,0 H180 C190,0 190,10 200,10 V90 C200,90 190,100 180,100 H20 C10,100 10,90 0,90 Z');
} */
/* #header_top .header-form::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    clip-path: path('M0,0 C0,0 0,40 40,40 H180 C190,0 190,10 200,10 V90 C200,90 190,100 180,100 H20 C10,100 10,90 0,90 Z');
} */
.header-form-title {
    position: relative;
    font-family: Verdana /* Comfortaaa-Bold */;
    font-size: 30px;
    display: block;
    padding-bottom: 40px;
}
.header-form-title::after {
    content: "";
    width: 60px;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 20px;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
#header_top .header-form:hover .header-form-title::after {
    width: 100px;
}
span.header-form-desc {
    font-family: Verdana /* Comfortaaa-Light */;
    font-size: 16px;
    display: block;
}
.header-form .btn {
    background: var(--color-var1);
    border-radius: 50px !important;
    margin: 40px -42px 0 0;
    color: var(--color-wight);
    padding: 15px 30px;
    font-family: Verdana /* 'Comfortaaa-Medium' */;
    font-size: 16px;
    float: right;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    transition: .3s all;
}
.header-form .btn:hover {
    background: var(--color-var1);
    box-shadow: 0px 8px 10px 1px #0000003b;
    color: #000;
}


/* pages */
.page-end {
    padding-top: 120px;
}
h1 {
    margin-top: 60px;
    font-family: Verdana /* Comfortaaa-Bold */;
    position: relative;
    padding-bottom: 40px;
}
h1::before {
    content: "";
    width: 60px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    bottom: 20px;
    left: 0;
}
ol.breadcrumb {
    margin: 20px 0 20px 240px;
}
.breadcrumb-item a {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}
.breadcrumb-item.active {
    color: #00000061;
    font-size: 14px;
}

/* Services */
#uslugi {
    padding: 60px 0;
}
.service-item {
    border: 1px solid var(--color-bg-inner-in);
    padding: 15px;
    border-radius: 10px;
    height: 260px;
    display: flex;
    flex-direction: column;
    transition: .3s all;
    cursor: pointer;
}
.service-item.active,
.service-item:hover{
    box-shadow: 0px 8px 10px 1px #0000003b;
}
.service-icon {
    display: flex;
    width: 60px;
    height: 60px;
    background: var(--color-bg-inner-in);
    border-radius: 30px;
    justify-content: center;
    align-items: center;
}
.service-icon img {
    width: 40px;
    height: 40px;
}
.service-title {
    margin-top: 10px;
    font-family: Verdana /* 'Comfortaaa-Bold' */;
    font-weight: 600;
    padding-bottom: 20px;
    position: relative;
}
.service-title::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #000;
    position:absolute;
    bottom: 10px;
    transition: .3s all;
}
.service-desc {
    font-family: Verdana /* 'Comfortaaa-Light' */;
    font-size: 14px;
}


.uslugi-blocks {position: relative;}
.service-block-item {
    padding: 10px 15px 20px;
    border: 1px solid var(--color-bg-inner-in);
    margin-top: 20px;
    border-radius: 20px;
    flex-wrap: wrap;
    transition: .3s all;
    visibility: hidden;
    position: absolute;
    display: none;
}

.service-block-item.active {
    position: relative;
    visibility: visible;
    display: flex;
}

.service-block-child {
    width: calc(25% - 10px);
    height: 80px;
    color: var(--color-wight);
    padding: 10px 10px 10px 35px;
    margin: 10px 5px 0 5px;
    background: var(--color-bg-inner-in);
    border-radius: 10px;
    font-size: 12px;
    font-family: Verdana /* 'Comfortaaa-Medium' */;
    transition: .3s all;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}
.service-block-child:hover {
    box-shadow: 0px 8px 10px 1px #0000003b;
}
.service-block-child::before {
    content: "";
    width: 25px;
    height: 50px;
    display: block;
    position: absolute;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    background: var(--color-wight);
    left: 0;
    top: calc(50% - 25px);
}


/* problems */
.problems_commands{
    position: relative;overflow-x: hidden;
}
.problems_commands::before {
    content: "";
    width: 100%;
    background: var(--color-bg-inner-out);
    height: auto;
    min-height: 650px;
    display: block;
    position: absolute;
    z-index: -2;
    top: 50px;
    left: 0;
    right: 0;
    clip-path: polygon(0% 20%, 100% 0%, 100% 80%, 0% 100%);
}
.problems_commands::after {
    content: "";
    width: 100%;
    height: 650px;
    background: var(--color-bg-inner-in);
    display: block;
    position: absolute;
    top: 0;
    top: 50px;
    left: 0;
    z-index: -2;
    clip-path: polygon(0% 0%, 100% 20%, 100% 100%, 0% 80%);
}
.problems {
    position: relative;
}

.problems .mobile-desc {display: none;}

.problems .row {
    padding: 60px 0;
}
.problems .col-lg-4 {
    display: flex;
    align-items: center;
    background-image: url('/assets/img/pngwing.com.png');
    background-position: left bottom;
    background-size: contain;
    background-repeat: no-repeat;
    font-family: Verdana /* Comfortaaa-Light */;
    color: #ffffff;
}

.problem-item {
    background: var(--color-bg-light-transp);
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
}

.problems h3 {
    position: relative;
    padding-left: 5px;
}
.problems h4 {
    font-size: 1.4rem;
}
.problems h3::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 36px;
    top: -3px;
    left: 0;
    z-index: -1;
    border-top: 36px solid var(--color-var1);
    border-left: 0px solid transparent;
    border-right: 24px solid transparent;
}

.problem-item span {
    font-family: Verdana /* 'Comfortaaa-Light' */;
    font-size: 14px;
}


/* caorusel */
#our_clients {
    padding: 60px 0;
}
#our_clients h2, #our_clients h3 {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
}
#our_clients h2::after, #our_clients h3::after {
    content: "";
    width: 60px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 30px);
}
.slick-slide {
    height: 250px;
    background: var(--color-bg-light-transp);
    display: flex !important;
    padding: 20px;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}
.slick-slide img {
    height: 100px;
}
.slick-slide span {
    text-align: center;
    font-family: Verdana /* Comfortaaa-Light */;
}
ul.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li {
    position: relative;
    display: flex;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}
.slick-dots li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--color-bg-inner-in);
    display: block;
    position: absolute;
    border-radius: 5px;
}
.slick-dots li.slick-active::before {
    background: var(--color-bg-inner-out);
}

/* Commands */
#commands {
    padding: 60px 0;
}
#commands h2, #commands h3 {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
}
#commands h2::after, #commands h3::after {
    content: "";
    width: 60px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 30px);
}
.command-item {
    position: relative;
    transition: .3s all;
}
.command-item:hover {
    box-shadow: 0px 8px 10px 1px #0000003b;
}
.command-img {
    width: 100%;
    height: 500px;
    background: #ddd;
}
.command-name {
    position: absolute;
    bottom: 20px;
    background: var(--color-var1);
    padding: 10px;
    left: -3px;
    font-family: Verdana /* Comfortaaa-bold */;
    font-size: 14px;
}


/* form-block */

#form-block {
    padding: 60px 0;
    position: relative;
}
#form-block::before, #form-block::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 360px;
    background: var(--color-bg-inner-in);
    top: 50%;
    margin-top: -180px;
    z-index: -3;
}
#form-block::after {
    height: 300px;
    margin-top: -150px;
    z-index: -2;
    border-top: 10px solid var(--color-wight);
    border-bottom: 10px solid var(--color-wight);
}

.form-header h2, .form-header h3 {
    padding-bottom: 20px;
    font-size: 1.50rem;
    position: relative;
}
.form-header h2::after, .form-header h3::after {
    content: "";
    width: 60px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    bottom: 20px;
    left: 0;
}

.form-block {
    border: 6px solid var(--color-var1);
    padding: 40px 30px;
    background: var(--color-wight);
}

.form-group {
  margin-bottom: 15px;
}

.form-header {
    font-family: Verdana /* Comfortaaa-Light */;
    color: #ffffff;
}

#form-block .row .col:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.form-result .success {
  color: #155724;
  background-color: #d4edda;
  padding: 10px;
  margin-top: 15px;
  border-radius: 4px;
}

.form-result .error {
  color: #721c24;
  background-color: #f8d7da;
  padding: 10px;
  margin-top: 15px;
  border-radius: 4px;
}

.form-result .loading {
  color: #0c5460;
  background-color: #d1ecf1;
  padding: 10px;
  margin-top: 15px;
  border-radius: 4px;
}
.form-block-submit {
    background: var(--color-var1);
    border-radius: 50px !important;
    color: var(--color-wight);
    padding: 15px 30px;
    font-family:Verdana /* 'Comfortaaa-Medium' */;
    font-size: 16px;
    transition: .3s all;
}
.form-block-submit:hover {
    box-shadow: 0px 8px 10px 1px #0000003b;
    background: var(--color-var1);
}

.wight-line_1, .wight-line_2 {
    position: absolute;
    width: 10px;
    background: var(--color-wight);
    height: 380px;
    z-index: -1;
    left: 40px;
}
.wight-line_1 {
    left: auto;
    right: 20px;
}

/* contant */
.contact-content {
    font-size: 14px;
    padding: 40px;
    border: 6px solid var(--color-var1);
}

.page-contans h4 {
    padding-bottom: 30px;
    position: relative;
}
.page-contans h4::after {
    content: "";
    width: 60px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    bottom: 15px;
    left: 0;
}
.page-contans .map {
    margin-bottom: 60px;
}
.contact-phone {
    display: flex;
    flex-direction: column;
    font-family: Verdana /* 'Comfortaaa-Medium' */;
}
.contact-phone a,
.contact-phone a:hover {
    color: #b8825d;
}
.contact-phone a:hover {
    text-decoration: underline;
}
.contact-phone span {
    margin-bottom: 5px;
}


.services_blocks {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}
.service_container {
    width: calc(33.33% - 20px);
    display: flex;
    margin: 10px;
    min-height: 200px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 20px;
    align-items: center;
    justify-content: center;
    transition: .3s all;
    cursor: pointer;
}
.service_container:hover {
    box-shadow: 0px 8px 10px 1px #0000003b;
}
span.service_container_title {
    text-align: center;
}


/* page block */
.page-block-text {
    border: 5px solid var(--color-var1);
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    margin-bottom: 60px;
}

.page-block-text h3 {
    padding-bottom: 30px;
    position: relative;
}
.page-block-text h3::after {
    content: "";
    width: 60px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    bottom: 15px;
    left: 0;
}

/* === */
.points_container {
    display: flex;
    background: url(/assets/img/legislative.svg);
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 60px;
}
.points_header {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.points_container .points {
    width: 70%;
}
.points_header h3 {
    padding-bottom: 30px;
    position: relative;
}
.points_header h3::after {
    content: "";
    width: 60px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    bottom: 15px;
    left: 0;
}
.points h5 {
    position: relative;
    padding-left: 10px;
}
.points_2 h5 {
    color: #ffffff;
}
.points h5::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 28px;
    border-top: 28px solid var(--color-var1);
    border-left: 0px solid transparent;
    border-right: 24px solid transparent;
    top: -3px;
    left: 0;
    z-index: -1;
}

.point_desc {
    font-size: 14px;
    background: var(--color-bg-light-transp);
    padding: 20px 60px 20px 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    border-radius: 10px;
    position: relative;
}
.point_desc::after {
    position: absolute;
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background: var(--color-wight);
    border-top-left-radius: 18px;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.point_desc::before {
    position: absolute;
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background: var(--color-bg-light-transp);
    border-radius: 10px;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.point_desc p {
    margin-bottom: 5px;
}

/* ====== */
.blocks_container {
    display: flex;
    background: url(/assets/img/legislative.svg);
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 60px;
}
.block_item {
    font-size: 14px;
    background: var(--color-bg-light-transp);
    padding: 20px 60px 20px 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    border-radius: 10px;
    position: relative;
    width: calc(50% - 20px);
}
.block_desc::after {
    position: absolute;
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background: var(--color-wight);
    border-top-left-radius: 18px;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.block_desc::before {
    position: absolute;
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background: var(--color-bg-light-transp);
    border-radius: 10px;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.blocks h5 {
    position: relative;
    padding-left: 10px;
}
.blocks h5::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 28px;
    border-top: 28px solid var(--color-var1);
    border-left: 0px solid transparent;
    border-right: 24px solid transparent;
    top: -3px;
    left: 0;
    z-index: -1;
}
.block_desc p {
    margin-bottom: 5px;
}


.points_2_container {
    position: relative;
}
.points_2_container::before {
    content: "";
    width: 100%;
    background: var(--color-bg-inner-out);
    height: auto;
    min-height: 100%;
    display: block;
    position: absolute;
    z-index: -2;
    left: 0;
    right: 0;
    clip-path: polygon(0% 20%, 100% 0%, 100% 80%, 0% 100%);
}
.points_2_container::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-bg-inner-in);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    clip-path: polygon(0% 0%, 100% 20%, 100% 100%, 0% 80%);
}

/* ======= */
.points_2 {
    min-height: 400px;
    padding: 40px 0 80px;
}

.points_2 .point_desc::after,.points_2 .point_desc::before {
    display: none;
}
.points_2_container {
    margin-bottom: 60px;
}
.points_2_container h3 {
    padding-bottom: 30px;
    position: relative;
    text-align: center;
}
.points_2_container h3::after {
    content: "";
    width: 60px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    bottom: 15px;
    left: 50%;
    margin-left: -30px;
}


/* ====== */
.questions {
    margin-bottom: 60px;
}
.questions h3 {
    padding-bottom: 30px;
    position: relative;
    text-align: center;
}
.questions h3::after {
    content: "";
    width: 60px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    bottom: 15px;
    left: 50%;
    margin-left: -30px;
}

button.accordion-button:not(.collapsed) {
    background-color: var(--color-bg-inner-in);
    color: var(--color-wight);
    outline: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

footer {
    min-height: 100px;
    background: #DCB290;
    background: -webkit-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: -moz-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: -o-linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
    background: linear-gradient(45deg, var(--color-bg-inner-in) 0%, var(--color-bg-inner-out) 100%);
}

footer .logotip {width: 200px;}
footer .row {align-items: flex-end;}
footer .logotip svg {width: 150px;height: 150px;}
footer .contacts {width: calc(100% - 220px);color: #fff;padding: 10px 20px;font-size: 14px;}
footer .contacts .phone a {font-size: 18px; color: #f2be66;}
footer .copyright {font-size: 14px;}
footer p {margin: 0;}


.egrip-promo {position: relative; background: #f5f7fa; padding: 12px; border-radius: 8px; margin: 15px 0; text-align: center;}
.egrip-promo::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 50px;
    top: 0;
    left: 0;
    border-top: 4px inset #1c395e;
    border-left: 4px inset #1b395e;
}
.egrip-promo::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 50px;
    bottom: 0;
    right: 0;
    border-bottom: 4px inset #1c395e;
    border-right: 4px inset #1b395e;}
.egrip-promo h3 {margin: 0 0 8px 0; color: #2c3e50;}
.egrip-promo p {margin: 0; font-size: 14px;}
.egrip-promo .send {display: inline-block; background: #3498db; color: white; padding: 8px 16px; border-radius: 4px; margin-top: 10px; text-decoration: none;}
.egrip-promo .form-block-submit {border-radius: 5px !important;padding: 6px 10px;}
.egrip-promo form.row {justify-content: center;margin-top: 20px;}

.news-items {
    display: flex;
    flex-wrap: wrap;
    /* min-height: calc(100vh - 500px); */
    /* justify-content: space-between; */
    margin-bottom: 40px;
}
.new_item {
    width: calc(33.33333% - 20px);
    margin: 0 10px 20px;
    border: 1px solid #8a8a8a;
    padding: 20px;
    border-radius: 5px;
    transition: .3s all;
    position: relative;
    padding: 20px 20px 40px;
}
.new_item:hover {
    box-shadow: 0 4px 13px 0px #00000040;
}
.new-image img {
    width: 100%;
    margin-bottom: 15px;
}
.new_item h3 {
    font-size: 18px !important;
    text-align: left;
    padding-bottom: 0 !important;
}
.new_item h3::after {
    display: none !important;
}
.new_introtext {
    height: 73px;
    overflow: hidden;
    text-align: left;
}
.new-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 10px;
    width: calc(100% - 40px);
}
.new-date {
    font-size: 14px;
    color: #8a8a8a;
}
.new-link a {
    font-size: 14px;
    color: var(--color-var1);
}

ul.pagination a {
    color: #f2be66;
}
.active>.page-link, .page-link.active {
    background-color: var(--color-var1);
    border-color: var(--color-var1);
}
.news-paginations {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}


section#news {
    padding: 40px 0;
    text-align: center;
}
#news h2, #news h3 {
    padding-bottom: 20px;
    font-size: 1.50rem;
    position: relative;
}
#news h2::after, #news h3::after {
    content: "";
    width: 60px;
    height: 1px;
    display: block;
    background: #000;
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -30px;
}
a.news-more {
    background: var(--color-var1);
    border: 1px solid var(--color-var1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 7px;
    transition: .3s all;
}
a.news-more:hover {
    box-shadow: 0px 8px 10px 1px #0000003b;
    background: var(--color-var1);
    color: #000;
}

@media(max-width: 1400px){
    #header, .header-container {
        height: 80px;
    }
    #header_top {
        padding-top: 80px;
    }
    .top-section {
        height: 680px;
    }
    
    #header_top .col:last-child {
        height: 590px;
    }
    .header-title-block {
        font-size: 36px;
        top: 300px;
    }
    .header-container .logotip {
        height: 150px;
        width: 180px;
    }
    .header-container .logotip svg {
        height: 130px;
    }
    h1 {
        font-size: 2.3rem;
    }
}

@media(max-width: 1200px){
    .header-container .menu {
        left: -320px;
    }
    .header-container .menu.open {
        left: 0px;
    }
    .header-title-block {
        font-size: 30px;
        
    }
    .header-container {
        position: inherit;
        display: flex;
        justify-content: space-between;
    }
    .menu {
        position: fixed;
        background: #fbf6ec;
        left: 0;
        top: 0;
        width: 100%;
        bottom: 0;
        max-width: 320px;
        margin-left: 0 !important;
        height: auto !important;
        display: flex;
        align-items: start !important;
        overflow: auto;
        padding-top: 40px;
    }
    .mobile-close-button {
        width: 25px;
        height: 25px;
        position: absolute;
        right: 10px;
        top: 20px;
        cursor: pointer;
    }
    .mobile-close-button {display: block;}
    .mobile-close-button::before, .mobile-close-button::after {
        content: '';
        width: 25px;
        height: 4.33333333px;
        background: #000;
        position: absolute;
        right: 0;
        top: 0;
        transform: rotate(45deg);
    }
    .mobile-close-button::after {
        transform: rotate(-45deg);
        
    }
    .menu-item a {
        padding: 5px 0;
    }
    .menu-item ul {
        position: inherit;
    }
    ul.main-menu {
        flex-direction: column;
        top: 40px;padding: 10px;
    }
    
    .menu ul li a {
        color: #000;
        padding: 0;
        border-bottom: 1px solid #ddd;
        display: block;
        padding: 5px 0;
        font-size: 14px;
    }
    .menu-item ul {
        left: 0;
        visibility: visible;
        opacity: 1;
    }
    .menu ul ul {
        border: none !important;
        padding: 0;
    }
    
    .menu-mobile-button {
        display: flex;
        width: 26px !important;
        height: 26px;
        flex-direction: column;
        justify-content: space-between;
        margin-left: 200px;
        cursor: pointer;
    }
    
    .menu-mobile-button div {
        width: 26px;
        height: 4.3333333px;
        background: #fff;
    }
    .page-end {
        padding-top: 80px;
    }
    ol.breadcrumb {
        margin: 20px 0 20px 180px;
    }
}

@media(max-width: 992px){
    .header-title-block {
        font-size: 26px;
    }
    h1 {font-size: 2rem;}
    .header-form-title {
        font-size: 24px;
    }
    
    .problems_commands {overflow-x: inherit;}
    .problems_commands::before, .problems_commands::after {min-height: 100%;}
    .problems .desctop-desc {display: none;}
    .problems .mobile-desc {display: inline-block;color: #fff;}
    .problems {padding-top: 60px;}
    .problems h3 {color: #fff}
    .new_item {
        width: calc(50% - 20px);
    }
}


@media(max-width: 768px){
    #header_top .row {
        flex-direction: column;
        padding-top: 100px;
    }
    #header_top .header-form {
        height: 380px;
        padding: 30px;
    }
    .header-title-block {
        position: inherit;
        text-align: center;
    }
    #header_top .col:last-child {
        justify-content: center;
    }
    .header-container div {
        width: auto;
    }
    .uslugi-links .row {
        flex-direction: column;
    }
    .service-item {
        margin-bottom: 10px;
    }
    .uslugi-blocks {display: none;}
    .problems h3 {
        margin-top: 30px;
    }
    .points_container {
        flex-direction: column;
    }
    .points_header {
        width: 100%;
        margin-bottom: 20px;
    }
    .points_container .points {
        width: 100%;
    }
    
    .points_2_container::before
    {
        clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 0% 100%);
    }
    .points_2_container::after {
        clip-path: polygon(0% 0%, 100% 5%, 100% 100%, 0% 95%);
    }
    .points_2 {
        min-height: 100%;
        padding: 0 0 40px;
    }
    .points_2_container h3 {
        padding-top: 40px;
        color: #fff;
        margin-bottom: 10px;
    }
    .points_2_container h3::after {background: #fff;}
    .row.blocks {
        flex-direction: column;
        width: 100% !important;
    }
    .block_item {
        width: calc(100% - 20px);
        padding: 20px;
        margin: 0 20px 20px;
    }
    .contact-content {margin-bottom: 20px;}
    footer .logotip {width: 120px;}
    footer .logotip svg {width: 110px;height: 110px;}
    footer .contacts .address {display: none;}
    footer .contacts {width: calc(100% - 150px);}
    
    .egrip-promo .col-auto {width: 100%;}
    .egrip-promo .checkbox-group label {text-align: left;font-size: 14px;}
    .service_container {width: calc(50% - 20px);}
    
    
    .new_item {
        width: calc(100% - 20px);
    }
}


@media(max-width: 576px){
    ol.breadcrumb {
        margin: 10px 0 10px 120px;
    }
    .header-form-title {
        font-size: 22px;
    }
    .header-container .logotip {
        height: 110px;
        width: 120px;
    }
    .header-container .logotip svg {
        height: 100px;
    }
    .menu-mobile-button {
        margin-left: 130px;
    }
    #uslugi {padding: 30px 0;}
    .problems {
        padding-top: 30px;
    }
    .problems_commands::before {
        clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 0% 100%);
    }
    .problems_commands::after {
        clip-path: polygon(0% 0%, 100% 5%, 100% 100%, 0% 95%);
    }
    ul.slick-dots {
        padding: 0 20px;
    }
    #form-block .row {
        flex-direction: column;
    }
    #form-block::before, #form-block::after {
        top: 0;
        margin-top: 0;
    }
    #our_clients {padding-bottom: 20px;}
    .service_container {width: calc(100% - 20px);min-height: 100px;}
}