@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");

/* --red: #c71a13; */
:root {
  --white: #ffffff;
  --red: #5898fc;
  --background: #1c1c1c;
  --productDescription: #c7c7c7;
  --productTitleBackground: #2b2b2b;
  --productText: #464646;
  --productButton: #02b5be;
  --footerText: #9e9e9e;
  --footerCopyRight: #626262;
  --borderRadiusButtons: 8px;
  --footerBackground: #131313;
  --footerBreakLine: #707070;
  --servicesBorder: #ffb1b4;
  --descriptionText: #dcdcdc;
}
a:hover{
  color:inherit;
}
* *::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  border: 0 solid transparent;
  font-family: "Roboto", sans-serif;
}
/* prevent iOS font size change */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
/* reset body line-height */
body {
  width: 100%;
  min-height: 100vh;
  line-height: 1;
  text-rendering: optimizeSpeed;
}
/* all media elements set to block and full width */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}
/* inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  line-height: inherit;
  color: inherit;
}
/* No bullets points */
li {
  list-style: none;
}
/* No underline and color */
a {
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
}

/* General css - reusable */

/* Header start */
.header_home {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

header {
  background-color: var(--background);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
}

header.sticky {
  background-color: rgba(0, 0, 0, 0.6);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding-bottom: 45px;*/
  /*padding-right: 38px;*/
  /*padding-left: 40px;*/
  /*padding-top: 45px;*/
    padding: 13px 38px 13px 45px;
}

.navbar_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 0px;
}

.navbar_link {
  color: var(--white);
  font-size: 16px;
  line-height: 19px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  transition: -webkit-transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
}

/* .links:after {
  content: "";
  position: absolute;
  background-color: var(--white);
  height: 3px;
  width: 0;
  left: 0;
  bottom: -7px;
  
}

.links:hover:after {
  width: 100%;
} */

.links::before {
  transition: 300ms;
  height: 1px;
  content: "";
  position: absolute;
  background-color: white;
  width: 0%;
  bottom: -1px;
}

.active {
  border-bottom-width: 1px;
  border-bottom-color: white;
  transition: 0.3s;
}

.links:hover::before {
  width: 100%;
}

