body {
    font-family: "Montserrat", sans-serif;
    color: #333;
}

a {
    color: #fda33b;
    text-decoration: none;
}

h1,
h2, 
h3,
h4 {
    font-weight: 700;
    color: #1a3c4c;
}

p,
ul,
ol {
    margin-bottom: 40px;
}

.wysiwyg img {
    margin-bottom: 40px;
}

.text-primary {
    color: #fda33b !important;
}

.text-secondary {
    color: #1a3c4c !important;
}

.text-muted {
    color: #979aaa !important;
}

.bg-light {
    background-color: #F4F7F7 !important;
}

.bg-primary {
    background-color: #fda33b !important;
}

.bg-secondary {
    background-color: #1a3c4c !important;
}

img {
    max-width: 100%;
    height: auto;
}

.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgb(26, 60, 76, 0.25);
    border-color: #1a3c4c;
}

.form-check-input:checked {
    background-color: #1a3c4c;
    border-color: #1a3c4c;
}

.form-switch {
    padding: 0;
}

.form-switch label {
    display: inline-block;
    margin-bottom: 0.5rem;
    cursor: pointer;
    color: #061f2b;
}

.form-switch label input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.form-switch label .switch {
    position: relative;
    display: inline-block;
    margin: 0 0.3rem;
    vertical-align: middle;
    content: "";
    background-color: #1a3c4c;
    border-radius: 1rem;
    width: 2.5rem;
    height: 1rem;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
}

.form-switch label .switch:after {
    position: absolute;
    top: -0.1875rem;
    left: -0.3125rem;
    display: inline-block;
    content: "";
    background-color: #fff;
    border-radius: 1.3125rem;
    -webkit-box-shadow: 0 0.0625rem 0.1875rem 0.0625rem rgb(0 0 0 / 40%);
    box-shadow: 0 0.0625rem 0.1875rem 0.0625rem rgb(0 0 0 / 40%);
    width: 1.3125rem;
    height: 1.3125rem;
    -webkit-transition: left .3s ease, background .3s ease, -webkit-box-shadow 1s ease;
    transition: left .3s ease, background .3s ease, -webkit-box-shadow 1s ease;
    transition: left .3s ease, background .3s ease, box-shadow 1s ease;
    transition: left .3s ease, background .3s ease, box-shadow 1s ease, -webkit-box-shadow 1s ease;
}

.form-switch label input[type="checkbox"]:checked+.switch {
    background: #fda33b;
}

.form-switch label input[type="checkbox"]:checked+.switch:after {
    left: 1.5rem;
}

.btn {
    height: 50px;
    line-height: 48px;
    border-radius:3px;
    /*border-radius: 25px;*/
    padding: 0 20px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/*gil*/
.btn-big {
    height:auto;
    line-height:normal;
    padding:16px 80px;
    font-size:1.8rem;
}

.btn-primary {
    background: #fda33b;
    border-color: #fda33b;
    color: white;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #1a3c4c;
    border-color: #1a3c4c;
    color: white;
}

.btn-secondary {
    background: #1a3c4c;
    border-color: #1a3c4c;
    color: white;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: #fda33b;
    border-color: #fda33b;
    color: white;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0px;
    position: relative;
}

.swiper-pagination-bullet-active {
    background: #fda33b;
}

/*.container-fluid {*/
/*    max-width: 1600px;*/
/*}*/

#page {
    width: 100%;
    overflow: hidden;

    padding-top:119px;
    /*padding-top: 132px;*/
    /* header */
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
    z-index: 20;
}

.header-top {
    background: #1a3c4c;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.header-top a {
    color: white;
}

.header-top .btn {
    font-size: 12px;
    margin-left: 20px;
    height: 40px;
    line-height: 38px;
}

.header-top .btn:hover,
.header-top .btn:focus,
.header-top .btn:active {
    background: white;
    border-color: white;
    color: #fda33b;
}

.header-top .uil {
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    color: #fda33b;
    margin-right: 3px;
}

.header-btm {
    padding: 20px 0;
}

.toggle-menu {
    background: none;
    padding: 0;
    border: none;
    font-size: 32px;
    line-height: 1;
}

ul.menu,
ul.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.menu {
    position: relative;
    display: flex;
}

ul.menu>li {
    position: relative;
    margin-left: 30px;
}

ul.menu>li ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3;
    background: white;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    padding:0;
    min-width:260px;
}
    ul.menu>li ul li {
        padding:0;
        background-color:#f8f8f8;
    }
        ul.menu>li ul li a {
            padding:10px;
        }
        ul.menu>li ul li a:hover {
            background:#1a3c4c;
            color:#fff !important;
        }

