body {
  position: relative;
}

.scroll {
  padding: 2rem 12% 2rem 12% !important;
  margin-top: 0rem !important;
}
@media screen and (max-width: 1300px) {
  .scroll {
    padding: 2rem 5% 2rem 5% !important;
  }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    padding: 2rem 10% 2rem 10%;
    background-color: white;
    position: fixed;
    height: 8rem;
    top: 0;
    width: 100%;
    transition: all 0.2s;
    border-bottom: 2px solid #edecec;
}
@media screen and (max-width: 1300px) {
  .navbar {
    align-items: center;
    padding: 2rem 3% 2rem 3%;
  }
}
@media screen and (max-width: 900px) {
  .navbar {
    display: none;
  }
}
.navbar_logo img {
  height: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
    width: 100%;
}
.navbar_list {
  transition: all 0.2s;
}
.navbar_list > * {
    font-family: inherit;
    text-decoration: none;
    color: #002093;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 0 0 0.5rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
    /*text-transform: uppercase;*/
}
.navbar_list > *:not(:last-child){
  margin-right: 2.5rem;
}
.navbar_list > *:hover {
    border-bottom: 1px solid #002093;
}
@media screen and (max-width: 900px) {
  .navbar_logo img {
    height: 6rem;
  }
  .navbar_list{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .navbar_list > *:not(:last-child){
    margin-right: 0rem;
  }
}

.navbar_social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.navbar_social_link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/*.navbar_social_link a{*/
/*    color: #c72777;*/
/*}*/
.navbar_social_link > *:not(:last-child) {
  margin-right: 0.9rem;
}
.navbar_social_link svg {
  width: 1.6rem;
  height: 1.6rem;
  color: #0047bb;
  transition: all 0.2s;
}
.navbar_social_link svg:hover {
  transform: translateY(-3px);
}
.navbar_social_lang {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #0047bb;
  margin-left: 2rem;
  margin-top: 0.5rem;
}
.navbar_social_lang a{
    text-decoration: none;
    color: inherit;
}
.navbar_social_lang > * {
  margin-right: 0.7rem;
  transition: all 0.2s;
  cursor: pointer;
  color: #0047bb;
}
.navbar_social_lang > *:hover {
  font-weight: bold;
}
.navbar_social_lang_ro, .navbar_social_lang_en {
  display: flex;
  align-items: center;
}
.navbar_social_lang_ro img, .navbar_social_lang_en img {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 0.3rem;
}
@media screen and (max-width: 900px) {
  .navbar_social_lang_ro img, .navbar_social_lang_en img {
    height: 3rem;
    width: 3rem;
  }
}
.navbar_mobile {
  display: none;
}
@media screen and (max-width: 900px) {
  .navbar_mobile {
    position: fixed;
    top: 0;
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 4% 3.5rem 4%;
    z-index: 100;
    background-color: #ffffff;
  }
}
.navbar_mobile_open {
  width: 5rem;
  height: 5rem;
  color: #0047bb;
  cursor: pointer;
  z-index: 4;
}
@media screen and (max-width: 500px) {
  .navbar_mobile_open {
    font-size: 7rem;
  }
}
@media screen and (max-width: 400px) {
  .navbar_mobile_open {
    font-size: 6rem;
  }
}
.navbar_mobile_close {
  display: none;
  width: 5rem;
  height: 5rem;
  color: #ffffff;
  cursor: pointer;
  z-index: 4;
}
@media screen and (max-width: 500px) {
  .navbar_mobile_close {
    font-size: 7rem;
  }
}
@media screen and (max-width: 400px) {
  .navbar_mobile_close {
    font-size: 6rem;
  }
}
.navbar_mobile_content {
  position: fixed;
  top: 0;
  right: -100%;
  background-color: #0047bb;
  height: 100%;
  width: 70%;
  z-index: 3;
  color: #ffffff !important;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navbar_mobile_content > * {
  margin-bottom: 2rem;
}
.navbar_mobile_content_list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar_mobile_content_list > * {
  margin-bottom: 1rem;
  font-size: 2rem;
}
.navbar_mobile_content a {
  color: #ffffff;
  text-decoration: none;
}
.navbar_mobile_content_social_link {
  font-size: 3rem;
}
.navbar_mobile_content_social_link > *:not(:last-child) {
  margin-right: 1rem;
}
.navbar_mobile_content_social_lang {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  font-size: 2rem;
}
.navbar_mobile_content_social_lang > *:not(:last-child) {
  margin-right: 1rem;
}

.active {
  font-weight: bold;
}

.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0047bb;
  height: auto;
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem 1rem 2rem;
  transition: all 0.2s;
  z-index: 999 !important;
}
@media screen and (max-width: 1000px) {
  .cookie {
    flex-direction: column;
    height: auto;
    align-items: flex-start;
      font-size: 1.8rem;
  }
}
.cookie_btns {
  display: flex;
  align-items: flex-end;
  margin-left: 5rem;
}
@media screen and (max-width: 1000px) {
  .cookie_btns {
    margin-left: 0rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
      font-size: 1.8rem;
  }
}
.cookie_btns_accept {
  background-color: transparent;
  color: #ffffff;
  padding: 1rem;
  border: 2px solid #ffffff;
  font-size: 1.4rem;
  word-wrap: none;
}
.cookie_btns_read {
  background-color: transparent;
  color: rgb(204, 204, 204);
  text-decoration: underline;
  border: none;
  font-size: 1.2rem;
  padding: 1rem;
}

