/* 
    Author     : Lazar Grozdanovic
*/

@font-face {
    font-family: robotor;
    src: url("../fonts/roboto-regular.ttf");
}
@font-face {
    font-family: robotom;
    src: url("../fonts/roboto-medium.ttf");
}
@font-face {
    font-family: mistral;
    src: url("../fonts/mistral.ttf");
}
@font-face {
    font-family: segoeui;
    src: url("../fonts/segoeui.ttf");
}
@font-face {
    font-family: arielr;
    src: url("../fonts/arlrdb.ttf");
}

body {
    height: 100% !important;
}
a,
a:hover,
a:visited,
a:focus {
    text-decoration: none;
}

/*nav*/

.menu_background {
    background-image: url("../img/header_bck.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 297px; 
}
@media (min-width: 768px) {
    .menu_background {
        height: 370px; 
    }
}
@media (min-width: 1200px) {
    .menu_background {
        height: 430px; 
    }
}
@media (min-width: 1650px) {
    .menu_background {
        height: 490px; 
    }
}
.navbar-default {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: transparent;
}
.navbar {
    margin-bottom: 0px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    min-height: 50px;
    border: 1px solid transparent;
    z-index: 10;
}
@media (min-width: 768px) {
    .navbar {
        position: relative;
    }
}
.navbar-nav {
    float: none;
    margin: 0 auto;
    width: 280px;
    height: 245px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 17px;
    font-family: robotor;
}
@media (min-width: 768px) {
    .navbar-nav {
        width: 462px;
        height: auto;
    }
}
.navbar-default .navbar-nav>li>a {
    color: white;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: white;
    background-color: transparent;
    border: 2px solid #5ab81b;
    padding-bottom: 7px;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color:white;
    background-color: transparent;
    border-bottom: none;
    padding-bottom: 9px;
}
@media (min-width: 768px) {
    .navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
        border-bottom: 2px solid #5ab81b;
    }
}
.nav>li>a {
    position: relative;
    display: block;
    padding: 9px 15px;
}
.menu_social>a>img {
    padding-left: 15px;
    width: 40px;

}
@media (min-width: 768px) {
    .menu_social>a>img {
        width: auto;
    }
}
.menu_social {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid white;
}
@media (min-width: 768px) {
    .menu_social {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #e7e7e7;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    border: none;
    top: 51px;
    box-shadow: none;
}
@media (min-width: 768px) {
    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        position: relative;
        background: transparent;
        top: inherit;
    }
}
.navbar-header {
    display: block;
    float: left;
}
@media (min-width: 768px) {
    .navbar-header {
        display: none;
    }
}
.navbar-toggle {
    position: relative;
    float: left;
    background-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #5ab81b;
}
.navbar-default .navbar-toggle {
    border-color: #5ab81b;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: transparent;
}

/*menu icon animation*/

.c-hamburger {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 60px;
    height: 50px;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.c-hamburger:focus {
    outline: none;
}

.c-hamburger span {
    display: block;
    position: absolute;
    top: 23px;
    left: 10px;
    right: 17px;
    height: 5px;
    background: white;
}

.c-hamburger span::before,
.c-hamburger span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #fff;
    content: "";
}

.c-hamburger span::before {
    top: -10px;
}

.c-hamburger span::after {
    bottom: -10px;
}

.c-hamburger--htx {
    background-color: transparent;
}

.c-hamburger--htx span {
    transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
    transition-property: top, transform;
}

.c-hamburger--htx span::after {
    transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
    background-color: transparent;
}

.c-hamburger--htx.is-active span {
    background: none;
}

.c-hamburger--htx.is-active span::before {
    top: 0;
    transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
    transition-delay: 0s, 0.3s;
}

/*footer*/

.footer {
    position: relative;
}
.footer_menu1 {
    position: relative;
    padding: 30px 0;
    background-color: #3b7f0e;
}
.footer_menu2 {
    background-color: #025b13;
    text-align: center;
    padding: 15px 0;
}
.footer_menu3 {
    padding: 15px 0;
    background-color: #023c0d;
    font-family: robotor;
    font-size: 14px;
    color: #61b727;
    text-align: center;
}
.phone {
    float: left;
    padding-left: 70px;
}
.phone>img {
    float: left;
    padding-top: 4px;
}
.phone_txt {
    float: left;
    padding-left: 10px;
    font-family: robotor;
    font-size: 18px;
    color: white;
}
.mail {
    float: left;
    padding-left: 80px;
}
.mail>img {
    float: left;
    padding-top: 10px;

}
.mail_txt {
    float: left;
    padding-left: 10px;
    padding-top: 12px;
    font-family: robotor;
    font-size: 16px;
    color: white;
}
.footer_menu_info {
    text-align: center;
    width: 100%;
    font-size: 18px;
    font-family: robotor;
    color: #8ce054;
    margin-bottom: 15px;
    float: none;
}
@media (min-width: 768px) {
    .footer_menu_info {
        width: 33%;
        margin-bottom: 10px;
        float: left;
    }
}
.footer_picture {
    margin-bottom: 10px;
}
.footer_logo {
    padding-top: 20px;
    float: none;
}
@media (min-width: 768px) {
    .footer_logo {
        float: left;
    }
}
.footer_social {
    float: none;
    margin-top: 20px;
    margin-left: -15px;
}
@media (min-width: 768px) {
    .footer_social {
        float: left;
        margin-left: 0;
    }
}
.footer_social img {
    margin-left: 30px;
}

