:root {
    --main--color: #31B045;
}

body {
    font-family: 'Poppins', sans-serif;
    /* height: 5000px; */
}

a {
    text-decoration: none;
}

/* Start Navbar */
.navbar .nav-item .nav-link {
    padding: 4px 22px !important;
}
/* End Navbar */

/* Start Hero */
.hero {
    height: 100vh;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero p {
    font-size: 18px;
}
/* End Hero */

/* Start Features */
.features {
    background-image: url('../img/features-back.svg');
    background-size: cover;
    background-position: right bottom;
}
.feature .d-flex h6.number {
    width: 46px;
    height: 46px;
    background-color: var(--main--color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border-radius: 50%;
}
/* End Features */

/* Start Download */
.download {
    background-image: url('../img/download-back.svg');
    background-size: cover;
    background-position: left bottom;
}
/* End Download */

/* Start FAQ */
.faq-item {
    margin-bottom: 12px;
}
.faq-item .question {
    border-radius: 6px;
    border: 1px solid rgba(219, 219, 219, 0.85);
    padding: 15px;
    display: flex;
    align-items: center;
    background: #f9f9f9;
    cursor: pointer;
}
.faq-item .question.active {
    background-color: #97B551;
    border-color: #97B551;
    color: #fff;
}
.faq-item .answer {
    border-radius: 6px;
    border: 1px solid rgba(219, 219, 219, 0.85);
    padding: 15px;
    /* display: flex; */
    align-items: center;
    cursor: pointer;
}
.faq-item .answers {
    display: none;
} 
/* End FAQ */

/* Footer */
footer {
    background-image: url('../img/footer-back.svg');
    background-position: bottom center;
    background-size: cover;
    padding-bottom: 30px;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
    text-decoration: none;
}
footer .icon {
    border-radius: 50%;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* End Footer */

/* Classes */
.text-primary {
    color: var(--main--color) !important;
}
.py-6 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}
img.effect {
    position: absolute;
    width: 100vw;
    top: 0;
    right: 0;
    opacity: 0.7;
    left: 0;
}

.btn-circle {
    height: 50px;
    width: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-circle.facebook {
    background-color: #596BDF;
}

.btn-circle.twitter {
    background-color: #6DA8D5;
}

.btn-circle.instagram {
    background-color: #D5337F;
}

.form-control {
    border: 1px solid #e9e9e9 !important;
    padding: 12px !important;
    border-radius: 6px !important;
}

.form-control:focus {
    border: 1px solid #e9e9e9 !important;
    box-shadow: none !important;
}

.btn-check:focus+.btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: none !important;
}

.payment-metohde {
    border: 1.5px solid #ddd;
    border-radius: 6px;
    display: flex;
    background-color: #fff;
    align-items: center;
    padding: 13px;
}

.payment-metohde label {
    padding: 4px 9px;
}

.payment-metohde img {
    width: 40px;
    object-fit: cover;
    height: 40px;
}

.payment-metohde.checked {
    border: 1.5px solid var(--main--color);
}

.btn-primary {
    background-image: linear-gradient(to right, #83C035 , #159DEC) !important;
    border-color: #83C035 !important;
}