html {
    font-family: $primaryFont;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font: 16px/1.42857143 $primaryFont;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: $primaryColor;
    text-decoration: none;
    @include trans(.2s);
    outline: none;
    cursor: pointer;
}

a:hover,
a:focus {
    color: darken($primaryColor, 10%);
    text-decoration: none;
}

figure {
    margin: 0;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

p {
    text-align: left;
    font: 16px/1.6 $primaryFont;
    color: $primaryColor;
}

.btn {
    padding: 16px 30px;
    text-align: center;
    background: $primaryColor;
    color: #fff;
    font: 15px/1.2 $primaryFont;
    @include trans(.2s);
    outline: 0;
    border: 0;

    &:hover, &:focus {
        outline: 0;
        color: #fff;
        background: darken($primaryColor, 15%);
    }
    @media (max-width: $laptop) {
        font-size: 12px;
        padding: 10px 20px;
    }

    &.btn-orange{
        background: $orange;

        &:hover, &:focus {
            background: lighten($orange, 15%);
        }
    }
    &.title-btn{
        padding: 10px;
        font-weight: bold;
    }
    &.btn-black{
        background: #141414;

        &:hover, &:focus {
            background: lighten(#141414, 15%);
        }
    }
    &.btn-small{
        padding: 10px 20px;
    }
}

.main-title {
    font: 39px/1 $primaryFont;
    font-weight: 800;
    color: $primaryColor;

    @media (max-width: $tablet) {
        font-size: 25px;
    }

}

.input-field {
    width: 100%;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #ccc;
    font: 14px/1 $primaryFont;
    outline: 0;
}

select.input-field {
    padding: 5px 20px;
}

.text_center {
    text-align: center;
}

.vcenter {
    @include flex_align_items(center);
    @include flex_justify_content(flex-start);
    @include display_flex();

    @media (max-width: $laptop) {
        display: block;
    }
}

label {
    color: $textColor;
    font-size: 16px;
    margin-bottom: 0;
}

input {
    width: 100%;
    padding: 13px 25px;
    border-radius: 25px;
    border: 1px solid #d0d0d0;
    background: #fff;
    font: 14px/1 $primaryFont;
    outline: 0;
}

input[type="submit"] {
    background: $primaryColor;
    width: 205px;
    height: auto !important;
    margin: 0 auto;
    color: #fff;
    @include trans(.2s);

    &:hover {
        background: darken($primaryColor, 10%);
    }
}

.parsley-required, .parsley-equalto {
    color: #a94442;
    padding: 10px;
    font: 13px/1 $primaryFont;
}
.cover{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.radio-custom {
    @include cfx;

    .form-radio {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        display: inline-block;
        position: relative;
        background-color: transparent;
        color: $orange;
        top: 10px;
        height: 20px;
        width: 20px;
        cursor: pointer;
        margin-right: 10px;
        outline: none;
        border-radius: 50%;
        padding: 1px;
        border: 1px solid #fff;

        &:focus {
            outline: none;
        }
        &:hover,
        &:checked {
            background-color: $orange;
            border: 2.5px solid $orange;
        }
    }
    label{
        margin-top: 10px;
        font-weight: 600;
        color: #fff;
    }
}
.col-sm-3-jr{
    @media (min-width: 768px) {
        width: 100%;
    }
    @include mqn(t) {
        width: 280px;
    }
    @media (min-width: 1000px) {
        width: 330px;
    }
}
.col-sm-9-jr{
    @media (min-width: 768px) {
        width: 100%;
    }
    @include mqn(t) {
        width: 100%;
        margin-right: -280px;

        .jr-container{
            margin-right:280px;
        }
    }
    @media (min-width: 1000px) {
        width: 100%;
        margin-right: -330px;

        .jr-container{
            margin-right:330px;
        }
    }
}
.breadcrumb-container{
    background-color: #F9F9F9;

    .breadcrumb{
        background: transparent;
        padding: 8px 0;

        > li + li:before{
            color: $primaryColor;
            content: "\f053";
            font-size: 14px;
            font-family: "Font Awesome 5 Free";
            font-weight: 600;
        }
        li{
            a{
                font-weight: 700;
            }
        }
    }
}