/*parallax*/

.resize_img img{
    width: 100%;
}
.parallax-window {
    min-height: 530px;
    background: transparent;
}
.rflower {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 180px;
    text-align: right;
}
.lflower {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 160px;
    top: 225px;
}
.rrose {
    position: absolute;
    right: 0;
    top: 0;
    width: 105px;
    text-align: right;
}
.rrose1 {
    position: absolute;
    right: 0;
    top: 175px;
    width: 155px;
    text-align: right;
}
.lrose {
    position: absolute;
    left: 0;
    width: 145px;
    top: 130px;
}
.lrose2 {
    position: absolute;
    left: 120px;
    width: 160px;
    top: 285px;
}
.logo {
    position: absolute;
    text-align: center;
    top: 50px;
    width: 100%;
    left: 50%;
    margin-left: -50%;
}
.logo img {
    width: 310px !important;
    padding-top: 10px;
}
@media (min-width: 768px) {
    .logo img {
        width: 475px !important;
        padding-top: 15px;
    }
}
@media (min-width: 992px) {
    .logo img {
        width: 500px !important;
    }
}
.rbush {
    position: absolute;
    right: -20px;
    top: 20px;
    width: 270px;
    text-align: right;
}
.rrose2 {
    position: absolute;
    right: 50px;
    top: 200px;
    width: 250px;
    text-align: right;
}
.lbush {
    position: absolute;
    left: 0;
    width: 280px;
    top: 15px;
}
@media (min-width: 992px) {
    .lbush {
        top: 50px;
    }
}
@media (min-width: 1200px) {
    .rflower {
        width: 235px;
    }
    .lflower {
        width: 210px;
    }
    .rrose {
        width: 198px;
    }
    .rrose1 {
        width: 205px;
    }
    .lrose {
        width: 190px;
    }
    .lrose2 {
        left: 170px;
        width: 200px;
    }
    .logo img {
        width: 610px !important;
        padding-top: 0;
    }
    .rbush {
        right: 0;
        width: 375px;
        top: 0;
    }
    .rrose2 {
        right: 90px;
        top: 200px;
        width: 310px;
    }
    .lbush {
        width: 371px;
        top: 15px;
    }
}
@media (min-width: 1650px) {
    .rflower {
        width: 349px;
    }
    .lflower {
        width: 282px;
    }
    .rrose {
        right: 0;
        top: 0;
        width: 198px;
    }
    .rrose1 {
        width: 288px;
    }
    .lrose {
        width: 270px;
    }
    .lrose2 {
        left: 255px;
        width: 270px;
    }
    .logo img {
        width: 710px !important;
    }
    .rbush {
        right: 0;
        width: 490px;
    }
    .rrose2 {
        right: 90px;
        top: 200px;
        width: 459px;
    }
    .lbush {
        width: 430px;
    }
}
/*pocetna page*/

