body {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
    word-wrap: anywhere;
}

* {
    box-sizing: border-box;
}

p,
a,
div,
font,
li {
    font-size: 1rem;
    line-height: 1.6rem;
}

h1 {
    font-size: 2.2rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: #2d2a63;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d2a63;
}

h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d2a63;
}

h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d2a63;
}

h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #2d2a63;
}

h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d2a63;
}

.background-image {
    background-repeat: no-repeat;
    background-position: center;
}

.background-image-cover {
    background-size: cover;
}

.background-image-contain {
    background-size: contain;
}

.parallax {
    background-attachment: fixed;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.lazy-img {
    filter: blur(10px);
}

.image-overlay-dark {
    -webkit-box-shadow: inset 99999px 99999px 99999px 99999px rgba(0, 0, 0, 0.67);
    box-shadow: inset 99999px 99999px 99999px 99999px rgba(0, 0, 0, 0.67);
}

.image-overlay-blue {
    -webkit-box-shadow: inset 99999px 99999px 99999px 99999px rgba(40, 29, 74, 0.5);
    box-shadow: inset 99999px 99999px 99999px 99999px rgba(11, 7, 24, 0.5);
}

body {
    font-family: "Overpass", sans-serif;
}

.bold {
    font-weight: 700;
}

.thin {
    font-weight: 200;
}

.white-bg {
    background-color: #fff;
}

.white-text {
    color: #fff;
}

.white-border {
    border: 1px solid #fff;
}

.white-hover:hover {
    background-color: #fff;
    color: #111;
}

.lightblue-bg {
    background-color: #1c6eac;
}

.lightblue-text {
    color: #1c6eac;
}

.lightblue-border {
    border: 1px solid #1c6eac;
}

.lightblue-hover:hover {
    background-color: #1c6eac;
    color: #fff;
}

.blue-bg {
    background-color: #020f2e;
}

.blue-text {
    color: #020f2e;
}

.blue-border {
    border: 1px solid #020f2e;
}

.blue-hover:hover {
    background-color: #020f2e;
    color: #fff;
}

.lightgray-bg {
    background-color: #f5f5f5;
}


.lightgray-border {
    border: 1px solid #f5f5f5;
}

.gray-bg {
    background-color: #e6e3da;
}

.gray-text {
    color: #e6e3da;
}

.gray-border {
    border: 1px solid #e6e3da;
}

.dark-bg {
    background-color: #111111;
}

.dark-text {
    color: #111111;
}

.lightgrey-bg {
    background-color: lightgrey;
}

.dark-border {
    border: 1px solid #111111;
}

.btn {
    text-align: center;
    padding: 2% 3%;
    cursor: pointer;
    text-decoration: none;
}

.btnmr {
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.btnmr img {
    width: 2vw;
    vertical-align: middle;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

input,
textarea,
select {
    background-color: transparent;
    padding: 2%;
    border-bottom: 1px solid #111;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-bottom: 2%;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 97%;
    margin-right: 3%;
}

input[type="text"]:last-child {
    margin-right: 0;
}

textarea {
    font-family: inherit;
    font-size: inherit;
    max-width: 100%;
}

label {
    font-size: 1rem;
}

.center-text {
    text-align: center;
    width: 80%;
    margin: 1% 10%;
}

.justify-text {
    text-align: justify;
}

.clipped-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.left-align {
    text-align: left;
}

.right-align {
    text-align: right;
}

.center-align {
    text-align: center;
}

.stdpadd {
    padding: 5% 0;
}

.spacedtop {
    margin-top: 5%;
}

.spacedbottom {
    margin-bottom: 5%;
}

.textpadd {
    padding: 5%;
}

.verticalcenter {
    align-items: center;
}

.sidepadd {
    padding: 0 10%;
}

.b-radius {
    border-radius: 5px;
}

.full {
    width: 100%;
}

.shadow {
    -webkit-box-shadow: -2px 4px 14px 2px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: -2px 4px 14px 2px rgba(0, 0, 0, 0.16);
    box-shadow: -2px 4px 14px 2px rgba(0, 0, 0, 0.16);
}

.hidden {
    display: none;
}

.modal-overlay {
    z-index: 1000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 10%;
}

.modal {
    margin: auto;
    background-color: #fff;
    position: relative;
    padding: 5%;
    outline: 0;
    width: 40%;
}

.modal-lat {
    width: 80%;
}

.anunt {
    padding: 1%;
    z-index: 999;
}

.anunt button {
    float: right;
}

.floatr {
    float: right;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.echipa img {
    width: 100%;
    object-fit: cover;
}

.portofoliu-img {
    width: 100%;
    object-fit: cover;
}

.servicii-img {
    width: 100%;
    object-fit: cover;
}

.blog-container {
    width: 80%;
    padding: 10%;
}

.blog-sidebar {
    padding: 15% 5%;
    margin-left: 2%;
}

.searchinp {
    background-image: url("../foto/header-footer/srch.webp");
    background-size: auto 70%;
    background-position-x: right;
    background-position-y: center;
    background-repeat: no-repeat;
}

.politici {
    padding: 10% 10% 0;
}

.antet-blog {
    padding: 15% 10%;
}

.padding10 {
    padding: 10%;
}

.full_label {
    display: block;
    width: 100%;
}

.step {
    cursor:pointer;
}
.skilllabelpadd {
white-space:pre; 
}

.formfull {
width:97%;
}

#sendapplicationNl {
    width:50%;
    margin:0 auto;
}
input[type="month"], input[type="time"] {
    width:97%;
}
input[type="time"] {
    padding:7.5%!important;
}
select {
    /*appearance:none;*/
    
  border-radius: 0rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-right: 1rem;
  padding-left: 0.5rem;
  border-bottom: 1px solid #000;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg%20xmlns%3D"http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg"%20width%3D"292.4"%20height%3D"292.4"><path%20fill%3D"%23000000"%20d%3D"M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z"%2F><%2Fsvg>');
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%;
  background-size: .65em auto;
}

@media only screen and (max-width: 768px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .btn-mobi {
        display: block;
        margin-bottom: 5%;
    }

    .btn {
        padding: 5% 9%;
    }

    .btnmr img {
        width: 7vw;
    }

    .stdpadd {
        padding: 15% 0;
    }

    .modal-overlay {
        padding-top: 25%;
    }

    .modal {
        width: 80%;
    }

    .blog-container {
        width: 100%;
        padding: 25% 10%;
    }

    .blog-sidebar {
        width: 100%;
        margin-top: 10%;
        margin-bottom: 0;
        padding-bottom: 0;
        margin-left: 0;
    }

    #logout {
        /*display: block;*/
        margin-top: 5%;
    }

    .politici {
        padding: 15% 10%;
    }

    h1 {
        font-size: 2rem;
    }
}
