* {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
}

body {
	overflow-x: hidden;
	font-family: 'Roboto', sans-serif;
}

p,
h1,
h2,
h3,
td,
th,
b,
strong {
	cursor: default;
}

/*=====Animations on load======*/
@keyframes slideInFromLeft {
	0% {
		transform: translateX(-160%);
	}

	100% {
		transform: translateX(0);
	}
}

@keyframes slideInFromTop {
	0% {
		transform: translateY(-80vh);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes appear {
	0% {
		visibility: hidden;
		opacity: 0;
	}

	30% {
		visibility: hidden;
		opacity: 0;
	}

	100% {
		visibility: visible;
		opacity: 1;
	}
}

.btn-top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 90px;
	z-index: 99;
	border: none;
	outline: none;
	background: #1f5bff;
	color: #fff;
	cursor: pointer;
	font-size: 26px;
	padding: 8px 14px;
	border-radius: 18px;
	box-shadow: 2px 2px 11px -2px rgba(50, 50, 50, 1);
	transition: 0.4s;
	animation: btn-top-anim 1.2s linear infinite;
}

@keyframes btn-top-anim {
	0% {
		bottom: 20px;
	}

	50% {
		bottom: 30px;
	}

	100% {
		bottom: 20px;
	}
}

.btn-top:hover {
	background: #1A49CB;
}

.cabinet-mob {
	display: none;
}

.cabinet {
	float: right;
	margin: 30px 40px;
}

.cabinet a {
	padding: 14px 26px;
	color: #000;
	/*text-transform: uppercase;*/
	border: 2px solid #ffd014;
	border-radius: 50px;
	background: #ffd014;
	transition: 0.4s;
}

.cabinet a i {
	margin-left: 3px;
	padding: 4px 6.5px;
	color: #000;
	border: 1px solid #000;
	border-radius: 50%;
	transition: 0.4s;
}

.cabinet a:hover, 
.cabinet-choice a:hover {
	color: #fff;
	background: transparent;
	border: 2px solid #fff;
}
.cabinet a:hover + .cabinet-choice{
	display: flex;
}
.cabinet a:hover i {
	color: #fff;
	border: 1px solid #fff;
}
.cabinet-choice{
	position: relative;
    display: flex;
    justify-content: right;
    top: 16px;
    width: 100%;
	opacity: 0;
	transition: 0.4s;
}
.cabinet-choice .nav-link{
	font-size: 15px !important;
	padding: 14px 26px;
	font-weight: normal;
	background: #3772fc;
    border-color: #3772fc;
}


.top-img-section {
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/top-img.png);
	background-position: center center;
	background-attachment: fixed;
	background-repeat: no-repeat; 
	background-size: cover;
	height: 100vh;
}

.top-img-title {
	font-size: 34px;
	color: #fff;
	position: absolute;
	top: 24%;
	left: 7%;
	animation: 2s ease-out 0s 1 appear;
}

.top-img-title3 {
	font-size: 22px;
	color: #fff;
	position: absolute;
	top: 44%;
	left: 7%;
	font-weight: 300;
	animation: 2s ease-out 0s 1 appear;
}

nav {
	display: flex;
	position: absolute;
	top: 60%;
	left: 7%;
	animation: 1s ease-out 0s 1 slideInFromLeft;
}

.nav-btn {}

.nav-link {
	padding: 19px 60px;
	font-weight: bold;
	border: 2px solid #fff;
	border-radius: 50px;
	color: #fff;
	margin-right: 12px;
	transition: 0.4s;
}

.nav-link:hover {
	color: #000;
	background-color: rgb(255, 208, 20);
	border: 2px solid rgb(255, 208, 20);
}

.active {
	color: #000;
	background-color: rgb(255, 208, 20);
	border: 2px solid rgb(255, 208, 20);
}

.down-arrow-link i {
	font-weight: 300;
}

.down-arrow-link {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 40px;
	color: #fff;
	font-weight: 200;
	animation: down-arrow-anim 1.5s linear infinite;
}

