:root {
    --color-dark: #1e5095;
    --color-light: #06BCC1;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1.2 !important;
}

h1, h2, b {
    font-weight: 700;
}

h3, h4, h5 {
    font-weight: 600;
}

.small {
    font-weight: inherit !important;
}

.textlight {
    color: var(--color-light);
}

.textdark {
    color: var(--color-dark);
}

nav {
    padding: 10px 0;
    background-color: #ffffff;
}

nav a.nav-link {
    color: inherit;
}

nav li > a:before {
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
    background-color: var(--color-light);
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    transition: all .3s;
    margin-top: 3px;
    position: relative;
    bottom: -25px;
}

nav li:hover > a:before {
    -webkit-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
}

.hero {
    /*background: linear-gradient(133deg, rgba(30,80,149,1) 0%, rgba(0,107,189,1) 49%, rgba(10,102,172,1) 100%);*/
    background: linear-gradient(133deg, rgba(30,80,149,1) 0%, rgba(10,102,172,1) 100%);
    color: #ffffff;
    padding: 120px 0 160px;
    position: relative;
}

.hero h4 {
    font-size: 16px;
    margin-top: 20px;
}

.wave {
    background-image: url("../images/wave.svg");
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    height: 280px;
    position: absolute;
    bottom: -40px;
    width: 100%;
}

.voucherwide img {
    border: 2px solid;
    margin-top: 20px;
    border-radius: 8px;
}

.vouchercircle {
    margin-top: 20px;
    /*margin-bottom: -80px;*/
}

.price {
    color: var(--color-light);
    font-weight: 700;
    font-size: 35px;
}

section {
    padding: 60px 0;
}

.small-section {
    padding: 20px 0;
}

.greybg {
    background-color: #f5f5f5;
}

.darkbg {
    background-color: var(--color-dark) !important;
    color: #fff;
}

.lightbg {
    background-color: var(--color-light) !important;
    color: #fff;
}

form {
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #ffffff;
    color: #444444;
}

.formstep {
    min-height: 160px;
}

label {
    display: block !important;
    font-weight: 700;
}

.find-add {
    background-color: var(--color-light);
}

.find-add:hover {
    background-color: var(--color-dark);
    color: #fff;
}

.button {
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    padding: 12px 24px;
    width: auto;
    border: none;
    transition: all .3s;
    font-weight: 500;
}

.btnlight {
    border: 1px solid var(--color-light);
    background-color: var(--color-light);
    color: #ffffff;
}

.btndark {
    border: 1px solid var(--color-dark);
    background-color: var(--color-dark);
    color: #ffffff;
}

.btn-plain {
    border: 1px solid var(--color-light);
    background-color: transparent;
    color: var(--color-light);
}

.button-lg {
    padding: 15px 50px;
    font-size: 17px;
    text-transform: uppercase;
}

.button-sm {
    padding: 7px 12px;
}

.button-block {
    display: block;
    width: 100%;
    padding: 25px 50px;
    font-size: 23px;
    text-transform: uppercase;
}

.button:hover {
    color: #fff;
    text-decoration:none;
    background-color: var(--color-dark);
    border: 1px solid var(--color-dark);
}

.btn-full:focus {
    color: #fff;
    text-decoration: none;
}

.btn-plain:focus {
    color: var(--color-light);
    text-decoration: none;
}

.radio-img img {
    height: 20px;
}

.radio-img .noradio + label, .radio-img-round .noradio + label {
    background-color: var(--color-light);
    border: none;
}

.radio-img .noradio:hover + label, .radio-img-round .noradio:hover + label {
    background-color: var(--color-dark);
}

.radio-img .noradio:checked + label, .radio-img-round .noradio:checked + label {
    background-color: var(--color-dark);
}

.radio-img-round label {
    position: relative;
    width: 50px;
    height: 50px;
    padding: 0px;
    border-radius: 50%;
}

.radio-img-round img {
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.onelinebtn {
    display: block;
    width: 80%;
    text-align: center;
    margin: 0 auto !important;
}

.onelinebtn .noradio {
    display:none;
}

.onelinebtn .noradio + label {
    width: 100%;
    position: relative;
    display: inline-block !important;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: var(--color-light);
    border-radius: 5px;
    box-shadow: none;
    transition: all .3s;
    border: none;
    color: #fff;
    font-weight: inherit;
}

.onelinebtn .noradio:hover + label {
    background-color: var(--color-dark);
}

.onelinebtn .noradio:checked + label {
    background-color: var(--color-dark);
    color: #fff;
}

.circle-number {
    color: #ffffff;
    background-color: var(--color-light);
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 5px;
    text-align: center;
    padding-top: 3px;
}

.accordion .card-header button.collapsed {
    background-image: url('../images/arrow-down.svg');
}

.accordion .card-header button {
    background-image: url('../images/arrow-up.svg');
    background-repeat: no-repeat;
    background-position: center right 10px;
    display: list-item;
    list-style: none;
    background-size: 16px;
}

.step-img img {
    height: 30px;
}

.step-img, .step-text {
    float: left;
}

.bottom-logos img {
    margin: 10px;
}

.pllogo {
    display: block;
    margin: 0 auto;
}

.secure {
    font-size: 13px;
}

footer {
    background-color: var(--color-dark);
    color: #ffffff;
}

footer a {
    color: #ffffff;
}

footer a:hover {
    color: #ffffff;
}

.policy {
    font-size: 14px;
}

form h3 {
    font-weight: 700;
    color: var(--color-dark);
}

.gift {
    position: relative;
}

.vouchersmall {
    width: 80px;
    position: absolute;
    right: -60px;
    top: -20px;
}

/* ----- RESPONSIVE ----- */
@media (max-width:480px) {
    .nomobile {
        display: none !important;
    }
    .onlymobile {
        display: block !important;
    }
    .section-mobile {
        padding: 20px 0;
    }
    .vouchercircle {
        margin-top: -40px !important;
    }
    .hero {
        padding: 60px 0;
    }
    form {
        margin-bottom: 20px;
    }
    .card {
        margin-bottom: 20px;
    }
    .navfix {
        position: relative;
    }
    nav img {
        height: 30px;
    }
    .trustp img {
        float: left !important;
        height: 17px;
        margin-top: 5px;
    }
}

@media (min-width:481px) {
    .form-bigger .form-control, .form-bigger label, .form-bigger .find-add {
        font-size: 120%;
    }
}

@media (min-width:481px) and (max-width:768px) {
    
}

@media (max-width:768px) {
    
}

@media (max-width:991px) {

}
/* ----- RESPONSIVE ----- */