ul.menu li:hover ul {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    padding-top:24px;
    border-radius:0 0 6px 6px;
    overflow:hidden;
}

ul.menu a {
    color: #979aaa;
    display: block;
}

ul.menu#menu-menu-principal a {
    color:#333;
}

ul.menu a:hover {
    color: #fda33b;
}

#offcanvasMenu {
    background: #1a3c4c;
}

#offcanvasMenu .offcanvas-header {
    justify-content: center;
}

#offcanvasMenu .offcanvas-header .btn-close {
    color: white;
    opacity: 1;
    background: none;
    font-size: 32px;
}

#offcanvasMenu ul.menu {
    flex-direction: column;
}

#offcanvasMenu ul.menu>li ul {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    position: relative;
    background: transparent;
    display: none;
    padding: 0 0 0 1rem;
    transition: none;
}

#offcanvasMenu ul.menu>li {
    text-transform: uppercase;
    margin: 7px 0;
    font-size: 18px;
}

#offcanvasMenu ul.menu>li a {
    display: block;
}

#offcanvasMenu ul.menu>li ul li {
    font-size: 16px;
    margin: 7px 0;
    text-transform: none;
}

#offcanvasMenu ul.menu>liul.menu-item-has-children>a {
    background: url('../img/chevron-down-primary.svg') no-repeat 100% center;
}

.heading-1 {
    font-size:3.1rem;
    font-weight: 700;
}

.heading-2 {
    line-height: 1.5em;
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: #fda33b;
}

.block {
    margin: 150px 0;
}

/* Bloc hero */
.block-hero {
    margin: 0;
}

.block-hero .swiper-slide {
    padding: 150px 0;
    background-size: cover;
    color: white;
    position: relative;
    height: calc(100vh - 145px);
    align-items: center;
    display: flex;
}

.block-hero .swiper-slide:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.block-hero .swiper-slide>* {
    position: relative;
    z-index: 2;
}

.block-hero h1 {
    color: white;
    margin-bottom: 50px;
}

.block-hero h1 small {
    font-size: 1rem;
}

.block-hero .btn {
    min-width: 200px;
}

.block-hero .swiper-pagination {
    bottom: 50px;
}

/* Bock services */
.block-services {
    margin: 0;
    padding: 50px 0;
}

.block-services .col-lg-3 {
    position: relative;
    margin: 30px 0;
}

.block-services .col-lg-3:before,
.block-services .col-lg-3:after {
    content: "";
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #979aaa;
    opacity: 0.2;
}

.block-services .col-lg-3:after {
    right: -1px;
    left: auto;
}

.block-services .d-flex {
    justify-content: center;
    align-items: center;
}

.block-services .icon {
    font-size: 3rem;
    color: #979aaa;
}

.block-services p {
    margin: 0;
    font-size: 1.125em;
    font-weight: 600;
    color: #1a3c4c;
}

/* Block Price */
.block-price {
    margin: 0;
    padding: 150px 0;
    background: #F4F7F7;
}

.block-price .block-title {
    text-align: center;
    margin-bottom: 100px;
}

.block-price .col-lg-4 {
    margin-bottom: 30px;
}

.block-price .item {
    background: white;
    border-radius: 6px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
}

.block-price .item-header h3 {
    text-align: center;
    color: #fda33b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.block-price .item p,
.block-price .item ul {
    margin-bottom: 30px;
}

.block-price .item ul {
    list-style: none;
    padding-left: 0;
}

.block-price .item ul li {
    margin: 5px 0;
}

.block-price .item ul li strong {
    color: #1a3c4c;
}

.block-price .item-footer {
    text-align: center;
    margin-top: 10px;
    margin-top: auto;
}

.block-price .row-3 {
    margin-top: 50px;
    text-align: center;
}

.block-price .row-3 p:last-child {
    margin-bottom: 0;
}

/* Bloc plans */
.block-plans {
    margin: 0;
    padding: 150px 0;
    background: #F4F7F7;
}

.block-plans .block-title {
    text-align: center;
    margin-bottom: 100px;
}

.block-plans .col-lg-4 {
    margin-bottom: 30px;
}

.block-plans .item {
    background: white;
    border-radius: 6px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
    border-radius: 20px 20px 0 0;
}

.block-plans .item-header {
    margin: -40px -40px 40px -40px;
    padding: 10px 20px;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 20px 20px 0 0;
}

.block-plans h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.block-plans .price {
    font-size: 2rem;
    font-weight: 700;
    color: #061f2b;
    margin-bottom: 20px;
}

.block-plans .price small {
    display: block;
    font-size: 16px;
    font-weight: 400;
}

.block-plans .cta {
    margin-bottom: 30px;
}

.block-plans .cta .btn {
    margin-bottom: 10px;
}

.block-plans .item p,
.block-plans .item ul {
    margin-bottom: 30px;
}

.block-plans .item ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.block-plans .item ul li {
    position: relative;
    margin: 10px 0;
    padding-left: 20px;
}

.block-plans .item ul li:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fda33b;
    position: absolute;
    top: 8px;
    left: 0;
}