@keyframes down-arrow-anim {
	0% {
		top: 80%;
	}

	50% {
		top: 82%;
	}

	100% {
		top: 80%;
	}
}


.prices-content,
.rules-content,
.changesupplier-content {
	width: 60%;
	margin: 100px auto;
	display: flex;
}
.price{
	display: flex;
}
.prices-content{
	width: 40%;
	margin-right: 5%;
}
.drive-document{
	margin: 100px auto;
}
.blue-checkmark {
	width: 70px;
	height: 68px;
	margin-right: 40px;
}

.prices-inf {}

.prices-title2,
.legal-framework-title2,
.contact-inf-title2 {
	font-size: 22px;
	text-align: center;
}

.rules-title2,
.changesupplier-title2 {
	font-size: 22px;
}

.prices-par,
.rules-list li,
.changesupplier-list li,
.rules-par,
.legal-gramework-list li,
.contact-inf-par {
	font-size: 18px;
	font-weight: 300;
}

.rules-list li,
.changesupplier-list li {
	margin-bottom: 20px;
}

.rules-inf strong,
.changesupplier-inf strong {
	font-size: 18px;
}

.law-link {
	color: #ff8562;
	transition: 0.4s;
}

.law-link:hover {
	text-decoration: underline;
}


.page-link-section {
	width: 100%;
	margin: 100px auto;
	text-align: center;
}

.page-link-btn {}

.page-link {
	padding: 19px 40px;
	background: #1f5bff;
	color: #fff;
	font-weight: bold;
	border-radius: 50px;
	transition: 0.4s;
}

.page-link:hover {
	background: #0839C1;
}

.price-news{
    margin-bottom: 100px;
}
.cards-wrapper{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    
}
@media screen and (min-width: 1750px){
    .cards-wrapper{
        justify-content: start;
    }
}
.news-card{
    width: 300px;
    height: 250px;
    border-radius: 5px;
    box-shadow: 0 3px 12px rgb(0 0 0 / 30%);
    padding: 10px 14px;
    color: #000;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-title{
    margin-bottom: 10px;
}
.news-data{
    display: block;
    margin-bottom: 10px;
}
.news-card:hover{
    box-shadow: 0 3px 12px rgb(0 0 0 / 30%) inset;
    border-radius: 10px;
}


.legal-framework {
	background: #f0f0f0;
	width: 100%;
	padding: 50px 0 30px 0;
}

.legal-framework-content {
	width: 76%;
	margin: 0 auto;
}

.legal-gramework-list li {
	margin-bottom: 6px;

}

.legal-gramework-list li a {
	text-decoration: underline;
}

.dogovir-link {
	padding: 19px 40px;
	background: #ff1f4c;
	font-weight: bold;
	border-radius: 50px;
	color: #fff;
	display: inline-block;
	margin: 30px 0 30px 850px;
	transition: 0.4s;
}

.dogovir-link:hover {
	background: #D42044;
}

.contact-inf {
	background: #4b7bec;
}

.contact-inf-content {
	width: 60%;
	margin: 80px auto 0;
	padding: 50px 0;
	text-align: center;
	color: #fff;
}

footer {
	background: #3867d6;
}

.footer-par {
	font-size: 12px;
	color: #fff;
	padding: 10px 0 10px 20px;
}



/*=============Terms of supply==============*/

.tos-top-img-section {
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/pipes.jpg);
	background-position: center -70px;
	background-attachment: fixed;
	background-repeat: no-repeat; 
	background-size: cover;
	height: 90vh;
	text-align: center;
}

.tos-top-img-inf {
	width: 70%;
	margin: 0 auto;
	padding-top: 100px;
	animation: 2s ease-out 0s 1 appear;
}

.tos-top-img-title {
	font-size: 34px;
	color: #fff;
	margin-bottom: 50px;
}

.tos-top-img-title3 {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
}

.terms-of-supply-inf {
	width: 82%;
	margin: 0 auto;
	padding: 50px 0;
	text-align: center;
}

.terms-of-supply-title2,
.supply-rights-title2 {
	font-size: 24px;
	text-decoration: underline;
	text-align: center;
}

