:root {
  --color-1: #00676F;
  --color-2: #0F314C;
  --color-3: #FFB652;
  --color-4: #80D8C3;
  --color-5: #DE473C;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font: inherit;
}
html {
    font-size: 16px;
}
body {
  min-height: 100vh;
}
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}
p, li {
	color: #0F314C; 
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
	font-size: 1rem;
	line-height: 1.5rem;
}
h1 {
    font-family: "Fira Sans", sans-serif;
	color: var(--color-1);
	font-weight: 500;
	font-size: 3.5rem;
	line-height: 3.75rem;
}
h2 {
    font-family: "Fira Sans", sans-serif;
	color: #0F314C;
	font-weight: 700;
	font-size: 2.375rem;
	line-height: 2.5rem;
}
h3 {
    font-family: "Fira Sans", sans-serif;
	color: #0F314C;
	font-weight: 900;
	font-size: 1.75rem;
	line-height: 2rem;
}
h4 {
    font-family: "Jura", sans-serif;
	color: #0F314C;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.75rem;
}
h5 {
    font-family: "Jura", sans-serif;
	color: #0F314C;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.5rem;
}
h6 {
    font-family: "Jura", sans-serif;
	color: #0F314C;
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.75rem;
}
h7 {
    font-family: "Jura", sans-serif;
	color: #0F314C;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5rem;
}
@media (max-width: 490px) {
    h1 {
    	font-size: 3rem;
    	line-height: 3.25rem;
    }
    h2 {
    	font-size: 2.125rem;
    	line-height: 2.5rem;
    }
}
@media (max-width: 430px) {
    h1 {
    	font-size: 2.5rem;
    	line-height: 2.75rem;
    }
    h2 {
    	font-size: 2.125rem;
    	line-height: 2.5rem;
    }
}
@media (max-width: 360px) {
    h1 {
    	font-size: 2.2rem;
    	line-height: 2.5rem;
    }
    h2 {
    	font-size: 1.875rem;
    	line-height: 2.25rem;
    }
}

h1, h2, h3, h4, h5, h6, h7 {
    text-wrap: balance;
    word-wrap: break-word;
}
a {
	color: #0F314C;
	text-decoration: underline;
}
a:hover {
	color: #00676F;
	text-decoration: underline;
}

.page-content{
    background-color: #D2E6E1;
    padding: 11rem 0 7rem 0;
}
/* Section - Navigation - Main menu */
/**************************/
.nav-logo{
    width: 100%;
}
.navbar {
    background: linear-gradient(rgba(15, 49, 76, 1), rgba(0, 103, 111, 0.1));
    backdrop-filter: blur(5px);
}
@media (max-width: 767px) {
    .nav-logo{
        width: 190px;
        margin-left: 5%;
    }
}
.navbar-collapse{
    flex-grow: 0;
}
.nav-link{
    font-family: "Fira Sans", sans-serif;   
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5rem;
    color: #D2E6E1;
    padding: 20px 0;
}
.nav-link:hover{
    color: #fff;
    text-decoration: underline;
}
.nav-item, .nav-item:last-child{
    margin: 0;
}

@media (min-width: 768px) {
.nav-item{
    margin: 0 30px;
}
.nav-item:last-child{
    margin-right: 0;
    margin-left: 30px;
}
}
.navbar-toggler{
    border: none;
}
.navbar-toggler:focus {
    box-shadow:none;
}
/* News blog */
.blog-page{
    background: linear-gradient( var(--color-2), var(--color-1));
    padding: 6rem 0 7rem;
}
.blog-container{
    padding-top: 4rem !important;
    padding-bottom: 0 !important;
}
.blog-news-box{
    padding-top: 3rem!important;
    padding-bottom: 0!important;
}
.blog-pagination{
    width:100%;
    padding:0 40px;
    margin:0;
}
.blog-navigation a{
    display:inline-block;
    text-align:center;
    height:34px;
    width:34px;
    color:#0F314C;
    line-height:33px;
    border:1px solid #D2E6E1;
    border-radius:2px;
    -webkit-transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
}
.blog-navigation a:hover{
    background:#FFB652;
    border-color:#FFB652;
    color:#fff;
    }
.blog-navigation a.active{
    background:#FFB652;
    border-color:#FFB652;
    color:#fff;
    }

