:root {
    --white: #ffffff;
    --blue: #0006b8;
    --black: #000000;
}




html {
    scroll-behavior: smooth;
  }
body{
    background-color: var(--black);
    margin: 0;
    overflow-x: hidden;
    font-family: "Circe", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: var(--white);



    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
    /* margin-top: 100px; */
    /* margin-top: 1em; */
}


a{
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}
h1{
    text-transform: uppercase;
    font-size: 48px;
    line-height: 130%;
}

h2{
    text-transform: uppercase;
    font-size: 28px;
    line-height: 130%;
}
h3{
    text-transform: uppercase;
    font-size: 28px;
    line-height: 130%;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Inter Tight", serif;
    margin: 0;
    font-weight: 900;
    /* word-break: break-all; */
}
p{
    font-size: 18px;
    line-height: 110%;
}
b{
    font-weight: 600;
}
strong{
    font-weight: 600; 
}
ul{
    padding: 0;
}
li{
    list-style: none;
}
figure{
    margin: 0;
}
img.full-width{
    width: 100%;
}
button, .button{
    background-color: var(--blue);
    border: none;
    box-sizing: border-box;
    color: var(--white);
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-family: "Circe", serif;
    border-radius: 30px;
    /* font-weight: 700; */

    list-style: none;
    margin: 0;
    outline: none;
    padding: 10px 31px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 100ms;
    vertical-align: baseline;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
button:hover, .button:hover{
    background: var(--white);
    color: var(--black);
}
.button-secondary{
    background-color: var(--black);
}
.button-secondary:hover{
    background-color: var(--blue);
    color: var(--white);
}
.button-transparent{
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}
.button-transparent:hover{
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}
.date{
    color: var(--gray);
}
.mobile-hide{
    display: none;
}
.desktop-hide{
    display: block;
}
.container{
    padding-left: 30px;
    padding-right: 30px;
}
.no-scroll{
    overflow: hidden;
}
@media only screen and (min-width: 64em) {
    /* body{

        margin-top: 7em;
    } */
    h1{
        font-size: 88px;
        line-height: 120%;
    }
    
    h2{
        font-size: 48px;
    }
    h3{
        font-size: 28px;
    }
    h1, h2, h3, h4, h5, h6{

    }

    .mobile-hide{
        display: block;
    }
    .desktop-hide{
        display: none;
    }
    .container{
        padding-left: 30px;
        padding-right: 115px;
    }
      
}  

/* header */

.header{
    height: 66px;
    width: 100%;
    position: relative;
    top: 0;
    background:var(--black);
    z-index: 99;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.header__logo{
    z-index: 100;
}
.header__logo img{
	height: 24px;
    width: 69px;

}
.header:has(.nav-active) {
    background: var(--black);
}
.header > div{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;

    /* padding-top: 1em; */
}

.header .menu-wrapper {
    
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: 0.4s;
    z-index: 99;
    background-color: var(--black);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    padding-top: 6em ;
  }

.header  .nav__menu  ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    margin-top: 2em;
}
.nav__menu a{
    font-size: 20px;
    /* font-weight: 600; */
    color: var(--white);
    text-transform: uppercase;
}
.nav__menu li {
  cursor: pointer;
}

.nav-active {
  left: 0 !important;
}


.nav__toggle {
    display: block;
    cursor: pointer;
    width: 28px;

    position: relative;
    transform: rotate(0deg);
    transition: transform .35s linear;
    margin-top: -0.5em;
}
.nav__toggle > div{
    width: 100%;
    height: 3px;
    margin-top: .5px;
    border-radius: 15px;
    background-color: var(--white);
    position: absolute;

    z-index: 10;
    transition: all .25s;
}
.nav__toggle > div::before {
    top: -9px;
}
.nav__toggle > div::after {
    top: 10px;
}
.nav__toggle > div::before, .nav__toggle > div::after {
    content: "";
    height: 3px;
    position: absolute;
    right: 0;
    border-radius: 15px;
    background-color: var(--white);
    transition: all .25s;
}
.nav__toggle > div::before{

    width: 75%;
}
.nav__toggle > div::after{

    width: 50%;
}
.nav__toggle.active {
    z-index: 100;
    transform: rotate(90deg);
}

.nav__toggle.active > div {
    background: transparent;
}
.nav__toggle.active > div::before {
    transform: rotate(-45deg);
    /* background: var(--black); */
}
.nav__toggle.active > div::after {
    transform: rotate(45deg);
    /* background: var(--black); */
}
.nav__toggle.active > div::before, .nav__toggle.active > div::after {
    top: 0;
    width: 100%;
}

.menu-close{
    position: absolute;
    top: 20px;
    right: 0;
}

.scrolled {
    background:var(--white);
}

.switch {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
/* language switcher */
.switch__input {
  display: none;
}


.switch__input:checked + .switch__icon:after {
  transform: translate3d(18px, 2px, 0);
}

.switch__icon {
  position: relative;
  display: inline-block;
  max-width: 35px;
  min-width: 35px;
  min-height: 18px;
  max-height: 18px;
  background-color: transparent;
  border: var(--white) 1px solid;
  border-radius: 20px;
  vertical-align: text-bottom;
  transition: all 0.3s linear;

  margin-left: 8px;
  margin-right: 8px;
}



.switch__icon:after {
  content: '';
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
  transform: translate3d(2px, 2px, 0);
  transition: all 0.2s ease-in-out;
}

.switch__span {
  font-size: 16px;
  color: var(--white);
}

@media only screen and (min-width: 64em) {
    .header > div{

        /* padding-left: 60px;
        padding-right: 60px; */

    }
    .header{
        position: fixed;
        background:var(--black);
    }
    .header .menu-wrapper{
        position: relative;
        top: unset;
        left: unset;
        width: unset;
        height: unset;
        padding: 0;

    }
    .header  .nav__menu ul {
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
        margin: 0;
        gap: 40px;
        margin-left: 2.5em;
      }
      .nav__menu a{
        font-size: 16px;
        font-weight: 500;
    }
    .nav__submenu.toggle{

        padding: 0;
    }
    .nav__toggle {
        display: none;
    }

      
}  

.footer{
   display: flex;
    width: 100%;
    background: var(--blue);
    padding: 3em 0px 2em;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-top: 3em;
}
.footer > div{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 1em;

    padding-left: 30px;
    padding-right: 30px;
}
.footer__logo{
    display: flex;
    justify-content: center;
}
.footer .nav__menu  ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    margin: 0;
    padding-top: 2em;
}

.header__law p{
    text-align: center;
	margin: 0;;
}
.footer-button{
    padding-right: 30px;
    margin-top: 3em;
}
@media only screen and (min-width: 64em) {
    .footer{
        flex-direction: row;
    }
    .footer > div{

        flex-direction: row;
        align-items: end;
        gap: 8em;
    }
    .footer .nav__menu  ul {
        display: grid;
        column-gap: 4em;
        row-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        margin: 0;
        padding-top: unset;
    }
    .footer-button{
        margin-top: unset;
    }
}

/* front page */

.banner-section{
    position: relative;
    display: flex;
    justify-content: end;
    flex-direction: column;
    align-items: start;

    margin-top: 2em;
    margin-bottom: -23em;


}

.banner-section h1{
    color: var(--white);
}
.banner-section > div{
    margin-top: 2em;

    display: flex;
    flex-direction: column;
    gap: 0em;
    /* align-items: start; */
    /* justify-content: space-between; */
}
.banner-section p{

   max-width: 450px;
   color: var(--white);
}
.banner-section button{
    margin-top: 1em;
}
/* .banner__caption br{
   content: "";
  display: block;
  font-size: 100%;
  height: 1em;
} */

.front-page-background{
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../assets/images/front-page-background-mobile.png');
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (min-width: 64em) {
    .banner-section{
        margin-top: 10em;
        margin-bottom: -14em;
    }
    .banner-section > div{
        margin-top: 6em;


        flex-direction: row;
        gap: 9em;
        /* align-items: start; */
        /* justify-content: space-between; */
    }
    .front-page-background{

        background-image: url('../assets/images/front-page-background.png');
    }
}  

.about-section {
    /* margin-top: 4em; */
    /* background-color: var(--white); */
    padding-top: 26em;
}

.about__header{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}
.about__header h1{
    color: var(--black);
}
.about__header p{
    color: var(--black);
    
}
.advantages{
    margin-top: 1em;
    display: flex;
    gap: 17px; 
    flex-direction: column;
}

.advantages__item {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 17px;
    align-items: center;
    justify-content: space-between;
}
.advantages__item p{
    margin: 0;
}
.advantages__item:last-child{
    background: var(--blue);
}
.about__footer{
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}
.about__footer p{
    color: var(--black);
    
}
@media only screen and (min-width: 64em) {
    .about__header p{

        width: 450px;
    }
    .about__header{

        flex-direction: row;
        align-items: end;
    }
    .advantages{
        margin-top: 3em;
        display: grid;
        gap: 17px; 
        grid-template-columns: repeat(4, 1fr);
    }
    .advantages__item {
        min-width: 200px;
        background: var(--black);
        color: var(--white);
        padding: 30px;
        border-radius: 20px;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;
        align-items: baseline;
        justify-content: space-between;
        min-height: 173px;
    }
    .about__footer{
        margin-top: 1em;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .about__footer p{
        width: 450px;
    }
}

.how-we-work-section {
    scroll-margin-top: 5em;
    /* background-color: var(--white); */
    padding-top: 2em;
    padding-bottom: 12em;
}
.how-we-work-section h1{
    color: var(--black);
}
.blocks{
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    gap: 17px; 

}
.blocks__item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 1em;

    background: var(--black);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-sizing: border-box;

}
.blocks > :nth-child(3){
    background: var(--blue);
}
.blocks__item h3{
    margin-top: 0.5em;
}
.blocks__item ul{
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0em;
    padding-left: 17px;
}
.blocks__item li{
    list-style: disc;
    
}
@media only screen and (min-width: 64em) {
    .how-we-work-section {
        scroll-margin-top: 5em;
        /* background-color: var(--white); */
        padding-top: 5em;
        padding-bottom: 8em;
    }
    .blocks__item{


        min-height: 388px;

    }
    .blocks__item h3{
        margin-top: 1em;
    }
    .blocks{
        margin-top: 2em;
        display: grid;
        gap: 17px; 
        grid-template-columns: repeat(4, 1fr);
    }
    .blocks__item ul{
        gap: 1em;
    }
    
}


.price-section{
    scroll-margin-top: 5em;
    margin-top: -6em;
}
.price-section h1{
    color: var(--white);
}

@media only screen and (min-width: 64em) {
    .price-section{
        scroll-margin-top: 4em;
        margin-top: 2em;
    }
}

.prices__category{
    color: var(--white);
    margin-top: 1.5em;
    /* margin-bottom: 1em; */
}
.prices {

    margin-top: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;

    position: relative;
}
.prices--main{
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.prices__item--main{
    display: flex;
    flex-direction: column;
    gap: 17px; 
    /* display: flex;
    justify-content: space-between;*/
    align-items: start; 
    width: 100%;
    min-height: 142px;
    background: var(--white);
    color: var(--black);
    padding: 30px 50px;
    border-radius: 20px;
    box-sizing: border-box;
}

.prices--secondary{
    display: flex;
    flex-direction: column;
    gap: 17px; 
}
.prices__item--secondary{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start; 
    width: 100%;
    background: var(--white);
    color: var(--black);
    padding: 30px 30px;
    border-radius: 20px;
    box-sizing: border-box;
    gap: 17px;
}
.prices__item--secondary .price{
    color:var(--blue);
}
.prices__item--secondary .title{

}
.prices--main .description, .prices--secondary .description{
    opacity: 70%;
    font-size: 16px;
}
@media only screen and (min-width: 64em) {
   .prices__item--main{
        display: grid;
        gap: 4em; 
        grid-template-columns: repeat(4, 1fr);
        /* display: flex;
        justify-content: space-between;*/
        align-items: center; 
        width: 100%;
        min-height: 142px;
        background: var(--white);
        color: var(--black);
        padding: 30px 50px;
        border-radius: 20px;
        box-sizing: border-box;
    }
    
    .prices--secondary{
        display: grid;
        gap: 17px; 
        grid-template-columns: repeat(3, 1fr);
    }
    .prices__item--secondary{

        min-height: 400px;
        gap: 0;

    }
    .prices__item--main .title b{
        color:var(--blue);
    }
    .prices__item--secondary .title{
        margin-top: 1em;
        margin-bottom: 1em;
    }
    .prices--main .description, .prices--secondary .description{
        font-size: 18px;
    }
}
@media only screen and (max-width: 64em) {
    .prices__item--main h2{
        font-size: 18px;
        line-height: 130%;
        color: var(--blue);
    }
    .prices__item--main p, .prices__item--secondary p{
        margin: 0;
        line-height: 130%;
    }
    .prices__item--secondary > div{
        display: flex;
        flex-direction: column;
  
        gap: 17px;
    }
    .prices__item--secondary .title{
        text-transform: unset;
        font-size: 18px;
        line-height: 130%;
    }
    .prices__item--secondary .price{
        font-size: 18px;
        line-height: 130%;
    }

}
.partners-section{

}
.partners-section h3{
    color: var(--white);
}


.partners-section{
    margin-top: 5em;
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
}
.partners-section h3{

    text-align: center;
}
@media only screen and (min-width: 64em) {
    .partners-section h3{

        text-align: start;
    }
}

.blog-section{
    margin-top: 4em;
}
.blog-section h1{
    color: var(--white);
}
.blog-section__header{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 17px;
}
.blog-section__header button{
    margin-bottom: 1.1em;
}
.blog-section__main{
    margin-top: 1em;
    padding-left: 30px;

}
.blog-section__main__item{
    max-width: calc(25% - 12px);
    width: 100%;

    border-radius: 20px;
}

.blog-section__main__item figure img{
    width: 100%;
    object-fit: cover;
    height: 167px;
    border-top-left-radius: 20px 20px;
    border-top-right-radius: 20px 20px;
}
.blog-section__main__item > div{
    background: var(--white);
    margin-top: -5px;
    border-bottom-left-radius: 20px 20px;
    border-bottom-right-radius: 20px 20px;
    height: 107px;
    padding: 20px;
}
.blog-section__main__item .date{
    font-size: 16px;
    line-height: 130%;
    color: var(--black);
    opacity: 70%;
    margin: 0;

}
.blog-section__main__item .title{
    /* font-size: 20px; */
    color: var(--black);
    margin: 0;
    padding-top: 10px;
    margin-bottom: 15px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.blog-section__main__item a{
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 5px;
    color: var(--blue);

    display: flex;
    gap: 5px;
} 

@media only screen and (min-width: 32em) {

      
}
@media only screen and (min-width: 64em) {
    .blog-section__header{

        flex-direction: row;

        align-items: end;
    }
    .blog-section__main{
        margin-top: 2em;
        padding-right: 115px;

    }

}
.faq-section{
    scroll-margin-top: 5em;
    margin-top: 5em;
    /* margin-bottom: 5em; */
}
.faq-section h1{
    color:var(--white);
}
.accordion {

    margin-top: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap:17px;
    position: relative;
}

.accordion__item {
    padding: 0px 20px;
    overflow: hidden;
    background: var(--blue);
    color: var(--white);
    border-radius: 20px;
}

.accordion__header {
    /* padding: 1.5em 0 0; */
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: start;
    cursor: pointer;
    gap: 1em;
}
.accordion__header p{
    font-weight: 600;
    line-height: 130%;
    
}
.accordion__header > div{
    margin-top: 18px; 
}

.accordion__trigger{
    display: flex;
    align-items: center;
}

.minus{
    display: none;
}


.accordion__header.active img {
    transform: rotateX(180deg);
}

.accordion__header.active .plus{
    display: none;
}
.accordion__header.active .minus{
    display: block;
}
.accordion__content {


    max-width: 50em;
    max-height: 0;
    transition: .5s;
    overflow: hidden;


}
.accordion__content p{

    margin-top: 0;
}

@media only screen and (min-width: 64em) {
    .accordion {
        margin-top: 4em;
    }
    .accordion__header {
        align-items: center;
    }
    .accordion__header > div{
        margin-top: unset; 
    }
    .accordion__header__title p{
        font-size: 24px;
    }
    .accordion__header__title{
        flex-direction: row;
    }
    .faq-section{
        scroll-margin-top: 4em;
    }
}
@media only screen and (max-width: 64em) {
    
    .faq-section h1{
        font-size: 48px;
        line-height: 130%;
    }
}

.call-us-background{
    display: block;
    width: 100%;
    height: 100%;
}
.call-us-section {
    padding-top: 11em;
    padding-bottom: 12em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    background: url('../assets/images/call-us-background.png');
    background-repeat: no-repeat;
    background-size: cover;

}

.call-us-section h3{
    color: var(--blue);
}
.call-us-section h1{
    color: var(--black);
    text-align: center;
    
}
@media only screen and (max-width: 64em) {
    .call-us-section {
        margin-top: -3em;
        padding-top: 11em;
        padding-bottom: 10em;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1em;
        background-image: url('../assets/images/call-us-background-mobile1.png');

    }
    .call-us-section button{
        margin-top: 2em;
    }
    .call-us-section h1{
        font-size: 37px;
    }
}

.contacts-section{
    scroll-margin-top: 5em;
    margin-top: -3em;
    margin-bottom: 0em;
}
.contacts-section h1{
    color: var(--white);
}
.contacts-section > div{
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    /* align-items: stretch; */
    justify-content: space-between;
    align-items: start;
    gap: 1.5em;
}
.contacts-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2em;
}
.contacts-info div{
    display: flex;
    flex-direction: column;
    gap: 1em
}
.contacts-info a{
    color: var(--white);
    display: flex;
    align-items: anchor-center;
    gap: 1em;
}
.contacts-info p{
    margin: 0;
}
.contacts-info button{
    margin-top: auto;
}
.map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    aspect-ratio: 1;
}
/* .contacts-section a{
    display: flex;
    align-items: center;
    gap: 1em;
   
}
.contacts-section img{
    width: 36px;
   
} */

@media only screen and (min-width: 64em) {
    .contacts-section{
        scroll-margin-top: 5em;
        margin-top: 2em;
        margin-bottom: 4em;

    }
    .contacts-section > div{
        margin-top: 2em;

        flex-direction: row;
        /* align-items: stretch; */
    }
    .map img{

        aspect-ratio: unset;
    }  
}
@media only screen and (min-width: 32em) {
    .map img{

        aspect-ratio: unset;
    }  
}

header .socials{
    display: flex;
    top: unset;
    right: unset;
    bottom: 3em;
}


.socials{
    display: none;
    position: relative;
    top: 250px;
    right: 45px;
    
    flex-direction: row;
    gap: 1em;
    margin: auto;

}
.socials svg:hover .backgound  {
  fill: var(--black); /* Facebook blue on hover */
}


@media only screen and (min-width: 64em) {
    .socials{
        display: flex;
    }
    header .socials{
        display: none;
    }
    .socials{
        flex-direction: column; 
        
        position:fixed;
    }
}

/* popup */

.popup{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    overflow-y: auto;
    z-index: 10000;
}
.popup.is-visible{
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}
.popup > div{
    margin: 2em;
    position: relative;
    border-radius: 20px;
    background: var(--white); 
    overflow: hidden; 
}

.popup > div > div{
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
.popup h3{

    color: var(--black);
    text-align: center;
}
.popup_close{
    position: absolute;
    top: 30px;
    right: 30px;
    /* width: 24px; */
}
.popup_close img{
    /* width: 24px; */
}
@media only screen and (min-width: 64em) {
    .popup_close{
        top: 20px;
        right: 20px;
        /* width: 24px; */
    }
}
@media only screen and (max-width: 64em) {
    .popup h3{
        font-size: 20px;
        text-align: start;
    }
}

/* popup */

.contact_us_form{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    overflow-y: auto;
    z-index: 10000;
}
.contact_us_form.is-visible{
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}
.contact_us_form > div{
    /* margin: 2em; */
    position: relative;
    max-width: 704px;
    background: var(--white);
    border-radius: 40px;;
    overflow: hidden; 
    padding: 70px 30px 30px 30px;
    margin-inline: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact_us_form h3{
    color: var(--black);
    text-align: center;
}
.contact_us_form > div > p{
    color: var(--black);
    opacity: 70%;
    text-align: center;
    margin-top: 1em;
    /* max-width: 80%; */
}
.contact_us_form > div > div{
    /* padding: 30px 25px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2em;
    margin-top: 2em;
}
.contact_us_form__form{
    flex: 3;
}
.contact_us_form form{
    display: flex;
    flex-direction: column;
    align-items: unset;
    gap: 0.8em;
}
.contact_us_form__form .button{
    width: 100%;

}
.contact_us_form__telegram{
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 1em;

}
.contact_us_form__telegram p{
    color: var(--black);
    text-align: center;
}
.contact_us_form__telegram button{
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    padding: 13px 31px;
    width: 100%;
}
.contact_us_form > div > div > a{
    display: flex;
    align-items: center;
    align-self: center;
    gap: 1em;
}
.contact_us_form > div > div > a img{
    width: 36px;
}
.contact_us_form p{
    margin: 0;
}
.contact_us_form > div > div > p:first-of-type{
    color: #8C7F7F;
}
.input-field{
    display: block;
    width: 100%;
    height: 45px;
    /* width: 268px; */
    padding: 0em 1.5em;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black);
    background-color: #EEEDF9;
    background-clip: padding-box;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 20px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}





.wpcf7-spinner{
    display: none !important;
}
.wpcf7 form .wpcf7-response-output{
    margin: 0;
    max-width: 345px;
}
.wpcf7-not-valid-tip {
    padding-left: 1em;
}

@media only screen and (min-width: 64em) {
    .contact_us_form > div{
        
        padding: 70px 50px 50px 50px;
    }
    .contact_us_form > div > div{

        flex-direction: row;
        gap: 2em;
        margin-top: 2em;
    }
    .contact_us_form__telegram p{
        text-align: start;
    }
    .input-field{

        height: 50px;
        padding: 0em 1.5em;
        font-size: 18px;

        border-radius: 100px;

    }
}
.blog-background{
    position: absolute;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    height: 34em;
    width: 100%;
    margin-top: -1em;
    background-image:url("../assets/images/blog-ellipse-mobile.png");

}

/* .blog{
    padding-top: 1em;
} */
.blog__page-title{
    padding-top: 1em;
    /* display: none; */
}
.blog-title__content{
    margin-top: 1em;
    font-size: 16px;
    line-height: 28px;
}
.categories{
    margin-top: 2em;
}
.category-desktop{
    display: none;
}
.category-mobile{
    display: block;
    padding-left: 30px;
}
.categories__selection{
    margin-top: 3em;
}
.categories__selection a{

    display: flex;
    align-items: center;
    justify-content: space-between;
}
.categories__selection a > div{
    display: flex;
    align-items: center;
    gap: 5px;
}
.categories__selection a:hover{
    color: var(--blue);
}

.categories__selection a svg{
    fill:var(--white);
}
.categories__selection a:hover svg{
    fill:var(--blue);
}
.last-posts{
    margin-top: 1em;
    margin-bottom: 2em;
}
.last-posts > h1{
    color: var(--white);
}
.last-posts__posts--desktop{
    margin-top: 2em;
    display: none;
    gap: 17px;
}



.last-posts__posts--desktop .post-cover{
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}
.last-posts__posts--desktop .post-info{
    background: var(--white);
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
}
.last-posts__posts--desktop .title{
   color: var(--black);
   
}
.last-posts__posts--desktop .date{
    color: var(--black);
    opacity: 70%;
    margin: 0;
}
.last-posts__posts--desktop a{
    color: var(--blue);
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.last-posts__posts--first{
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.last-posts__posts--first .post-cover{
    flex: 75%;
}
.last-posts__posts--first .post-info{
    flex: 25%;
}

.last-posts__posts--other{
    flex:1;
    
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 17px;
}
.last-posts__posts--other > div{
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    overflow: hidden;
}
.last-posts__posts--other .post-cover{
    flex: 43%;
}
.last-posts__posts--other .post-info{
    flex: 57%;
}
.last-posts__posts--mobile{
    display: block;
    margin-top: 1em;
    padding-left: 30px;

}
.category-section{
    margin-top: 2em;
    scroll-margin-top: 4em;
}
.category-section__header{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 1em;
    margin-top: 3em;
}
.category-section h2{
    color: var(--white);
    word-break: break-word;

}
.blog-category-posts {
    margin-top: 2em;
    padding-left: 30px;
    
}
.swiper-wrapper{
    margin-bottom: 3em;
}

.blog-post__buttons{
    position: relative;
    display: flex;
    gap: 1.5em;
    justify-content: center;
}
.swiper-button-next,
.swiper-button-prev {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8px 16px;

    top: 0;
}

.swiper-button-prev {
    background-image: url("../assets/images/left-arrow.svg");

}

.swiper-button-next {
    background-image: url("../assets/images/right-arrow.svg");
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
}
.blog-post{
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-post .post-cover{
    flex: 60%;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    min-height: 167px;
}
.blog-post .post-info{
    flex: 40%;
    background: var(--white);
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    min-height: 107px;
}
.blog-post .title{
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    margin: 10px 0;
}
.blog-post .date{
    color: var(--black);
    opacity: 70%;
    margin: 0;
    font-size: 16px;

}
.blog-post a{
    color: var(--blue);
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 5px;
    margin-top: auto;
}
@media only screen and (min-width: 32em) {
   .blog-background{

        background-image:url("../assets/images/blog-ellipse.png");

    } 
}
@media only screen and (min-width: 64em) {
    
    .last-posts{
        margin-top: 5em;
        margin-bottom: 6em;
    }
    .category-section__header{
        margin-top: 3em;
    }
    .categories__selection{
        margin-top: 3em;

        display: grid;
        column-gap: 20px;
        row-gap: 20px;
        grid-template-columns: repeat(4, 1fr);
    }
    .category-desktop{
        display: grid;
    }
    .category-mobile{
        display: none;
    }
    .last-posts__posts--desktop{
        display: flex;
    }
    .last-posts__posts--mobile{
        display: none;
    }
    .category-section__header{
        flex-direction: row;
        align-items: center;
    }
    .blog-category-posts {
        margin-top: 2em;
        padding-right: 115px;
        
    }
    .blog-post__buttons{
        display: none;

    }
}
@media only screen and (max-width: 64em) {
    .last-posts h1{
        font-size: 48px;
        line-height: 130%;
    }
}


.category-posts{
    margin-top: 2em;
    display: grid;
    gap: 17px; 
    grid-template-columns: repeat(1, 1fr);
}
.category-title{
    word-break: break-all;
    padding-top: 1em;
}
.more-category-title{
    display: block;
}
@media only screen and (min-width: 64em) {
    .category-posts{
        margin-top: 3em;

        grid-template-columns: repeat(4, 1fr) !important;
    }
    .more-category-title{
        display: none;
    }
    .category-title{
        padding-top: 25px;
    }
}
@media only screen and (min-width: 32em) {
    .category-posts{
        grid-template-columns: repeat(2, 1fr);
    }
}
/* single post */
.breadcrumbs, .breadcrumbs{
    padding-top: 4em;
}
.breadcrumbs {
    margin-top: 1em;
    display: none;
    align-items: center;
    gap: 10px;
}
.breadcrumbs a{
    color: var(--white);
    opacity: 70%;

}
.breadcrumbs a:not(:last-of-type)::after{
    content: '\\';
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}
.breadcrumbs a:last-of-type{
    opacity: 100%;
}
@media only screen and (min-width: 64em) {
    .breadcrumbs {
        display: flex;
    }
}
.page-title
.post-title {
    margin-top: 3em;
    padding-left: 200px;
    padding-right: 200px;
    margin-bottom: 8em;
}
.post-content-section{
    margin-top: 1em;
}
.post-content-section h2{
    padding-left: 30px;
    padding-right: 30px;
}

 .post-background{
    display: block;
    width: 100%;
    z-index: -1;
 }
.post-background img{
    width: 100%; 
}
.post-background.top{
    margin-top: 0em;
}
.post-background.bottom{
    /* bottom: 0; */
}
.post-content-wrapper {
    position: relative;
    background: var(--white);
    margin-top: -4em;
    margin-bottom: -4em;
}
.post-content{
    margin-top: 3em;
    padding-left: 30px;
    padding-right: 30px;
    
    color: var(--black);
    padding-top: 2em;
}
.post-main-image{
    position: absolute;
    z-index: 1;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 1em;
}
.post-main-image > img{
     margin-top: 0em;
    width: 100% !important;
    border-radius: 20px;
    /* max-height: 550px; */
}
.post-content img{
    width: 100% !important;  
    border-radius: 20px; 
    
}
.related-posts{
    margin-top: -4em;
}
.related-posts-posts{
    margin-top: 4em;
    padding-left: 30px;
}
.related-posts h2, .post-more-category h2{
    font-size: 48px;
}

.post-content p,.post-content img {
    margin-block-start: 1em;
    margin-block-end: 1em;
}
.post .date {
    margin-top: 2em;
}
.post-content ul{
    padding-inline-start: 20px;
}
.post-content li{
    list-style-type: unset;
}
.page{
    
}
.page-title{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
    padding-top: 1em;


}
.page-title a{
    display: flex;
    align-items: center;
    gap: 10px;
}
.page-title-left{
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.page-title-left > div{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1em;
}
.page-title-right{
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: start;
}
.page-content{
    margin-top: 2em;
    font-family: "Montserrat", serif;
    font-size: 24px;
    line-height: 33px;
}
.page-content .wp-block-image img{
width: 100%;
}
.page-content a{
    text-decoration: underline;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
    margin-block-end: 1em;
    margin-block-start: 1em;
}
.page-content p{
    font-size: 16px;
    margin-block-start: 1em ;
    margin-block-end: 1em ; 
}
.page-content a{
    color: var(--white);
}
.m-0{
    margin: 0 !important;
}

@media only screen and (min-width: 64em) {
    .post-content-section{
        margin-top: 3em;
    }
    .post-background.top{
        margin-top: 8em;
    }
    .post-content-section h2{
        padding-left: 200px;
        padding-right: 200px;
    }
    .page-title-left > div{
        flex-direction: row;
    }
    .post-content{
        margin-top: -12em;
        padding-left: 200px;
        padding-right: 200px;
        
        color: var(--black);
        padding-top: 2em;
    }
    .post-main-image{
        margin-top: 2em;
        padding-left: 200px;
        padding-right: 200px;
    }

     .post-main-image > img{
        margin-top: 0em;
    }
    .post-content-wrapper {
        margin-top: -14em;
        margin-bottom: -13em;
    }
    .related-posts-posts{
        margin-top: 4em;
        padding-right: 115px;
    }
    .page-title{
		flex-direction: row;
        padding-top: 2em;

}

}
@media only screen and (min-width: 32em) and (max-width: 64em) {
    .post-background.top {
        margin-top: 2em;
    }
    .post-main-image{
        margin-top: 2em;
    }
    .post-content-wrapper {
        margin-top: -4em;
        margin-bottom: -7em;
    }

}

 .cookie-overlay > div > div{
    gap: 2em;
    
 }
.cookie-overlay > div > div > div{
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 1em;
    align-items: stretch;
}



.btn-tansparent{
	background: transparent;
	border: 1px solid var(--black);
	color: var(--black);
	/* padding: 10px 20px; */
	border-radius: 30px;
	cursor: pointer;
} 
.cookie-overlay > div > div {

    padding: 50px 30px 30px 30px;

}
@media only screen and (min-width: 64em) {
    .cookie-overlay > div > div {

        padding: 50px 30px 30px 30px;
        
        align-items: center;
    }
    .cookie-overlay > div > div > div{
        flex-direction: row;
        justify-content: start;
        gap: 2em;
    }
}
.language-switcher__toggle a{
    display: flex;
    align-items: center;
}
.language-switcher__toggle img{

    margin-right: 10px;
	width: 24px;
}
.language-switcher h2{
    font-size: 20px;
}
 .language-switcher > div > div{
    gap: 2em;
 }
.language-switcher__buttons{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.language-switcher__buttons a{
    background: transparent;
    border: 1px solid var(--black);
    border-radius: 30px;
    font-size: 14px;
    font-family: "Jura", serif;
   
    font-weight: 600;
    color: var(--black);

    position: relative;
    width: 150px; /* фіксована ширина */
    padding: 9px 21px 9px 15px;
    

    text-align: left;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
}
.language-switcher__buttons a img{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}
@media only screen and (min-width: 64em) {
    .language-switcher h2{
        font-size: 50px;
    }
    .language-switcher > div > div{
        gap: 4em;
    }
    .language-switcher__buttons{
        flex-direction: row;
        padding: 20px; 


    }
    .language-switcher__buttons a{
        padding: 11px 35px 11px 15px;
    }   
    .language-switcher > div > div{
        padding: 80px 230px;
 
    }
   
}








.ellipse-background-wrapper{
    position: relative;
}
.ellipse-background{
    /* width: 100%;
    height: 100%; */
    position: absolute;
    z-index: -1;
}
.ellipse-left{
    left: 0;
    margin-top: 2em;
}
.ellipse-right{
    right: 0;
    margin-top: -23em;
}
@media only screen and (min-width: 64em) {
    .ellipse-left{
        left: 0;
        margin-top: -3em;
    }
    .ellipse-right{
        right: 0;
        margin-top: -31em;
    }
   
}

.layer-blur-wrapper{
    overflow-x: clip;
}
.layer-blur-white{
    
    height: 30em;
    width: 160%;
    background-color: #fff;
    filter: blur(151px);
    margin-left: -30%;
}
.layer-blur-blue{
    /* padding-top: 10em; */
    /* padding-bottom: 10em; */
    width: 160%;
    height: 15em;
    background-color: var(--blue);
    filter: blur(151px);
    margin-left: -30%;
}
/* .post-content-section{
    overflow-x: clip;
} */
/* .post-content-wrapper-container::before{
    content: "";
    display: block;
    height: 30em;
    width: 160%;
    background-color: var(--blue);
    filter: blur(151px);
    margin-left: -30%;
}
*/
/* .post-content-wrapper::before{
    content: "";
    display: block;
    height: 30em;
    width: 160%;
    background-color: var(--white);
    filter: blur(151px);
    margin-left: -30%;
}  */

.grecaptcha-badge{
	display:none !important;
}
.d-block{
    opacity: 1;
    visibility: visible;
}