.terms-of-supply-par,
.terms-of-supply-list li,
.supply-rights-par,
.taryfy-par {
	font-size: 20px;
	font-weight: 300;
	margin-bottom: 30px;
}

.terms-of-supply-inf strong {
	font-size: 22px;
	display: inline-block;
	margin: 20px 0;
}


.supply-rights {
	background: #f0f0f0;
	width: 100%;
	padding: 50px 0 30px 0;
}

.supply-rights-content {
	width: 67%;
	margin: 0 auto;
}

.supply-rights-title2 {
	margin-bottom: 20px;
	text-decoration: none;
}

.supply-rights-par {
	text-align: center;
}

.supply-rights-par a {
	font-weight: bold;
	font-size: 22px;
	transition: 0.4s;
}

.supply-rights-par a:hover {
	text-decoration: underline;
}

.taryfy-content {
	width: 90%;
	margin: 0 auto;
	padding: 50px 0 30px 0;
}

.taryfy-title2 {
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.taryfy table {
	border-collapse: collapse;
	width: 100%;
}

td,
th {
	border: 1px solid #dddddd;
	padding: 14px 18px 24px 40px;
	width: 25%;
	text-align: center;
	font-size: 20px;
	font-weight: 300;
}

th {
	text-align: left;
	font-weight: bold;
}

th:nth-child(1) {
	padding-left: 70px;
}

td:nth-child(3n+1) {
	width: 50%;
	text-align: left;
	padding-left: 70px;
}

tr:nth-child(even) {
	background-color: #dddddd;
}

/*===========Solving problems=============*/

.sp-top-img-section {
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/spory.jpg);
	background-position: center -136px;
	background-attachment: fixed;
	background-repeat: no-repeat; 
	background-size: cover;
	height: 100vh;
}

.sp-top-img-title {
	font-size: 64px;
	color: #fff;
	text-align: center;
	padding-top: 130px;
	/*opacity: 0;*/
	animation: 2s ease-out 0s 1 appear;
}

.sp-top-img-title3 {
	font-size: 22px;
	color: #fff;
	text-align: center;
	margin-top: 40px;
	font-weight: 300;
	animation: 2s ease-out 0s 1 appear;
}

.sp-top-img-section nav {
	position: static;
	justify-content: center;
	margin-top: 100px;
}

.damages-refund {
	background: #ebebeb;
	padding-top: 80px;
	padding-bottom: 40px;
}

.damages-refund-content {
	width: 56%;
	margin: 0 auto;
}

.damages-refund-title2,
.supplier-damages-refund-title2 {
	font-size: 24px;
	text-align: center;
}

.damages-refund-list li,
.damage-refund-par,
.supplier-damages-refund-par {
	font-size: 18px;
	font-weight: 300;
	margin: 20px 0;
}

.supplier-damages-refund-content {
	width: 60%;
	margin: 100px auto;
}

.supplier-damages-refund-inf {
	display: flex;
	margin-top: 30px;
}

.number-circle {
	color: #1f5bff;
	border: 2px solid #1f5bff;
	border-radius: 50%;
	min-width: 45px !important;
	height: 45px;
	margin-right: 50px;
	text-align: center;
	font-size: 20px;
	line-height: 45px;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: top;
}

.supplier-damages-refund-par {
	margin: 0;
}

.form-rules {
	width: 70%;
	margin: 50px auto;
	text-align: center;
}

.form-rules strong {
	font-size: 20px;
}


/*===========Annual reporting=============*/

.ar-top-img-section {
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/top-img.png);
	background-position: center -336px;
	background-attachment: fixed;
	background-repeat: no-repeat; 
	background-size: cover;
	height: 64vh;
}

.ar-top-img-title {
	font-size: 72px;
	color: #fff;
	text-align: center;
	padding-top: 60px;
	animation: 2s ease-out 0s 1 appear;

}

.ar-top-img-title3 {
	font-size: 22px;
	color: #fff;
	text-align: center;
	margin-top: 40px;
	font-weight: 300;
	animation: 2s ease-out 0s 1 appear;
}