.block-plans .item ul li strong {
    color: #1a3c4c;
}

.block-plans .item ul li a {
    color: #061f2b;
    text-decoration: underline;
}

.block-plans .item-footer {
    text-align: center;
    margin-top: 10px;
    margin-top: auto;
}

.block-plans .row-3 {
    margin-top: 50px;
    text-align: center;
}

.block-plans .row-3 p:last-child {
    margin-bottom: 0;
}

/* Block Banner */
.block-banner-1 {
    background: #1a3c4c;
    margin: 0;
    padding: 50px 0;
    color: white;
}

.block-banner-1 h3 {
    color: white;
    margin: 0;
}

.block-banner-1 h3 .small {
    font-size: 1rem;
}

.block-banner-1 .btn:hover {
    background: white;
    color: #fda33b;
}

/* Block Content */
.block-content {
    margin: 0;
    padding: 150px 0;
    background-color: #1a3c4c;
    background-size: cover;
    color: white;
    position: relative;
}

.block-content:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.block-content>* {
    position: relative;
    z-index: 2;
}

.block-content-media .block-title,
.block-content .block-title {
    margin-bottom: 50px;
}

.block-content .block-title>* {
    color: white;
}

.block-content ul,
.block-content-media ul {
    list-style: none;
    padding-left: 0;
}

.block-content ul li,
.block-content-media ul li {
    position: relative;
    margin: 10px 0;
    padding-left: 20px;
}

.block-content ul li:before,
.block-content-media ul li:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fda33b;
    position: absolute;
    top: 8px;
    left: 0;
}

.block-content .media,
.block-content-media .media {
    margin-bottom: 40px;
}

/* Block Features */
.block-features .block-title {
    text-align: center;
    margin-bottom: 100px;
}

.block-features .item {
    text-align: center;
    margin-bottom: 30px;
}

.block-features .item .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    background: #fda33b;
    color: white;
    position: relative;
    font-size: 3rem;
}

.block-features .item .icon>* {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.block-features .item h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Block list feature */
.block-list-features {
    margin: 100px 0;
}

.block-list-features .block-title {
    text-align: center;
    margin-bottom: 100px;
}

.list-features li {
    color: #1a3c4c;
    margin: 10px 0;
}

.list-features .uil-check {
    color: #fda33b;
    margin-right: 5px;
}

/* Bloc 3 posts */
.block-posts {
    margin: 100px 0;
}

.block-posts .block-title {
    text-align: center;
    margin-bottom: 100px;
}

.block-posts .item img {
    margin-bottom: 20px;
}

/* block-build-your-system */
.block-build-your-system {
    margin: 100px 0;
}

.block-build-your-system .block-title {
    text-align: center;
    margin-bottom: 50px;
}

.block-build-your-system .row-2 {
    color: #061f2b;
}

.block-build-your-system .row-2 .h4,
.block-build-your-system .row-2 select {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    text-align: center;
}

.block-build-your-system .row-2 select {
    margin-left: 10px;
}

.block-build-your-system .row-3 {
    color: #061f2b;
    text-align: center;
}

.block-build-your-system .row-3 .item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.block-build-your-system .row-3 .item .h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.block-build-your-system .row-3 .form-switch {
    margin-top: auto;
}

.block-build-your-system .row-4 {
    text-align: center;
    margin-top: 100px;
}

.form-section {
    display: none;
}

.form-section.current {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-navigation .btn {
    margin: 5px;
}

.parsley-errors-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
    color: red;
    font-size: 13px;
}

.search-phone-result {
    border: solid 1px #979aaa;
    border-radius: 6px;
    min-height: 150px;
}

.nav-steps {
    text-align: center;
}

.nav-steps .current {
    font-weight: 700;
}


/* block-download-media */
.block-download-media {
    margin: 100px 0;
}

.block-download-media .block-title {
    text-align: center;
    margin-bottom: 50px;
}

.block-download-media .item {
    background-color: #F4F7F7;
    padding: 60px 30px;
    text-align: center;
    margin-bottom: 30px;
}

.block-download-media .item .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    background: #fda33b;
    color: white;
    position: relative;
    font-size: 3rem;
}

