@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*    font-family: 'Open Sans', sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 28px;
    background-color: #efefef;
}

/* heeader Style */

.main-header {
    padding: 20px 0;
    background-color: #fff;
}

.logo img {
    width: 75%;
}

/*nav bar style*/

.navbar-light .navbar-nav .nav-link, .dropdown-item {
    color: #666;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: bold;
}

/* heeader Style */

/*Home Banner */

.home-banner {
    background: url(../images/banner.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    padding: 80px 0 120px;
    min-height: 650px;

}

.content {
    border: 5px solid #ff1e21;
    margin: 0 auto;
    width: 80%;
    padding: 80px 0px 80px 20px;
    background-color: rgba(0, 0, 0, 0.5);
}

.content div {
    text-align: center;
}

.content h2 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 30px;
}

.content .offer {
    color: #ff1e21;
    font-weight: bold;
}

.content p {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.3em;
}

/*Home Banner */


/*tabs */

.tabs {
    position: relative;
    top: -26px;
    padding-bottom: 50px;
}

ul.tabs {
    padding: 0px;
    list-style: none;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    display: flex;
    margin-bottom: -2rem;
}

ul.tabs li {
    width: 33.33%;
    background: #858585;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 25px;
    cursor: pointer;
    color: #fff;
    border-top: 5px solid #858585;
    font-weight: bold;
}

ul.tabs li.current {
    background: #fff;
    color: #222;
    border-top: 5px solid #858585;
}

.tab-content {
    display: none;
    opacity: 0;
    background: #fff;
    padding: 45px 0;
    margin: -2% auto;
    box-shadow: 0 3px 2px 2px #ddd;
    width: 80%;
    text-align: center;
    transition: all 300ms ease-in-out;

}

.tab-content.current {
    display: inherit;
    opacity: 1;
}

.price-tags {
    padding: 40px 0;
}

.price, .ot {
    background-image: linear-gradient(to bottom right, #ce0108, #f91a1e);
    padding: 20px 20px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    display: block;
    width: 80%;
    margin: 0 auto;

}

.price::after, #gif::after, .ot::after {
    content: "CHF";
    font-family: fontAwesome;
}

/*.price.ot::after{display: none;}*/

.price:hover, .ot:hover {
    color: #fff;
    text-decoration: none;
}

.price:focus, .ot:focus {
    background-image: linear-gradient(to bottom right, #f91a1e, #ce0108);
}

.tab-title {
    color: #858585;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/*gift section*/

.amount {
    color: #ff1e21;
    padding: 0;
    text-align: center;
}

.amount h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.amount p {
    font-size: 3rem;
    font-weight: bold;
}

/*payment section*/

.payment {
    padding: 50px 0;
}

.payment .title {
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0;
    background: #858585;
    color: #fff;
    font-weight: bold;
}

.payment-buttons {
    background: #fff;
    padding: 30px;
    text-align: center;
}

.pay-button img {
    box-shadow: 0 1px 2px 2px #8a8888;
    margin-right: 10px;
    border-radius: 15px;
}


/*footer style*/

#footer-main {
    background: #858585;
    padding: 30px 0;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

.f-logo {
    margin-top: 50px;
}

/*Responsive Media */

@media screen and (max-width: 992px) {
    .content h2 {
        font-size: 30px;
    }

    .content p {
        font-size: 15px;
    }

    .pay-button img {
        width: 100%;
    }

    .price {
        font-size: 14px;
    }

    ul.tabs {
        font-size: 12px;
        line-height: 1.6;
    }

}


@media screen and (max-width: 480px) {
    .content h2 {
        font-size: 22px;
    }

    .content p {
        font-size: 14px;
    }

    .pay-button img {
        width: 100%;
        border-radius: 5px;
    }

    .payment .title {
        font-size: 16px;
    }

    .payment-buttons {
        padding: 20px;
    }

    .tab-title {
        font-size: 18px;
    }

    .price, .ot {
        font-size: 18px;
        margin: 5px auto;
    }

    .f-logo img {
        width: 50%;
    }

}