.ar-top-img-section nav {
	position: static;
	justify-content: center;
	margin-top: 100px;
	animation: 1s ease-out 0s 1 slideInFromTop;
}

.annual-reporting-section {
	width: 76%;
	margin: 0 auto;
	padding: 80px 0 120px 0;
}

.annual-reporting-link {
	font-size: 28px;
	color: #4b7bec;
	/*font-weight: 300;*/
	transition: 0.4s;
}

.annual-reporting-link:hover {
	text-decoration: underline;
}

.annual-reporting-link:visited {
	color: #3867d6;
}

.annual-reporting-link i {
	margin-right: 10px;
}

/*========== Contacts information page============*/

.download-docs{
	margin-top: 40px;
	text-align: center;
}
.black-download a{
	max-width: 500px;
	border-radius: 30px;
	display: inline-block;
	background: #000;
	box-shadow: 2px 3px 10px 0 #323232;
	color: #fff;
	font-weight: 700;
	padding: 20px 30px;
	margin-bottom: 40px;
	transition: 0.3s;
}
.black-download a:hover{
	background: rgb(255, 208, 20);
	color: #000;
}
.black-download i{
	margin-right: 8px;
}
.payment-template {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}
.payment-template a {
    max-width: 40%;
}
.payment-template a img {
    max-width: 100%;
}
.payment-info {
    max-width: 40%;
}
.payment-info h2 {
    margin-bottom: 20px;
}
.payment-info ul, .payment-info ol {
    list-style-position: inside;
}
.payment-info li {
    margin-bottom: 10px;
}
.payment-info ul {
    padding-left: 40px;
}


.call-center-section{
	width: 62%;
	margin: 0 auto;
	padding-top: 130px;
}
.call-center-par, .call-center-list{
	font-size: 18px;
	font-weight: 300;
}
.call-center-title2{
	font-size: 34px;
	margin: 50px 0;
	text-align: center;
}
.call-center-links{
	display: flex;
	margin-bottom: 50px;
}
.links-col-1, .links-col-2{
	width: 49%;
	text-align: center;
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
}
.call-center-links a{
	color: #ff8562;
	text-decoration: underline;
	margin-bottom: 8px;
}
.organy-top-title{
	font-size: 42px;
	text-align: center;
	margin-bottom: 50px;
}
.client-service-section{
	width: 60%;
	margin: 0 auto;
	padding-top: 130px;
	text-align: center;
	margin-bottom: 50px;
	font-family: Roboto, serif;
}
.client-service-list{
	text-align: left;
	list-style-type: none;
}
.client-service-par, .client-service-list{
	font-size: 18px;
	font-weight: 300;	
}
.client-service-par strong{
	font-size: 22px;
	display: block;
	margin: 14px 0;
}
.tel-section b{
	text-align: center;
}
.tel-section{
	display: block;
	text-align: left;
	max-width: 350px;
	margin: 0 auto;
}

/*==========Info-center page============*/

.info-center-form{
	width: 50%;
	margin: 50px auto;
}
#gmap_canvas {
    overflow: hidden;
    background: none!important;
    height: 360px;
    width: 100%;
}	

/*============= Electricity contract ==============*/
.ec-top-img-section {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/electricity.jpg);
	background-position: center -300px;
	background-attachment: fixed;
	background-repeat: no-repeat; 
	background-size: cover;
	height: 50vh;
}

.ci-top-img-section{
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/contact-us.jpg);
	background-position: center -150px;
	background-attachment: fixed;
	background-repeat: no-repeat; 
	background-size: cover;
	height: 50vh;
}

.ec-top-img-inf,
.ci-top-img-inf{
	width: 80%;
}

.ec-top-img-title,
.ci-top-img-title {
	font-size: 72px;
	color: #fff;
	text-align: left;
	padding: 60px 0 0 100px;
	animation: 2s ease-out 0s 1 appear;
}

