
.logo {
    width: 75px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 2) {

    .logo {
        width: 75px;
    }

}

:root {
    /*--main-color: #3498db;*/
    --main-color: #4d6097;
    --second-color: #fff;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background: transparent;
}

section {
    max-width: 1920px;
    /*max-height: 1080px;*/
    /*box-sizing: border-box;*/
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5 ,h6 {
    font-family: 'Roboto', sans-serif;
}

textarea {
    border-radius: 10px;
}

textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #222 !important;
}

input {
    border-radius: 10px;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #222 !important;
}

label {
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

.container {
    max-width: 1920px;
    /*max-height: 1080px;*/
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.kinds-btns {
    display: flex;
}

.main-btn {
    display: flex;
    justify-content: center;
    max-width: 200px;
    padding: 10px 20px;
    background: var(--main-color);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

.main-btn.active {
    background: var(--second-color);
    color: var(--main-color);
    box-shadow: inset 1px 1px 5px rgba(0,0,0,0.5);
    font-weight: 500;
}

.docs-link {
    color: var(--main-color);
}

.docs-link:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.notification-info {
    position: fixed;
    top: 0;
    /*left: 45%;*/
    background: #fff;
    z-index: 9999;
    padding: 8px 16px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    transition: .5s;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    width: 100%;
    text-align: center;
}

.page-title {
    margin-top: 30px;
    margin-bottom: 45px;
}

.second-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.second-title {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 400;
    /*margin-bottom: 50px;*/
    animation-duration: .7s;
}

.light-title {
    color: #fff;
}

.second-title-wrap {
    display: flex;
    justify-content: space-between;
    height: 50px;
    margin-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

.title-decor {
    display: flex;
    width: 2px;
    height: 100%;
    background: #222;
}

.light-title+ .title-decor {
    background: #fff;
}

/* NEWS CARD */

.uk-modal-dialog {
    border-radius: 8px;
}

.card-img-wrap {
    position: relative;
}

.card-img-title {
    position: absolute;
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 10px;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,0.9);
    width: 100%;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    margin: 0;
    min-height: 70px;
}

.uk-card-footer {
    display: flex;
    align-items: center;
}


/* PROJECT CARD */

.col-card {
    animation-duration: .7s;
}

.project-card {
    min-height: 300px;
    transition: 1s;
}

.project-card__img {
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    transition: 5s;
    border-radius: 10px;
}

.project-card:hover img {
    /*transform: scale(1.1);*/
    transition: 2s ease-in-out;
}

.project-card img {
    transition: 3s ease-in-out;
}

.project-card__img-overlay {
    position: absolute;
    width: 1px;
    height: 1px;
    top: 50%;
    left: 50%;
    right: 50%;
    bottom: 50%;
    content: '';
    background: rgba(0,0,0,0.7);
    padding: 0;
    transition: .5s;
    border-radius: 9px;
}

.project-card:hover .project-card__img-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    transition: .5s;
}

.project-card__img-overlay__info {
    border: 1px solid transparent;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: .3s;
    overflow: hidden;
    padding: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
    opacity: 0;
}

.project-card:hover .project-card__img-overlay__info {
    border: 1px solid #fff;
    opacity: 0;
    animation: info .7s forwards ease-in-out;
    animation-delay: .3s;
}

@keyframes info {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.project-card__title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 27px;
}

.project-card__city {
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.project-card__area {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 5px;
}

.project-card__text {
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 5px;
}

.project-card__divider {
    display: flex;
    width: 0;
    height: 1px;
    background: #fff;
    margin-top: auto;
    margin-bottom: 24px;
}

.project-card:hover .project-card__divider {
    width: 0;
    animation: projDivid 1s forwards;
    animation-delay: .5s;
}

@keyframes projDivid {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.project-card__btn {
    display: flex;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 20px;
    margin-top: 5px;
    cursor: pointer;
}

/* PROJECT LANDING */

.landing-project-row {
    max-height: 1080px;
    position: relative;
}

.landing-overlay {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);

}

.product-view {
    margin-bottom: 8px;
}

.landing-title {
    font-family: 'Russo One', sans-serif;
    display: flex;
    position: absolute;
    left: 10%;
    bottom: 30%;
    width: 40%;
    margin-top: auto;
    color: #fff;
    font-size: 50px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    line-height: 50px;
    text-transform: uppercase;
    flex-direction: column;
}

.landing-city {
    padding-top: 7px;
    /*border-top: 2px solid #fff;*/
    text-transform: uppercase;
    color: #fff;
    /*margin-top: 20px;*/
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 10px;
    position: relative;
}

.landing-city:before {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: #fff;
    width: 0;
    height: 2px;
    animation: landDivider 3s forwards;
    animation-delay: 1s;
}

@keyframes landDivider {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* FOOTER */

.footer-container {
    margin-top: 50px;
    background: var(--main-color);
    padding-top: 50px;
    padding-bottom: 20px;
    position: relative;
}

.footer-divider {
    height: 1px;
    width: 100%;
    background: #fff;
}

.divider-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 290px;
    height: 122px;
}

@media  only screen and (-webkit-min-device-pixel-ratio: 2),
        only screen and (-webkit-min-device-pixel-ratio: 2),
        only screen and (-o-min-device-pixel-ratio: 3/2),
        only screen and (-o-min-device-pixel-ratio: 2/1),
        only screen and (min--moz-device-pixel-ratio: 1.5),
        only screen and (min-device-pixel-ratio: 1.5),
        only screen and (min-device-pixel-ratio: 2) {

        .footer-logo {
            width: 95px;
            height: 40px;
        }

}

.footer-vertical-divider {
    width: 1px;
    height: 100px;
    background: #fff;
}

.footer-icon-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-icon {
    display: flex;
    color: #fff;
    transition: .3s ease-in-out;
    justify-content: center;
    align-items: center;
}

.footer-icon:hover {
    background: #fff;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    color: #222;
}

.footer-icon-phone {
    color: #fff;
    font-size: 20px;
}

.copyright {
    color: #fff;
    font-size: 12px;
}

.hide-btn {
    display: flex;
    width: 100px;
    height: 30px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
}

@media screen and (max-width: 850px) {

    .landing-title {
        font-size: 35px;
        line-height: 35px;
        width: 70%;
        bottom: 15%;
    }

    .landing-city:before {
        height: 1px;
    }

    .landing-city {
        padding-top: 2px;
    }
}

@media screen and (max-width: 600px) {

    .second-title {
        font-size: 30px;
        display: flex;
        margin-bottom: 0;
        align-items: center;
    }

    .project-card:hover .project-card__img-overlay {
        padding: 10px;
    }

    .project-card__img-overlay__info {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .project-card__title {
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 15px;
        line-height: 27px;
    }

    .project-card__city {
        color: #fff;
        text-transform: uppercase;
        font-weight: 300;
        font-size: 14px;
        line-height: 27px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .project-card__area {
        font-size: 18px;
    }

    .project-card__text {
        font-size: 13px;
    }

    .project-card__divider {
        margin-bottom: 16px;
    }

    .landing-title {
        left: 5%;
        font-size: 25px;
        line-height: 30px;
        width: 95%;
    }

    .landing-city {
        letter-spacing: 3px;
        font-size: 15px;
    }
}


@media screen and (max-width: 376px) {

    .project-card__img-overlay__info {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .project-card__title {
        font-size: 13px;
        line-height: 20px;
    }

    .project-card__area {
        font-size: 15px;
    }

    .project-card__text {
        font-size: 12px;
    }

}

@media screen and (max-width: 350px) {

    .second-title {
        font-size: 35px;
    }

    .project-card {
        min-height: 250px;
        transition: 1s;
    }

    .project-card__text {
        display: none;
    }

}