.cookie_btns > * {
  cursor: pointer;
  margin-right: 1rem;
}

@media screen  and (max-width: 1000px) {
    .cookie_btns_read {
        font-size: 1.8rem;
    }
}

.footer {
  padding: 2rem 12% 2rem 12%;
  background-color: #02165b;
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.5fr;
  color: #ffffff;
  font-size: 1.4rem;
}
@media screen and (max-width: 1300px) {
  .footer {
    padding: 2rem 5% 2rem 5%;
  }
}
@media screen and (max-width: 700px) {
  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    font-size: 1.5rem;
  }
  .footer a {
    padding: .85rem 0;
  }
  .footer_contact_social a svg{
    width: 2rem;
    height: 2rem;
  }
  .footer_contact_social a{
    padding: 0 .5rem;
  }
  .footer_anaf img{
    width: 160px;
    height: 40px;
  }
}
.footer a {
  color: #ffffff;
  transition: all 0.2s;
  margin-bottom: 0.5rem;
}
.footer a:hover {
  text-decoration: none;
}
@media screen and (max-width: 700px) {
  .footer_copyright {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
.footer_anaf{
    padding-top: 1rem;
}
.footer_terms, .footer_contact {
  display: flex;
  flex-direction: column;
}
.footer_terms a, .footer_contact a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.footer_contact_link {
  display: flex;
  flex-direction: column;
}
.footer_contact_social {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 700px) {
  .footer_contact_social {
    margin-right: 1rem;
  }
}
.footer_contact_social > * {
  margin-right: 1rem;
}
.footer_contact_social > * svg {
  width: 1.6rem;
  height: 1.6rem;
  transition: all 0.2s;
}
.footer_contact_social > * svg:hover {
  transform: translateY(3px);
}


.filtre{
  display: none;
}
.filtre_content{
  border-bottom: none !important;
}


.herosection{
  display: grid;
  grid-template-columns: 40% auto;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0 4rem 0;
  margin-bottom: 4rem;
  border-bottom: 2px solid #edecec;
    color: #060606;
    font-size: 2rem;
}
.herosection .herosection_text_title{
    font-size: 4rem;
    line-height: 5rem;
}
.herosection_text_title{
  line-height: 40px;
  color: #060606;
}
.contact_hero{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}
.contact_hero .phone{
    line-height: 5rem;
    font-size: 1.8rem;
    color: #002093;
}
.contact_hero .phone:hover{
    color: #002093;
}
.herosection_img img{
  width: 100%;
    max-width: 650px;
}

.herosection_text{
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.herosection_text_btn, .pink_btn{
    color: #ffffff;
    padding: 1.5rem 4rem 1.5rem 4rem;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 5px;
    width: max-content;
    text-decoration: none;
    text-transform: uppercase;
    /*make color gradient  + shadow*/
    background: linear-gradient(to bottom, #c72777, #b12a6e);
    box-shadow: 2px 3px 8px -4px #720f42;
}
.herosection_text_btn:hover, .pink_btn:hover {
    background: linear-gradient(to bottom, #e54f9a, #e54f9a);
    box-shadow: 2px 3px 8px -4px #720f42;
}


.content_servies{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
    margin-top: 6rem;
    margin-bottom: 8rem;
    color: #060606;
}
.content_servies h2{
    font-size: 3rem;
    color: #060606;
}
.content_servies p{
    font-size: 1.8rem;
}
.content_servies h3{
    font-size: 2.2rem;
    color: #060606;
}

.content_servies_icon{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.content_servies_icon_box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;

}

.content_servies_icon_box img{
   max-width: 160px;
}

.text-roz{
    color: #c12775;
    font-weight: bold;
    font-size:1.4rem;
}


@media screen and (max-width:800px){
    .contact_hero{
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
  .herosection{
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0rem 0 4rem 0;
  }
  .herosection_text{
    align-items: center;
    justify-content: center;
    text-align: center;
      order: 2;
  }
  .herosection_img{
    order: 1;
      text-align: center;
  }
    .content_servies{
        grid-template-columns: 1fr;
        align-items: center;
        text-align: center;
    }
    .content_servies_icon_box{
        align-items: center;
    }
}

.content_desc_text_home.withbottombar{
    padding-top:0;
    padding-bottom: 6rem;
    margin-bottom: 6rem;
    border-bottom: 2px solid #edecec;
}

@media screen and (max-width:500px){
  .filtre{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-bottom: none !important;
  }
  .filtre svg{
    width: 2rem;
    height: 2rem;
  }

  .filtre_content{
    border-bottom: none !important;
    display: none !important;
  }
  .filtre_content_active{
    display: flex !important;
  }
  .filtre_svg_active{
    transform: rotate(90deg);
  }
}
