*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.team {padding:20px;}
.team1 {
font-weight: 500;
font-size: 24px;margin-bottom:5px;
color:rgba(7, 59, 140, 1);
}


.desc-team {padding:10px 70px 10px 0px;}
.team2 {
font-weight: 300;
color:rgba(11, 22, 31, 1);
font-size: 16px;
}
.img-team img{width:100%;object-fit: cover;}
.text-center {text-align:center;}
img {
  max-width: 100%;
  height: auto;
}
.slick-slide img {margin:0 auto;}
body {
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
    margin: 0;
  font-family: "Ubuntu", sans-serif;
}
.title-2-st {
font-weight: 300;
font-size: 20px;
color:rgba(14, 77, 142, 1);margin-bottom:30px;

}
.h2 {font-weight: 300;
  font-size: 64px;
  max-width: 870px;margin-bottom:40px;
  color: rgba(7, 59, 140, 1);
}
/*КВИЗ*/
:root {
    --primary-color: #2c7da0;
    --secondary-color: #a9d6e5;
    --accent-color: #01497c;
    --light-color: #e9f5f9;
    --dark-color: #012a4a;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --line-color: #ddd;
}

.quiz-container {
    max-width: 900px;
  margin:0 auto;margin-top:50px !important;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
overflow:hidden;
    position: relative;
}
.option-item.selected path{fill:#fff !important;}
.quiz-header {
background-image: 
    radial-gradient(50% 76.45% at 0% 78.1%, #1B58B6 0%, rgba(27, 88, 182, 0) 100%),
    radial-gradient(48.74% 74.52% at 100% 0%, #1B58B6 0%, rgba(27, 88, 182, 0) 100%),
    linear-gradient(0deg, #05214E, #05214E);

background-blend-mode: overlay, overlay, normal;
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.quiz-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.quiz-header p {
    font-size: 16px;
    opacity: 0.9;
}

.quiz-progress {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    background-color: var(--light-color);
    position: relative;
    align-items: center;
}

.progress-steps-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.progress-step.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(44, 125, 160, 0.4);
}

.progress-step.completed {
    background-color: var(--success-color);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.progress-connector {
    flex: 1;
    height: 3px;
    background-color: var(--line-color);
    margin: 0 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.progress-connector-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--success-color), var(--primary-color));
    transition: width 0.5s ease;
}

.progress-connector.completed .progress-connector-fill {
    width: 100%;
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--success-color) 0%, var(--primary-color) 100%);
    transform: translateY(-50%);
    z-index: 1;
    transition: width 0.5s ease;
    width: 0%;
}

.quiz-body {
    padding: 35px;
}

.question-container {
    display: none;
    animation: fadeIn 0.6s ease;
}

.question-container.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.question-title {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark-color);
    text-align: center;
    font-weight: 600;
}

.question-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.question-image:hover {
    transform: scale(1.02);
}

.options-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 35px;
}

.option-item {
    background-color: var(--light-color);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.option-item:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.option-item.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(44, 125, 160, 0.3);
}

.option-item.error {
    animation: shake 0.5s ease;
    border-color: var(--error-color);
    background-color: rgba(244, 67, 54, 0.1);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.input-field {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 25px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-field:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 5px 15px rgba(44, 125, 160, 0.15);
}

.input-field.error {
    border-color: var(--error-color);
    animation: shake 0.5s ease;
    background-color: rgba(244, 67, 54, 0.05);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.quiz-btn {
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 125, 160, 0.25);
}

.quiz-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 125, 160, 0.35);
}

.quiz-btn.prev {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.quiz-btn.prev:hover {
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.35);
}

.quiz-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--dark-color);
    font-size: 16px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-top: 25px;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--light-color);
}

.checkbox-container input {
    margin-top: 5px;
    margin-right: 15px;
    width: 20px;
    height: 20px;
}

.checkbox-container.error {
    background-color: rgba(244, 67, 54, 0.1);
    animation: shake 0.5s ease;
}

.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.thank-you-message {
    text-align: center;
    padding: 50px 40px;
    display: none;
    animation: fadeIn 0.8s ease;
}

.thank-you-message h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.thank-you-message p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .quiz-container {
        border-radius: 15px;
    }
    
    .options-container {
        grid-template-columns: 1fr;
    }
    
    .quiz-progress {
        padding: 15px 20px;
    }
    
    .progress-step {
        width: 35px;
        height: 35px;
    }
    
    .progress-bar {
        left: 40px;
        right: 40px;
    }
    
    .progress-connector {
        margin: 0 3px;
        height: 2px;
    }
    
    .quiz-body {
        padding: 25px;
    }
    
    .question-title {
        font-size: 22px;
    }
}
/*конец квиз*/
.h2-2 {
  max-width: 950px;
  font-family: "Ubuntu Sans", sans-serif;
  font-weight: 300;line-height: 1em;
  font-size: 64px;margin-bottom:40px;
  color: rgba(7, 59, 140, 1);
}
/* Cookie Dialog */
    #gdpr-cookie-message {
        position: fixed;
     right: 140px;
        bottom: 30px;
        max-width: 475px;
        background-color:rgba(7, 59, 140, 1);
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 6px 6px rgba(0,0,0,0.25);
        margin-left: 30px;
        font-family: system-ui;
		z-index:100;
    }

    #gdpr-cookie-message div {
        color:#fff;

        font-size: 18px;
        font-weight: 800;
        margin-bottom: 10px;
    }
    #gdpr-cookie-message h5 {
        color:#fff !important;

        font-size: 15px;
        font-weight: 500;
        margin-bottom: 10px;
    }

  #gdpr-cookie-message h4 {
        color:#fff;

        font-size: 15px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    #gdpr-cookie-message p, #gdpr-cookie-message ul {
        color: white;
        font-size: 15px;
        line-height: 1.5em;
    }
    #gdpr-cookie-message p:last-child {
        margin-bottom: 0;
        text-align: right;
    }
    #gdpr-cookie-message li {
        width: 49%;
        display: inline-block;
    }
    #gdpr-cookie-message a {
        color: var(--red);
        text-decoration: none;
        font-size: 15px;
        padding-bottom: 2px;
        border-bottom: 1px dotted rgba(255,255,255,0.75);
        transition: all 0.3s ease-in;
    }
    #gdpr-cookie-message a:hover {
        color:#000;
        border-bottom-color: var(--red);
        transition: all 0.3s ease-in;
    }
    #gdpr-cookie-message button {
        border: none;
        background: var(--red);
        color: white;
        font-size: 15px;
        padding: 7px;
        border-radius: 3px;
        margin-left: 15px;
        cursor: pointer;
        transition: all 0.3s ease-in;
    }
    #gdpr-cookie-message button:hover {
        background:rgba(87, 87, 86, 1);
        color: var(--red);
        transition: all 0.3s ease-in;
    }
    button#gdpr-cookie-advanced {
            background: #eee;
    color: #000;
}
    #gdpr-cookie-message button:disabled {
        opacity: 0.3;
    }
    #gdpr-cookie-message input[type="checkbox"] {
        float: none;
        margin-top: 0;
        margin-right: 5px;
    }
