:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --accent-color: #597193;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        

.container {
    max-width: 1110px;
    margin: 0 auto;
}
     
html, body {
	height: 100%;
	margin: 0;
    font-family: 'Open Sans';
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

.nav{
	padding: 0;
	margin: 0;
	justify-content: space-between;
	align-items: center;
}

.nav li{
	display: block;
}

.flex{
	display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

p{
	margin: 0 0 15px;
}


.btn {
    display: table;
    background-color: var(--accent-color);
    color: white;
    padding: 9px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn.center{
    margin: 0 auto;
    display: table;
}

.btn:hover {
    background-color: #708DB8;
}

.text{
    color: rgb(104, 104, 104);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

/*====================================================================

	HEADER

=====================================================================*/
/* Header */
.header-container{
    padding: 22px 0;
    background: #EAEFF6;
    text-align: center;
}

.header{
    padding: 12px 25px;
    box-sizing: border-box;
    border-radius: 8px;
    background: linear-gradient(45.00deg, rgba(89, 113, 147, 0.6) 0%,rgba(137, 164, 205, 0.6) 100%);
    justify-content: space-between;
    align-items: center;
}

.nav-container{
	justify-content: center;
	align-items: center;	
}

.nav-container .nav{
	justify-content: center;
}

.nav-container .nav li{
	display: block;
}

.nav-container .nav a{
    color: #fff;
	padding: 10px 15px;
	text-decoration: none;

	display: block;	
}

.nav-container .nav li a:hover, .nav-container .nav li a:focus{

}

.nav-container .nav .sub-menu{
	position: absolute;
    padding: 0;
    margin: 0;
	width: 200px;
	display: none;
	z-index: 100;
    border-radius: 8px;
    background: linear-gradient(45.00deg, rgba(89, 113, 147, 0.6) 0%,rgba(137, 164, 205, 0.6) 100%);
}

.nav-container .nav li .sub-menu a{

}

.nav-container .nav li:hover .sub-menu{
	display: block;

}

.hero{
    justify-content: space-between;
    align-items: center;
}

.hero .hero-text{
    width: 450px;
    min-width: 450px;
}

.hero .hero-text h1{
    color: rgb(61, 69, 80);
    font-size: 45px;
    font-weight: 600;
    line-height: 61px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 35px;
}

.hero .hero-text p{
    color: rgb(104, 104, 104);
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 2%;
    text-align: left;    
    margin: 0 0 35px;
}

.hero img{
    max-width: 100%;
}


/*====================================================================

	CONTENT

=====================================================================*/

.section{
    padding: 60px 0 60px;
}

.section h2{
    color: rgb(109, 117, 137);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .26em;
    text-align: center;   
    text-transform: uppercase;
    margin: 0 auto 20px;
}

.section h3{
    color: rgb(61, 69, 80);
    font-family: Open Sans;
    font-size: 42px;
    font-weight: 600;
    line-height: 57px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto 40px;
}

.section h3.normal-case{
    text-transform: none;
}

.content{
	padding: 30px 0;
	position: relative;
	z-index: 1;
}

/* Features */
.features {
    justify-content: space-between;
    gap: 30px;
}


.feature-card {
    width: 350px;
    box-sizing: border-box;
    border: 1px solid rgb(89, 107, 134);
    border-radius: 8px;
    padding: 20px;
    /* main shadow */
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);
    background: rgb(255, 255, 255);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    justify-content: space-between;
    align-items: center;
}

.feature-title h4{
    color: rgb(61, 69, 80);
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 600;
    line-height: 33px;
    letter-spacing: 0%;
    text-align: left;
    margin: 0 0 15px;
}

.feature-title span{
    border-radius: 38px;
    background: rgb(201, 214, 233);
    width: 33px;
    height: 22px;
    display: block;
    color: rgb(76, 100, 135);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;  
    margin: 0 0 15px;      
}

.feature-card p{
    color: rgb(104, 104, 104);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2%;
    text-align: left;    
}


/* Rating list */
.rating-list{
    margin-bottom: 40px;
}

.rating-item{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 20px;
    padding: 20px;    
    box-sizing: border-box;
    border: 1px solid rgb(89, 107, 134);
    border-radius: 6px;
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);    
}

div.rating-item:nth-of-type(2){
    border-radius: 6px;
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);
    background: rgba(255, 176, 23, 0.7);    
    border: none;
}

div.rating-item:nth-of-type(3){
    border-radius: 6px;
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);
    background: rgba(185, 185, 185, 0.7);   
    border: none; 
}

