@import url("https://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css");

body,
html {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;

    font-size: 18px;
    color: #fff;
    background-color: #3C3C3B;
}

ol,
ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Teko", serif;
    letter-spacing: 0.5px;
}

.container-column {
    display: flex;
    flex-direction: column;
}

.container-row {
    display: flex;
    flex-direction: row;
}


/* INFO SECTION */

.logo {
    width: 270px;
    align-self: center;
}

.logo img {
    object-fit: cover;
    width: inherit;
}

.info-section {
    /* width: 95%; */
    margin: 0 auto;
    padding: 20px;
    background-image: linear-gradient(270deg, #5AFFA2, #2D6C80);
}

.info-section .info {
    max-width: 1200px;
}

.info {
    width: 90%;
    max-width: 1024px;
    margin: auto;
    padding: 20px;
    background: #3C3C3B;
    gap: 20px;
}

.info .buttons {
    justify-content: space-between;
}

.a-button {
    display: flex;
    align-items: baseline;
    gap: 5px;

    font-family: "Teko", serif;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.a-button i {
    font-size: 20px;
}

h2.naslov {
    text-align: center;
    letter-spacing: 1px;
    font-size: 30px;
}

.osnovni-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.osnovni-info .container-column {
    gap: 5px;
}

.pitanja {
    gap: 15px;
}

.pitanje-naslov {
    font-size: 22px;
    font-weight: 100;
    text-decoration: underline;
}

.pitanja .text-div {
    cursor: pointer;
}

.question-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.text-div {
    padding: 10px;
    border-radius: 15px;
    border: #2D6C80 2px solid;
}

.text-div>.container-row {
    justify-content: space-between;
    align-items: center;
}

.open-section {
    height: max-content;
}

.closed-section {
    height: max-content;
}

.open-pitanje {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
}

.open-pitanje img {
    height: 180px;
    width: 280px;
    object-fit: cover;
    border-radius: 10px;

    background-color: #ffffff;
    min-width: 280px;
    width: auto;
    object-fit: cover;
}

.closed-pitanje {
    display: none;
}


.arrow-up::after {
    content: "\f106";
    font-family: FontAwesome;
}

.arrow-down::after {
    content: "\f107";
    font-family: FontAwesome;
}




/* PRICING */

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pricing_selected{
    border: #2D6C80 8px solid !important
}

.pricing-block {
    height: max-content;
    padding: 20px;
    border: #2D6C80 1px solid;
    border-radius: 15px;
    width: 270px;
}

.pricing-info {
    gap: 20px;
}

.package-name {
    font-size: 20px;
}

.pricing-block .price {
    align-items: flex-end;
    font-size: 14px;
    gap: 5px;
}

.package-value {
    font-size: 50px;
    line-height: 48px;
}


.features {
    font-size: 16px;
}

.features-title {
    letter-spacing: 0.5px;
    font-weight: 600;
}

.package-minimum {
    padding-top: 5px;
    font-size: 12px;
    color: #8e999c;
}


a.pricing-button {
    padding: 15px 20px;
    margin: 20px 0;

    color: #fff;
    background-color: #2D6C80;
    border: 2px solid #2D6C80;
    border-radius: 5px;

    font-size: 18px;
    text-decoration: none;
    text-align: center;
}

a.pricing-button:hover {
    background-color: #1c5161;
    border: 2px solid #2D6C80;
}

.closed-list {
    display: none;
}

.open-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.features-button {
    padding: 20px 0 0 0;
    width: 250px;

    justify-content: space-between;
    align-items: center;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    border: none;
    border-top: #2D6C80 1px solid;
    color: #fff;
    background: transparent;
    cursor: pointer;
}


.promena-cene {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggleContainer {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    border: 3px solid #343434;
    border-radius: 20px;
    background: #343434;
    /* font-weight: bold; */
    color: #343434;
    cursor: pointer;
}

.toggleContainer::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0%;
    border-radius: 20px;
    background: #2D6C80;
    transition: all 0.3s;
}

.toggleCheckbox:checked+.toggleContainer::before {
    left: 50%;
}

.toggleContainer div {
    padding: 6px;
    text-align: center;
    z-index: 1;
}

.toggleCheckbox {
    display: none;
}

.toggleCheckbox:checked+.toggleContainer div:first-child {
    color: white;
    transition: color 0.3s;
}

.toggleCheckbox:checked+.toggleContainer div:last-child {
    color: white;
    transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:first-child {
    color: white;
    transition: color 0.3s;
}

.toggleCheckbox+.toggleContainer div:last-child {
    color: white;
    transition: color 0.3s;
}





.purchase-form-hidden {
    display: none;
}

.purchase-form-visible {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    max-width: 456px;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: center;
}

.red-text {
    color: #da1f1f;
}

fieldset {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
}

.input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}

.input-container label {
    font-size: 14px;
    margin-bottom: 5px;
}

.input-container input {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    padding: 15px;
    border-radius: 5px;
    border: none;
}

select {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

#error-message {
    color: rgb(241, 42, 42);
    font-size: 16px;
}

fieldset input {
    font-family: "Poppins", sans-serif;
}

fieldset.boje-uredjaja label {
    cursor: pointer;
}

.purchase-form-visible button.pricing-button {
    padding: 15px 20px;
    width: 130px;

    color: #fff;
    background-color: #2D6C80;
    border: 2px solid #2D6C80;
    border-radius: 5px;

    font-size: 20px;
    text-decoration: none;
    text-align: center;
}

.purchase-form-visible button.pricing-button:hover {
    background-color: #1c5161;
    border: 2px solid #2D6C80;
    cursor: pointer;
}

.purchase-form-visible button.pricing-button:disabled,
.purchase-form-visible button.pricing-button:disabled:hover {
    background-color: #efefef;
    border: 2px solid #efefef;
    color: #888;
    cursor: not-allowed;
}


.sendMail {
    display: flex;
    justify-content: center;

    width: 100%;
    margin: 10px 0;
}




/* HOME */

header {
    justify-content: space-between;
    align-items: center;
}

button.open-login-form {
    font-family: "Poppins", sans-serif;
    background-color: #2D6C80;
    color: #fff;
    font-size: 16px;

    background-color: #2D6C80;
    border: 2px solid #2D6C80;
    border-radius: 5px;
    padding: 5px 20px;
}

button.open-login-form:hover {
    background-color: #1c5161;
    border: 2px solid #2D6C80;
    cursor: pointer;
}

.languages {
    height: 20px;
    justify-content: flex-end;
    gap: 10px;
}

.languages img {
    object-fit: cover;
    height: inherit;
}

.login-container-hidden {
    display: none;
}

.login-container-visible {
    position: absolute;
    z-index: 3;
    top: 100px;
    left: 0;
    width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;

    animation-name: zoom;
    animation-duration: 0.6s;
}

.login-forma {
    width: 250px;
    padding: 20px;
    background-color: #343434;
    border-radius: 15px;
}

.logo-naslov {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    width: 100%;
    height: 70px;
}

.logo-naslov img {
    object-fit: cover;
    height: inherit;
}

.button-container .login-button {
    font-family: "Poppins", sans-serif;
    padding: 10px 15px;
    width: 130px;
    color: #fff;
    background-color: #2D6C80;
    border: 2px solid #2D6C80;
    border-radius: 5px;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
}

.button-container .login-button:hover {
    background-color: #1c5161;
    border: 2px solid #2D6C80;
    cursor: pointer;
}

.home-naslov {
    width: 100%;
    display: flex;
    justify-content: center;
}

.home-naslov h2 {
    max-width: 620px;
}

.slideshow-container {
    position: relative;
}


.mySlide.informacije {
    max-width: 1000px;
    margin: auto;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.informacije-skraceno {
    max-width: 800px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.jedna-info {
    min-width: 270px;
}

.jedna-info i {
    padding: 0 5px;
    color: #5AFFA2;
}

.read-more {
    width: 100%;
    justify-content: center;
}


.video-container {
    width: 100%;
}

.video {
    margin: 20px 0 0;
}

.video-container iframe {
    width: inherit;
    height: 200px;
}

.pricing {
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pricing h2 {
    text-align: center;
    font-size: 30px;
}

.informacije .read-more a,
.pricing .read-more a {
    padding: 10px;
    margin-top: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;

    background-color: #2D6C80;
    border: 2px solid #2D6C80;
    border-radius: 10px;
}

.informacije .read-more a:hover,
.pricing .read-more a:hover {
    background-color: #1c5161;
    border: 2px solid #2D6C80;
}

.active {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.hidden {
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 2;
}

.fixed-position {
    overflow-y: hidden;
    background: rgba(0, 0, 0, 0.5);
}




@media screen and (min-width: 768px) {

    /* HOME */
    .home-naslov h2 {
        width: 80%;
    }

    .logo-naslov {
        height: 85px;
        padding-top: 0;
    }

    .jedna-info {
        width: 300px;
    }



    .video-container iframe {
        width: inherit;
        height: 350px;
    }

    .mySlide.pricing {
        margin: auto;
    }


    /* INFO */
    .open-pitanje {
        flex-direction: column;
    }


    /* PRICING */
    .pricing-container {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .pricing-block {
        width: 270px;
    }

    .closed-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 10px;
    }

    .features-button {
        display: none;
    }




    form {
        flex-direction: row;
        max-width: 600px;
        margin: 0 auto;
    }

    .input-container.dropdown {
        width: 100%;
        align-items: center;
    }

    .input-container.dropdown select {
        width: 280px;
    }

    .input-container {
        width: 280px;
    }

    fieldset {
        width: 250px;
    }
}

@media screen and (min-width: 1024px) {

    /* HOME */
    .jedna-info {
        width: 380px;
    }

    .video-container iframe {
        width: inherit;
        height: 500px;
    }

    .logo-naslov {
        height: 100px;
    }

    .informacije-skraceno {
        gap: 30px;
    }

    .home-naslov {
        padding: 20px 0;
    }

}