@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,300&display=swap');

:root {
    --clr-light-gray: #d3d3d3;
    --clr-dark-gray: #404040;
    --clr-dark: #2b2c2c;
    --clr-yellow: #ffcc33;
    --clr-light-yellow: #f7e449;
    --clr-dark-yellow: #e9b12c;
}

/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    line-height: 1.2;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-weight: 400;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

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

a {
    color: #008dd2;
}

a:hover {
    color: orange;
    text-decoration: underline;
}

a:visited,
a:hover {
    color: #008dd2;
}

img,
picture {
    max-width: 100%;
    height: auto !important;
    vertical-align: top;
}

._locked {
    overflow: hidden;
    

}

.container {
    max-width: 1260px;
    margin: auto;
    padding: 0 20px;
}

.header {    
    width: 100%;
    background: white;
    padding: 15px 0;
}
.header__wrap{
    display: flex;
    gap:100px;
    align-items: center;
    justify-content: space-between;    
    min-width: 320px;
}
.header__logo {
    width: 300px;
    min-width: 300px;
}

.menu__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-right: 80px;
}

.menu__list>li>a {
    white-space: nowrap;
    color: var(--clr-dark-gray);
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px;
    display: block;
    transition: all 0.2s ease-in-out;
}

.menu__list>li>a:hover {
    color: #f08143;    
    text-decoration: none;
    position: relative;
}
.menu__list>li>a:hover::after {
    content: "";
    position: absolute;
    bottom: 0px;
    height: 2px;
    width: 100%;
    left: 0;
    background-color: #008dd2;
}

.welcome__container{
    position: relative;
    height: calc(100vw * 0.32);
}
.welcome__block{
    position: absolute;    
    bottom: 0;
    max-width: 600px;
    background-color: #ffffffce;
    padding: 30px;
    border-top: 5px solid #f08143;
}
.welcome__text-header{
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: #008dd2;
}
.welcome__text-brand{
    line-height: 1;
    font-size: 52px;
    font-weight: 900;
    color: #f08143;
    text-transform:uppercase ;
}
.welcome__text-header2{
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #008dd2;
    margin-bottom: 20px;
}
.welcome__text-intro p{
    line-height: 1.2;
    margin-bottom: 10px;
    font-size: 18px;

}
.solarstation {
    padding: 80px 0;
}
.solarstation__container{
    display: flex;
    gap:60px;
    align-items: center;
    justify-content: space-between;
    align-items: stretch;
    font-size: 18px;
}

.solarstation__left{
    position: relative;   
    background-color: #008dd2;
    width: 50%;
}
.solarstation__left-mw{
position: absolute;
top: 0;
right: 0;
background: #f08143;
border-left: 5px solid white;
border-bottom: 5px solid white;
padding: 20px;
color: white;
text-align: center;
}
.solarstation__left-mwnumber{
    font-size: 60px;
    font-weight: 900;
}
.solarstation__left-mwtext{
    font-size: 20px;
    font-weight: 600;
}
.solarstation__right{
    display: flex;
    flex-direction: column; 
    justify-content: space-between;
    width: 50%;
}
.solarstation__right p{
    margin-bottom: 20px;
}
.solarstation__images{
    display: flex;
    gap:20px;
    align-items: center;
    justify-content: space-between;   

}
.solarstation__header{
    font-size: 52px;
    text-transform: uppercase;
    font-weight: 800;
    color: #008dd2;
}

.division{
    padding: 100px 0 80px;
    background-color: #2e5590;
    background-image: url(../img/division-bg.jpg);
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
}
.division__container{
    position: relative;
}
.division__left {
    position: relative;
    max-width: 600px;
}
.division__header{
    font-size: 52px;    
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 30px;
    position: relative;
}
.division__bgtext,
.publicinfo__bgtext
{
    -webkit-text-stroke: 1px #4a6faa;
    text-align: left;    
    letter-spacing: 0px;
    font-weight: 800;
    font-size: 80px;
    color: #2e559000;
    position: absolute;
    top:-50px;
    left: 0;
    white-space: nowrap;
}

.division__left p {
    font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
}
.division__logo-umitli {
    position: absolute;
    top: -100px;
    right: 20px;
    padding: 25px;
    background-color: #fff;
    max-width: 180px;
}
.purpose{
    padding: 80px 0;
}
.purpose__container{
    display: flex;
    gap:60px;
    align-items: center;
    justify-content: space-between;
    align-items: stretch;
    font-size: 18px;
}
.purpose__header{
    font-size: 52px;    
    font-weight: 800;
    color: #008dd2;
    line-height: 1;
    margin-bottom: 30px;    
}
.purpose__left,
.purpose__right{
    width: 50%;
}
.purpose__left p {
    font-size: 18px;
        margin-bottom: 20px;
}
.publicinfo{
    padding: 100px 0 80px;
    background-color: #2e5590;
}
.publicinfo__container{
    position: relative;
}