div.rating-item:nth-of-type(4){
    border-radius: 6px;
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);
    background: rgba(152, 123, 123, 0.7);  
    border: none;
}

.rating-item:nth-child(even)::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 55px;
    background: url(../img/big-raiting-bg.png) no-repeat right center;
    background-size: cover;
}

.rating-item:nth-child(even)::after{
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 173px;
    height: 100%;    
    background: url(../img/big-raiting-bg.png) no-repeat right center;
    background-size: cover;
}


.rating-item-title{
    box-sizing: border-box;
    border: 1px solid rgb(89, 107, 134);
    border-radius: 6px;
    background: #fff;
    padding: 10px 20px;
}

.rating-th{
    color: rgb(61, 69, 80);
    font-size: 20px;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 0;
    text-align: center;
}

.rating-th.position{
    width:  140px;
    min-width:  140px;  
}

.rating-th.about{
    width: 180px;
    min-width: 180px;  
}

.rating-th.about{
    width: 400px;
    min-width: 400px;   
}

.rating-th.score{
    width: 147px;
    min-width: 147px;   
}

.rating-item-position{
    color: rgb(89, 107, 134);
    font-family: Work Sans;
    font-size: 48px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 0;
    text-align: center;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

div.rating-item:nth-of-type(2) .rating-item-position,
div.rating-item:nth-of-type(3) .rating-item-position,
div.rating-item:nth-of-type(4) .rating-item-position{
    color: #fff;
}

.rating-item-position img{
    max-width: 60px;
    margin-right: 40px;
}

.rating-item-name{
    width: 180px;
    text-align: center;
    color: rgb(89, 107, 134);
    font-size: 24px;
    font-weight: 600;
    line-height: 33px;    
}


div.rating-item:nth-of-type(2) .rating-item-name,
div.rating-item:nth-of-type(3) .rating-item-name,
div.rating-item:nth-of-type(4) .rating-item-name{
    color: #fff;
}

.rating-item-name img{
    display: block;
    margin: 0 auto 10px;
    max-width: 100%;
}

.rating-item-about{
    width: 400px;
}

.rating-item-about .agency-link{
    color: rgb(89, 107, 134);
    font-size: 12px;
    font-weight: 700;
    line-height: 0px;
    letter-spacing: .02em;
    text-align: left;   
    text-decoration: none; 
}

.rating-item-about .agency-details{
    color: rgb(89, 107, 134);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0;
    justify-content: space-between;
}

.rating-item-about .agency-details div:last-child{
    text-align: center;
}

.rating-item-about .agency-details span{
    display: block;
}

.rating-item-about .agency-details span:first-child{
    font-weight: 700;
}

div.rating-item:nth-of-type(2) .rating-item-about .agency-link,
div.rating-item:nth-of-type(3) .rating-item-about .agency-link,
div.rating-item:nth-of-type(4) .rating-item-about .agency-link{
    color: #fff;
}

div.rating-item:nth-of-type(2) .rating-item-about .agency-details,
div.rating-item:nth-of-type(3) .rating-item-about .agency-details,
div.rating-item:nth-of-type(4) .rating-item-about .agency-details{
    color: #fff;
}

.rating-item-about p{
    color: rgb(89, 107, 134);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;   
    margin: 0 0 10px;    
}

div.rating-item:nth-of-type(2) .rating-item-about p,
div.rating-item:nth-of-type(3) .rating-item-about p,
div.rating-item:nth-of-type(4) .rating-item-about p{
    color: #fff;
}

.rating-item-score{
    width: 147px;
    color: rgb(89, 107, 134);
    font-size: 36px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0;
    text-align: right;    
    position: relative;
    z-index: 1;    
}

div.rating-item:nth-of-type(2) .rating-item-score,
div.rating-item:nth-of-type(3) .rating-item-score,
div.rating-item:nth-of-type(4) .rating-item-score{
    color: #fff;
}

/* Contractor form */
.contractor-container{
    padding: 60px 0;
}

.contractor{
    border-radius: 10px;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);
    background: linear-gradient(45.00deg, rgba(177, 190, 208, 0.8) 0%,rgba(201, 214, 233, 0.8) 100%);
    position: relative;
}

