:root {
    --color-dark: #1f2325;
    --color-light: #cd2454;
}

@font-face {
    font-family: 'MontserratThin';
    src: url('../fonts/Montserrat-Thin.otf');
}

@font-face {
    font-family: 'MontserratLight';
    src: url('../fonts/Montserrat-Light.otf');
}

@font-face {
    font-family: 'MontserratRegular';
    src: url('../fonts/Montserrat-Regular.otf');
}

@font-face {
    font-family: 'MontserratMedium';
    src: url('../fonts/Montserrat-Medium.otf');
}

@font-face {
    font-family: 'MontserratSemiBold';
    src: url('../fonts/Montserrat-SemiBold.otf');
}

@font-face {
    font-family: 'MontserratBold';
    src: url('../fonts/Montserrat-Bold.otf');
}

body {
    font-family: 'MontserratLight';
    font-size: 14px;
}

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

h1 {
    font-size: 26px;
    font-family: 'MontserratBold';
}

h2, h3, b {
    font-family: 'MontserratSemiBold';
}

h4, h5 {
    font-family: 'MontserratMedium';
}

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

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

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

nav a.nav-link {
    color: inherit;
    font-family: 'MontserratMedium';
}

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-color: var(--color-dark);
    color: #ffffff;
    padding: 60px 0;
}

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;
    padding: 0 !important;
}

.form-control {
    max-width: 520px;
}

.form-buttons {
    max-width: 270px;
}

label {
    font-family: 'MontserratMedium';
}

.find-add {
    font-family: 'MontserratRegular';
    background-color: var(--color-light);
}

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

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

.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;
    font-family: 'MontserratMedium';
}

.btn-width {
    width: 100%;
}

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

.button-block {
    display: block;
    width: 100%;
    padding: 25px 50px;
    font-family: 'MontserratSemiBold';
    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;
}

.back {
    font-family: 'MontserratMedium';
}

.newsletterOptin-text, #message, .optout-text{
    font-family: 'MontserratRegular';
}

.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;
}

.checks img {
    height: 34px;
}

.services h4 {
    font-family: 'MontserratSemiBold';
}

.services img {
    max-height: 90px;
}

.box {
    border-radius: 20px;
    padding: 40px;
}

.box img {
    max-height: 70px;
    margin: 0 auto 25px;
    display: block;
    max-width: 220px;
}

#thankyou-msg {
    padding: 50px;
    text-align: center;
}

#thankyou-msg img {
    width: 80px;
    margin: 0 auto 20px;
    display: block;
}






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

footer a {
    color: #ffffff;
}

footer a:hover {
    color: #ffffff;
}

.policy {
    font-size: 14px;
}

/* ----- RESPONSIVE ----- */
@media (max-width:480px) {
    .section-mobile {
        padding: 20px 0;
    }
    .hero {
        padding: 60px 0;
    }
    form {
        margin-bottom: 20px;
    }
    .card {
        margin-bottom: 20px;
    }
    .telno {
        font-size: 25px;
    }
    .footer-bottom h3 {
        font-size: 17px;
    }
}

@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 ----- */