.block-download-media .item .icon>* {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.block-download-media .item h3 {
    font-size: 24px;
    margin-bottom: 20px;
}


/* Block testimonial */
.block-testimonial {
    margin: 0;
    padding: 150px 0;
    background: #F4F7F7;
    text-align: center;
}

.block-testimonial .block-title {
    text-align: center;
    margin-bottom: 100px;
}

.block-testimonial .item {
    background: white;
    border-radius: 6px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
}

.block-testimonial .item-footer {
    margin-top: auto;
}

.block-testimonial .avatar {
    margin: auto;
    display: block;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.block-testimonial .avatar img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.block-testimonial .author {
    font-size: 13px;
    letter-spacing: 0;
    font-weight: 700;
    text-transform: uppercase;
}

/* Block CTA */
.block-cta {
    text-align: center;
}

.block-cta .block-title {
    text-align: center;
    margin-bottom: 30px;
}

/* Block latest posts */
.block-latest-posts {
    margin: 0;
    background: #1a3c4c;
    padding: 150px 0;
    color: white;
}

.block-latest-posts .col-md-6 {
    margin-bottom: 30px;
}

.block-latest-posts .block-title {
    text-align: center;
    margin-bottom: 100px;
}

.block-latest-posts .heading-1 {
    color: white;
}

.block-latest-posts .item {
    text-align: center;
}

.block-latest-posts .item-header {
    position: relative;
    overflow: hidden;
    height: 331px;
}

.block-latest-posts .item-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s;
}

.block-latest-posts .item-header img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.block-latest-posts .item:hover .item-header::before {
    opacity: 1;
}

.block-latest-posts .item:hover h3 {
    color: #fda33b;
}

.block-latest-posts .item-footer,
.block-latest-posts .item-body {
    background: white;
    padding: 20px;
}

.block-latest-posts .item-footer {
    color: #979aaa;
}

.block-latest-posts .item .category {
    margin-bottom: 20px;
}

.tag {
    color: white;
    background: #fda33b;
    display: inline-block;
    margin: 3px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* Block newsletter */
.block-newsletter {
    margin: 0;
    background: #1a3c4c;
    padding: 50px 0;
    color: white;
}

.block-newsletter h3 {
    font-size: 2rem;
    color: white;
    margin: 0;
}

.block-newsletter form {
    display: flex;
    align-items: center;
}

.block-newsletter form .form-control {
    height: 50px;
    border-radius: 25px;
    border-color: white;
}

.block-newsletter form .form-control:focus {
    outline: 0;
    box-shadow: none;
}

.block-newsletter form .btn {
    margin-left: 15px
}

.block-newsletter form .btn:hover {
    background: white;
    border-color: white;
    color: #fda33b;
}

/* Block page */
.block-page {
    margin: 100px 0;
}

/* Footer */
.footer-top {
    background: #1a3c4c;
    padding: 100px 0 70px 0;
    color: white;
}

.footer-btm {
    background: #061f2b;
    padding: 20px 0;
    color: #979aaa;
    text-align: center;
    font-size: 12px;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    color: white;
    text-align: left;
    font-size: 1.25em;
    font-weight: 500;
    letter-spacing: -.7px;
    margin-bottom: 2.4rem;
    color: white;
}

.widget ul.menu {
    flex-direction: column;
}

.widget ul.menu li {
    margin: 7px 0;
}

/* Modal */
.modal-body {
    padding: 50px;
}

.modal .btn-close {
    background: none;
    font-size: 2.5rem;
    color: #1a3c4c;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
}

.modal-title {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {

    .heading-1 {
        font-size: 3rem;
    }

    .block {
        margin: 100px 0;
    }

    .block-hero {
        margin: 0;
    }

    .block-price,
    .block-plans,
    .block-content,
    .block-latest-posts,
    .block-testimonial {
        margin: 0;
        padding: 100px 0;
    }

    .block-services,
    .block-banner-1,
    .block-newsletter {
        margin: 0;
        padding: 50px 0;
    }

    .block-banner-1 h3,
    .block-newsletter h3 {
        margin-bottom: 30px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .heading-1 {
        font-size: 2rem;
    }

    .block {
        margin: 60px 0;
    }

    .block-hero {
        margin: 0;
    }

    .block-price,
    .block-plans,
    .block-content,
    .block-latest-posts,
    .block-testimonial {
        margin: 0;
        padding: 60px 0;
    }

    .block-services,
    .block-banner-1,
    .block-newsletter {
        margin: 0;
        padding: 60px 0;
    }

    .block-plans .block-title,
    .block-price .block-title,
    .block-features .block-title,
    .block-testimonial .block-title,
    .block-latest-posts .block-title,
    .block-download-media .block-title,
    .block-posts .block-title,
    .block-list-features .block-title {
        margin-bottom: 50px;
    }

    .footer-top {
        padding: 50px 0 2px 0;
    }
}