.contractor:before{
    content: '';
    display: block;
    width: 98px;
    height: 98px;
    background: url(../img/form-bg.png) no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
}

.contractor h2{
    color: rgb(61, 69, 80);
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 auto 20px;
}

.contractor p.desc{
    color: rgb(104, 104, 104);
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: .15em;
    text-align: center;
    margin: 0 auto 20px;
}


.contractor-form {
    max-width: 876px;
    width: 100%;
    gap: 20px;
    margin: 0 auto;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    border-radius: 6px;
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);
    background: rgb(255, 255, 255);
    width: 354px;
    height: 45px;
    line-height: 45px;
    border: none;
    padding: 12px 20px;
    box-sizing: border-box;
    outline: none;
}

.form-submit {
    border-radius: 6px;
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);
    background: rgb(136, 156, 185);
    padding: 12px 20px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;   
    border: none;
    outline: none; 
    cursor: pointer;
    height: 45px;    
}

/* charts */
.chart-filters{
    margin-bottom: 30px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);
    background: rgba(246, 252, 250, 0.8);
    color: rgb(104, 104, 104);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;    
}

.charts h2{
    margin-bottom: 15px;
    color: rgb(61, 69, 80);
    font-size: 18px;
    font-weight: 600;
    line-height: 33px;
    margin: 0 0 10px;    
}

.chart-filters-container{
    gap: 15px;
    align-items: center;
}

.chart-filters-container div{
    width: 25%;
}

.chart-filters input[type="range"]{
    width: 100%;
}

.chart-filters input[type="text"], .chart-filters select{
    border-radius: 6px;
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);
    background: rgb(255, 255, 255);
    height: 45px;
    line-height: 45px;
    border: none;
    padding: 5px 10px;
    box-sizing: border-box;
    outline: none;    
    width: 100%;
}

.chart-box-container{
    gap: 30px;
}

.chart-box{
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);
    background: rgba(246, 252, 250, 0.8);
    color: rgb(104, 104, 104);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.chart-line{
    width: 60%;
}

.chart-circle{
    width: 40%;
}

#topAgenciesChart{
    min-height: 300px;
}

/* About rating */
.about-rating{
    background: url(../img/about-rating-bg.png) no-repeat top center #fff;
    background-size: cover;
    padding: 60px 0;
}

.about-rating-text{
    padding: 40px 60px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: -5px 0px 39px 0px rgba(118, 118, 118, 0.08);
    background: rgba(246, 252, 250, 0.8); 
    color: rgb(104, 104, 104);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;      
}

.about-rating-text h2{
    color: rgb(53, 54, 55);
    font-size: 40px;
    font-weight: 600;
    line-height: 55px;
    margin: 0 0 10px;
}

.about-rating-text h3{
    color: rgb(61, 69, 80);
    font-size: 24px;
    font-weight: 600;
    line-height: 33px;
    margin: 0 0 10px;
}

.about-rating-text p{
    margin: 0 0 10px;
    color: rgb(104, 104, 104);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;        
}

/* Statistics */
.chart-container {
    width: 1010px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chart-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.chart-overflow{
    overflow-x: auto;
    width: 100%;
}

#chart {
    width: 1110px;
    height: 440px;
    position: relative;
}

.controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

button:hover {
    background-color: #357ab8;
}