.home_bck {
    background-color: #fbf5de;
    position: relative;
}
.home_title {
    padding-top: 60px;
    padding-bottom: 30px;
    color: #3b7f0e;
    font-family: mistral;
    font-size: 34px;
}
.home_title2 {
    padding-top: 60px;
    color: #3b7f0e;
    font-family: mistral;
    font-size: 65px;
    text-align: center;
}
.home_txt {
    font-family: robotor;
    font-size: 15px;
    padding-bottom: 55px;
}
.home_txt2 {
    font-family: robotor;
    font-size: 15px;
    padding-top: 20px;
    padding-bottom: 30px;
}
@media (min-width: 768px) {
    .home_txt2 {
        padding-top: 0px;
    }
}
@media (min-width: 992px) {
    .home_txt2 {
        padding-top: 50px;
        padding-bottom: 80px;
    }
}
@media (min-width: 1200px) {
    .home_txt2 {
        padding-top: 100px;
    }
}
.home_txt>p {
    padding-top: 50px;
}
.pic_holder {
    position: relative;
    overflow: hidden;
}
.pic_how>img {
    width: 100%;
}
.pic_holder:hover .pic_how>img {
    -webkit-filter: none;
    filter: none;
    transition: none;
    transform: none;
}
@media (min-width: 768px) {
    .pic_holder:hover .pic_how>img {
        -webkit-filter: blur(5px);
        filter: blur(3px);
        transition: all .1s ease-in-out;
        transform: scale(1.1);
    }
}
.text_how {
    display: block;
    position: absolute;
    top: inherit;
    bottom: 0;
    left: 0;
    color: white;
    font-size: 32px;
    font-family: mistral;
    z-index: 20;
    text-shadow: 5px 5px 20px #000000;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
    .text_how {
        background: transparent;
        top: 41%;
        display: none;
        font-size: 28px;
    }
}
@media (min-width: 992px) {
    .text_how {
        font-size: 40px;
    }
}
.pic_holder:hover .text_how {
    display: block;
}
.granny {
    width: 100%;
}
.granny img {
    width: 100%;
}
.line {
    text-align: center;
    padding-bottom: 80px;
}
.bil_holder {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
}
@media (min-width: 768px) {
    .bil_holder {
        height: 340px;
    }
}
.bil {
    text-align: center;
    float: none;
    width: 100%;
    padding-bottom: 20px;
}
@media (min-width: 768px) {
    .bil {
        float: left;
        width: 33.33%;
        padding-bottom: 0;
    }
}
.bil_num {
    font-size: 36px;
    padding-top: 10px;
    color: #3b7f0e;
    font-family: arielr;
}
.bil_txt {
    font-size: 22px;
    color: #3b7f0e;
    font-family: robotor;
}
.offer_holder {
    width: 100%;
    text-align: center;
    height: auto;
}
@media (min-width: 768px) {
    .offer_holder {
        height: 300px;
    }
}
.offer_holder_info {
    width: 250px;
    float: none;
    margin: 10px auto;
}
@media (min-width: 768px) {
    .offer_holder_info {
        width: 31%;
        float: left;
        margin: 0;
        margin-left: 1%;
        margin-right: 1%;
    }
}
.payment-holder {
    text-align: center;
    margin-bottom: 50px;
}
.ponuda_btn_holder {
    width: 145px;
    height: 65px;
    margin: 0 auto 100px;
}
.punuda_btn {
    width: 100%;
    height: 65px;
    border: 1px solid #3a7e0e;
    border-radius: 20px;
    color: #3a7e0e;
    font-size: 18px;
    font-family: robotor;
    text-align: center;
    padding: 20px 0;
    background-color: transparent;
}
.punuda_btn:hover {
    background-color: #3a7e0e;
    color: #fbf5de;
}


/*ponuda page*/