.blog-navigation .page-num{
    background: #D2E6E1;
    background-color: #D2E6E1;
}
.blog-navigation .current{
    background:#FFB652;
    border-color:#FFB652;
    color:#fff;
    }
.blog-navigation .all-pages{
    width:auto;
    padding:0 14px
    }
.blog-navigation .next-page{
    width:auto;
    background: #D2E6E1;
    background-color: #D2E6E1;
    padding:0 14px
    }
@media(max-width:1024px) {
    .blog-pagination {
        margin: 30px 0;
    }
}
@media(max-width:767px) {
    .blog-pagination {
        margin: 30px 0;
        padding: 0 30px;
    }
}
.post-c-link{
    color: #0F314C;
}
.news-page-title{
    font-size: 4rem;
    line-height: 3.75rem;
    font-weight: 600;
}
@media (max-width: 490px) {
    .news-page-title {
    	font-size: 3rem;
    	line-height: 3.25rem;
    }
}
@media (max-width: 430px) {
    .news-page-title {
    	font-size: 2.5rem;
    	line-height: 2.75rem;
    }
}
@media (max-width: 360px) {
    .news-page-title {
    	font-size: 2.2rem;
    	line-height: 2.5rem;
    }
}
.news-page-info{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 20px;
}
.news-content{
    margin-top: 60px;
}
.news-page-info-icon{
    font-size: 20px;
}
.news-page-info-category{
    margin: 0 10px;
    text-decoration: none;
}
.news-page-info-date{
    margin: 0 10px;
}
/* Section - Hero */
/**************************/
.section-hero {
    background-color: #00676F;
    padding-top: 120px;
    padding-bottom: 120px;
}
.hero-img{
    margin: 3rem auto;
    padding: 0 10px;
    height: 100%;
}
@media (max-width: 600px) {
.section-hero {
    padding-top: 100px;
    padding-bottom: 100px;
}
.hero-img{
    margin: 50px auto;
    padding: 0;
}
}
/* Section - Parallax */
/**************************/
#parallax-banner-1 {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url(/storage/app/media/banner-parallax-image-1.jpg);
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.parallax-content-box{
    background-color: rgb(0 112 120 / 70%);
    padding: 4% 10%;
}
.parallax-h{
    padding-bottom: 30px;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 3.75rem;
    color: var(--color-3);
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .parallax-h{
        font-size: 2.625rem;
        line-height: 3rem;
    }
}
@media (max-width: 375px) {
    .parallax-h{
        font-size: 2.5rem;
        line-height: 2.75rem;
    }
}
.parallax-text-box{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.parallax-img-box{
    width: 100%;
    margin-bottom: 30px;
}
.parallax-text-1 p, li{
	color: #fff; 
	font: 600 1.5rem/1.75rem "Jura", sans-serif;
    width: 100%;
}
.parallax-text-1 li{
    margin-top: 20px;
}
.parallax-text-1 ul {
    padding: 0;
  list-style-type: none;
}
.parallax-text-1 ul li::before {
  content: "\2713";
  margin-right: 5px;
}
.parallax-text-2{
	color: #fff;
	font: 600 1.125rem/1.5rem "Jura", sans-serif;
}
@media (min-width: 768px) {
    .parallax-img-box{
        flex: 0 0 auto;
        width: 25%;
        margin-bottom: 0;
    }
    .parallax-text-1{
        flex: 0 0 auto;
        width: 75%;
        padding-left: 60px;
    }
}
@media (max-width: 430px) {
    .parallax-text-1 p, li{
    	font: 600 1.25rem/1.5rem "Jura", sans-serif;
    }
}
/* Section - Features */
/**************************/
.features {
    background: linear-gradient(var(--color-1), var(--color-2));
}
.features-hand{
    padding-top: 6.25rem !important;
    padding-bottom: 7.5rem !important;
    background: url(/storage/app/media/background-benefits-hand.png) no-repeat;
    background-position: 80% 1%;
    background-size: 40%;
}
.features-box{
    display: flex;
    flex-wrap: wrap;
}
.features-h{
    color: var(--color-3);
    border-bottom: 4rem;
    font-size: 4rem;
    line-height: 3.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.features-h3{
    color: var(--color-3);
    margin-top: 30px;
}
.features-card-outside{
    padding: 0 30px;
    display: flex;
}
.features-card{
    background-color: #D2E6E1;
    border: 1px solid rgba(15, 49, 76, 0.25);
    box-shadow: inset 0 0 40px rgba(15, 49, 76, 0.12), 0 0 10px 2px rgba(15, 49, 76, 0.25);
    border-radius: 20px;
    padding: 30px;
    margin: 0 auto 40px auto;
    width: 100%;
}
.features-list-icon{
    display: block;
    height: 66px;
    width: 61px;
}
.features-name{
    color: var(--color-2);
    margin-bottom: 1rem;
}
.features-desc{
    color: var(--color-2);
    font-size: 1.125rem;
    font-weight: 200;
    line-height: 1.25rem;
}
@media (max-width: 1023px) {
    .features-card-outside{
        width: 50%;
    }
}
@media (max-width: 767px) {
    .features-h{
        font-size: 2.625rem;
        line-height: 3rem;
    }
    .features-card{
        margin: 0;
    }
    .features-card-outside{
        padding: 0 calc(var(--bs-gutter-x) * .5) 0 calc(var(--bs-gutter-x) * .5);
        width: 100%;
    }
    .features-hand{
        padding-top: 5rem !important;
        padding-bottom: 6.25rem !important;
        background-position: 75% 7%;
        background-size: 70%;
    }
}
/* Section - Quote */
/**************************/
.quote-one{
    background-color: #0F314C;
    padding: 120px 0;
    background-image: url("/storage/app/media/background-quote-hand.png");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-size: 20%;
}
.quote-content-box{
    display: block;
    margin: 0 42%;
    width: 35%;
    background-color: #D2E6E1;
    border-width: 8px;
    border-style: solid;
    border-image: linear-gradient(90deg, #80D8C3, #FFB652, #DE473C, #007078, #0F314C) 1;
}
.quote-text{
    padding: 40px;
    font-size: 1.75rem;
    line-height: 2rem;
    color: var(--color-2);
    font-weight: 900;
}
@media (max-width: 1440px) {
    .quote-one{
        background-position: 18% 50%;
        background-size: 22%;  
    }
    .quote-content-box{
        margin: 0 40%;
        width: 45%;
    }
}
@media (max-width: 768px) {
    .quote-one{
        background-position: 2% 10%;
        background-size: 45%;
    }
    .quote-content-box{
        margin: 0 auto;
        width: 84%;
    }
    .quote-text{
        padding: 20px;
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
}
/* Section - News */
/**************************/
.section-news{
    background: linear-gradient( var(--color-2), var(--color-1));
}
.section-news a{
    text-decoration: none;
}
.section-news a:hover{
    color: var(--color-2);
    text-decoration: none;
}
.container-news{
    padding-top: 6.25rem !important;
    padding-bottom: 7.5rem !important;
}
.news-box{
    display: flex;
    flex-wrap: wrap;
}
.news-h{
    color: #fff;
    font-size: 3.5rem;
    line-height: 3.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.news-subtitle{
    font-family: "Jura", sans-serif;
    color: var(--color-3);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5rem;
}
.news-card-outside{
    padding: 0 30px;
    display: flex;
}
.news-card{
    background-color: #D2E6E1;
    outline: 1px solid rgba(15, 49, 76, 0.25);
    box-shadow: inset 0 0 40px rgba(15, 49, 76, 0.12), 0 0 10px 2px rgba(15, 49, 76, 0.25);
    border-radius: 20px;
    margin: 0 auto 40px auto;
    width: 100%;
}
.news-card-body{
    padding: 30px 20px 20px;
}
.news-title{
    color: var(--color-2);
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin-bottom: 1rem;
}
.news-desc{
    color: var(--color-2);
    font-size: 1.125rem;
    font-weight: 200;
    line-height: 1.25rem;
}
.news-card-head{
    display: block;
    max-height: 200px;
    position: relative;
    overflow: hidden;
}
.news-card-head, .news-card-img{
    border-radius: 20px 20px 0 0;
    width: 100%;
}
@media (max-width: 1023px) {
    .news-card-outside{
        width: 50%;
    }
}
@media (max-width: 767px) {
    .news-h{
        font-size: 2.625rem;
        line-height: 3rem;
    }
    .news-card{
        margin: 0;
    }
    .news-card-outside{
        padding: 0 calc(var(--bs-gutter-x) * .5) 0 calc(var(--bs-gutter-x) * .5);
        width: 100%;
    }
}
.blog-container a{
    text-decoration: none;
}
.blog-container a:hover{
    color: var(--color-2);
    text-decoration: none;
}
/* Section - FAQ */
/**************************/
.section-faq{
    background: linear-gradient(var(--color-1), var(--color-2));
    padding: 100px 0;
}
.faq-h{
    color: var(--color-3);;
    font-size: 3.5rem;
    line-height: 3.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.accordion-item{
    background-color: transparent !important;
}
.accordion-header{
    text-wrap: pretty;
}
.accordion-button {
    background-color: transparent !important;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    color: #D2E6E1;
    font-size: 1.5rem;
    line-height: 1.75rem;
}
.accordion-button:not(.collapsed) {
    background-color: #D2E6E1 !important;
    color: #0F314C;
}
.accordion-button:focus{
    box-shadow: none !important;
}
.accordion-body{
    font-family: "Fira Sans", sans-serif;
    font-weight: 300;
    background-color: #FAFEFD;
    color: #0F314C;
    padding: 4% 12%;
    font-size: 1rem;
    line-height: 1.5rem;
    background-image: url("/storage/app/media/faq-quotation-mark.png");
    background-repeat: no-repeat;
    background-position: 1% 30%;
    background-size: 9%;
}
.accordion-button::after{
    filter: invert(1);
}
@media (max-width: 767px) {
    .faq-h{
        font-size: 2.625rem;
        line-height: 3rem;
    }
.accordion-body{
 background-image: none;
}
}
/* Section - Socials */
/**************************/
.section-social{
    background-color: #D2E6E1;
    padding: 90px 0 70px 0;
}
.social-title{
    color: #0F314C;
    text-align: center;
    margin-bottom: 35px;
}
.social-links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a{
    margin-bottom: 10px;
}
.social-icon{
    width: 36px;
    height: 36px;
    margin: 0 6px;
}
/* Section - Footer */
/**************************/
footer{
    background-color: #0F314C;
    padding: 100px 0 120px 0;
}
footer p{
    color: #80D8C3;
}
footer li{
    margin-bottom: 10px;
    padding-right: 10px;
}
.footer-links-row{
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}
.footer-col{
    flex: 0 0 auto;
    width: 18%;
}
.footer-links{
    list-style: none;
    padding: 0;
}
.footer-text-row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between !important;
    margin-top: 30px;
}
.footer-col-2{
    flex: 0 0 auto;
    width: 50%;
}
.footer-logo{
    width: 93px;
    height: 100px;
}
.footer-text-r{
    text-align: right;
}
.footer-privacy{
    display: block;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}
.footer-privacy a{
    color: #D2E6E1;
    text-decoration: none;
}
.footer-privacy a:hover{
    color: #FFF;
    text-decoration: none;
}
@media (max-width: 1023px) {
    .footer-col-2{
        flex: 0 0 auto;
        width: 100%;
    }
    .footer-text-r{
        text-align: start;
    }
    .footer-privacy{
        display: block;
        text-align: start;
        margin: 0;
    }
}
@media (max-width: 767px) {
    .footer-col {
        flex: 0 0 auto;
        width: 50%;
    }
    .footer-text-row{
        margin: 40px 20px 0px;
    }
    .footer-logo{
        display: block;
        margin: 0 auto;
    }
}
/* Back-to-top button*/
/**************************/
.back-to-top{
    display: block;
    width: 100px;
    padding: 12px 30px;
    border-radius: 25px;
    color: #fff;
    background-color: #80D8C3;
    margin: 40px 0 0 auto;
    text-align: center;
    text-decoration: none;
}
.back-to-top:hover{
    box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}
@media (max-width: 1023px) {
    .back-to-top{
        margin: 40px auto 0;
    }
}
/* Section - Documents */
/**************************/
.section-documents{
    background-color: var(--color-1);
    padding: 100px 0;
}
.section-documents a{
    text-decoration: none;
}
.documents-h{
    color: var(--color-3);;
    font-size: 3.5rem;
    line-height: 3.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;   
}
@media (max-width: 767px) {
    .documents-h{
        font-size: 2.625rem;
        line-height: 3rem;
    }
}
.documents-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.documents-item{
    flex: 0 0 auto;
    width: 25%;
}
.documents-icon{
    width: 96px;
    height: 96px;
    margin: 0 auto 30px auto;
}
.documents-title{
    color: #FFB652;
    font-size:  1.25rem;
    line-height: 1.5rem;
    font-weight: 600;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
}
.documents-title:hover{
    text-decoration: none;
}

.documents-c-h{
    margin: 100px 0 35px 0;
    color: #fff;
    font-size: 2.375rem;
    line-height: 2.5rem;
    font-weight: 600;
}
.documents-c-row{
    display: flex;
    margin-bottom: 20px;
}
.documents-c-icon{
    width: 56px;
    height: 56px;
}
.documents-c-text{
    font-family: "Jura", sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.75rem;
    margin: auto 0 auto 30px;
    text-transform: uppercase;
}
.documents-c-link{
	color: #FFB652;
    text-decoration: none;
}
.documents-c-link:hover{
    color: #80D8C3;
    text-decoration: none;
}
@media (max-width: 1279px) {
    .documents-item{
        margin: 0 0 40px 0;
        }
    .documents-box{
        justify-content: space-around;
    }
}
@media (max-width: 767px) {
    .documents-item{
    flex: 0 0 auto;
    width: 50%;
        }
.documents-c-text{
    font-size: 1rem;
    line-height: 1.5rem;
    margin: auto 0 auto 10px;
}
}
@media (max-width: 374px) {
    .documents-item{
    flex: 0 0 auto;
    width: 100%;
    }
    .documents-c-text{
    font-size: 0.9rem;
    line-height: 1.5rem;
    }
}
/* Cookies */
/**************************/
#cookies-bar{
    background-color: rgb(210 230 225 / 90%);
    position: fixed;
    bottom: 0;
    right: 0;
    width: 40%;
    z-index: 999;
    border-radius: 20px 0 0 20px;
    padding: 40px;
    
}
@media (max-width: 768px) {
    #cookies-bar{
        background-color: rgb(210 230 225 / 90%);
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        z-index: 999;
        border-radius: 0;
        padding: 25px;
    }
}
#sg-cookiesBar .title{
    color: #0F314C;
}
#cookies-bar .buttons{
    margin: 30px 0 0 0;
}
#sg-cookiesBar .btn-primary{
    border-radius: 25px;
    background-color: #00676F;
    border-color: #00676F;
    padding: 20px;
    border-radius: 50px;
}
#sg-cookiesBar .btn-primary:hover{
    background-color: #80D8C3;
    border-color: #80D8C3;
}
.cookies-pravicy-link{
    color: #0F314C;
    font-weight: 600;
}
.cookies-pravicy-link:hover{
    color: #fff;
}
/* CTA - ПОвідомити про корупцію */
/**************************/
.section-cta-inform{
    padding: 110px 0 120px;
    background: linear-gradient(var(--color-1), var(--color-2), var(--color-1));
}
.title-cta-inform{
    font-size: 4rem;
    line-height: 3.75rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
@media (max-width: 767px) {
.title-cta-inform {
    font-size: 3.5rem;
    line-height: 3rem;
    word-wrap: break-word;
}
}
@media (max-width: 375px) {
.title-cta-inform {
    font-size: 3.25rem;
    line-height: 3.25rem;
    word-wrap: break-word;
}
}
.des-cta-inform{
    color: #FFB652;
    margin: 20px auto 0;
    font-family: "Jura", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 600;
}
.des-cta-inform2{
    color: #D2E6E1;
    font-size: 0.875rem;
    margin-top: 10px;
}
.btn-cta-inform{
    display: block;
    margin: 50px auto 0;
    text-align: center;
    color: #fff;
    background-color: #80D8C3;
    padding: 20px;
    border-radius: 50px;
    width: 300px;
    text-decoration: none;
}
@media (max-width: 430px) {
    .btn-cta-inform{
        width: 95%;
        text-wrap: balance;
    }
}
.btn-cta-inform:hover{
    color: #fff;
    background-color: #00676F;
    text-decoration: none;
}
/* Стилі зображень новин */
/**************************/
.news-column2 {
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto;
}
.news-column2-text-left {
    display: flex;
    padding: 20px 40px 20px 0;
    align-items: center;
    width: 50%;
}
.news-column2-text-right {
    display: flex;
    padding: 20px 0 20px 40px;
    align-items: center;
    width: 50%;
}
.news-column2-img {
  width: 50%;
  height: auto;
}
@media (max-width: 768px) {
    .news-column2 {
        flex-direction: column;
    }
    .news-column2-text-right {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .news-column2-text-left {
        width: 100%;
        padding: 0 0 20px 0;
    }

    .news-column2-img {
        width: 100%;
    }
}