.ec-top-img-section nav,
.ci-top-img-section nav {
	width: 70%;
	flex-wrap: wrap;
	position: static;
	justify-content: left;
	margin: 100px 0 0 100px;
}

.dropdown-content .nav-btn:first-child{
	margin-top: 30px;
}
.dropdown-content .nav-btn:not(:first-child) {
	margin-top: 18px;
}
.nav-link.dropbtn{
	cursor: pointer;
}
.nav-link.dropbtn i{
	transition: 0.3s;
	margin-left: 10px;
}
.down{
	transform: rotateZ(-90deg);
}
.dropdown-content {
	display: none;
	opacity: 0;
	transition: 0.3s;
	position: absolute;
	/* background-color: #f3f8f821; */
	margin-top: 30px;
	border-radius: 30px;
	min-width: 320px;
	min-height: 440px;
	overflow: auto;
	z-index: 1;
}
.dropdown-content .nav-btn{
	display: inline-block;
	background: #3772fc;
	border-color: #3772fc;
	/* box-shadow: 0px 10px 16px 0px rgba(0, 0, 0, 0.2); */
	border-radius: 50px;
	margin-bottom: 0px !important;
	transition: 0.4s;
}
.dropdown-content .nav-link{
	display: inline-block;	
	color: #fff;
	padding: 15px 35px;
	border: none;
}
.dropdown-content .nav-link:hover{
	background-color: transparent;
	color: #000;
}
.dropdown-content .nav-btn:hover{
	background-color: rgb(255, 208, 20);
}

.show {
	opacity: 1;
	display: block;
}

.electro-price-section, .electro-dogovir-section, .electro-law-section, .gov-section, .complaints-section{
	width: 80%;
	margin: 50px auto;
}
.electro-img-and-info {
    display: flex;
    justify-content: space-around;
	
}
.electro-img-and-info img {
    width: 250px;
    height: 320px;
    box-shadow: 4px 4px 10px 2px rgb(34 60 80 / 40%);
}
.electro-img-and-info .info {
    width: 56%;
    font-size: 18px;
}
.electro-img-and-info .info p {
	margin: 20px 0;
}

.electro-cards {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
}
.electro-cards a {
	margin-bottom: 40px;
    color: #262626;
}
.card-item:hover {
    box-shadow: 0 3px 12px rgb(0 0 0 / 30%) inset;
}
.card-item p {
	cursor: pointer;
}
.card-item {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    
    padding:  20px;
    border-radius: 5px;
    box-shadow: 0 3px 12px rgb(0 0 0 / 30%);
    transition: 0.3s;
}


.download-doc {
    background: rgb(24, 24, 24);
    border-radius: 6px;
    /* padding: 14px 0; */
    width: 50%;
    margin: 10px auto;
    text-align: center;
    transition: 0.4s;
}
.download-doc:hover {
    background: #FFD014;
    box-shadow: 0px 0px 10px 2px rgb(34 60 80 / 20%) inset;
}
.download-doc a {
    padding: 14px 0;
    font-size: 20px;
    width: 100%;
    display: inline-block;
    color: whitesmoke;
    transition: 0.4s;
}
.download-doc:hover a {
    color: #000;
}
.electro-dogovir-section h2.attention {
    text-align: center;
    margin-top: 50px;
}
.electro-law-section ul{
	list-style-position: inside;
}
.electro-law-section ul li {
    font-size: 20px;
    color: #3742fa;
    list-style-type: decimal;
    margin-bottom: 12px;
}
.electro-law-section ul li a {
    color: #3742fa;
    text-decoration: none;
    transition: 0.3s;
}
.electro-law-section ul li a:hover {
	text-decoration: underline;
}
.electro-law-section .img-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.electro-law-section img {
    margin-top: 40px;
    width: 320px;
    height: 220px;
    box-shadow: 4px 4px 10px 2px rgba(34, 60, 80, 0.4);
}

