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%;
}

@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;
    }
}