.offer_bck {
    background-color: #fbf5de;
    position: relative;
    padding-bottom: 60px;
}
.offer_title {
    color: #3b7f0e;
    font-family: mistral;
    font-size: 77px;
    text-align: center;
    padding: 60px 0;
}
.offer_txt {
    font-family: robotor;
    font-size: 15px;
    margin-bottom: 40px;
    margin-left: 1%;
    margin-right: 1%;
}
.offer_holder_ponuda {
    width: 100%;
    text-align: center;
    height: auto;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .offer_holder_ponuda {
        width: 100%;
        text-align: center;
        height: 290px;
        border-bottom: 1px solid #3b7f0e;
        margin-bottom: 10px;
    }
}
@media (min-width: 992px) {
    .offer_holder_ponuda {
        height: 400px;
    }
}
.offer_holder_info_ponuda {
    width: 250px;
    float: none;
    margin: 20px auto;
}
@media (min-width: 768px) {
    .offer_holder_info_ponuda {
        width: 31%;
        float: left;
        margin: 0;
        margin-left: 1%;
        margin-right: 1%;
        margin-bottom: 30px;
    }
}
@media (min-width: 992px) {
    .offer_holder_info_ponuda {
        width: 31%;
        float: left;
    }
}
.pic_holder_ponuda {
    position: relative;
    overflow: hidden;
}
.pic_how_ponuda>img {
    width: 100%;
    filter: none;
    -webkit-filter: none;
    -moz-filter: none;
}
@media (min-width: 768px) {
    .pic_how_ponuda>img {
        filter: none;
        -webkit-filter: none;
        -moz-filter: none;
    }
}
.pic_holder_ponuda:hover .pic_how_ponuda>img {
    -webkit-filter: none;
    filter: none;
    transition: none;
    transform: none;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.text_how_ponuda {
    display: block;
    position: absolute;
    top: inherit;
    bottom: 0;
    left: 0;
    color: white;
    font-size: 30px;
    font-family: mistral;
    z-index: 20;
    text-shadow: 5px 5px 20px #000000;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    height: 50px;
}
.pic_holder_ponuda:hover .text_how_ponuda {
    display: block;
}

/*aranzmani page*/

.aranzmani_bck {
    background-color: #fbf5de;
    position: relative;
    padding-bottom: 60px;
}
.aranzmani_title {
    color: #3b7f0e;
    font-family: mistral;
    font-size: 45px;
    text-align: center;
    padding: 60px 0;
}
@media (min-width: 768px) {
    .aranzmani_title {
        font-size: 77px;
    }
}
.aranzmani_txt {
    font-family: robotor;
    font-size: 15px;
    margin-bottom: 70px;
}
.aranzmani_holder {
    width: 280px;
    float: none;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .aranzmani_holder {
        width: 30%;
        margin: 0;
        margin-right: 5%;
        float: left;
    }
}
.aranzmani_holder img {
    width: 100%;
}
@media (min-width: 768px) {
    .aranzmani_holder_nomargin {
        margin-right: 0;
    }
}
.to_ponude {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 40px;
}
.to_ponude>a {
    text-align: center;
    font-family: robotom;
    font-size: 16px;
    color: #3b7f0e;
}
.to_ponude>a:hover {
    color: #75bc04;
}

/*img number*/

.img_number {
    width: 100%;
    height: 60px;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    text-align: center;
    font-family: mistral;
    font-size: 30px;
    color: white;
    padding: 10px 0;
    margin-top: -60px;
}

/*svadbe page*/

.offer_holder_svadbe {
    width: 100%;
    text-align: center;
    height: auto;
}
@media (min-width: 768px) {
    .offer_holder_svadbe {
        width: 100%;
        text-align: center;
        height: 790px;
        border-bottom: 1px solid #3b7f0e;
        margin-bottom: 10px;
    }
}
@media (min-width: 992px) {
    .offer_holder_svadbe {
        height: 280px;
    }
}
@media (min-width: 1200px) {
    .offer_holder_svadbe {
        height: 320px;
    }
}
.offer_holder_info_svadbe {
    width: 250px;
    float: none;
    margin: 10px auto;
}
@media (min-width: 768px) {
    .offer_holder_info_svadbe {
        width: 48%;
        float: left;
        margin: 0;
        margin-left: 1%;
        margin-right: 1%;
        margin-bottom: 20px;
    }
}
@media (min-width: 992px) {
    .offer_holder_info_svadbe {
        width: 23%;
        float: left;
        margin: 0;
        margin-left: 1%;
        margin-right: 1%;
    }
}
.text_how_smaller {
    font-size: 25px;
    padding-top: 8px;
}
@media (min-width: 768px) {
    .text_how_smaller {
        font-size: 30px;
        padding-top: 0px;
    }
}
@media (min-width: 992px) {
    .text_how_smaller {
        font-size: 23px;
        padding-top: 5px;
    }
}
@media (min-width: 1200px) {
    .text_how_smaller {
        font-size: 26px;
        padding-top: 3px;
    }
}

/*kontakt page*/

.contact_bck {
    background-color: #fbf5de;
    position: relative;
    padding-bottom: 60px;
}
.contact_txt {
    font-family: robotor;
    font-size: 15px;
    margin: -70px 0 40px;
    text-align: center;
}
.contact_form_holder {
    width: 100%;
    margin: 0 auto;
}
@media (min-width: 768px) {
.contact_form_holder {
    width: 90%;
    margin: 0 auto;
}
}
@media (min-width: 992px) {
.contact_form_holder {
    width: 800px;
}
}
.contact_form {
    width: 100%;
    height: 50px;
    padding: 5px 10px;
    font-family: robotor;
    font-size: 15px;
    margin-bottom: 15px;
    background-color: transparent;
    border: 1px solid #3b7f0e;
}
.contact_form:focus {
    outline: none;
}
.contact_form_msg {
    width: 100%;
    height: 200px;
    padding: 5px 10px;
    font-family: robotor;
    font-size: 15px;
    resize: none;
    background-color: transparent;
    border: 1px solid #3b7f0e;
}
.contact_form_msg:focus {
    outline: none;
}
.contact_btn_hoder {
    width: 145px;
    margin: 40px auto;
}
.contact_btn {
    width: 100%;
    height: 65px;
    border: 1px solid #3a7e0e;
    border-radius: 20px;
    color: #3a7e0e;
    font-size: 18px;
    font-family: robotor;
    text-align: center;
    padding: 20px 0;
    background-color: transparent;
}
.contact_btn:focus {
    outline: none;
}
.contact_btn:hover {
    background-color: #3a7e0e;
    color: #fbf5de;
}

/*galerija page*/

.galerija_holder {
    width: 280px;
    float: none;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .galerija_holder {
        width: 30%;
        margin: 0;
        margin-right: 5%;
        float: left;
    }
}
.galerija_holder img {
    width: 100%;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .galerija_holder img {
        margin-right: 0;
    }
}
@media (min-width: 768px) {
.galerija_holder_nomargin {
    margin-right: 0;
}
}