.text-section{
	width: 80%;
	margin: 0 auto;
}
.text-section .title2{
    text-align: center;
    margin-bottom: 20px;
}
.text-section p{
    font-size: 18px;
}
.text-section p i:not(.fa-solid){
    font-size: 20px;
    padding: 15px 0;
    font-weight: bold;
}
ol ul{
    list-style-type: disc;
    padding-left: 12px;
    margin: 10px 0;
}
ol ol{
    padding-left: 12px;
    margin: 10px 0;
}
li{
    margin: 8px 0;
}
ul, ol{
	list-style-position: inside;
}
.document-button-block{
    text-align: center;
    margin: 50px auto;
    background: linear-gradient(90deg, rgba(75,123,224,1) 0%, rgba(19,19,158,1) 100%);
    border-radius: 50px;
    padding: 16px 0;
    width: 600px;
    transition: 0.3s;
}
.document-button{
    padding: 16px 24px;
    font-size: 18px;
    color: white;
    border-radius: 50px;
    transition: 0.3s;
}
.document-button-block:hover{
    
    opacity: 0.9;
}

.gov-section ul li {
    list-style-type: decimal;
    margin-bottom: 8px;
    color: #3742fa;
}
.gov-section ul li a {
    font-size: 20px;
    color: #3742fa;
    text-decoration: none;
}
.gov-section ul li a:hover{
	text-decoration: underline;
}
.title1{
	margin: 60px 0;
	font-size: 36px;
	text-align: center;
	text-transform: uppercase;
}
.complaints-section {
    width: 80%;
    margin: 0 auto;
    font-size: 18px;
}
.complaints-section .title2 {
    font-size: 28px;
    text-align: center;
    padding: 60px 0 40px 0;
}
.complaints-section p{
	margin: 20px 0;
	text-indent: 20px;
}
.complaints-section ul{
	padding-left: 40px;
	margin: 20px 0;
}

.complaint-form-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.complaint-form {
    margin-right: 40px;
}
.complaint-form a {
    background: rgb(255, 208, 20);
    padding: 20px 20px;
	color: #000;
    border-radius: 50px;
    background: rgb(255, 208, 20);
    background-size: 200%;
    transition: .3s ease-out;
}
.complaints-section .threat ul li {
    list-style-type: decimal;
    margin-bottom: 8px;
    width: 90%;
}
.complaints-section .threat p i {
    font-size: 22px;
    width: 90%;
    margin: 30px auto;
    display: block;
    text-align: center;
}