/*  wp */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

#breadcrumbs{
    margin: 0;
    text-align: left;
    padding: 30px 0 15px;
    font-size: 14px;
}

#breadcrumbs a{
    color: rgb(104, 104, 104);
    text-decoration: none;
}

#breadcrumbs span{
    color: rgb(104, 104, 104);
}

.breadcrumb_last{
    font-weight: bold;;
}

/*content*/
.content{
    padding: 30px 0;
}

.content h2{
    margin:0 0 30px;
}

.blue-banner{
    color: #fff;
    background-color: #0968CD;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.numbers{
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.numbers-item{
    width: 32%;
    padding: 30px 15px 15px 30px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0968CD;
    border-radius: 10px 10px 10px 10px;   
    display: flex; 
}

.numbers-item img{
    margin-right: 20px;
}

.features-box{
    display: flex;
    flex-wrap: wrap;
    background-color: #F9F9F9;
    padding: 20px;
    gap: 20px;
    margin-bottom: 30px;
}

.features-box-item{
    width: 32%;
    display: flex;
    color: #7a7a7a;
}

.features-box-item p{
    line-height: 26px;
}

.features-box-item img{
    margin-right: 20px;
}

.tile{
    padding: 10px;
    box-sizing: border-box;
    max-width: 1000px;
    margin: 0 auto 40px;
    border: 1px solid #0968CD;
    border-radius: 10px;
    display: flex;
}

.tile.tile-blue{
    background: #0968CD;
    color: #fff;
}

.tile-img{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tile-text{
    width: 70%;
}

.why{
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    background: #F9F9F9;
}

.why p{
    color: rgb(122, 122, 122);
}

.rating-member{
    display: flex;
    background: #0968CD;
    color: #fff;
    padding: 35px;
    gap: 35px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.faq-list{
    background: #F9F9F9;
    padding: 20px;
}

.faq-item{
    border-bottom: 1px solid #d5d8dc;
    cursor: pointer;
}

.e-fas-plus{
    display: block;
}

.faq-item .elementor-toggle-icon-opened{
    display: none;
}

.faq-item.show .e-fas-plus{
    display: none;
}

.faq-item.show .elementor-toggle-icon-opened{
    display: block;
}

.faq-question{
    display: flex;
    align-items: flex-start;
    color: #000;
    font-weight: 700;
    padding: 15px;
    box-sizing: border-box;
}

.faq-question svg{
    width: 14px;
    height: 14px;
    margin-right: 8px;
}

.faq-answer{
    display: none;
    padding: 15px;
    color: rgb(122, 122, 122);
}

.faq-item.show span{
    color: rgb(89, 107, 134);
}

.faq-item.show .faq-answer{
    display: block;
}

#chart > div > div:nth-child(1) > div > svg > g:nth-child(2) > g > g > text{
    font-family: 'Open sans';
}

/* Блог */


/* Карточки статей */
.post-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.post-card {
  background: #fff;
  overflow: hidden;
  width: calc(33% - 15px);
  transition: transform 0.3s ease;
}

.post-card img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 160px;
  object-fit: contain;
}

.post-card h2 {
  font-size: 18px;
  padding: 15px 0px 15px;
  margin: 0;
}
.post-card h2 a {
  color: #222;
  text-decoration: none;
}

.post-card p {
  padding: 0 0px 10px;
  font-size: 14px;
  color: #666;
}

.post-meta {
  padding: 0 20px 20px;
  font-size: 13px;
  color: #999;
}

/* Адаптация под мобильные устройства */
@media (max-width: 992px) {
  .post-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .post-card {
    width: 100%;
  }

  .page-header h1 {
    font-size: 22px;
  }
}

.post-thumbnail {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

/* Изображение */
.post-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border-style: none;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.entry-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.entry-label {
  color: #999;
  font-weight: 500;
}

.toc {
    background: #f9f9f9;
    padding: 15px 20px;
    margin: 20px 0;
}

.toc h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.toc ul {
    list-style: none;
    padding-left: 15px;
    margin: 10px 0;
}

.toc li {
    margin: 5px 0 10px;
}

.toc a {
    text-decoration: none;
    color: #0077cc;
}

.toc a:hover {
    text-decoration: underline;
}

.toc-level-3 { padding-left: 20px; }
.toc-level-4 { padding-left: 40px; }

.related-posts {
  margin-top: 40px;
}

.related-posts h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.post-cards--vertical {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .post-cards--vertical {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .post-card--vertical {
    width: calc(33% - 20px);
  }
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  justify-content: center;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 36px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  background-color: #f1f1f1;
  transition: all 0.3s ease;
}

.page-numbers:hover {
  background-color: #e0e0e0;
  color: #000;
}

.page-numbers.current {
  background-color: rgb(89, 107, 134);
  color: #fff;
  pointer-events: none;
  font-weight: bold;
}

.next {
  background-color: rgb(89, 107, 134);
  color: #fff !important;
}
.next:hover {
  background-color: rgb(57, 75, 102);
}

@media (max-width: 600px) {
  .page-numbers {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/*====================================================================

	FOOTER

=====================================================================*/
/* Footer */
.footer {
    padding: 30px 40px;
    box-sizing: border-box;
    border: 1px solid rgb(117, 135, 160);
    border-radius: 8px;
    background: rgb(89, 107, 134);    
    color: white;
    padding: 40px 0;
}

.footer-container{
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 35px;
}

.footer-info img{
    margin-bottom: 0;
}

.footer-info p{
    color: rgb(201, 214, 233);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.footer-nav{
    min-width: 160px;
}

.footer-nav p{
    color: rgb(246, 252, 250);
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
}

.footer-nav li{
    display: block;
    margin-bottom: 10px;
}

.footer-nav li a{
    color: rgb(201, 214, 233);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-decoration: none;  
    display: block;
}

.copyright p{
    color: rgb(246, 252, 250);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

#backTop{
	position: fixed;
	bottom: 50px;
	right: 30px;
	z-index: 100;
	
}

.grecaptcha-badge{
	display: none !important;
}

/*====================================================================

	ADAPTATION

=====================================================================*/

@media(max-width:1110px) {

    .wrapper{
        overflow: hidden;
    }
	
	.container{
		padding: 0 15px;
        width: 100%;
	}

    .section{
        padding: 40px 0;
    }

    .section h2{
        color: rgb(109, 117, 137);
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        text-align: center;  
        margin: 0 0 12px;      
    }

    .section h3{
        color: rgb(61, 69, 80);
        font-size: 24px;
        font-weight: 600;
        line-height: 33px;  
        text-align: center;
        margin: 0 0 20px;
    }
	
	#menu-icon{
		position: absolute;
		top: 50%;
        margin-top: -20px;
		right: 20px;
		width: 40px;
		cursor: pointer;
		z-index: 9999;
		height: 40px;
		display: block;
        background: url(../img/menu.png) no-repeat center;
	}
	

    .header{
        position: relative;
        padding: 8px 10px;
    }

    .nav-container{
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(89, 113, 147, 1);
        display: block;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        overflow: hidden;
        display: none;
        z-index: 100;
    }

    .nav-container.active{
        display: block;
    }

    .nav-container .nav{
        display: block;
        text-align: left;
    }

    .nav-container .nav li{
        border-bottom: 1px solid rgba(89, 107, 134, 0.6);
        position: relative;

        gap: 15px;
    }

    .nav-container .nav li .trigger{
        width: 30px;
        height: 30px;
        display: block;
        top: 15px;
        right: 15px;
        position: absolute;
        background: url(../img/arrow.svg) no-repeat center;
    }

    .nav-container .nav .sub-menu{
        position: relative;
        top: auto;
        left: auto;
        display: none;
        background: none;
        width: 100%;
        text-align: left;
    }

    .nav-container .nav li:hover .sub-menu{
        display: none;
    }

    .nav-container .nav li.show .sub-menu{
        display: block;
    }

    .nav-container .nav li.show .trigger{
        transform: rotate(180deg);
    }

    .nav-container .nav li a{
        color: rgb(255, 255, 255);
        font-size: 18px;
        font-weight: 400;
        line-height: 23px;
        text-align: left;
        padding: 20px 50px;
    }

    .nav-container .nav .sub-menu li{
        border: none;
    }

    .nav-container .nav li .sub-menu a {
        padding: 0 50px 15px;
    }    

    .header .btn{
        display: none;
    }

    .hero{
        display: block !important;
        padding: 40px 0 20px;
    }

    .hero .hero-text{
        max-width: 450px;
        width: 100%;
        min-width: 100%;
    }

    .hero .hero-text h1{
        color: rgb(61, 69, 80);
        font-size: 30px;
        font-weight: 600;
        line-height: 41px;
        letter-spacing: 0;
        text-align: center;
    }

    .hero .hero-text p{
        color: rgb(104, 104, 104);
        font-size: 16px;
        font-weight: 400;
        line-height: 21px;
        text-align: center;        
    }

    .hero .btn{
        display: table;
        margin: 0 auto;
    }
    
    .features{
        flex-wrap: wrap;
    }

    .feature-card{
        width: 100%;
    }

    .feature-title h4,
    .feature-title span{
        margin: 0;
    }    

    .rating-item{
        display: block;
    }

    .rating-item:nth-child(even)::after{
        width: 147px;
        height: 147px;
    }

    .rating-item-title{
        display: none !important;
    }

    .rating-item-name{
        font-size: 18px;
    }

    .rating-item-position{
        width: auto;
        position: absolute;
        top: 20px;
        left: 20px;
        margin-right: 30px;
    }

    .rating-item-position img{
        max-width: 50px;
    }

    .rating-item-name{
        width: auto;
        max-width: 115px;
        margin: 0 auto 25px;
    }

    .rating-item-name img{
        margin: 0 auto;
        max-width: 100px;
        width: 100%;
    }
    
    .rating-item-position img{
        margin-right: 12px;
    }

    .rating-item-about{
        max-width: 400px;
        width: 100%;
        clear: both;
    }

    .rating-item-score{
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .contractor-container{
        padding: 0;
    }

    .contractor-form{
        display: block !important;
        position: relative;
    }

    .contractor h2{
        color: rgb(61, 69, 80);
        font-size: 22px;
        font-weight: 600;
        line-height: 30px;
        text-align: center;
    }

    .contractor p.desc{
        color: rgb(104, 104, 104);
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        text-align: center;
    }

    .form-submit{
        width: 100%;
    }

    .form-group input[type="text"],
    .form-group input[type="email"]{
        width: 100%;
        margin-bottom: 10px;
    }

    .about-rating-text{
        padding: 10px;
    }

    .why{
        display: block;
    }

    .why img{
        display: block;
        max-width: 500px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }   
    
    .rating-member{
        display: block;
    }

    .blue-banner{
        display: block;
    }

    .blue-banner h1{
        font-size: 1.5em;
    }

    .blue-banner img{
        max-width: 250px;
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .numbers-item,
    .features-box-item{
        width: 100%;
    }

    .features-box-item{
        display: block;
    }

    .features-box-item img{
        display: block;
        margin: 0 auto 15px;
    }

    .tile{
        display: block;
    }

    .tile-img{
        width: 100%;
    }

    .tile-text{
        width: 100%;
    }

    .footer{
        margin-top: 30px;
    }

    .footer-container{
        flex-direction: column;
    }

    .footer-info img{
        margin-bottom: 35px;
    }

    .footer-info p{
        text-align: center;
    }

}

@media(max-width:980px) {
	
    .chart-filters-container{
        flex-wrap: wrap;
    }
    
    .chart-filters-container div{
        width: 48%;
    }

    .chart-box-container{
        flex-wrap: wrap;
    }

    .chart-box{
        width: 100% !important;
    }

}

@media(max-width:500px) {
    
    .chart-filters-container div{
        width: 100%;
    }	
}