html, body {
  overflow-x: hidden;
}
img.gray {
 -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
}

img.gray:hover {
filter: none;
}

.logo-black {
        filter: brightness(0) invert(0);
}

.image-container { 
    width: 80px;
    height:80px;
    text-align:left;
}

.image-container img {
    height:100%;
}
/**
 * Enable smooth scrolling on the whole document
 */
html {
  scroll-behavior: smooth;
}


/* scroll bar css edit */
body::-webkit-scrollbar {
    background-color: #fff;
    width: 10px;
}

/* background of the scrollbar except button or resizer */
body::-webkit-scrollbar-track {
    background-color: #fff;
}

/* scrollbar itself */
body::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 16px;
    border: 1px solid #fff;
}

/* set button(top and bottom of the scrollbar) */
body::-webkit-scrollbar-button {
    display:none;
}


/**
 * Disable smooth scrolling when users have prefers-reduced-motion enabled
 */
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/**
 * Add .section to every anchored element for scroll margin
 */
.section {
  scroll-margin-top: 2rem;
}

/* Header */
.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 3rem;
  text-decoration: none;
}

#header-nav.fixed-top {
    position: fixed;
    background: #f4f6f8!important;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

@media (min-width: 48em) {
  .site-title {
    float: left;
  }
}
a:link { 
text-decoration: none; 
}


.nav-link {
  width: fit-content;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8) !important;
  line-height: 1rem;
  padding-bottom: 15px;
  text-decoration: none;
}

.social-nav .nav-link {
  padding: 0 0.5rem;
  font-size: 1.1rem;
  line-height: 1.5rem;
}


.other-link {
  width: fit-content;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8) !important;
  line-height: 1rem;
  padding-bottom: 3px;
  text-decoration: none;
}

.social-nav .other-link {
  padding: 0 0.5rem;
  font-size: 1.1rem;
  line-height: 1.5rem;
}


.nav-link:hover,
.nav-link:focus,
.active .nav-link {
}


/* Hero (intro) section */
.intro-title {
  font-weight: 800;
}