/*============= Media ==============*/
@media screen and (min-width: 1501px) {
	.dropdown-content{
		min-width: 440px;
	}
}
@media screen and (min-height: 1000px) and (max-width: 1270px) {
	.top-img-section{
		height: 80vh;
		background-position-y: -100px;
	}
	.top-img-section nav{
		top: 50%;
	}
}
@media screen and (min-width: 1221px) and (max-width: 1500px) {
	.top-img-section .dropdown-content{
		text-align: right;
		width: 440px;
		margin-left: -160px;
		margin-top: 20px;
	}
}
@media screen and (max-width: 1221px) {
	.top-img-section .dropdown-content{
		margin-top: -50px;
	}
	.price{
		flex-direction: column;
	}
	.prices-content{
		width: 80%;
		margin: 100px auto;
	}
	
}
@media screen and (max-width: 1366px) {
    .cards-wrapper{
        flex-wrap: wrap;
        column-gap: 30px;
    }
    .news-card{
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 1270px) {

	.top-img-section,
	.tos-top-img-section,
	.sp-top-img-section {
		/* background-size: 1366px; */
	}

	.ar-top-img-section {
		/* background-size: 1366px; */
	}
}

@media screen and (max-width: 1220px) {
	.dogovir-link {
		margin-left: 500px;
	}
	.ec-top-img-section nav,
	.ci-top-img-section nav{
		width: 80%;
	}
	nav{
		flex-wrap: wrap;
	}
	.top-img-section .nav-btn{
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 1050px) {
	.ec-top-img-section,
	.ci-top-img-section{
		height: 60vh ;
		background-position-y: -245px;
	}
	
	.ec-top-img-section nav,
	.ci-top-img-section nav{
		flex-direction: column-reverse;
	}
	.ec-top-img-section nav .nav-btn,
	.ci-top-img-section nav .nav-btn{
		margin-top: 50px;
	}
	.ec-top-img-section .dropdown-content{
		margin-top: -50px;
		margin-left: 300px;
		padding-left: 20px;
	}
	.electro-dogovir-section .download-doc{
		width: 80%;
	}
}
@media screen and (max-width: 1000px) {
	.sp-top-img-title {
		font-size: 46px;
	}
}

@media screen and (max-width: 900px) {
	.btn-top {
		opacity: 0.8;
		right: 20px;
	}
	.call-center-links{
		flex-direction: column;
	}
	.links-col-1, .links-col-2{
		width: 80%;
		margin: 0 auto;
	}
	nav {
		flex-direction: column;
		top: 58%;
	}
	.tos-top-img-section .nav-btn{
		margin-bottom: 50px;
	}
	.ar-top-img-section nav,
	.sp-top-img-section nav {
		flex-direction: row;
	}
	.ec-top-img-section nav{
		flex-direction: column-reverse;
	}
	.ec-top-img-section .dropdown-content{
		margin-top: 20px;
		margin-left: 0px;
		padding-left: 0px;
		min-width: 290px;
	}
	.ci-top-img-section .dropdown-content{
		min-width: 290px;
	}
	.electro-price-section, .electro-dogovir-section, .electro-law-section, .gov-section, .complaints-section{
		width: 90%;
	}
	.prices-content,
	.rules-content,
	.changesupplier-content,
	.legal-framework-content,
	.contact-inf-content,
	.tos-top-img-inf,
	.terms-of-supply-inf,
	.supply-rights-content,
	.taryfy-content,
	.damages-refund-content,
	.supplier-damages-refund-content,
	.form-rules,
	.annual-reporting-sectio {
		width: 94%;
	}

	.dogovir-link {
		margin-left: 300px;
	}
	.top-img-section .dropdown-content{
		text-align: left;
		width: 320px;
		margin-left: 0px;
	}
}

@media screen and (max-width: 768px) {
	.ci-top-img-section .dropdown-content{
		width: 220px !important;
		margin-top: 15px;
		font-size: 14px;
	}
	.ci-top-img-section .dropdown-content .nav-btn:not(:first-child){
		margin-top: 10px;
	}
	.client-service-section, .call-center-section, .text-section{
		width: 90%;
	}
	.tos-top-img-title {
		font-size: 30px;
	}

	.tos-top-img-title3 {
		font-size: 18px;
	}

	th:nth-child(1) {
		padding-left: 10px;
	}

	td:nth-child(3n+1) {
		padding-left: 10px;
	}

	.electro-img-and-info{
		flex-direction: column-reverse;
		align-items: center;
		text-indent: 20px;
	}
	.ec-top-img-title{
		font-size: 54px;
	}
	.drive-document iframe{
		width: 400px;
		height: 570px;
	}
	.payment-template {
	    flex-direction: column;
	}
	.payment-template a {
        max-width: 60%;
        margin: 0 auto;
    }
    .payment-info {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 670px) {
	.cabinet {
		display: none;
	}
	
	.cabinet-mob {
		display: block;
		float: right;
		margin: 15px 25px;
	}

	.cabinet-mob a i {
		font-size: 30px;
		padding: 6px 11px;
		color: #000;
		background: #ffd014;
		border: 2px solid #ffd014;
		border-radius: 50%;
		transition: 0.4s;
	}

	.cabinet-mob a:hover i {
		background: transparent;
		color: #fff;
		border: 2px solid #fff;
	}

	.call-center-links a{
		font-size: 16px !important;
	}
	.organy-top-title{
		font-size: 34px;
	}
	.call-center-list{
		list-style-position: inside;
	}

	.dogovir-link {
		margin-left: 120px;
	}

	.page-link-btn {
		padding: 19px 40px;
		background: #1f5bff;
		border-radius: 50px;
	}

	.page-link {
		padding: 0;
		background: none;
	}

	.blue-checkmark {
		width: 50px;
		height: 48px;
		margin-right: 20px;
	}

	.sp-top-img-title {
		padding-top: 40px;
	}
	.document-button-block{
	    width: 84%;
	    padding: 16px 24px 16px 16px;
	}
}

@media screen and (max-width: 575px) {
	.ci-top-img-title{
		font-size: 55px;
		padding-left: 0;
	}
	.ci-top-img-inf{
		margin: 0 auto;
	}
	.ci-top-img-section nav{
		margin: 20% auto;
	}
	.ci-top-img-section .nav-link{
		font-size: 14px;
		padding: 14px 24px;
	}

	.tos-top-img-inf {
		padding-top: 20px;
	}

	th,
	td {
		padding: 10px;
		font-size: 18px;
	}

	.ar-top-img-title {
		font-size: 46px;
	}
	.ec-top-img-section{
		background-position: center -200px;
	}
	.ec-top-img-section nav{
		margin-left: 25px;
	}
	.ec-top-img-title{
		padding-left: 25px;
	}
	.electro-img-and-info .info{
		width: 100%;
	}
}

@media screen and (max-width: 525px) {
	.ci-top-img-section .dropdown-content{
		min-width: 180px;
	}
	.top-img-title {
		font-size: 30px;
	}

	nav {
		justify-content: center;
	}

	.legal-gramework-list li {
		list-style-type: none;
	}

	.dogovir-link {
		width: 70%;
		text-align: center;
		margin-left: 0;
	}

	.sp-top-img-title {
		font-size: 34px;
	}
	.top-img-section .dropdown-content{
		width: 300px;
		min-width: 300px;
	}
	.top-img-section .nav-btn {
		margin-bottom: 45px;
	}
	.ec-top-img-section .nav-btn, .top-img-section .nav-btn{
		font-size: 14px;
	}
	.ec-top-img-section .nav-btn .nav-link, .top-img-section .nav-btn .nav-link{
		padding: 14px 24px;
	}
	.ec-top-img-section .dropdown-content .nav-btn, .top-img-section .dropdown-content .nav-btn{
		font-size: 14px;
	}
}

@media screen and (max-width: 450px) {
	.cabinet-choice .nav-btn .nav-link {
		padding: 10px 17px !important;
	}
	.organy-top-title, .call-center-title2{
		font-size: 26px;
	}
	.ci-top-img-title{
		font-size: 42px;
	}
	.ci-top-img-section{
		height: 50vh;
	}
	.black-download a{
		border-radius: 10px;
		margin-bottom: 20px;
	}
	.top-img-title,
	.top-img-title3,
	nav {
		left: 3%;
	}

	.top-img-title {
		top: 16%;
		font-size: 28px;

	}

	.blue-checkmark {
		width: 30px;
		height: 28px;
		margin-right: 10px;
	}

	.tos-top-img-title {
		font-size: 26px;
		margin-bottom: 20px;
	}

	.tos-top-img-title3 {
		font-size: 16px;
		font-weight: 300;
	}

	th,
	td {
		font-size: 14px;
	}

	.number-circle {
		margin-right: 25px;
		min-width: 30px !important;
		height: 30px;
		line-height: 30px;
	}
	.title1{
		font-size: 24px;
	}
	.complaints-section .title2{
		font-size: 18px;
	}
    .complaint-form a{
		padding: 12px;
		font-size: 12px;
		justify-content: center;
	}
	.ec-top-img-title{
		font-size: 35px;
	}
	.drive-document iframe{
		width: 300px;
		height: 470px;
	}
	
}
@media screen and (max-height: 568px) {
	.top-img-section{
		height: 110vh;
	}
}
@media screen and (max-width: 320px) and (max-height: 568px) {
	.nav-link {
		padding: 12px 20px;
	}

	.nav-btn {
		margin-bottom: 30px;
	}

	nav {
		top: 66%;
	}

	.tos-top-img-title {
		font-size: 24px;
	}

	.sp-top-img-title {
		font-size: 34px;
	}
	
}