.bread {
  margin-bottom:20px
}
.hidden-content {
    display: none;
}
.play-video {
    display: inline-flex;
    align-items: center; /* Выравнивание по вертикали */
    justify-content: center; /* Выравнивание по горизонтали */
    gap: 8px; /* Расстояние между иконкой и текстом */
    text-decoration:none;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 1);
}
.flex-link {
    display: flex;
    gap: 15px; /* Расстояние между ссылками */
}


.callback-head {
    background: linear-gradient(90deg, #E6313F 0%, #A80F1B 100%);
    color: #fff;
    padding: 20px 50px;
    font-size: 18px;
    font-family: "Ubuntu Sans", sans-serif;
    border-radius: 4px;align-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.callback-head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #A80F1B 0%, #E6313F 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.callback-head:hover::before {
    opacity: 1;
}
/* Дополнительно можно стилизовать иконку */
.play-video img {
    width: 48px; /* или любой нужный размер */
    height: 48px;
}
.show-more-btn{
    display: block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
 .show-more-btn:hover {
            background-color: rgb(219, 73, 5);
        }
       
.breadcrumb {
  background-color:transparent;
  padding:10px 0 0;
  margin:0
}

.text-content-in {
  font-weight: 300;
  font-size: 25px;
  max-width:100%;
  color: rgba(7, 59, 140, 1);
}

.text-content-in h1{margin-top:0px;
font-weight: 500;
font-size: 64px;
color: rgba(7, 59, 140, 1);
}
.breadcrumb > li a {color:rgba(7, 59, 140, 1);}
.breadcrumb > li {
  position:relative;padding-left: 10px;
  display:inline;color:rgba(7, 59, 140, 1);
}
.inside-objects .object-item {height:200px;}
.breadcrumb > li:first-child {
  padding:0 10px 0 0
}
.breadcrumb > li + li::before {
  color:rgba(110,110,110,.6);
  position:absolute;
  content:"/ ";
  top:0;
  left:-4px;
  padding:0;
  display:inline-block
}
.breadcrumb > li {
  font-size:14px;
  font-weight:400
}
.breadcrumb > li a {
  color:rgba(7, 59, 140, 1);
  text-decoration:underline;padding-right: 7px;
}
.breadcrumb > li a:hover,
.breadcrumb > li a:focus {
  text-decoration:none
}



.custom-checkbox.black {color:#000;}
  .formss-grid {
            display: grid;margin-bottom:20px;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 25px;
        }
.main-block2 {background:url(../i/cond.webp) no-repeat center;background-size:cover;min-height:700px;padding:20px 0px 240px 0px;}
.main-block3 {background:url(../i/vent.webp) no-repeat center;background-size:cover;min-height:700px;padding:20px 0px 240px 0px;}
.main-block4 {background:url(../i/heat.webp) no-repeat center;background-size:cover;min-height:700px;padding:20px 0px 240px 0px;}
.main-block5 {background:url(../i/electr.webp) no-repeat center;background-size:cover;min-height:700px;padding:20px 0px 240px 0px;}
.main-block-in {background:url(../i/bg-inside.png) no-repeat center;background-size:cover;padding:20px 0px 40px 0px;}




a{transition: all 0.5s ease;}
.modal-title-f{color: rgba(7, 59, 140, 1);text-align:center;
  font-weight: 800;margin-bottom:10px;
  font-size: 26px;}
.input-f2 {
border: 1px solid rgba(7, 59, 140, 1);
height:60px;

font-weight: 400;
color: rgba(7, 59, 140, 1);

font-size: 18px;
  position: relative;
padding-left:20px;
width:100%;
}
.desc-mobile-t {margin-top:40px;}
.input-f2:focus {outline:none;}
/* Стили для кастомного чекбокса */
.error input[placeholder]          {-o-text-overflow:ellipsis;text-overflow:ellipsis; font-style:italic; color:#ff0048 !important;    -webkit-text-fill-color: #ff0048 !important;
    -webkit-appearance: none;	}
.error::-webkit-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important;-webkit-text-fill-color: #ff0048 !important;
    -webkit-appearance: none;}
.error::-moz-placeholder     {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important;-webkit-text-fill-color: #ff0048 !important;
    -webkit-appearance: none;} 
.error:-moz-placeholder      {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important;-webkit-text-fill-color: #ff0048 !important;
    -webkit-appearance: none;} 
.error:-ms-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important;-webkit-text-fill-color: #ff0048 !important;
    -webkit-appearance: none;}
.custom-checkbox input.error + .checkbox {
  background: red;
  border: 2px solid red;
}

.custom-checkbox {
  position: relative;

  cursor: pointer;
  font-size: 11px;
  line-height: 1.4;
  color:#fff;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.black.custom-checkbox:hover {
  color: #000;
}
.custom-checkbox:hover {
  color: #fff;
}
.thankyou.white{color: #fff;}
.thankyou {
  font-size: 25px;
  text-align: center;
  font-weight: 600;
}
.hidden-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox {
  position: absolute;
  top: -5px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: white;
  border:2px solid rgb(5, 33, 78);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.custom-checkbox:hover .checkbox {
  border-color: rgba(225, 51, 0, 1);
}

.checkmark {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  background-color: rgba(255, 81, 0, 1);
  border-radius: 2px;
}

.hidden-checkbox:checked ~ .checkbox {
  background-color: rgba(255, 81, 0, 1);
  border-color: rgba(255, 81, 0, 1);
}

.hidden-checkbox:checked ~ .checkbox .checkmark {
  opacity: 1;
  transform: scale(1);
}
.black.custom-checkbox a {
  color: #000 !important;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.custom-checkbox a {
  color: rgba(230, 49, 63, 1);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.custom-checkbox a:hover {
  color:#fff;
  text-decoration: none;
}

/* Стиль для неактивного состояния */
.custom-checkbox.error .checkbox {
  border-color: #ff0048;
}

.custom-checkbox.error {
  color: #ff0048;
}
.form-supject {
  opacity: 0;
  display: none;
  pointer-events: none;
}
header {padding:20px 0px 20px 0px;}
/*основной блок*/
.section-bg-inzh-white h2 {
  max-width: 950px;
  font-family: "Ubuntu Sans", sans-serif;
  font-weight: 300;
  font-size: 64px;
  color: rgba(7, 59, 140, 1);
}
.main-block {background:url(../i/main.webp) no-repeat center;background-size:cover;min-height:700px;padding:20px 0px 240px 0px;}

.header-grid {
display: grid;
            grid-template-columns: 400px 1fr;
            align-items: center;
            gap: 40px;
}
.header-contact {  display: flex;
            justify-content: flex-end;
            gap: 25px;
            list-style: none;margin-bottom:10px;

}
.section-links-l {padding:50px 0px 50px 0px;}
.categorylinks a{
	 border-radius:5px;text-decoration: none;
background:rgba(231, 238, 244, 1);display: inline-block;
	padding:8px;font-size:12px;
  color:rgba(7, 59, 140, 1);	margin-bottom:14px;
}

.phone-header{font-family: "Ubuntu Sans", sans-serif;
text-decoration: none;
font-weight: 400;
font-size: 32px;
color:#fff;
}
.callback {background:rgba(230, 49, 63, 1);
color:#fff;padding:12px 20px;
font-size:18px;font-family: "Ubuntu Sans", sans-serif;
    -webkit-border-radius: 4px;
-moz-border-radius: 4px;text-decoration: none;
border-radius: 4px;
}
.callback:hover {background:rgba(168, 15, 27, 1);}
.callback3 {
    background: linear-gradient(90deg, #E6313F 0%, #A80F1B 100%);
    color: #fff;
    padding: 12px 50px;
    font-size: 18px;
    font-family: "Ubuntu Sans", sans-serif;
    border-radius: 4px;align-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.callback3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #A80F1B 0%, #E6313F 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.callback3:hover::before {
    opacity: 1;
}





        .nav-menu {
            display: flex;
            justify-content: flex-end;
            gap: 25px;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;

font-weight: 300;

font-size: 17px;
color:#fff;

            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: #0066cc;
        }
html, body {
  overflow-x: hidden !important;
}
.section-ytp {margin-top:150px;}
.ytp-t1 {font-family: "Ubuntu Sans", sans-serif;
font-weight: 100;
font-size: 24px;
color:#fff;margin-bottom:28px;
}
.ytp-t2 {font-family: "Ubuntu Sans", sans-serif;
font-weight: 500;
max-width:980px;
font-size: 64px;
color:#fff;line-height: 1em;margin-bottom:40px;
}
.ytp-t3 {font-family: "Ubuntu Sans", sans-serif;
font-weight: 300;
max-width:980px;margin-bottom:50px;
font-size: 24px;
color:#fff;
}
.callback2 {background:rgba(230, 49, 63, 1);
color:#fff;padding:12px 20px;
font-size:18px;font-family: "Ubuntu Sans", sans-serif;
    -webkit-border-radius: 4px;
-moz-border-radius: 4px;text-decoration: none;
border-radius: 4px;
    display: table;
}
.line-d {background: linear-gradient(90deg, #E6313F 0%, #A80F1B 100%);
height:8px;width:100%;}



  .text-about h1 {
        color:rgba(7, 59, 140, 1);
  
font-weight: 300;

font-size: 64px;


    }
    .text-about{
font-weight: 300;
font-size: 25px;max-width:1100px;
color:rgba(7, 59, 140, 1);
    }    
    
    .section-about {margin-bottom:40px;}
    
    
    
.grid-forms-tx {display: grid;
  position: relative;align-items: center;
  z-index: 100;margin-top:60px;
  grid-template-columns: 720px auto;
  gap: 25px;
  margin-bottom: 15px;

}
.input-f {
backdrop-filter: blur(2px);
border: 1px solid rgba(255, 255, 255, 1);
color:rgba(255, 255, 255, 1);
height:60px;

font-weight: 400;
  background: rgba(255, 255, 255, .3);
font-size: 18px;
	
    -webkit-text-fill-color: white;
    -webkit-appearance: none;	
  position: relative;
padding-left:20px;
    width:100%;
}
.input-f:focus {outline:none;}

.input-f::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  z-index: -1;
}
.form-attention {
display: flex;
  gap: 25px;
  list-style: none;
}
.submit-f {background:rgba(230, 49, 63, 1);width:100%;height:60px;color:#fff;
font-weight: 400;
font-size: 24px;border:0px;
}
.submit-f:hover {background:rgba(168, 15, 27, 1);transition: all 0.5s ease;cursor:pointer;}


.title-form-att{
font-weight: 400;
font-size: 52px;
color:#fff;
}
.att-desc {
font-weight: 200;margin-top:30px;
font-size: 24px;
color:rgba(243, 243, 244, 1);
}    
    /*Мы работаем*/
    
    .section-weworks {
margin:50px 0px 50px 0px;
        
    }
   .objects-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 25px;
        }
  .object-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 300px;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .object-image-container {
            width: 100%;
            height: 100%;
            position: relative;
            background: linear-gradient(180deg, rgba(14, 77, 142, 0.6) 0%, rgba(14, 77, 142, 0.6) 100%);
        }

        .object-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            mix-blend-mode: multiply;
            opacity: 0.9;
        }

        .object-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            padding: 20px;
            color: white;
        }

        .object-name {
max-width:300px;
font-weight: 300;
color:#fff;
font-size: 32px;



            margin-bottom: 5px;
        }

        .object-arrow {
            position: absolute;
            right: 15px;
            bottom: 15px;
            width: 68px;
            height: 68px;
               -webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
            background-color:rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 1);
            backdrop-filter: blur(2px);

            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }


        .object-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .object-item:hover .object-arrow {
            transform: translateX(3px);
        }

    
    
        @media (max-width: 900px) {
            .objects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .objects-grid {
                grid-template-columns: 1fr;
            }
            
      
            
            .section-title {
                font-size: 22px;
            }
        }
    .section-weworks h2 {
font-weight: 300;

font-size: 64px;
max-width:870px;
        color:rgba(7, 59, 140, 1);
    }    
    


.section-ytp2 {margin:50px 0px 50px 0px;}
.section-ytp {margin:130px 0px 50px 0px;}
.bg-ytp {background:url(../i/ytp.webp) no-repeat;background-size: cover;min-height:600px;-webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-border-radius: 4px;
display: grid;
            grid-template-columns:1fr 1fr;
            align-items: center;
            gap: 40px;
}
.bg-ytp2 {background:url(../i/ytp2.png) no-repeat;background-size: cover;min-height:600px;-webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-border-radius: 4px;
display: grid;
            grid-template-columns:1fr 1fr;
            align-items: center;
            gap: 40px;
}
.bg-form-att {background:rgba(7, 59, 140, 0.8);padding:60px 50px 60px 110px;height:100%;-webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-border-radius: 4px;}
.form-1{
font-weight: 400;
font-size: 40px;
color:#fff;
}
.form-1-1 {
margin-top:10px;
font-weight: 400;
font-size: 20px;
color:rgba(243, 243, 244, 1);
}
.agree-check2 {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;margin-top:25px;
  font-size: 14px;
}
.fomr-wi470 input {margin-bottom:15px;}
.fomr-wi470 {max-width:470px;margin-top:50px;}
.section-ytp2 {}  
/*Инженерные услуги для бизнеса и жизни*/    

.section-bg-inzh {  background-image: 
    linear-gradient(0deg, #05214E, #05214E),
    radial-gradient(50% 76.45% at 0% 78.1%, #1B58B6 0%, rgba(27, 88, 182, 0) 100%),
    radial-gradient(48.74% 74.52% at 100% 0%, #1B58B6 0%, rgba(27, 88, 182, 0) 100%);
  background-blend-mode: normal; /* можно поэкспериментировать с overlay, screen и др. */
padding:100px 0px 80px 0px;margin-top:30px;
}    
.text-left-f  a {color:rgba(173, 189, 213, 1);}
.text-left-f {color:rgba(173, 189, 213, 1);
font-weight: 500;
font-size: 16px;


}
    .section-bg-inzh h2 {
        max-width:950px;
  font-family: "Ubuntu Sans", sans-serif;
font-weight: 300;
font-size: 64px;
color:#fff; 
        
    }   

 .section-bg-inzh2 h2 {
        max-width:950px;
  font-family: "Ubuntu Sans", sans-serif;
font-weight: 300;
font-size: 64px;
color:rgba(7, 59, 140, 1); 
        
    }   

.agree-check input {border:1px solid #fff;}
.agree-check { color: rgba(255, 255, 255, 0.6);
font-weight: 400;margin-top:40px;
font-size: 14px;
}
.bg-grrr {background: linear-gradient(90deg, #092A5E 0%, #1B58B6 100%);
height:4px;width:100%;}
.bg-preim h2{
font-weight: 300;
  font-size: 64px;
  max-width: 870px;
  color: rgba(7, 59, 140, 1);
}
.bg-preim {background: url(../i/preim-bg.webp) center no-repeat;padding: 40px 0px 200px 0px;background-size:cover;}
.img-preims {margin-bottom:14px;}
.preim-s {background: #fff;
  border: 1px solid rgba(7, 59, 140, 1);
  padding: 20px;
text-align:center;
-webkit-border-radius: 12px;
  border-radius: 12px;
  -moz-border-radius: 12px;	
}
.flex-preim  {
display: flex;
  gap: 25px;
  list-style: none;
    
}
.text-preims {
font-weight: 400;
font-size: 24px; font-family: "Ubuntu Sans", sans-serif;
color:rgba(7, 59, 140, 1);
text-align: center;
vertical-align: bottom;
}


.objects-grid3 {
            display: grid;
            grid-template-columns: auto 680px;position: relative;z-index:100;
            gap: 25px;
        }
 .objects-grid2 {
            display: grid;position: relative;z-index:100;
            grid-template-columns: 680px auto;
            gap: 25px;margin-bottom:15px;
        }
    
    .object-item2 {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 300px;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .object-image-container2 {
            width: 100%;
            height: 100%;
            position: relative;
            background: linear-gradient(180deg, rgba(14, 77, 142, 0.6) 0%, rgba(14, 77, 142, 0.6) 100%);
        }

        .object-image2 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            mix-blend-mode: multiply;
            opacity: 0.9;
        }

        .object-overlay2 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            padding: 20px;
            color: white;
        }

        .object-name2 {
max-width:300px;
font-weight: 300;
color:#fff;
font-size: 32px;
 margin-bottom: 5px;
        }

        .object-arrow2 {
            position: absolute;
            right: 15px;
            bottom: 15px;
            width: 68px;
            height: 68px;
               -webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
            background-color:rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 1);
            backdrop-filter: blur(2px);

            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }


        .object-item2:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .object-item2:hover .object-arrow2 {
            transform: translateX(3px);
        }
    .image-news img{
        object-fit: cover;height:100%;width:100%;
        
    }
    
    .news-grid {
        
     display: grid;
            grid-template-columns:1fr 1fr 1fr 1fr;
            gap: 25px;margin-bottom:15px;
        
    }
    .news {
        
        background: #F3F3F4;
    }
    .section-news{padding:50px 0px 50px 0px;}
     .section-news h2 {
    font-weight: 300;
    font-size: 64px;
    max-width: 870px;
    color: rgba(7, 59, 140, 1);
  }
    .navbar-top {background-color:#004385}
  .navbar-toggle {display:none}
  .navbar-collapse.collapse {display:block !important; padding:0; border:0; -webkit-box-shadow:none; box-shadow:none}
  .navbar-nav > li > a {
font-size: 14px;
font-weight: 500;
color:#fff;

    }
.buttom-all-right {text-align: right;display: flex;
  justify-content: flex-end;
  gap: 25px;}
.read-all {border: 1px solid #073B8C;display:table;
color:#073B8C;padding:16px 32px;
font-weight: 400;text-align: right;
font-size: 20px;text-decoration:none;
}
.read-all:hover {background:#073B8C;color:#fff;}
    .title-news {
font-weight: 500;
font-size: 20px;
color:#073B8C;
}
    .desc-news{
font-weight: 300;
font-size: 16px;
color:#0B161F;
}
    .date-news {
font-weight: 500;
font-size: 16px;
color:#073B8C;text-align: left;margin-top:15px;
}
    .desc-n {padding:12px 20px;}




 .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
footer {background:url(../i/footer.png) no-repeat center;background-size:cover; width:100%;padding:60px 0px 20px 0px;}
 .footer-column {
            flex: 1;
            min-width: 150px;
            margin-bottom: 20px;
            padding: 0 15px;
        }
        
        .footer-column-wide {
            flex: 1.5;
            min-width: 250px;
        }
        
        .footer-title {
font-weight: 400;
font-size: 32px;margin-bottom:20px;
color:#fff;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            text-transform: uppercase;
            line-height: 1.2;
        }
        
        .footer-description {
color:#fff;
font-weight: 300;
font-size: 20px;

        }
        
        .footer-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-menu li {
            margin-bottom: 10px;
        }
        .switcher {
  position: absolute;
  visibility: hidden;
  left: -9999px;
}
        .footer-menu a {
color:#fff;
font-weight: 300;
font-size: 24px;text-decoration: none;

            transition: color 0.3s;
        }
        
        .footer-menu a:hover {
            color: #0066cc;
        }
        
        .footer-contacts {
            font-size: 14px;
            line-height: 1.6;
        }
        
        .footer-contacts p {
            margin: 10px 0;
        }
.footer-bottom-gr {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
}
        .footer-contacts  {
    
font-weight: 300;
color:#fff;
font-size: 23px;

        }
        
    .dev {
    text-align:right;
}
.dev a {
    display: block;

}

.dev a img {
    display: inline-block;
    vertical-align: middle;
}

.dev a span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;line-height: 1.2em;
    text-align: left;
font-weight: 400;
font-size: 14px;
color:#fff;
    position: relative;
    transition: .3s color;
}
 .dev a:hover {text-decoration:none;}
 .dev a:hover span {
    color: rgba(55, 45, 44, 1);
}
        
        .footer-bottom {
            width: 100%;
            text-align: center;
            font-size: 12px;
            padding-top: 15px;
        }
        
        .footer-bottom p {
            margin: 5px 0;
        }
        
        .confidential-link {
            color: #333;
            text-decoration: none;
        }
        
        .confidential-link:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
          
            .footer-column-wide {
                flex: 100%;
                min-width: 100%;
            }
            
            .footer-description {
                max-width: 100%;
            }
        }
@media (min-width: 992px) {

  
  .site-nav .navbar-nav {text-align:center}
  .site-nav > .navbar-nav {margin:0 1.5rem 0 0; position:relative}
  .site-nav > .navbar-nav > li {display:inline-block; margin:0 10px; position:relative}
  .site-nav > .navbar-nav > li::before, .site-nav > .navbar-nav > li > a::before, .site-nav > .navbar-nav > li:first-child::after {position:absolute; content:''}
  .site-nav > .navbar-nav > li:first-child::after {top:0; left:-30px; width:1px; height:100%;}
	  .site-nav > .navbar-nav > li:last-child::before {top:0; left:-30px; width:1px; height:100%;}

  .site-nav > .navbar-nav > li > a {margin:0; position:relative; display:inline-block}
  .site-nav > .navbar-nav > li > a::before {bottom:0; left:0; width:0; height:1px; background-color:rgba(135,191,215,1); -webkit-transition:all .25s ease-out 0s; -o-transition:all .25s ease-out 0s; transition:all .25s ease-out 0s}
  .site-nav > .navbar-nav > li.active > a::before,
  .site-nav > .navbar-nav > li:hover > a::before,
  .site-nav > .navbar-nav > li > a:hover::before,
  .site-nav > .navbar-nav > li > a:focus::before {width:100%; left:0}
  .site-nav .navbar-nav > li > a {padding:5px 0; color:rgba(55, 45, 44, 1);  
font-weight: 500;
font-size: 16px;

}
  .site-nav .navbar-nav > li > a:hover, .site-nav .navbar-nav > li > a:focus, .site-nav .navbar-nav > li.active > a {color:#000;text-decoration: none;}

  .nav > li > a:hover, .nav > li > a:focus {background-color:transparent}
  /*** DropDown Menu ***/
  ul.dropdown {background-color:rgba(255,255,255,1); position:absolute; z-index:100; left:auto; top:auto; list-style:none; padding:0; width:20rem; opacity:0; visibility:hidden; z-index:3; -webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.25); box-shadow:0 2px 2px 0 rgba(0,0,0,.25); -webkit-transform:translateY(2em); -ms-transform:translateY(2em); transform:translateY(2em); -webkit-transition:opacity .2s ease 0s, -webkit-transform .2s ease 0s; transition:opacity .2s ease 0s, -webkit-transform .2s ease 0s; -o-transition:transform .2s ease 0s, opacity .2s ease 0s; transition:transform .2s ease 0s, opacity .2s ease 0s; transition:transform .2s ease 0s, opacity .2s ease 0s, -webkit-transform .2s ease 0s}
  ul.dropdown li ul {left:100%; top:0}
  ul.dropdown li {width:100%; padding:0; display:block; position:relative; text-align:left}
  ul.dropdown li:last-child {border:0}
  ul.dropdown li a {padding:10px; display:block; font-size:1.4rem; color:rgba(0,0,0,.9)}
  ul.dropdown li a:hover, ul.dropdown li a:focus, ul.dropdown > li.active > a {color:rgba(217,48,44,1); background-color:rgba(238,238,238,1); text-decoration:none}

  .navbar-nav > li:hover > ul.dropdown {opacity:1; visibility:visible; z-index:99; -webkit-transform:translateY(0); -ms-transform:translateY(0); transform:translateY(0)}
  ul.dropdown li:hover > ul {opacity:1; visibility:visible; -webkit-transform:translateY(0); -ms-transform:translateY(0); transform:translateY(0)}
  ul.dropdown li > ul > li > ul {display:none}

  .navbar-top .social {margin:0 0 0 3rem}
  .navbar-top .flex-col:first-child {width:auto}
  .navbar-top .flex-col:nth-child(2) {width:auto}
  .navbar-top .flex-col:last-child {width:auto}

  .flex-row {display:-webkit-box;display:-ms-flexbox;display:flex; -ms-flex-wrap:nowrap; flex-wrap:nowrap; -webkit-box-pack:end; -ms-flex-pack:end; justify-content:flex-end}
  .flex-col {display:-webkit-box;display:-ms-flexbox;display:flex; -webkit-box-orient:vertical; -webkit-box-direction:normal; -ms-flex-direction:column; flex-direction:column; -webkit-box-pack:center; -ms-flex-pack:center; justify-content:center}
  .flex-row .flex-col:nth-child(2) {-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}

  .navbar-top .navbar-brand {padding:10px 0}
  .navbar-top .navbar-brand .tbl-cell {height:85px}
  .navbar-brand .tbl-cell:first-child {width:70px}
  .navbar-brand .tbl-cell img.brand-name {margin-left:30px}



  .navbar-top .site-nav > .navbar-nav {display:flex !important; flex-direction:row; justify-content:center!important; width:100%; margin:0 !important}
  .navbar-top .site-nav > .navbar-nav > li {flex:1 1 auto !important}
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{
	float: left;
}
.col-xs-12{
	width: 100%;
}
.col-xs-11{
	width: 91.66666667%;
}
.col-xs-10{
	width: 83.33333333%;
}
.col-xs-9{
	width: 75%;
}
.col-xs-8{
	width: 66.66666667%;
}
.col-xs-7{
	width: 58.33333333%;
}
.col-xs-6{
	width: 50%;
}
.col-xs-5{
	width: 41.66666667%;
}
.col-xs-4{
	width: 33.33333333%;
}
.col-xs-3{
	width: 25%;
}
.col-xs-2{
	width: 16.66666667%;
}
.col-xs-1{
	width: 8.33333333%;
}
.col-xs-offset-12{
	margin-left: 100%;
}
.col-xs-offset-11{
	margin-left: 91.66666667%;
}
.col-xs-offset-10{
	margin-left: 83.33333333%;
}
.col-xs-offset-9{
	margin-left: 75%;
}
.col-xs-offset-8{
	margin-left: 66.66666667%;
}
.col-xs-offset-7{
	margin-left: 58.33333333%;
}
.col-xs-offset-6{
	margin-left: 50%;
}
.col-xs-offset-5{
	margin-left: 41.66666667%;
}
.col-xs-offset-4{
	margin-left: 33.33333333%;
}
.col-xs-offset-3{
	margin-left: 25%;
}
.col-xs-offset-2{
	margin-left: 16.66666667%;
}
.col-xs-offset-1{
	margin-left: 8.33333333%;
}
.col-xs-offset-0{
	margin-left: 0;
}
.col-xs-tac{
	text-align: center;
}
.col-xs-tar{
	text-align: right;
}
.col-xs-tal{
	text-align: left;
}
.col-xs-taj{
	text-align: justify;
}

@media (min-width: 768px){
	.container{
		width: 750px;
	}
	.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{
		float: left;
	}
	.col-sm-12{
		width: 100%;
	}
	.col-sm-11{
		width: 91.66666667%;
	}
	.col-sm-10{
		width: 83.33333333%;
	}
	.col-sm-9{
		width: 75%;
	}
	.col-sm-8{
		width: 66.66666667%;
	}
	.col-sm-7{
		width: 58.33333333%;
	}
	.col-sm-6{
		width: 50%;
	}
	.col-sm-5{
		width: 41.66666667%;
	}
	.col-sm-4{
		width: 33.33333333%;
	}
	.col-sm-3{
		width: 25%;
	}
	.col-sm-2{
		width: 16.66666667%;
	}
	.col-sm-1{
		width: 8.33333333%;
	}
	.col-sm-offset-12{
		margin-left: 100%;
	}
	.col-sm-offset-11{
		margin-left: 91.66666667%;
	}
	.col-sm-offset-10{
		margin-left: 83.33333333%;
	}
	.col-sm-offset-9{
		margin-left: 75%;
	}
	.col-sm-offset-8{
		margin-left: 66.66666667%;
	}
	.col-sm-offset-7{
		margin-left: 58.33333333%;
	}
	.col-sm-offset-6{
		margin-left: 50%;
	}
	.col-sm-offset-5{
		margin-left: 41.66666667%;
	}
	.col-sm-offset-4{
		margin-left: 33.33333333%;
	}
	.col-sm-offset-3{
		margin-left: 25%;
	}
	.col-sm-offset-2{
		margin-left: 16.66666667%;
	}
	.col-sm-offset-1{
		margin-left: 8.33333333%;
	}
	.col-sm-offset-0{
		margin-left: 0;
	}
	.col-sm-tac{
		text-align: center;
	}
	.col-sm-tar{
		text-align: right;
	}
	.col-sm-tal{
		text-align: left;
	}
	.col-sm-taj{
		text-align: justify;
	}
}

@media (min-width: 992px){
	.container{
		width: 970px;
	}
	.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{
		float: left;
	}
	.col-md-12{
		width: 100%;
	}
	.col-md-11{
		width: 91.66666667%;
	}
	.col-md-10{
		width: 83.33333333%;
	}
	.col-md-9{
		width: 75%;
	}
	.col-md-8{
		width: 66.66666667%;
	}
	.col-md-7{
		width: 58.33333333%;
	}
	.col-md-6{
		width: 50%;
	}
	.col-md-5{
		width: 41.66666667%;
	}
	.col-md-4{
		width: 33.33333333%;
	}
	.col-md-3{
		width: 25%;
	}
	.col-md-2{
		width: 16.66666667%;
	}
	.col-md-1{
		width: 8.33333333%;
	}
	.col-md-offset-12{
		margin-left: 100%;
	}
	.col-md-offset-11{
		margin-left: 91.66666667%;
	}
	.col-md-offset-10{
		margin-left: 83.33333333%;
	}
	.col-md-offset-9{
		margin-left: 75%;
	}
	.col-md-offset-8{
		margin-left: 66.66666667%;
	}
	.col-md-offset-7{
		margin-left: 58.33333333%;
	}
	.col-md-offset-6{
		margin-left: 50%;
	}
	.col-md-offset-5{
		margin-left: 41.66666667%;
	}
	.col-md-offset-4{
		margin-left: 33.33333333%;
	}
	.col-md-offset-3{
		margin-left: 25%;
	}
	.col-md-offset-2{
		margin-left: 16.66666667%;
	}
	.col-md-offset-1{
		margin-left: 8.33333333%;
	}
	.col-md-offset-0{
		margin-left: 0;
	}
	.col-md-tac{
		text-align: center;
	}
	.col-md-tar{
		text-align: right;
	}
	.col-md-tal{
		text-align: left;
	}
	.col-md-taj{
		text-align: justify;
	}
}

@media (min-width: 1200px){
	.container{
		width: 1620px;
	}
	.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{
		float: left;
	}
	.col-lg-12{
		width: 100%;
	}
	.col-lg-11{
		width: 91.66666667%;
	}
	.col-lg-10{
		width: 83.33333333%;
	}
	.col-lg-9{
		width: 75%;
	}
	.col-lg-8{
		width: 66.66666667%;
	}
	.col-lg-7{
		width: 58.33333333%;
	}
	.col-lg-6{
		width: 50%;
	}
	.col-lg-5{
		width: 41.66666667%;
	}
	.col-lg-4{
		width: 33.33333333%;
	}
	.col-lg-3{
		width: 25%;
	}
	.col-lg-2{
		width: 16.66666667%;
	}
	.col-lg-1{
		width: 8.33333333%;
	}
	.col-lg-offset-12{
		margin-left: 100%;
	}
	.col-lg-offset-11{
		margin-left: 91.66666667%;
	}
	.col-lg-offset-10{
		margin-left: 83.33333333%;
	}
	.col-lg-offset-9{
		margin-left: 75%;
	}
	.col-lg-offset-8{
		margin-left: 66.66666667%;
	}
	.col-lg-offset-7{
		margin-left: 58.33333333%;
	}
	.col-lg-offset-6{
		margin-left: 50%;
	}
	.col-lg-offset-5{
		margin-left: 41.66666667%;
	}
	.col-lg-offset-4{
		margin-left: 33.33333333%;
	}
	.col-lg-offset-3{
		margin-left: 25%;
	}
	.col-lg-offset-2{
		margin-left: 16.66666667%;
	}
	.col-lg-offset-1{
		margin-left: 8.33333333%;
	}
	.col-lg-offset-0{
		margin-left: 0;
	}
	.col-lg-tac{
		text-align: center;
	}
	.col-lg-tar{
		text-align: right;
	}
	.col-lg-tal{
		text-align: left;
	}
	.col-lg-taj{
		text-align: justify;
	}
}
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after{
	display: table;
	content: " ";
}
.container:after,
.container-fluid:after,
.row:after{
	clear: both;
}
.container {
  margin-right:auto;
  margin-left:auto;
  padding-left:15px;
  padding-right:15px
}
.switcher {
  position: absolute;
  visibility: hidden;
  left: -9999px;
}
@media (min-width: 1280px) {
  .menu-mob {
    display: none;
  }
	
}
@media (min-width: 993px) {

	.disp-nope  {
    display: none;
  }
}
.content-views h3 {

font-weight: 700;
font-size: 32px;
color:rgba(3, 9, 24, 1);

}
.footer-contacts a{color:#fff;text-decoration:none;}
@media (max-width: 1280px){
	.grid-forms-tx {display:block !important;}
	
}
@media (max-width: 1200px){ .title-utp-absl {max-width: 100% !important;}}
@media (min-width: 993px){
	.disp-no2 {display:none;}
}


@media (max-width: 1279px){.max200px {max-width:200px;}
	.mobile-none-g {display:none;}
.mob-menus {
  position: absolute;
top: 25px;
    right: 20px;
color: #fff;
font-size: 2em;
}
.menu-mob .open,
.menu-mob .close2 {
    display: block !important;
    max-width: 800px;
  }
	.menus ul {margin:0px;padding:0px;}
.menus ul li {list-style:none;text-align:left;}
.menus ul li a {
	display: block;
	padding: 10px 15px;
	color: #fff;
	text-decoration: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	-o-transition: 0.2s linear;
	transition: 0.2s linear;
}
.menus  ul li a:hover {
	background:rgba(67, 125, 240, 1);
	color: #fff;
}
.menus ul li a .fa {
	width: 16px;
	text-align: center;
	margin-right: 5px;
	float:right;
}
.menus ul ul {
	background: rgba(0, 0, 0, 0.2);
}
.menus ul li ul li a {
	border-left: 4px solid transparent;
	padding: 10px 20px;
}
.menus ul li ul li a:hover {

	border-left: 4px solid #3498db;
}

.close2{
position: absolute;
top: 40px;
right: 40px;
	font-size: 2em;
    color: #fff;
}
	
.switcher:checked ~ nav{
right: 0;
}
nav a{color:#fff;font-size: 25px;}
nav{
position: fixed;
width: 100%;
height: 100vh;
background:#002060;
top: 0;
right: -100%;
text-align: center;
padding: 100px 0;
transition: .7s;
	z-index:100;
}
	}



@media (max-width: 992px){
.grid-about {display:block !important;padding: 20px;}
.grid-preim {display:block !important;padding: 20px;}
.disp-no {display:none;}
	.main-block2 {min-height: 100% !important;padding: 20px 0px 40px 0px !important; }
	.main-block3 {min-height: 100% !important;padding: 20px 0px 40px 0px !important; }
	.main-block4 {min-height: 100% !important;padding: 20px 0px 40px 0px !important; }
	.main-block5 {min-height: 100% !important;padding: 20px 0px 40px 0px !important; }
	.section-news {
  padding: 10px 0px 10px 0px !important;}
	.section-news h2 {font-size:30px !important; margin-bottom:0px !important;}
	.h2 {font-size:32px !important;}
	.h2-2 {font-size:32px !important;}
	.formss-grid {display:block;}
	.input-callback {margin-bottom:20px;}
	.callback3 {display: block;
  text-align: center;
  margin-bottom: 30px;}
	.flex-link {display:block !important;}
	.text-content-in h1{
		font-size: 35px !important; }
.section-ytp {margin: 70px 0px 50px 0px !important;}
	.header-grid {display:block !important;}
	header {
  padding: 0px !important;}
	
.buttom-all-right {
  text-align: left !important;
		display: block !important; margin-top:40px;}
.preim-s {
  display: flex;
  gap: 25px;margin-bottom:25px;
  align-items: center;
}
.footer-menu a {font-size: 16px !important; }
	.footer-title {font-size:20px !important;}
 .footer-column:nth-child(2),
  .footer-column:nth-child(3) {
    width: 48%; 
    display: inline-block;
    vertical-align: top;
  }	
	
	.bg-preim h2 { font-size:32px !important;}
	.main-block {min-height: 100% !important;
  padding: 20px 0px 70px 0px !important;}
	.flex-preim {display:block !important;}
	.ytp-t1 {font-size:16px !important;}
	.ytp-t2 {font-size:32px !important;}
	.ytp-t3 {font-size:16px !important;}
	.bg-form-att {padding:20px !important;}
	.fomr-wi470 {margin:0 auto;}
	.agree-check2{margin:0 auto;display:table;}
	.form-1 {font-size:24px !important;}
	.form-1-1 {font-size:16px !important;margin-bottom:20px;}
	.object-name2 {font-size:16px !important;}
	.title-form-att {font-size:24px !important;}
	.form-attention {
		display: block !important; }
	.bg-ytp {min-height: 100% !important;
  display: block !important;}
	.bg-ytp2 {min-height: 100% !important;
  display: block !important;}
	.input-f{margin-bottom:20px;}
	.att-desc {font-size:16px !important;margin-bottom:30px;}
	.section-weworks h2 {font-size:32px !important;}
	.section-bg-inzh h2 {font-size:32px !important;}
	.objects-grid2 {display:block !important;}
	.objects-grid3 {display:block !important;}
	.object-item2 { height: 140px;}
	.object-name {font-size:26px !important;}
	.text-about h1 {font-size:32px !important;}
	.text-about {font-size:16px !important;}
	.object-arrow {
  width: 50px !important;
		height: 50px !important; }
		.object-arrow2 {
  width: 50px !important;
		height: 50px !important; }
	 .object-item {
    height: 140px;
  }
	.object-item2 {margin-bottom:20px;}
	
}
@media (min-width:768px) {
  .container {
    width:750px
  }
}
@media (min-width:992px) {
  .container {
    width:970px
  }
}
@media (min-width:1200px) {
  .container {
    width:1170px
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1240px;
  }
}

@media (max-width: 767px){
	.hidden-xs{
		display: none !important;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	.hidden-sm{
		display: none !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px){
	.hidden-md{
		display: none !important;
	}
}
@media (min-width: 1200px){
	.hidden-lg{
		display: none !important;
	}
}

@media (min-width: 992px) {
/*** DropDown Menu ***/
 .navbar-nav {display:flex !important; flex-direction:row; justify-content:center!important; width:100%; margin:0 !important;padding:0px;}
 .navbar-nav > li {flex:1 1 auto !important}
  ul.dropdown {background-color:rgba(255,255,255,1); position:absolute; z-index:100; left:auto; top:auto; list-style:none; padding:0; width:15rem; opacity:0; visibility:hidden; z-index:3; -webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.25); box-shadow:0 2px 2px 0 rgba(0,0,0,.25); -webkit-transform:translateY(2em); -ms-transform:translateY(2em); transform:translateY(2em); -webkit-transition:opacity .2s ease 0s, -webkit-transform .2s ease 0s; transition:opacity .2s ease 0s, -webkit-transform .2s ease 0s; -o-transition:transform .2s ease 0s, opacity .2s ease 0s; transition:transform .2s ease 0s, opacity .2s ease 0s; transition:transform .2s ease 0s, opacity .2s ease 0s, -webkit-transform .2s ease 0s}
  ul.dropdown li ul {left:100%; top:0}
  ul.dropdown li {width:100%; padding:0; display:block; position:relative; text-align:left}
  ul.dropdown li:last-child {border:0}
  ul.dropdown li a {padding:10px; display:block; 
font-weight: 400;
font-size: 16px;
    }
  ul.dropdown li a:hover, ul.dropdown li a:focus, ul.dropdown > li.active > a {color:rgba(217,48,44,1); background-color:rgba(238,238,238,1); text-decoration:none}

  .navbar-nav > li:hover > ul.dropdown {opacity:1; visibility:visible; z-index:99; -webkit-transform:translateY(0); -ms-transform:translateY(0); transform:translateY(0)}
  ul.dropdown li:hover > ul {opacity:1; visibility:visible; -webkit-transform:translateY(0); -ms-transform:translateY(0); transform:translateY(0)}
  ul.dropdown li > ul > li > ul {display:none}

  .navbar-top .social {margin:0 0 0 3rem}
  .navbar-top .flex-col:first-child {width:auto}
  .navbar-top .flex-col:nth-child(2) {width:auto}
  .navbar-top .flex-col:last-child {width:auto}

  .flex-row {display:-webkit-box;display:-ms-flexbox;display:flex; -ms-flex-wrap:nowrap; flex-wrap:nowrap; -webkit-box-pack:end; -ms-flex-pack:end; justify-content:flex-end}
  .flex-col {display:-webkit-box;display:-ms-flexbox;display:flex; -webkit-box-orient:vertical; -webkit-box-direction:normal; -ms-flex-direction:column; flex-direction:column; -webkit-box-pack:center; -ms-flex-pack:center; justify-content:center}
  .flex-row .flex-col:nth-child(2) {-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}
}