@-webkit-keyframes animateWave {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes animateWave {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

.wave-bg {
  display: block;
  height: 320px;
  width: 100%;
  min-width: 600px;
  transform-origin: top;
  -webkit-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  background-image: url("../images/wave-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.wave-bg-2 {
  display: block;
  height: 30px;
  width: 100%;
  min-width: 600px;
  transform-origin: top;
  -webkit-animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: animateWave 2000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  background-image: url("../images/wave-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
}

img.avatar {
  border-radius: 30px;
}

/* Masonary grid for portfolio */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* Grid Item */
.grid-sizer,
.grid-item {
  width: 100%;
}

.grid-item {
  padding-bottom: 12px;
}

@media (min-width: 48em) {
  .grid-sizer,
  .grid-item {
    width: 25%;
  }
  .grid-item {
    float: left;
    padding: 6px;
  }
}

.grid-item img {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* Portfolio */
.portolio-section .container {
  padding: 0;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0;
}

.portfolio-item figcaption {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.35s;
  transform: translate3d(0, 100%, 0);
}

.portfolio-item figcaption h4 {
  color: #222;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 3px;
}

.portfolio-item figcaption p {
  color: #444;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0;
}

.portfolio-item:hover figcaption {
  transform: translate3d(0, 0, 0);
}

/* Portolio Caption */
#bp_container .bp-xc {
  background: #F6E05E !important;
}

#bp_caption a {
  text-decoration: none;
}

/* Footer section */
footer a:not(.nav-link) {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* Scroll Top */
#scrolltop {
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s ease-in;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#scrolltop .btn {
  padding: 3px 11px;
  border-radius: 50%;
}

/* Additional utility styles */
.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
}

.container-custom {
  max-width: 1295px;
  margin: 0 auto;

}


.text-small {
  font-size: 0.875rem;
}

.text-uppercase {
  letter-spacing: 0.05em;
}

.hover-effect {
  transition: transform .18s ease-in-out;
}

.hover-effect:hover {
  transform: translateY(-2px);
}

.marker {
  position: relative;
  display: inline;
  width: auto;
}

.marker-center {
  padding-right: 0;
}

.marker:after {
  content: "";
  width: 125px;
  height: 30px;
  position: absolute;
  bottom: -25px;
  right: -30px;
  background-image: url("../images/marker.svg");
  background-repeat: no-repeat;
}

.marker-center:after {
  bottom: -30px;
  left: 50%;
  margin-left: -60px;
}


.footertext:after {
  display:block;
  content:" ";
  width: 50px;
  height: 2px;
  background: #f6e05e;
  margin-top: 5px;
}

.line:after {
  display:block;
  content:" ";
  width: 50px;
  height: 2px;
  background: #f6e05e;
  margin-top: 5px;



}

.bg-black {
  background: #343a40;
}

.btn-link {
  display:block;

}

.btn-link:hover {
  color: #212529 !important;
}

@media (max-width: 575.98px) {
  .marker {
    padding-right: 0;
  }
  .marker:after {
    bottom: -30px;
    left: 50%;
    margin-left: -60px;
  }
}

.entry-title a {
  text-decoration: none;
}


/* BORDERS */

.vertical-1 {
margin-top: 0;
margin-bottom: 1rem;
font-weight: 700;
border-left: thick solid #f6e05e;
font-size: 1.7rem;
line-height: 1.3;
padding-top: 10px;
padding-bottom: 10px;
position: relative;
padding-right: 20px;
padding-left: 20px;
}

.vertical-2 {
margin-top: 0;
margin-bottom: 1rem;
font-weight: 700;
border-left: thick solid #423F69;
font-size: 1.7rem;
line-height: 1.3;
padding-top: 10px;
padding-bottom: 10px;
position: relative;
padding-right: 20px;
padding-left: 20px;
}

.vertical-soft-1 {
margin-top: 0;
margin-bottom: 1rem;
border-left: thick solid #f6e05e;
line-height: 1.3;
padding-top: 10px;
padding-bottom: 10px;
position: relative;
padding-right: 20px;
padding-left: 20px;
}

.vertical-soft-2 {
margin-top: 0;
margin-bottom: 1rem;
border-left: thick solid #e16967;
line-height: 1.3;
padding-top: 10px;
padding-bottom: 10px;
position: relative;
padding-right: 20px;
padding-left: 20px;
}

.border-bottom-black {
border-bottom: thin solid #343a40 !important;
}

.border-bottom {
border-bottom: thin solid #e16967 !important;
}

.border-left {
border-left: thin solid #e16967 !important;
}

.border-right {
border-right: thin solid #e16967 !important;
}

.border-top {
border-top: thin solid #e16967 !important;
}

.underline {
  display: inline-block;
  width: fit-content;
}

.underline::after {
  content: '';
  width: 0px;
  height: 2px;
  display: block;
  background: #f6e05e;
  transition: 300ms;
}

.underline:hover::after {
  width: 100%;
}

/* Shadows */
.shadow-1 {
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.shadow-2 {
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.shadow-3 {
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.shadow-4 {
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.shadow-5 {
box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}
.shadow-6 {
box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

hr.hr-1 {
  border: none;
  height: 3px;
  background-image: linear-gradient(to right, #f0f0f0, #8f8f8f, #f0f0f0);
}
hr.hr-1::after {
  content: 'x';
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  transform-origin: 50% 50%;
  padding: 1rem;
  background-color: white;
}

hr.slim {
  margin: 0;
  border: 0;
  height: 1px;
  margin-left: 40px;
  margin-right: 40px;
  background: #333; /* Chrome,Safari4+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#34495e), color-stop(10%,#34495e), color-stop(10%,#207cca), color-stop(24%,#2989d8), color-stop(24%,#34495e), color-stop(42%,#34495e), color-stop(42%,#207cca), color-stop(70%,#207cca), color-stop(70%,#207cca), color-stop(70%,#34495e), color-stop(100%,#34495e)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left,  #34495e 0%,#34495e 10%,#207cca 10%,#2989d8 24%,#34495e 24%,#34495e 42%,#207cca 42%,#207cca 70%,#207cca 70%,#34495e 70%,#34495e 100%); /* Chrome10+,Safari5.1+ */
  background-image: -moz-linear-gradient(left, #34495e 0%, #34495e 9%, #207cca 10%, #2989d8 24%, #34495e 24%, #34495e 42%, #207cca 42%, #207cca 70%, #207cca 70%, #34495e 71%, #34495e 100%);
  background-image: -o-linear-gradient(left, #34495e 0%, #34495e 9%, #207cca 10%, #2989d8 24%, #34495e 24%, #34495e 42%, #207cca 42%, #207cca 70%, #207cca 70%, #34495e 71%, #34495e 100%);
  background-image: linear-gradient(left, #34495e 0%, #34495e 9%, #207cca 10%, #2989d8 24%, #34495e 24%, #34495e 42%, #207cca 42%, #207cca 70%, #207cca 70%, #34495e 71%, #34495e 100%); /* Chrome10+,Safari5.1+ */   
}

hr.normal {
  margin: 0;
  border: 0;
  height: 2px;
  margin-left: 40px;
  margin-right: 40px;
  background: #333; /* Chrome,Safari4+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#34495e), color-stop(10%,#34495e), color-stop(10%,#207cca), color-stop(24%,#2989d8), color-stop(24%,#34495e), color-stop(42%,#34495e), color-stop(42%,#207cca), color-stop(70%,#207cca), color-stop(70%,#207cca), color-stop(70%,#34495e), color-stop(100%,#34495e)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left,  #34495e 0%,#34495e 10%,#207cca 10%,#2989d8 24%,#34495e 24%,#34495e 42%,#207cca 42%,#207cca 70%,#207cca 70%,#34495e 70%,#34495e 100%); /* Chrome10+,Safari5.1+ */
  background-image: -moz-linear-gradient(left, #34495e 0%, #34495e 9%, #207cca 10%, #2989d8 24%, #34495e 24%, #34495e 42%, #207cca 42%, #207cca 70%, #207cca 70%, #34495e 71%, #34495e 100%);
  background-image: -o-linear-gradient(left, #34495e 0%, #34495e 9%, #207cca 10%, #2989d8 24%, #34495e 24%, #34495e 42%, #207cca 42%, #207cca 70%, #207cca 70%, #34495e 71%, #34495e 100%);
  background-image: linear-gradient(left, #34495e 0%, #34495e 9%, #207cca 10%, #2989d8 24%, #34495e 24%, #34495e 42%, #207cca 42%, #207cca 70%, #207cca 70%, #34495e 71%, #34495e 100%); /* Chrome10+,Safari5.1+ */   
}


hr.bold {
  margin: 0;
  border: 0;
  height: 3px;
  margin-left: 40px;
  margin-right: 40px;
  background: #333; /* Chrome,Safari4+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#34495e), color-stop(10%,#34495e), color-stop(10%,#207cca), color-stop(24%,#2989d8), color-stop(24%,#34495e), color-stop(42%,#34495e), color-stop(42%,#207cca), color-stop(70%,#207cca), color-stop(70%,#207cca), color-stop(70%,#34495e), color-stop(100%,#34495e)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left,  #34495e 0%,#34495e 10%,#207cca 10%,#2989d8 24%,#34495e 24%,#34495e 42%,#207cca 42%,#207cca 70%,#207cca 70%,#34495e 70%,#34495e 100%); /* Chrome10+,Safari5.1+ */
  background-image: -moz-linear-gradient(left, #34495e 0%, #34495e 9%, #207cca 10%, #2989d8 24%, #34495e 24%, #34495e 42%, #207cca 42%, #207cca 70%, #207cca 70%, #34495e 71%, #34495e 100%);
  background-image: -o-linear-gradient(left, #34495e 0%, #34495e 9%, #207cca 10%, #2989d8 24%, #34495e 24%, #34495e 42%, #207cca 42%, #207cca 70%, #207cca 70%, #34495e 71%, #34495e 100%);
  background-image: linear-gradient(left, #34495e 0%, #34495e 9%, #207cca 10%, #2989d8 24%, #34495e 24%, #34495e 42%, #207cca 42%, #207cca 70%, #207cca 70%, #34495e 71%, #34495e 100%); /* Chrome10+,Safari5.1+ */   
}

/* table */
.main-content {
	padding-top: 0;
	padding-bottom: 0;
}
.table {
	border-spacing: 0 5px;
	border-collapse: separate;
}
.table thead tr th,
.table thead tr td,
.table tbody tr th,
.table tbody tr td {
	vertical-align: middle;
	border: none;
}
.table thead tr th:nth-last-child(1),
.table thead tr td:nth-last-child(1),
.table tbody tr th:nth-last-child(1),
.table tbody tr td:nth-last-child(1) {
	text-align: left;
}
.table tbody tr {
	box-shadow: 0 2px 10px rgba(0, 0, 1, 0.1);
	border-radius: 5px;
}
.table tbody tr td {
	background: #fff;
}
.table tbody tr td:nth-child(1) {
	border-radius: 5px 0 0 5px;
}
.table tbody tr td:nth-last-child(1) {
	border-radius: 0 5px 5px 0;
}

/* cookie banner */
#cb-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-radius: 0;
    display: none;
	font-size: 13px;
	background: #f4f6f8;
    border-left: solid #f6e05e;
    border-top: thin solid #F5F5F5;
}

#cb-cookie-banner .btn {
  padding: 3px 25px;
  padding-top: auto;
  padding-bottom: auto;
  border-radius: 0 10px 0;
  font-size: 13px;
}

.bg-blue {
  background: #effafe;
}

.mt-25 {
  margin-top: 25px!important;
}

.mt-50 {
  margin-top: 50px!important;
}

.mt-100 {
  margin-top: 100px!important;
}

.mb-25 {
  margin-bottom: 25px!important;
}

.mb-50 {
  margin-bottom: 50px!important;
}

.mb-100 {
  margin-bottom: 100px!important;
}



/* fade-in background */
@keyframes fadein {
    from { opacity: 0.6; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0.6; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0.6; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0.6; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0.6; }
    to   { opacity: 1; }
}


.background-servicii-hosting {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/servicii-hosting-header.svg");
   background-position: top 10px right 100px!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.background-servicii-backupdate {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/servicii-backup-header.svg");
   background-position: top 10px right 100px!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}


.background-servicii-dezvoltare-web {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/servicii-dezvoltare-web-header-new.svg");
   background-position: top 150px right 100px!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.background-servicii-antivirus-securitate {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/servicii-antivirus-securitate-header.svg");
   background-position: top 10px right 100px!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.background-servicii-asistenta {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/servicii-asistenta-header-new.svg");
   background-position: top 10px right 100px!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.background-servicii-mentenanta {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/servicii-mentenanta-header-new.svg");
   background-position: top 10px right 100px!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.background-servicii-mentenanta-basic {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/servicii-mentenanta-basic-header-new.svg");
   background-position: top 10px right 100px!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.background-servicii-dezvoltare-wordpress {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/servicii-dezvoltare-web-wordpress-header-new.svg");
   background-position: top 100px right 100px!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.background-servicii-dezvoltare-woocommerce {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/servicii-dezvoltare-woocommerce-header.svg");
   background-position: top 30px right 150px!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.background-cariere {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/cariere-header-new.svg");
   background-position: top 30px right 130px!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.background-cariere {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/cariere-header-new.svg");
   background-position: top 30px right 130px!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

.background-socialmedia {
   position: relative;
   height: auto;
   width: 100%;
   background-image: url("../images/illustrations/background-socialmedia.svg");
   background-position: top 0 right 0!important;
   background-repeat: no-repeat;
    -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

@media only screen and ( max-width: 1600px ) {
	
  .background-servicii-hosting { 
   background-image: none !important;
   }
.background-servicii-backupdate {
   background-image: none !important;
   }
.background-servicii-dezvoltare-web {
   background-image: none !important;
}
.background-servicii-dezvoltare-wordpress {
   background-image: none !important;
}

.background-servicii-dezvoltare-woocommerce {
   background-image: none !important;
}

.background-servicii-antivirus-securitate {
    background-image: none !important;
  }
.background-servicii-asistenta {
    background-image: none !important;
  }
.background-servicii-mentenanta {
    background-image: none !important;
  }
.background-servicii-mentenanta-basic {
    background-image: none !important;
  }
.background-cariere {
    background-image: none !important;
  }

.background-socialmedia {
    background-image: none !important;
  }

}