.publicinfo__header{
    font-size: 52px;    
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 30px;
    position: relative;
}
.publicinfo__items{
    display: flex;
    gap:20px;    
    align-items: stretch;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.publicinfo__more a {
    color: #fff;
}
.publicinfo__more a:hover {
    color: orange;
}
.publicinfo__item{
    background-color: #fff;
    border-top: 3px solid #f08143;
    box-shadow: 0 0 13px 0px #00000045;
    width: calc(33.333% - 20px);
}
.publicinfo__item-textwrap{
    padding: 20px 20px 40px;
}
.publicinfo__item-img {
    position: relative;
}
.publicinfo__item-type {
    clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%);
    width: 140px;
    padding: 6px 5px 2px 20px;
    background-color: #fff;
    color: #ccc;
    position: absolute;
    bottom: -2px;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}
a.publicinfo__item-title{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #008dd2;
    display: block;
}
.publicinfo__item-date {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.publicinfo__item-intro{
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}
a.publicinfo__item-button{
    display: inline-block;
    background-color: #f08143;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.2s;
}
a.publicinfo__item-button:hover{
    
    background-color: #008dd2;
   text-decoration: none;
}


.contacts{
    padding: 80px 0;
}
.contacts__container{
    display: flex;
    gap:60px;
    align-items: center;
    justify-content: space-between;   
    font-size: 18px;
}
.contacts__header{
    font-size: 52px;    
    font-weight: 800;
    color: #008dd2;
    line-height: 1;
    margin-bottom: 30px;    
}
.contacts__left,
.contacts__right{
    width: 50%;
}
.contacts__left p {
    font-size: 18px;
        margin-bottom: 20px;
}
.contacts__left h3 {
    font-size: 22px;
        margin-bottom: 20px;
        font-weight: 600;
}

.contacts__content-form{
    background-color: #008dd2;
    padding: 40px 20px;
    border-radius: 10px;
    max-width: 400px;
    min-width: 300px;
}
.contacts__form-title {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}
.contacts__content-gform fieldset{
    margin-bottom: 20px;
}
.contacts__content-gform label{
    margin-bottom: 6px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}
.contacts__content-agry {
    margin-bottom: 20px;
    font-size: 12px;
    color: #96cbe4;
}
.popup__gform {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.callpopup__gform_input {
	width: 100%;
	padding: 8px 16px;
	border: 1px solid #ccc;
	border-radius: 3px;
	background: white;
	outline: none;
	color: #777;	
	font-size: 16px;
}

.callpopup__gform-submit {
	max-width: fit-content;
}

.callpopup__gform_input:focus {
	box-shadow: 0 0 10px 0px #8edbffbd;
	background: white;
	border: 1px solid #ccc;
}

.callpopup__form_agry {
	font-size: 12px;
	color: #777;
}
.gform__button {
	background-color: #f08143;;
	border-radius: 5px;
	transition: 0.3s;
	cursor: pointer;
	padding: 10px 20px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	width: 100%;	
    color: white;
}

.gform__button:hover {
	background: orange;
}

input._error,
select._error,
textarea._error {
	border: 1px solid #ff0000 !important;	
}

._error::-webkit-input-placeholder {
	color: #ff0000 !important;
}
.result-form {
    font-size: 18px;
    line-height: 1.5;    
    text-align: center;
    color: white;
}
.result-form__preloader {
    height: 2px;
    width: 100%;
    position: relative;
    margin: 15px 0;
    opacity: 1;
}
.result-form__wrapper{
   padding: 20px; 
}
div#result-form__thanks {
    background: green;
    border-radius: 5px;    
}
.result-form__preloader:before {
    background: orange;
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    width: 50px;
    height: 3px;
    z-index: 999;
    -webkit-animation: smartlidPreloader 3s infinite;
    animation: smartlidPreloader 3s infinite;
}
.hidden, ._honeypot {
    display: none;
}
@-webkit-keyframes smartlidPreloader {
    0% {
        left: 0;
    }

    50% {
        left: -webkit-calc(100% - 50px);
        left: calc(100% - 50px);
    }

    100% {
        left: 0%;
    }
}

@keyframes smartlidPreloader {
    0% {
        left: 0;
    }

    50% {
        left: -webkit-calc(100% - 50px);
        left: calc(100% - 50px);
    }

    100% {
        left: 0%;
    }
}


.news_header {
    
    position: relative;
    top: 80px;
    opacity: 0.5;
    padding-bottom: 60px;
}

.news__container{
    padding-top: 60px;
    padding-bottom: 60px;
}
.news__container h2, .news__container h3, .news__container h4 {
    font-weight: 600;
    font-size: large;
}
.news__container p {
    line-height: 1.4;
    margin-bottom: 18px;
}


.news__container ul {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 1em;
    margin-right: 0;
    line-height: 1.4;
    padding-left: 1em;
}
.news__container  ul li {
    display: list-item;
    list-style: square;
    margin-bottom: 0.8em;
    
}
.news__container ul li::marker {
    color: orange;
}



.pagination-wrapper {
    margin-bottom: 60px;
}

ul.pagination {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    gap: 5px;
    padding-left: 0;
}

ul.pagination>li {
    display: block;
    border: 1px solid #00000020;
    margin: 0;
    border-radius: 4px;
    background-color: white;
}
ul.pagination>li.disabled {
    display: none;
}
.pagination>li.page-item.active {
    background-color: #f08e00;
}

.pagination li a {
    color: black;

}

.pagination li:hover,
.pagination li.current a {
    color: black;
    border-color: #f08e00;
}

.pagination li:hover a,
.pagination li.current a {
    background-color: #fff;
}
a.page-link {
    display: block;
    padding: 9px 17px;
    font-size: 16px;
    border-radius: 4px;
    border: none;
}


/*----------footer-------------*/

footer {
    padding: 40px 0;
    color: #828e9f;  
    min-width: 320px;
    background: #0f284d;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-copyright__logo {
    filter: brightness(100) grayscale(100);
    max-width: 200px;
}
.footer-copyright__text{
    
    font-size: 14px;
}
.footer-madeby {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    font-size: 12px;
    transition: all 0.3s;
}
.footer-madeby:hover {
    opacity: 1;    
}
.footer-madeby__logo {
    margin-bottom: 6px;
    width: 140px;
}

.footer-madeby a {
    color: #828e9f; 
}
.footer-madeby a:hover {
    color: #fff;
    text-decoration: none;
}


/*------------------------------media---------------------------------*/
/*------------------------------1120px---------------------------------*/
@media (max-width: 1199px) {
    .welcome__text-header{        
        font-size: 24px;
    }
    .welcome__text-brand{ 
        font-size: 38px;
    }
    .welcome__text-header2{
        font-size: 20px;
    }
    .welcome__text-intro p{
        font-size: 16px;    
    }
    .solarstation__header {
        font-size: 38px;
    }
    .solarstation__right p {
        margin-bottom: 16px;
    }
    .purpose__header {
        font-size: 38px;
    }
    .purpose__left p {
        font-size: 16px;        
    }
    .menu__list {
        margin-right: 0px;
    }
    .header__wrap {        
        gap: 40px;
    }
}
@media (max-width: 991px) {
    .header__logo {
        width: 220px;
        min-width: 220px;
    }
    .menu__list {
        display: none;
    }
    .welcome__block {
        position: static;       
        max-width: 100%;
        background-color: #ffffffce;
        padding: 30px;
        border-top: 5px solid #f08143;
    }
    .welcome__text-brand {
        font-size: 24px;
    }
    .welcome__container {       
        height: auto;}
        .welcome__text-header,
        .welcome__text-header2 {
            font-size: 18px;
        }
        .solarstation,
        .purpose,
        .publicinfo,
        .contacts {
            padding: 40px 0;
        }
        .division__bgtext, .publicinfo__bgtext {
            font-size: 50px;
        }
        .division__header,
        .publicinfo__header,
        .contacts__header {
            font-size: 36px;
        }
        .division__logo-umitli {
            max-width: 130px;
        }
}
@media (max-width: 776px) {
    .solarstation__left {        
        width: 100%;
        height: 300px;
    }
    .solarstation__right,
.purpose__left,
.purpose__right,
.contacts__left,
.contacts__right{
        width: 100%;
    }
    .solarstation__container,
    .purpose__container,
    .publicinfo__items,
    .contacts__container,
    .footer-container {
         gap: 30px;
        flex-direction: column;
    }
    .publicinfo__item {
        width: 100%;
        max-width: 450px;
    }
    .division__bgtext, .publicinfo__bgtext {
        display: none;
    }
    .division__logo-umitli {
        max-width: 92px;
    }
    .division__logo-umitli {
        padding: 10px;
    }
    .solarstation__header {
        font-size: 32px;
    }
    .solarstation__images {
        gap: 10px;
    }
}