.nav-scrolled {
  --text: #333;
  --text-inverse: #f4f4f4;
  --background: #f4f4f4;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}
/* Header end */

.title {
  font-family: "Jost", "sans-serif";
  font-size: 36px;
  line-height: 52px;
  font-weight: 700;
  margin-bottom: 22px;
}

.smalldescription, .smalldescription > * {
  max-width: 735px;
  font-family: "Jost", "sans-serif";
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.description_container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 52px;
}
.description_text {
  max-width: unset;
  font-family: "Roboto", "sans-serif";
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--descriptionText);
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.description_text > *{
  width: 46%;
}

/* Footer start */


.footer {
  width: 100%;
  min-height: 300px;
  background: var(--footerBackground);
  padding-top: 96px;
  padding-bottom: 31px;
  position: relative;
}

.footer_topside {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer_breaklike.mobile {
  display: none;
}

.footer_container {
  padding-left: 50px;
  padding-right: 50px;
  max-width: 1421px;
  /* height: 100%; */
  margin: 0 auto;
}

.footer_topside_title {
  color: var(--white);
  font-size: 16px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

.footer_topside_title_underline {
  width: 61px;
  height: 1px;
  background-color: var(--red);
  margin-top: 10px;
  margin-bottom: 27px;
}

.footer_topside_contact_container {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.footer_contact_image {
  margin-right: 25px;
}

.footer_contact_text {
  max-width: 300px;
  color: var(--footerText);
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.footer_text {
  max-width: 300px;
  color: var(--footerText);
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 25px;
}

.footer_breaklike {
  width: 100%;
  height: 1px;
  background-color: var(--footerBreakLine);
  margin-bottom: 19.5px;
  margin-top: 39px;
}


.footer_botside {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_botside_logo {
  width: 250px;
  height: 91.66px;
  object-fit: contain;
}

.footer_botside_socialmedia {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 31px;
  column-gap: 30px;
}

.footer_botside_socialmedia_logo {
  height: 22px;
  /* margin-left: 40px; */
  cursor: pointer;
  z-index: 1;
}

.footer_botside_socialmedia_logo:hover {
  transform: translateY(-1px);
  transition: 0.3s;
}

.footer_copyright {
  color: var(--footerCopyRight);
  margin-bottom: -10px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.footer_copyright-link {
    text-decoration: underline;
}

a.footer_copyright.mobile {
  display: none;
}

.footer_background_image {
  position: absolute;
  right: 0;
  bottom: 0;
  /* z-index: 1; */
}
/* Footer end */

main {
  position: relative;
}
.GoToTop {
  position: fixed;
  /*right: 58px;*/
  /*bottom: 36px;*/
  right: 25px;
  bottom: 105px;
  z-index: 1000;
  background: none;
  outline: none;
  display: none;
}

.backgroundtop {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom,8px);
  top: var(--swiper-pagination-top,auto);
  left: 0;
  width: 100%;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px);
}
.swiper-pagination-bullet {
  width: 16px !important;
  height: 16px !important;
  background: transparent !important;
  border: 3px solid var(--white) !important;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap,8px) !important;
  margin-bottom: 40px !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--white) !important;
}

.swiper, swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
p{
  margin-top: 0px;
  margin-bottom: 0px;
}
.openContent{
  display: block;
  line-height: 20px;
}
.opacity0{
  visibility: hidden;
}

.mobile-menu-continer {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
.hamburger_icons {
  display: none;
}

.nav_hamburger_container {
  position: absolute;
  right: 25px;
  display: none;
  cursor: pointer;
}

.nav_hamburger {
  position: relative;
  display: none;
}

.hamburger2 {
  position: absolute;
  bottom: -14px;
  right: -1.5px;
}

button.nav_hamburger_mobile {
  display: none;
  background-color: transparent;
  border: none;
  transition: 0.4s;
}

.links {
  padding-bottom: 5px;
  left: 0;
}

.links::before {
  transition: 300ms;
  height: 1px;
  content: "";
  position: absolute;
  background-color: white;
  width: 0%;
  bottom: -1px;
}

.active {
  border-bottom-width: 1px;
  border-bottom-color: white;
  transition: 0.3s;
}

.links:hover::before {
  width: 100%;
}

.nav-scrolled {
  --text: #333;
  --text-inverse: #f4f4f4;
  --background: #f4f4f4;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.mobile_nav {
  display: none;
}

.info_mobile{
  display: none;
}
.google-maps{
  height: 425px;
}
.footerCat{
  cursor: pointer;
}
@media only screen and (max-width: 1000px) {
  .GoToTop {
    right: 25px;
  }
}
@media only screen and (max-width: 910px) {
  .title {
    font-size: 24px;
    line-height: 35px;
  }

  .smalldescription, .smalldescription > * {
    font-size: 16px;
  }

  .description_text {
    width: 100%;
    flex-direction: column;
    row-gap: 15px
  }
  .description_text > * {
    width: 100%;
}
}
@media only screen and (max-width: 900px) {
 .footer_copyright-link.descktop {
        display: none;
    }
    
    a.footer_copyright.mobile {
        display: block !important;
    }
  .swiper-pagination-bullet {
    width: 18px !important;
    height: 18px !important;
  }

  .backgroundtop {
    display: none;
  }

  .nav_logo {
    width: 175px !important;
    height: 50px;
  }

  .navbar_links {
    position: fixed;
    right: 100%;
    top: 0;
    padding-top: 140px;
    flex-direction: column;
    width: 100%;
    background-color: var(--background);
    height: 220px;
  }

  .navbar {
    padding-left: 25px;
    padding-right: 25px;
  }

  
  .mobile-menu-continer {
    display: flex;
  }
  .hamburger_icons {
    display: block;
  }

  button.nav_hamburger {
    display: block;
    background-color: transparent;
    cursor: pointer;
    margin-bottom: 20px;
  }

  button.nav_hamburger.active {
    display: none;
  }

  button.nav_hamburger_mobile.active {
    display: block;
  }

  .description_container {
    flex-direction: column;
  }

  
  /* Mobile links */
  .mobile_nav {
    background-color: var(--background);
    position: fixed;
    left: 100%;
    top: 0;
    z-index: -1;
    width: 100%;
    /* height: calc(100vh - 140px); */
    height: calc(100vh - 60px);
    padding-top: 140px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 40px;
    padding-left: 25px;
    padding-right: 25px;
    transition: 0.5s all;
  }

  .navbar_links_mobile {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0px;
  }

  .mobile_link {
    margin-bottom: 31px;
  }

  .mobile_nav.active {
    left: 0;
  }

  /* Footer */
  .footer {
    background: var(--background);
    padding-top: 50px;
  }

  .footer_topside {
    display: none;
  }
  .footer_botside {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
  }

  .footer_botside_socialmedia {
    justify-content: center;
    column-gap: 20px;
  }

  .footer_breaklike.desktop {
    display: none;
  }
  .footer_breaklike.mobile {
    display: block;
  }
  .footer_copyright {
    text-align: center;
  }
  .info_mobile {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    align-items: center;
  }
  .footer_botside_rightside{
    width: 100%;
  }
  .footer_container {
    padding-left: 0px;
    padding-right: 0px;
}

  .footer_background_image {
    display: none;
  }
  .footer_botside_logo {
    width: 150px;
    height: auto;
    margin-bottom: 19px;
  }
}
.openContent *{
  font-weight: 300 !important;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: transparent !important;
  border-radius: 0px;
}
.overlay .icon {
  color: white !important;
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  background-color: transparent !important;
}
.allPhotosGallery .photo-gallery:hover .overlay {
  opacity: 1;
}
.allPhotosGallery .photo-gallery{
  position: relative;
  width: calc(50% - 95px);
}
.fa-search:before {
  content: "" !important;
  width: 80px;
  height: 80px;
  background-image: url("../images/zoom.svg") ;
  background-size: contain;
  display: block;
}
/*.swiper-wrapper {*/
/*    justify-content: center;*/
/*}*/
.allPhotosGallery .swiper-wrapper{
  max-height: 450px;
  height: 100%
}
.allPhotosGallery .swiper-wrapper img{
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.allPhotosGallery .swiper-pagination-bullet {
  width: 16px !important;
  height: 16px !important;
}
.navbar_link.item.lang {
  position: relative;
}
.lang-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  z-index: 99;
  display: none;
}
.navbar_link.item.lang .lang_dropdown-wrapper {
  position: absolute;
  top: 30px;
  right: 0;
    width: 178px;
  background-color: var(--white);
  padding: 10px 0px;
  border-radius: var(--borderRadiusButtons);
  display: none;
  z-index: 100;
}
.links-img {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.lang_dropdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lang_dropdown-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: var(--bs-font-sans-serif);
  color: #000;
  padding: 5px 20px;
  gap: 6px;
}
.lang_dropdown-item:hover {
  color: #000;
  opacity: 80%;
  background-color: #dcdcdc;
}

.lang_dropdown-item.active {
  background-color: #dcdcdc;
}
.lang-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.lang-icon-ro {
  background: url('../images/ro-flag.svg') center no-repeat;
}
.lang-icon-en {
  background: url('../images/en-flag.svg') center no-repeat;
}
.lang-icon-fr {
  background: url('../images/fr-flag.svg') center no-repeat;
}
.lang-icon-de {
  background: url('../images/de-flag.svg') center no-repeat;
}
.lang-icon-bg {
  background: url('../images/bg-flag.svg') center no-repeat;
}
.lang-icon-hu {
  background: url('../images/hu-flag.svg') center no-repeat;
}
.lang-icon-it {
  background: url('../images/it-flag.svg') center no-repeat;
}


.navbar_link.item.cat {
  position: relative;
}
.navbar_link.item.cat .cat_dropdown-wrapper {
  position: absolute;
  top: 30px;
  right: 0;
  background-color: var(--white);
  padding: 10px 0px;
  border-radius: var(--borderRadiusButtons);
  display: none;
  z-index: 100;
}
.links-img {
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin-left: auto;
}
.cat_dropdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cat_dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-family: var(--bs-font-sans-serif);
  color: #000;
  padding: 5px 20px;
  gap: 6px;
}
.cat_dropdown-item:hover {
  color: #000;
  opacity: 80%;
  background-color: #dcdcdc;
}
.cat_download-img {
  background: url('../images/download-img.svg') center no-repeat;
  filter: invert(68%) sepia(45%) saturate(5483%) hue-rotate(194deg) brightness(99%) contrast(101%);
  width: 30px;
  height: 30px;
}
.cat_text {
  font-size: 12px;
  font-family: var(--bs-font-sans-serif);
  color: #000;
  text-wrap: nowrap;
}
.recentArticlesContainer{
    display: flex;
    column-gap: 30px;
}
.recentArticlesContainerLeft{
    width:calc(50% - 30px);
}
.recentArticlesContainerRight{
    width: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.recentBig img{
    height: 465px;
    width: 100%;
    object-fit: contain;
    background: white;
    border-radius: 5px;
}
.recentCreated{
    font-size: 14px;
    color: #DCDCDC;
    margin-top: 17px;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.recentTitle{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #F7F7F7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.recentDescription{
    color: #F7F7F7;
    font-size: 16px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 22px;
}
.recentArticle img{
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: white;
    border-radius: 5px;
}
.recentArticlesContainerRight .recentArticle{
    display: flex;
    column-gap: 30px;
}
.recentArticlesContainerRight .recentText{
    display: flex;
    flex-direction: column;
}
.recentArticlesContainerRight .recentTitle{
    margin-top: 0px;
    font-size: 18px;
    margin-bottom: 0px;
}
.recentArticlesContainerRight .recentDescription{
    margin-top: auto;
    -webkit-line-clamp: 3;
}
.articlesTitle {
    font-size: 36px;
    font-family: 'Jost';
    font-weight: 700;
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    align-items: center;
}
.articlesTitle a{
    font-size: 16px;
    font-weight: 300;   
}
.recentArticles{
    margin-bottom: 50px;
}
.categoryArticles{
    display: flex;
    column-gap: 50px;
    flex-wrap: wrap;
    row-gap: 50px;
}
.blogCategory{
    width: calc(33.33% - 35px);
}
.blogCategory img{
    height: 370px;
    /*object-fit: cover;*/
    object-fit: contain;
    background: white;
    border-radius: 5px;
    width: 100%;
}
.containerCategory{
    margin-bottom: 50px;
}
.recentArticle > a:has(img){
    display: inline-flex;
    flex-shrink: 0;
    max-width: 225px;
    width: 100%;
}
.sliderBlog{
    height: 610px;
    padding-bottom: 50px;
}
.sliderBlog .swiper-pagination{
    bottom: -35px;
}
.sliderBlog .body_section{
    background: unset !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    display: flex;
    align-items: center;
    height: 100%;
}
.sliderBlog .hero_title{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
.sliderBlog .hero_description{
    font-size: 18px;
    line-height: 28px;
    max-width: 735px;
    margin-bottom: 0px;
}
.bannerBlog{
    height: 600px;
    object-fit: contain;
    width: 100%;
    margin-bottom: 30px;
    background: white;
}
.blogSingleContainer h1{
    font-size: 36px;
    font-weight: 700;
    font-family: 'Jost';
    margin-bottom: 35px;
}
.lastAndCategories{
    width: 32%;
}
.lastArticlesBlog.recentArticlesContainerRight{
    width: 100%;
}
.contentAndCategories{
    display: flex;
    column-gap: 35px;
    margin-bottom: 45px;
}
.blogContent{
    width: calc(68% - 35px);
}
.blogContent > *{
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 22px;
    font-weight: 300;
}
.lastAndCategories .recentArticle img {
    height: 120px;
}
.lastAndCategories .recentArticle > a:has(img) {
    max-width: 180px;
}
.categoriesBlog{
    margin-top: 30px;
}
.lastArticlesBlogTitle{
    margin-bottom: 23px;
    font-family: 'Jost';
    font-size: 24px;
    font-weight: 700;
}
.listCategories{
    display: flex;
    flex-direction: column;
}
.listCategories a{
    padding: 16px 20px;
    border-bottom: 1px solid #707070;
    font-size: 24px;
    font-family: 'Jost';
}
.categoriesBlog .lastArticlesBlogTitle{
    margin-bottom: 7px;
}
.desktopHidden{
    display:none;
}
.recentDescription img{
    display:none;
}
.blogContent p:has(img){
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
}
.blogContent img{
    background: white;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.sliderBlog .swiper-slide{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: black;
}

@media only screen and (max-width: 1024px) {
  .ourcompany_topside_description_text{
    flex-direction: column;
  }
  .ourcompany_topside_description_text > * {
    width: 100%;
  }
  .ourcompany_presentation_title {
    font-size: 20px;
    line-height: 30px;
  }
  .sliderBlog .hero_title {
    font-size: 24px;
  }
  .sliderBlog .hero_description {
    font-size: 16px;
 }
 .articlesTitle {
    font-size: 24px;
    margin-bottom: 17px;
 }
 .recentArticlesContainer{
     flex-direction: column;
 }
 .recentArticlesContainerLeft {
    width: 100%;
    margin-bottom: 35px;
 }
 .recentBig img {
    height: 235px;
 }
 .mobileHidden{
     display: none;
 }
 .desktopHidden{
     display:block;
 }
 .recentTitle {
    font-size: 18px;
    margin-top: 20px;
 }
 .recentArticle img {
    height: 116px;
 }
 .recentArticle > a:has(img){
     max-width: 165px;
 }
 .recentArticlesContainerRight{
     width: 100%;
     row-gap: 20px
 }
 .recentTitle{
    -webkit-line-clamp: 5;
 }
 .recentArticlesContainerRight .recentTitle{
     font-size: 16px;
 }
 .recentArticlesContainerRight .recentArticle {
    column-gap: 10px;
    align-items: center;
    border-bottom: 1px solid #F7F7F7;
    padding-bottom: 20px;
 }
 .recentArticlesContainerRight .recentArticle:last-of-type{
    border-bottom: unset;
    padding-bottom: 0px;
 }
 .recentCreated {
    margin-top: 12px;
    margin-bottom: 9px;
 }
 .blogCategory {
    width: 100%;
    border-bottom: 1px solid #F7F7F7;
    padding-bottom: 20px;
 }
 .categoryArticles .recentTitle{
    font-size: 20px;
    line-height: 24px;
    margin-top: 0px;
 }
 .categoryArticles{
    flex-direction: column;
    row-gap: 20px;
    margin-top: 30px;
 }
 .butonVezi {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    height: 50px;
    font-size: 16px;
    font-family: 'Jost';
    font-weight: 500;
    margin-top: 35px;
 }
 .containerCategory{
     margin-bottom: 40px;
 }
 .containerCategory:last-of-type{
     margin-bottom: 0px;
 }
 .bannerBlog{
     height: 375px;
     margin-bottom: 12px;
 }
 .blogSingleContainer h1 {
    font-size: 20px;
    margin-bottom: 15px;
 }
 .contentAndCategories{
     flex-direction: column;
 }
 .contentAndCategories > div{
     width: 100%;
 }
 .blogContent .recentCreated{
    margin-top: 25px;
    margin-bottom: 30px;
 }
 .categoriesBlog {
    margin-top: 40px;
 }
 .listCategories a {
    font-size: 18px;
 }
 .categoriesBlog .lastArticlesBlogTitle {
    margin-bottom: 14px;
 }
 .sliderBlog .swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
 }
 .sliderBlog{
    height: 330px;
 }
 .sliderBlog .body_section{
    min-height: 330px;
 }
 .sliderBlog .slide{
     display:none;
 }
}
@media only screen and (max-width: 500px) {
  .navbar {
    padding-left: 15px;
    padding-right: 15px;
  }
  .mobile-menu-continer {
    gap: 20px;
  }
/*.navbar_link.item.lang .lang_dropdown-wrapper {*/
/*    right: -35px;*/
/*}*/
}
