/********** Template CSS **********/
:root {
    --primary: #0E2E50  ;
    --secondary: #00B98E;
    --light: #EFFDF5;
    --dark: #FF6922;
}

.text-start{text-align:left !important}
.text-end{text-align:right !important}
.text-center{text-align:center !important}
.text-decoration-none{text-decoration:none !important}
.text-decoration-underline{text-decoration:underline !important}
.text-decoration-line-through{text-decoration:line-through !important}
.text-lowercase{text-transform:lowercase !important}
.text-uppercase{text-transform:uppercase !important}
.text-capitalize{text-transform:capitalize !important}
.text-wrap{white-space:normal !important}
.text-nowrap{white-space:nowrap !important}
.text-break{word-wrap:break-word !important;word-break:break-word !important}

.input-loading-effect {
    position: relative;
}
.input-loading-effect::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: input-spinner 0.6s linear infinite;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
    display: none;
}
.input-loading-effect.loading::after {
    display: block;
}

@keyframes input-spinner {
    0% { transform: translateY(-50%) rotate(0deg);}
    100% { transform: translateY(-50%) rotate(360deg);}
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
    border-bottom: 1px solid var(--secondary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}
#header-carousel .carousel-item {
    max-height: 90vh;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}

/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}



/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: red;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: red;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid white;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}
.navbar-light .navbar-toggler{color:rgba(0,0,0,0.55);border-color:rgba(0,0,0,0.1)}

.singleView {
    height: 62vh!important;
}

/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}


@media (max-width: 576px) {
 .singleView {
        height: 50vh!important;
    }
}



.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***//*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: -110px;
    padding-top: 180px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



/* EXTRA PAGES */
.w-15p{
    width: 15px;
}


.h-15p{
    width: 15px;
}
.w-25p{
    width: 60px;
}


.h-25p{
    width: 25px;
}

.border-bottom-dotted{
    border-bottom: 1px dotted currentColor;
}.border-dotted{
    border: 1px dotted currentColor;
}

/*Shadow*/
.shadow-none {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1) !important; }

.shadow-top {
    box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.1) !important; }

.shadow-bottom {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1) !important; }

.shadow-left {
    box-shadow: -2px 0 2px rgba(0, 0, 0, 0.1) !important; }

.shadow-right {
    box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1) !important; }

.shadow-sm {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1) !important; }
.shadow-sm.shadow-top {
    box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.1) !important; }
.shadow-sm.shadow-bottom {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1) !important; }
.shadow-sm.shadow-left {
    box-shadow: -2px 0 2px rgba(0, 0, 0, 0.1) !important; }
.shadow-sm.shadow-right {
    box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1) !important; }

/*Font Size*/
.font-11 {
    font-size: 11px !important; }

.font-12 {
    font-size: 12px !important; }

.font-13 {
    font-size: 13px !important; }

.font-14 {
    font-size: 14px !important; }

.font-15 {
    font-size: 15px !important; }

.font-16 {
    font-size: 16px !important; }

.font-17 {
    font-size: 17px !important; }

.font-18 {
    font-size: 18px !important; }

.font-19 {
    font-size: 19px !important; }

.font-20 {
    font-size: 20px !important; }

.font-21 {
    font-size: 21px !important; }

.font-22 {
    font-size: 22px !important; }

.font-23 {
    font-size: 23px !important; }

.font-24 {
    font-size: 24px !important; }

.font-25 {
    font-size: 25px !important; }

.font-26 {
    font-size: 26px !important; }

.font-27 {
    font-size: 27px !important; }

.font-28 {
    font-size: 28px !important; }

.font-29 {
    font-size: 29px !important; }

.font-30 {
    font-size: 30px !important; }

.font-31 {
    font-size: 31px !important; }

.font-32 {
    font-size: 32px !important; }

.font-33 {
    font-size: 33px !important; }

.font-34 {
    font-size: 34px !important; }

.font-35 {
    font-size: 35px !important; }

.font-36 {
    font-size: 36px !important; }

.font-37 {
    font-size: 37px !important; }

.font-38 {
    font-size: 38px !important; }

.font-39 {
    font-size: 39px !important; }

.font-40 {
    font-size: 40px !important; }

.font-41 {
    font-size: 41px !important; }

.font-42 {
    font-size: 42px !important; }

.font-43 {
    font-size: 43px !important; }

.font-44 {
    font-size: 44px !important; }

.font-45 {
    font-size: 45px !important; }

.font-46 {
    font-size: 46px !important; }

.font-47 {
    font-size: 47px !important; }

.font-48 {
    font-size: 48px !important; }

.font-49 {
    font-size: 49px !important; }

.font-50 {
    font-size: 50px !important; }


@media (min-width: 576px) {
    .font-sm-11 {
        font-size: 11px !important; }

    .font-sm-12 {
        font-size: 12px !important; }

    .font-sm-13 {
        font-size: 13px !important; }

    .font-sm-14 {
        font-size: 14px !important; }

    .font-sm-15 {
        font-size: 15px !important; }

    .font-sm-16 {
        font-size: 16px !important; }

    .font-sm-17 {
        font-size: 17px !important; }

    .font-sm-18 {
        font-size: 18px !important; }

    .font-sm-19 {
        font-size: 19px !important; }

    .font-sm-20 {
        font-size: 20px !important; }

    .font-sm-21 {
        font-size: 21px !important; }

    .font-sm-22 {
        font-size: 22px !important; }

    .font-sm-23 {
        font-size: 23px !important; }

    .font-sm-24 {
        font-size: 24px !important; }

    .font-sm-25 {
        font-size: 25px !important; }

    .font-sm-26 {
        font-size: 26px !important; }

    .font-sm-27 {
        font-size: 27px !important; }

    .font-sm-28 {
        font-size: 28px !important; }

    .font-sm-29 {
        font-size: 29px !important; }

    .font-sm-30 {
        font-size: 30px !important; }

    .font-sm-31 {
        font-size: 31px !important; }

    .font-sm-32 {
        font-size: 32px !important; }

    .font-sm-33 {
        font-size: 33px !important; }

    .font-sm-34 {
        font-size: 34px !important; }

    .font-sm-35 {
        font-size: 35px !important; }

    .font-sm-36 {
        font-size: 36px !important; }

    .font-sm-37 {
        font-size: 37px !important; }

    .font-sm-38 {
        font-size: 38px !important; }

    .font-sm-39 {
        font-size: 39px !important; }

    .font-sm-40 {
        font-size: 40px !important; }

    .font-sm-41 {
        font-size: 41px !important; }

    .font-sm-42 {
        font-size: 42px !important; }

    .font-sm-43 {
        font-size: 43px !important; }

    .font-sm-44 {
        font-size: 44px !important; }

    .font-sm-45 {
        font-size: 45px !important; }

    .font-sm-46 {
        font-size: 46px !important; }

    .font-sm-47 {
        font-size: 47px !important; }

    .font-sm-48 {
        font-size: 48px !important; }

    .font-sm-49 {
        font-size: 49px !important; }

    .font-sm-50 {
        font-size: 50px !important; } }
@media (min-width: 768px) {
    .font-md-11 {
        font-size: 11px !important; }

    .font-md-12 {
        font-size: 12px !important; }

    .font-md-13 {
        font-size: 13px !important; }

    .font-md-14 {
        font-size: 14px !important; }

    .font-md-15 {
        font-size: 15px !important; }

    .font-md-16 {
        font-size: 16px !important; }

    .font-md-17 {
        font-size: 17px !important; }

    .font-md-18 {
        font-size: 18px !important; }

    .font-md-19 {
        font-size: 19px !important; }

    .font-md-20 {
        font-size: 20px !important; }

    .font-md-21 {
        font-size: 21px !important; }

    .font-md-22 {
        font-size: 22px !important; }

    .font-md-23 {
        font-size: 23px !important; }

    .font-md-24 {
        font-size: 24px !important; }

    .font-md-25 {
        font-size: 25px !important; }

    .font-md-26 {
        font-size: 26px !important; }

    .font-md-27 {
        font-size: 27px !important; }

    .font-md-28 {
        font-size: 28px !important; }

    .font-md-29 {
        font-size: 29px !important; }

    .font-md-30 {
        font-size: 30px !important; }

    .font-md-31 {
        font-size: 31px !important; }

    .font-md-32 {
        font-size: 32px !important; }

    .font-md-33 {
        font-size: 33px !important; }

    .font-md-34 {
        font-size: 34px !important; }

    .font-md-35 {
        font-size: 35px !important; }

    .font-md-36 {
        font-size: 36px !important; }

    .font-md-37 {
        font-size: 37px !important; }

    .font-md-38 {
        font-size: 38px !important; }

    .font-md-39 {
        font-size: 39px !important; }

    .font-md-40 {
        font-size: 40px !important; }

    .font-md-41 {
        font-size: 41px !important; }

    .font-md-42 {
        font-size: 42px !important; }

    .font-md-43 {
        font-size: 43px !important; }

    .font-md-44 {
        font-size: 44px !important; }

    .font-md-45 {
        font-size: 45px !important; }

    .font-md-46 {
        font-size: 46px !important; }

    .font-md-47 {
        font-size: 47px !important; }

    .font-md-48 {
        font-size: 48px !important; }

    .font-md-49 {
        font-size: 49px !important; }

    .font-md-50 {
        font-size: 50px !important; } }
@media (min-width: 992px) {
    .font-lg-11 {
        font-size: 11px !important; }

    .font-lg-12 {
        font-size: 12px !important; }

    .font-lg-13 {
        font-size: 13px !important; }

    .font-lg-14 {
        font-size: 14px !important; }

    .font-lg-15 {
        font-size: 15px !important; }

    .font-lg-16 {
        font-size: 16px !important; }

    .font-lg-17 {
        font-size: 17px !important; }

    .font-lg-18 {
        font-size: 18px !important; }

    .font-lg-19 {
        font-size: 19px !important; }

    .font-lg-20 {
        font-size: 20px !important; }

    .font-lg-21 {
        font-size: 21px !important; }

    .font-lg-22 {
        font-size: 22px !important; }

    .font-lg-23 {
        font-size: 23px !important; }

    .font-lg-24 {
        font-size: 24px !important; }

    .font-lg-25 {
        font-size: 25px !important; }

    .font-lg-26 {
        font-size: 26px !important; }

    .font-lg-27 {
        font-size: 27px !important; }

    .font-lg-28 {
        font-size: 28px !important; }

    .font-lg-29 {
        font-size: 29px !important; }

    .font-lg-30 {
        font-size: 30px !important; }

    .font-lg-31 {
        font-size: 31px !important; }

    .font-lg-32 {
        font-size: 32px !important; }

    .font-lg-33 {
        font-size: 33px !important; }

    .font-lg-34 {
        font-size: 34px !important; }

    .font-lg-35 {
        font-size: 35px !important; }

    .font-lg-36 {
        font-size: 36px !important; }

    .font-lg-37 {
        font-size: 37px !important; }

    .font-lg-38 {
        font-size: 38px !important; }

    .font-lg-39 {
        font-size: 39px !important; }

    .font-lg-40 {
        font-size: 40px !important; }

    .font-lg-41 {
        font-size: 41px !important; }

    .font-lg-42 {
        font-size: 42px !important; }

    .font-lg-43 {
        font-size: 43px !important; }

    .font-lg-44 {
        font-size: 44px !important; }

    .font-lg-45 {
        font-size: 45px !important; }

    .font-lg-46 {
        font-size: 46px !important; }

    .font-lg-47 {
        font-size: 47px !important; }

    .font-lg-48 {
        font-size: 48px !important; }

    .font-lg-49 {
        font-size: 49px !important; }

    .font-lg-50 {
        font-size: 50px !important; } }
@media (min-width: 1200px) {
    .font-xl-11 {
        font-size: 11px !important; }

    .font-xl-12 {
        font-size: 12px !important; }

    .font-xl-13 {
        font-size: 13px !important; }

    .font-xl-14 {
        font-size: 14px !important; }

    .font-xl-15 {
        font-size: 15px !important; }

    .font-xl-16 {
        font-size: 16px !important; }

    .font-xl-17 {
        font-size: 17px !important; }

    .font-xl-18 {
        font-size: 18px !important; }

    .font-xl-19 {
        font-size: 19px !important; }

    .font-xl-20 {
        font-size: 20px !important; }

    .font-xl-21 {
        font-size: 21px !important; }

    .font-xl-22 {
        font-size: 22px !important; }

    .font-xl-23 {
        font-size: 23px !important; }

    .font-xl-24 {
        font-size: 24px !important; }

    .font-xl-25 {
        font-size: 25px !important; }

    .font-xl-26 {
        font-size: 26px !important; }

    .font-xl-27 {
        font-size: 27px !important; }

    .font-xl-28 {
        font-size: 28px !important; }

    .font-xl-29 {
        font-size: 29px !important; }

    .font-xl-30 {
        font-size: 30px !important; }

    .font-xl-31 {
        font-size: 31px !important; }

    .font-xl-32 {
        font-size: 32px !important; }

    .font-xl-33 {
        font-size: 33px !important; }

    .font-xl-34 {
        font-size: 34px !important; }

    .font-xl-35 {
        font-size: 35px !important; }

    .font-xl-36 {
        font-size: 36px !important; }

    .font-xl-37 {
        font-size: 37px !important; }

    .font-xl-38 {
        font-size: 38px !important; }

    .font-xl-39 {
        font-size: 39px !important; }

    .font-xl-40 {
        font-size: 40px !important; }

    .font-xl-41 {
        font-size: 41px !important; }

    .font-xl-42 {
        font-size: 42px !important; }

    .font-xl-43 {
        font-size: 43px !important; }

    .font-xl-44 {
        font-size: 44px !important; }

    .font-xl-45 {
        font-size: 45px !important; }

    .font-xl-46 {
        font-size: 46px !important; }

    .font-xl-47 {
        font-size: 47px !important; }

    .font-xl-48 {
        font-size: 48px !important; }

    .font-xl-49 {
        font-size: 49px !important; }

    .font-xl-50 {
        font-size: 50px !important; } }
/*Font Weight*/
.font-weight-400 {
    font-weight: 400 !important; }

.font-weight-500 {
    font-weight: 500 !important; }

.font-weight-600 {
    font-weight: 600 !important; }

.font-weight-700 {
    font-weight: 700 !important; }
/*Form-Wizard*/
.wizard .wizard-icon-wrap {
    display: table;
    height: 35px;
    width: 35px;
    background: #e0e3e4;
    border-radius: 50%;
    float: left;
    text-align: center;
    position: relative; }
.wizard .wizard-icon-wrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ab26aa;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    -moz-transition: -moz-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    z-index: 1; }
.wizard .wizard-icon-wrap i {
    display: table-cell;
    vertical-align: middle;
    color: #6f7a7f;
    font-size: 21px;
    position: relative;
    z-index: 2; }
.wizard .wizard-head-text-wrap {
    display: inline-block;
    margin-left: 10px;
    padding-top: 7px; }
.wizard .wizard-head-text-wrap > span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #324148;
    text-transform: uppercase; }
.wizard .wizard-head-text-wrap .step-count {
    color: #adb3b6;
    font-size: 13px; }
.wizard > .content {
    background: #fff;
    border-radius: 0;
    min-height: 100px;
    margin: 0;
    border: none;
    padding-bottom: 10px; }
.wizard > .content > .body {
    width: 100%;
    height: auto;
    padding: 30px;
    position: static; }
.wizard > .content > .body input {
    border-width: 2px;
    border-color: #e0e3e4; }
.wizard > .content > .body ul > li {
    display: inherit; }
.wizard > .actions {
    background: #fff;
    padding: 10px 30px; }
.wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    background: #ab26aa;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #ab26aa;
    text-transform: capitalize;
    outline: none;
    border-width: 2px;
    border-radius: .25rem;
    padding: .15rem .4rem;
    font-size: .75rem; }
.wizard > .actions .disabled a, .wizard > .actions .disabled a:hover, .wizard > .actions .disabled a:active {
    background: #cecece;
    color: #fff;
    border: 1px solid #cecece;
    opacity: .65; }
.wizard > .actions > ul > li {
    margin: 0 0.3em; }
.wizard > .steps {
    margin-bottom: 20px; }
.wizard > .steps > ul > li {
    width: auto;
    margin-right: 30px;
    margin-bottom: 20px; }
.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
    padding: 0;
    margin: 0;
    overflow: hidden; }
.wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active {
    background: transparent;
    color: inherit; }
.wizard > .steps .current a .wizard-icon-wrap, .wizard > .steps .current a:hover .wizard-icon-wrap, .wizard > .steps .current a:active .wizard-icon-wrap {
    background: transparent; }
.wizard > .steps .current a .wizard-icon-wrap:before, .wizard > .steps .current a:hover .wizard-icon-wrap:before, .wizard > .steps .current a:active .wizard-icon-wrap:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
.wizard > .steps .current a .wizard-icon-wrap i, .wizard > .steps .current a:hover .wizard-icon-wrap i, .wizard > .steps .current a:active .wizard-icon-wrap i {
    color: #fff; }
.wizard > .steps .done a, .wizard > .steps .done a:hover, .wizard > .steps .done a:active {
    background: transparent;
    color: inherit;
    overflow: hidden; }
.wizard > .steps .done a .wizard-icon-wrap, .wizard > .steps .done a:hover .wizard-icon-wrap, .wizard > .steps .done a:active .wizard-icon-wrap {
    background: #009b84; }
.wizard > .steps .done a .wizard-icon-wrap:before, .wizard > .steps .done a:hover .wizard-icon-wrap:before, .wizard > .steps .done a:active .wizard-icon-wrap:before {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0); }
.wizard > .steps .done a .wizard-icon-wrap i, .wizard > .steps .done a:hover .wizard-icon-wrap i, .wizard > .steps .done a:active .wizard-icon-wrap i {
    color: #fff; }
.wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
    background: transparent;
    color: inherit; }

@media (max-width: 991px) {
    .wizard .steps ul > li {
        width: 100%;
    }
}

.cursor-pointer{
    cursor: pointer;
}

.custom-carousel-btn {
    width: 30px;
    height: 30px;
    padding: 3px;
    background-color: rgba(0, 0, 0, 0.8);
    margin: 20px 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease-in-out;
}

.overflow-hidden{
    overflow: hidden!important;
}

/*Width*/
.w-25p {
    width: 25px !important; }

.w-30p {
    width: 30px !important; }

.w-35p {
    width: 35px !important; }

.w-40p {
    width: 40px !important; }

.w-45p {
    width: 45px !important; }

.w-50p {
    width: 50px !important; }

.w-55p {
    width: 55px !important; }

.w-60p {
    width: 60px !important; }

.w-65p {
    width: 65px !important; }

.w-70p {
    width: 70px !important; }

.w-75p {
    width: 75px !important; }

.w-80p {
    width: 80px !important; }

.w-85p {
    width: 85px !important; }

.w-90p {
    width: 90px !important; }

.w-95p {
    width: 95px !important; }

.w-100p {
    width: 100px !important; }

.w-105p {
    width: 105px !important; }

.w-110p {
    width: 110px !important; }

.w-115p {
    width: 115px !important; }

.w-120p {
    width: 120px !important; }

.w-125p {
    width: 125px !important; }

.w-130p {
    width: 130px !important; }

.w-135p {
    width: 135px !important; }

.w-140p {
    width: 140px !important; }

.w-145p {
    width: 145px !important; }

.w-150p {
    width: 150px !important; }

.w-155p {
    width: 155px !important; }

.w-160p {
    width: 160px !important; }

.w-165p {
    width: 165px !important; }

.w-170p {
    width: 170px !important; }

.w-175p {
    width: 175px !important; }

.w-180p {
    width: 180px !important; }

.w-185p {
    width: 185px !important; }

.w-190p {
    width: 190px !important; }

.w-195p {
    width: 195px !important; }

.w-200p {
    width: 200px !important; }

.w-205p {
    width: 205px !important; }

.w-210p {
    width: 210px !important; }

.w-215p {
    width: 215px !important; }

.w-220p {
    width: 220px !important; }

.w-225p {
    width: 225px !important; }

.w-230p {
    width: 230px !important; }

.w-235p {
    width: 235px !important; }

.w-240p {
    width: 240px !important; }

.w-245p {
    width: 245px !important; }

.w-250p {
    width: 250px !important; }

.w-255p {
    width: 255px !important; }

.w-260p {
    width: 260px !important; }

.w-265p {
    width: 265px !important; }

.w-270p {
    width: 270px !important; }

.w-275p {
    width: 275px !important; }

.w-280p {
    width: 280px !important; }

.w-285p {
    width: 285px !important; }

.w-290p {
    width: 290px !important; }

.w-295p {
    width: 295px !important; }

.w-300p {
    width: 300px !important; }

.w-305p {
    width: 305px !important; }

.w-310p {
    width: 310px !important; }

.w-315p {
    width: 315px !important; }

.w-320p {
    width: 320px !important; }

.w-325p {
    width: 325px !important; }

.w-330p {
    width: 330px !important; }

.w-335p {
    width: 335px !important; }

.w-340p {
    width: 340px !important; }

.w-345p {
    width: 345px !important; }

.w-350p {
    width: 350px !important; }

.w-355p {
    width: 355px !important; }

.w-360p {
    width: 360px !important; }

.w-365p {
    width: 365px !important; }

.w-370p {
    width: 370px !important; }

.w-375p {
    width: 375px !important; }

.w-380p {
    width: 380px !important; }

.w-385p {
    width: 385px !important; }

.w-390p {
    width: 390px !important; }

.w-395p {
    width: 395px !important; }

.w-400p {
    width: 400px !important; }

.w-405p {
    width: 405px !important; }

.w-410p {
    width: 410px !important; }

.w-415p {
    width: 415px !important; }

.w-420p {
    width: 420px !important; }

.w-425p {
    width: 425px !important; }

.w-430p {
    width: 430px !important; }

.w-435p {
    width: 435px !important; }

.w-440p {
    width: 440px !important; }

.w-445p {
    width: 445px !important; }

.w-450p {
    width: 450px !important; }

.w-455p {
    width: 455px !important; }

.w-460p {
    width: 460px !important; }

.w-465p {
    width: 465px !important; }

.w-470p {
    width: 470px !important; }

.w-475p {
    width: 475px !important; }

.w-480p {
    width: 480px !important; }

.w-485p {
    width: 485px !important; }

.w-490p {
    width: 490px !important; }

.w-495p {
    width: 495px !important; }

.w-500p {
    width: 500px !important; }

.w-505p {
    width: 505px !important; }

.w-510p {
    width: 510px !important; }

.w-515p {
    width: 515px !important; }

.w-520p {
    width: 520px !important; }

.w-525p {
    width: 525px !important; }

.w-530p {
    width: 530px !important; }

.w-535p {
    width: 535px !important; }

.w-540p {
    width: 540px !important; }

.w-545p {
    width: 545px !important; }

.w-550p {
    width: 550px !important; }

.w-555p {
    width: 555px !important; }

.w-560p {
    width: 560px !important; }

.w-565p {
    width: 565px !important; }

.w-570p {
    width: 570px !important; }

.w-575p {
    width: 575px !important; }

.w-580p {
    width: 580px !important; }

.w-585p {
    width: 585px !important; }

.w-590p {
    width: 590px !important; }

.w-595p {
    width: 595px !important; }

.w-600p {
    width: 600px !important; }

.w-605p {
    width: 605px !important; }

.w-610p {
    width: 610px !important; }

.w-615p {
    width: 615px !important; }

.w-620p {
    width: 620px !important; }

.w-625p {
    width: 625px !important; }

.w-630p {
    width: 630px !important; }

.w-635p {
    width: 635px !important; }

.w-640p {
    width: 640px !important; }

.w-645p {
    width: 645px !important; }

.w-650p {
    width: 650px !important; }

.w-655p {
    width: 655px !important; }

.w-660p {
    width: 660px !important; }

.w-665p {
    width: 665px !important; }

.w-670p {
    width: 670px !important; }

.w-675p {
    width: 675px !important; }

.w-680p {
    width: 680px !important; }

.w-685p {
    width: 685px !important; }

.w-690p {
    width: 690px !important; }

.w-695p {
    width: 695px !important; }

.w-700p {
    width: 700px !important; }

.w-705p {
    width: 705px !important; }

.w-710p {
    width: 710px !important; }

.w-715p {
    width: 715px !important; }

.w-720p {
    width: 720px !important; }

.w-725p {
    width: 725px !important; }

.w-730p {
    width: 730px !important; }

.w-735p {
    width: 735px !important; }

.w-740p {
    width: 740px !important; }

.w-745p {
    width: 745px !important; }

.w-750p {
    width: 750px !important; }

.w-755p {
    width: 755px !important; }

.w-760p {
    width: 760px !important; }

.w-765p {
    width: 765px !important; }

.w-770p {
    width: 770px !important; }

.w-775p {
    width: 775px !important; }

.w-780p {
    width: 780px !important; }

.w-785p {
    width: 785px !important; }

.w-790p {
    width: 790px !important; }

.w-795p {
    width: 795px !important; }

.w-800p {
    width: 800px !important; }

@media (min-width: 576px) {
    .w-sm-25p {
        width: 25px !important; }

    .w-sm-30p {
        width: 30px !important; }

    .w-sm-35p {
        width: 35px !important; }

    .w-sm-40p {
        width: 40px !important; }

    .w-sm-45p {
        width: 45px !important; }

    .w-sm-50p {
        width: 50px !important; }

    .w-sm-55p {
        width: 55px !important; }

    .w-sm-60p {
        width: 60px !important; }

    .w-sm-65p {
        width: 65px !important; }

    .w-sm-70p {
        width: 70px !important; }

    .w-sm-75p {
        width: 75px !important; }

    .w-sm-80p {
        width: 80px !important; }

    .w-sm-85p {
        width: 85px !important; }

    .w-sm-90p {
        width: 90px !important; }

    .w-sm-95p {
        width: 95px !important; }

    .w-sm-100p {
        width: 100px !important; }

    .w-sm-105p {
        width: 105px !important; }

    .w-sm-110p {
        width: 110px !important; }

    .w-sm-115p {
        width: 115px !important; }

    .w-sm-120p {
        width: 120px !important; }

    .w-sm-125p {
        width: 125px !important; }

    .w-sm-130p {
        width: 130px !important; }

    .w-sm-135p {
        width: 135px !important; }

    .w-sm-140p {
        width: 140px !important; }

    .w-sm-145p {
        width: 145px !important; }

    .w-sm-150p {
        width: 150px !important; }

    .w-sm-155p {
        width: 155px !important; }

    .w-sm-160p {
        width: 160px !important; }

    .w-sm-165p {
        width: 165px !important; }

    .w-sm-170p {
        width: 170px !important; }

    .w-sm-175p {
        width: 175px !important; }

    .w-sm-180p {
        width: 180px !important; }

    .w-sm-185p {
        width: 185px !important; }

    .w-sm-190p {
        width: 190px !important; }

    .w-sm-195p {
        width: 195px !important; }

    .w-sm-200p {
        width: 200px !important; }

    .w-sm-205p {
        width: 205px !important; }

    .w-sm-210p {
        width: 210px !important; }

    .w-sm-215p {
        width: 215px !important; }

    .w-sm-220p {
        width: 220px !important; }

    .w-sm-225p {
        width: 225px !important; }

    .w-sm-230p {
        width: 230px !important; }

    .w-sm-235p {
        width: 235px !important; }

    .w-sm-240p {
        width: 240px !important; }

    .w-sm-245p {
        width: 245px !important; }

    .w-sm-250p {
        width: 250px !important; }

    .w-sm-255p {
        width: 255px !important; }

    .w-sm-260p {
        width: 260px !important; }

    .w-sm-265p {
        width: 265px !important; }

    .w-sm-270p {
        width: 270px !important; }

    .w-sm-275p {
        width: 275px !important; }

    .w-sm-280p {
        width: 280px !important; }

    .w-sm-285p {
        width: 285px !important; }

    .w-sm-290p {
        width: 290px !important; }

    .w-sm-295p {
        width: 295px !important; }

    .w-sm-300p {
        width: 300px !important; }

    .w-sm-305p {
        width: 305px !important; }

    .w-sm-310p {
        width: 310px !important; }

    .w-sm-315p {
        width: 315px !important; }

    .w-sm-320p {
        width: 320px !important; }

    .w-sm-325p {
        width: 325px !important; }

    .w-sm-330p {
        width: 330px !important; }

    .w-sm-335p {
        width: 335px !important; }

    .w-sm-340p {
        width: 340px !important; }

    .w-sm-345p {
        width: 345px !important; }

    .w-sm-350p {
        width: 350px !important; }

    .w-sm-355p {
        width: 355px !important; }

    .w-sm-360p {
        width: 360px !important; }

    .w-sm-365p {
        width: 365px !important; }

    .w-sm-370p {
        width: 370px !important; }

    .w-sm-375p {
        width: 375px !important; }

    .w-sm-380p {
        width: 380px !important; }

    .w-sm-385p {
        width: 385px !important; }

    .w-sm-390p {
        width: 390px !important; }

    .w-sm-395p {
        width: 395px !important; }

    .w-sm-400p {
        width: 400px !important; }

    .w-sm-405p {
        width: 405px !important; }

    .w-sm-410p {
        width: 410px !important; }

    .w-sm-415p {
        width: 415px !important; }

    .w-sm-420p {
        width: 420px !important; }

    .w-sm-425p {
        width: 425px !important; }

    .w-sm-430p {
        width: 430px !important; }

    .w-sm-435p {
        width: 435px !important; }

    .w-sm-440p {
        width: 440px !important; }

    .w-sm-445p {
        width: 445px !important; }

    .w-sm-450p {
        width: 450px !important; }

    .w-sm-455p {
        width: 455px !important; }

    .w-sm-460p {
        width: 460px !important; }

    .w-sm-465p {
        width: 465px !important; }

    .w-sm-470p {
        width: 470px !important; }

    .w-sm-475p {
        width: 475px !important; }

    .w-sm-480p {
        width: 480px !important; }

    .w-sm-485p {
        width: 485px !important; }

    .w-sm-490p {
        width: 490px !important; }

    .w-sm-495p {
        width: 495px !important; }

    .w-sm-500p {
        width: 500px !important; }

    .w-sm-505p {
        width: 505px !important; }

    .w-sm-510p {
        width: 510px !important; }

    .w-sm-515p {
        width: 515px !important; }

    .w-sm-520p {
        width: 520px !important; }

    .w-sm-525p {
        width: 525px !important; }

    .w-sm-530p {
        width: 530px !important; }

    .w-sm-535p {
        width: 535px !important; }

    .w-sm-540p {
        width: 540px !important; }

    .w-sm-545p {
        width: 545px !important; }

    .w-sm-550p {
        width: 550px !important; }

    .w-sm-555p {
        width: 555px !important; }

    .w-sm-560p {
        width: 560px !important; }

    .w-sm-565p {
        width: 565px !important; }

    .w-sm-570p {
        width: 570px !important; }

    .w-sm-575p {
        width: 575px !important; }

    .w-sm-580p {
        width: 580px !important; }

    .w-sm-585p {
        width: 585px !important; }

    .w-sm-590p {
        width: 590px !important; }

    .w-sm-595p {
        width: 595px !important; }

    .w-sm-600p {
        width: 600px !important; }

    .w-sm-605p {
        width: 605px !important; }

    .w-sm-610p {
        width: 610px !important; }

    .w-sm-615p {
        width: 615px !important; }

    .w-sm-620p {
        width: 620px !important; }

    .w-sm-625p {
        width: 625px !important; }

    .w-sm-630p {
        width: 630px !important; }

    .w-sm-635p {
        width: 635px !important; }

    .w-sm-640p {
        width: 640px !important; }

    .w-sm-645p {
        width: 645px !important; }

    .w-sm-650p {
        width: 650px !important; }

    .w-sm-655p {
        width: 655px !important; }

    .w-sm-660p {
        width: 660px !important; }

    .w-sm-665p {
        width: 665px !important; }

    .w-sm-670p {
        width: 670px !important; }

    .w-sm-675p {
        width: 675px !important; }

    .w-sm-680p {
        width: 680px !important; }

    .w-sm-685p {
        width: 685px !important; }

    .w-sm-690p {
        width: 690px !important; }

    .w-sm-695p {
        width: 695px !important; }

    .w-sm-700p {
        width: 700px !important; }

    .w-sm-705p {
        width: 705px !important; }

    .w-sm-710p {
        width: 710px !important; }

    .w-sm-715p {
        width: 715px !important; }

    .w-sm-720p {
        width: 720px !important; }

    .w-sm-725p {
        width: 725px !important; }

    .w-sm-730p {
        width: 730px !important; }

    .w-sm-735p {
        width: 735px !important; }

    .w-sm-740p {
        width: 740px !important; }

    .w-sm-745p {
        width: 745px !important; }

    .w-sm-750p {
        width: 750px !important; }

    .w-sm-755p {
        width: 755px !important; }

    .w-sm-760p {
        width: 760px !important; }

    .w-sm-765p {
        width: 765px !important; }

    .w-sm-770p {
        width: 770px !important; }

    .w-sm-775p {
        width: 775px !important; }

    .w-sm-780p {
        width: 780px !important; }

    .w-sm-785p {
        width: 785px !important; }

    .w-sm-790p {
        width: 790px !important; }

    .w-sm-795p {
        width: 795px !important; }

    .w-sm-800p {
        width: 800px !important; } }
@media (min-width: 768px) {
    .w-md-25p {
        width: 25px !important; }

    .w-md-30p {
        width: 30px !important; }

    .w-md-35p {
        width: 35px !important; }

    .w-md-40p {
        width: 40px !important; }

    .w-md-45p {
        width: 45px !important; }

    .w-md-50p {
        width: 50px !important; }

    .w-md-55p {
        width: 55px !important; }

    .w-md-60p {
        width: 60px !important; }

    .w-md-65p {
        width: 65px !important; }

    .w-md-70p {
        width: 70px !important; }

    .w-md-75p {
        width: 75px !important; }

    .w-md-80p {
        width: 80px !important; }

    .w-md-85p {
        width: 85px !important; }

    .w-md-90p {
        width: 90px !important; }

    .w-md-95p {
        width: 95px !important; }

    .w-md-100p {
        width: 100px !important; }

    .w-md-105p {
        width: 105px !important; }

    .w-md-110p {
        width: 110px !important; }

    .w-md-115p {
        width: 115px !important; }

    .w-md-120p {
        width: 120px !important; }

    .w-md-125p {
        width: 125px !important; }

    .w-md-130p {
        width: 130px !important; }

    .w-md-135p {
        width: 135px !important; }

    .w-md-140p {
        width: 140px !important; }

    .w-md-145p {
        width: 145px !important; }

    .w-md-150p {
        width: 150px !important; }

    .w-md-155p {
        width: 155px !important; }

    .w-md-160p {
        width: 160px !important; }

    .w-md-165p {
        width: 165px !important; }

    .w-md-170p {
        width: 170px !important; }

    .w-md-175p {
        width: 175px !important; }

    .w-md-180p {
        width: 180px !important; }

    .w-md-185p {
        width: 185px !important; }

    .w-md-190p {
        width: 190px !important; }

    .w-md-195p {
        width: 195px !important; }

    .w-md-200p {
        width: 200px !important; }

    .w-md-205p {
        width: 205px !important; }

    .w-md-210p {
        width: 210px !important; }

    .w-md-215p {
        width: 215px !important; }

    .w-md-220p {
        width: 220px !important; }

    .w-md-225p {
        width: 225px !important; }

    .w-md-230p {
        width: 230px !important; }

    .w-md-235p {
        width: 235px !important; }

    .w-md-240p {
        width: 240px !important; }

    .w-md-245p {
        width: 245px !important; }

    .w-md-250p {
        width: 250px !important; }

    .w-md-255p {
        width: 255px !important; }

    .w-md-260p {
        width: 260px !important; }

    .w-md-265p {
        width: 265px !important; }

    .w-md-270p {
        width: 270px !important; }

    .w-md-275p {
        width: 275px !important; }

    .w-md-280p {
        width: 280px !important; }

    .w-md-285p {
        width: 285px !important; }

    .w-md-290p {
        width: 290px !important; }

    .w-md-295p {
        width: 295px !important; }

    .w-md-300p {
        width: 300px !important; }

    .w-md-305p {
        width: 305px !important; }

    .w-md-310p {
        width: 310px !important; }

    .w-md-315p {
        width: 315px !important; }

    .w-md-320p {
        width: 320px !important; }

    .w-md-325p {
        width: 325px !important; }

    .w-md-330p {
        width: 330px !important; }

    .w-md-335p {
        width: 335px !important; }

    .w-md-340p {
        width: 340px !important; }

    .w-md-345p {
        width: 345px !important; }

    .w-md-350p {
        width: 350px !important; }

    .w-md-355p {
        width: 355px !important; }

    .w-md-360p {
        width: 360px !important; }

    .w-md-365p {
        width: 365px !important; }

    .w-md-370p {
        width: 370px !important; }

    .w-md-375p {
        width: 375px !important; }

    .w-md-380p {
        width: 380px !important; }

    .w-md-385p {
        width: 385px !important; }

    .w-md-390p {
        width: 390px !important; }

    .w-md-395p {
        width: 395px !important; }

    .w-md-400p {
        width: 400px !important; }

    .w-md-405p {
        width: 405px !important; }

    .w-md-410p {
        width: 410px !important; }

    .w-md-415p {
        width: 415px !important; }

    .w-md-420p {
        width: 420px !important; }

    .w-md-425p {
        width: 425px !important; }

    .w-md-430p {
        width: 430px !important; }

    .w-md-435p {
        width: 435px !important; }

    .w-md-440p {
        width: 440px !important; }

    .w-md-445p {
        width: 445px !important; }

    .w-md-450p {
        width: 450px !important; }

    .w-md-455p {
        width: 455px !important; }

    .w-md-460p {
        width: 460px !important; }

    .w-md-465p {
        width: 465px !important; }

    .w-md-470p {
        width: 470px !important; }

    .w-md-475p {
        width: 475px !important; }

    .w-md-480p {
        width: 480px !important; }

    .w-md-485p {
        width: 485px !important; }

    .w-md-490p {
        width: 490px !important; }

    .w-md-495p {
        width: 495px !important; }

    .w-md-500p {
        width: 500px !important; }

    .w-md-505p {
        width: 505px !important; }

    .w-md-510p {
        width: 510px !important; }

    .w-md-515p {
        width: 515px !important; }

    .w-md-520p {
        width: 520px !important; }

    .w-md-525p {
        width: 525px !important; }

    .w-md-530p {
        width: 530px !important; }

    .w-md-535p {
        width: 535px !important; }

    .w-md-540p {
        width: 540px !important; }

    .w-md-545p {
        width: 545px !important; }

    .w-md-550p {
        width: 550px !important; }

    .w-md-555p {
        width: 555px !important; }

    .w-md-560p {
        width: 560px !important; }

    .w-md-565p {
        width: 565px !important; }

    .w-md-570p {
        width: 570px !important; }

    .w-md-575p {
        width: 575px !important; }

    .w-md-580p {
        width: 580px !important; }

    .w-md-585p {
        width: 585px !important; }

    .w-md-590p {
        width: 590px !important; }

    .w-md-595p {
        width: 595px !important; }

    .w-md-600p {
        width: 600px !important; }

    .w-md-605p {
        width: 605px !important; }

    .w-md-610p {
        width: 610px !important; }

    .w-md-615p {
        width: 615px !important; }

    .w-md-620p {
        width: 620px !important; }

    .w-md-625p {
        width: 625px !important; }

    .w-md-630p {
        width: 630px !important; }

    .w-md-635p {
        width: 635px !important; }

    .w-md-640p {
        width: 640px !important; }

    .w-md-645p {
        width: 645px !important; }

    .w-md-650p {
        width: 650px !important; }

    .w-md-655p {
        width: 655px !important; }

    .w-md-660p {
        width: 660px !important; }

    .w-md-665p {
        width: 665px !important; }

    .w-md-670p {
        width: 670px !important; }

    .w-md-675p {
        width: 675px !important; }

    .w-md-680p {
        width: 680px !important; }

    .w-md-685p {
        width: 685px !important; }

    .w-md-690p {
        width: 690px !important; }

    .w-md-695p {
        width: 695px !important; }

    .w-md-700p {
        width: 700px !important; }

    .w-md-705p {
        width: 705px !important; }

    .w-md-710p {
        width: 710px !important; }

    .w-md-715p {
        width: 715px !important; }

    .w-md-720p {
        width: 720px !important; }

    .w-md-725p {
        width: 725px !important; }

    .w-md-730p {
        width: 730px !important; }

    .w-md-735p {
        width: 735px !important; }

    .w-md-740p {
        width: 740px !important; }

    .w-md-745p {
        width: 745px !important; }

    .w-md-750p {
        width: 750px !important; }

    .w-md-755p {
        width: 755px !important; }

    .w-md-760p {
        width: 760px !important; }

    .w-md-765p {
        width: 765px !important; }

    .w-md-770p {
        width: 770px !important; }

    .w-md-775p {
        width: 775px !important; }

    .w-md-780p {
        width: 780px !important; }

    .w-md-785p {
        width: 785px !important; }

    .w-md-790p {
        width: 790px !important; }

    .w-md-795p {
        width: 795px !important; }

    .w-md-800p {
        width: 800px !important; } }
@media (min-width: 992px) {
    .w-lg-25p {
        width: 25px !important; }

    .w-lg-30p {
        width: 30px !important; }

    .w-lg-35p {
        width: 35px !important; }

    .w-lg-40p {
        width: 40px !important; }

    .w-lg-45p {
        width: 45px !important; }

    .w-lg-50p {
        width: 50px !important; }

    .w-lg-55p {
        width: 55px !important; }

    .w-lg-60p {
        width: 60px !important; }

    .w-lg-65p {
        width: 65px !important; }

    .w-lg-70p {
        width: 70px !important; }

    .w-lg-75p {
        width: 75px !important; }

    .w-lg-80p {
        width: 80px !important; }

    .w-lg-85p {
        width: 85px !important; }

    .w-lg-90p {
        width: 90px !important; }

    .w-lg-95p {
        width: 95px !important; }

    .w-lg-100p {
        width: 100px !important; }

    .w-lg-105p {
        width: 105px !important; }

    .w-lg-110p {
        width: 110px !important; }

    .w-lg-115p {
        width: 115px !important; }

    .w-lg-120p {
        width: 120px !important; }

    .w-lg-125p {
        width: 125px !important; }

    .w-lg-130p {
        width: 130px !important; }

    .w-lg-135p {
        width: 135px !important; }

    .w-lg-140p {
        width: 140px !important; }

    .w-lg-145p {
        width: 145px !important; }

    .w-lg-150p {
        width: 150px !important; }

    .w-lg-155p {
        width: 155px !important; }

    .w-lg-160p {
        width: 160px !important; }

    .w-lg-165p {
        width: 165px !important; }

    .w-lg-170p {
        width: 170px !important; }

    .w-lg-175p {
        width: 175px !important; }

    .w-lg-180p {
        width: 180px !important; }

    .w-lg-185p {
        width: 185px !important; }

    .w-lg-190p {
        width: 190px !important; }

    .w-lg-195p {
        width: 195px !important; }

    .w-lg-200p {
        width: 200px !important; }

    .w-lg-205p {
        width: 205px !important; }

    .w-lg-210p {
        width: 210px !important; }

    .w-lg-215p {
        width: 215px !important; }

    .w-lg-220p {
        width: 220px !important; }

    .w-lg-225p {
        width: 225px !important; }

    .w-lg-230p {
        width: 230px !important; }

    .w-lg-235p {
        width: 235px !important; }

    .w-lg-240p {
        width: 240px !important; }

    .w-lg-245p {
        width: 245px !important; }

    .w-lg-250p {
        width: 250px !important; }

    .w-lg-255p {
        width: 255px !important; }

    .w-lg-260p {
        width: 260px !important; }

    .w-lg-265p {
        width: 265px !important; }

    .w-lg-270p {
        width: 270px !important; }

    .w-lg-275p {
        width: 275px !important; }

    .w-lg-280p {
        width: 280px !important; }

    .w-lg-285p {
        width: 285px !important; }

    .w-lg-290p {
        width: 290px !important; }

    .w-lg-295p {
        width: 295px !important; }

    .w-lg-300p {
        width: 300px !important; }

    .w-lg-305p {
        width: 305px !important; }

    .w-lg-310p {
        width: 310px !important; }

    .w-lg-315p {
        width: 315px !important; }

    .w-lg-320p {
        width: 320px !important; }

    .w-lg-325p {
        width: 325px !important; }

    .w-lg-330p {
        width: 330px !important; }

    .w-lg-335p {
        width: 335px !important; }

    .w-lg-340p {
        width: 340px !important; }

    .w-lg-345p {
        width: 345px !important; }

    .w-lg-350p {
        width: 350px !important; }

    .w-lg-355p {
        width: 355px !important; }

    .w-lg-360p {
        width: 360px !important; }

    .w-lg-365p {
        width: 365px !important; }

    .w-lg-370p {
        width: 370px !important; }

    .w-lg-375p {
        width: 375px !important; }

    .w-lg-380p {
        width: 380px !important; }

    .w-lg-385p {
        width: 385px !important; }

    .w-lg-390p {
        width: 390px !important; }

    .w-lg-395p {
        width: 395px !important; }

    .w-lg-400p {
        width: 400px !important; }

    .w-lg-405p {
        width: 405px !important; }

    .w-lg-410p {
        width: 410px !important; }

    .w-lg-415p {
        width: 415px !important; }

    .w-lg-420p {
        width: 420px !important; }

    .w-lg-425p {
        width: 425px !important; }

    .w-lg-430p {
        width: 430px !important; }

    .w-lg-435p {
        width: 435px !important; }

    .w-lg-440p {
        width: 440px !important; }

    .w-lg-445p {
        width: 445px !important; }

    .w-lg-450p {
        width: 450px !important; }

    .w-lg-455p {
        width: 455px !important; }

    .w-lg-460p {
        width: 460px !important; }

    .w-lg-465p {
        width: 465px !important; }

    .w-lg-470p {
        width: 470px !important; }

    .w-lg-475p {
        width: 475px !important; }

    .w-lg-480p {
        width: 480px !important; }

    .w-lg-485p {
        width: 485px !important; }

    .w-lg-490p {
        width: 490px !important; }

    .w-lg-495p {
        width: 495px !important; }

    .w-lg-500p {
        width: 500px !important; }

    .w-lg-505p {
        width: 505px !important; }

    .w-lg-510p {
        width: 510px !important; }

    .w-lg-515p {
        width: 515px !important; }

    .w-lg-520p {
        width: 520px !important; }

    .w-lg-525p {
        width: 525px !important; }

    .w-lg-530p {
        width: 530px !important; }

    .w-lg-535p {
        width: 535px !important; }

    .w-lg-540p {
        width: 540px !important; }

    .w-lg-545p {
        width: 545px !important; }

    .w-lg-550p {
        width: 550px !important; }

    .w-lg-555p {
        width: 555px !important; }

    .w-lg-560p {
        width: 560px !important; }

    .w-lg-565p {
        width: 565px !important; }

    .w-lg-570p {
        width: 570px !important; }

    .w-lg-575p {
        width: 575px !important; }

    .w-lg-580p {
        width: 580px !important; }

    .w-lg-585p {
        width: 585px !important; }

    .w-lg-590p {
        width: 590px !important; }

    .w-lg-595p {
        width: 595px !important; }

    .w-lg-600p {
        width: 600px !important; }

    .w-lg-605p {
        width: 605px !important; }

    .w-lg-610p {
        width: 610px !important; }

    .w-lg-615p {
        width: 615px !important; }

    .w-lg-620p {
        width: 620px !important; }

    .w-lg-625p {
        width: 625px !important; }

    .w-lg-630p {
        width: 630px !important; }

    .w-lg-635p {
        width: 635px !important; }

    .w-lg-640p {
        width: 640px !important; }

    .w-lg-645p {
        width: 645px !important; }

    .w-lg-650p {
        width: 650px !important; }

    .w-lg-655p {
        width: 655px !important; }

    .w-lg-660p {
        width: 660px !important; }

    .w-lg-665p {
        width: 665px !important; }

    .w-lg-670p {
        width: 670px !important; }

    .w-lg-675p {
        width: 675px !important; }

    .w-lg-680p {
        width: 680px !important; }

    .w-lg-685p {
        width: 685px !important; }

    .w-lg-690p {
        width: 690px !important; }

    .w-lg-695p {
        width: 695px !important; }

    .w-lg-700p {
        width: 700px !important; }

    .w-lg-705p {
        width: 705px !important; }

    .w-lg-710p {
        width: 710px !important; }

    .w-lg-715p {
        width: 715px !important; }

    .w-lg-720p {
        width: 720px !important; }

    .w-lg-725p {
        width: 725px !important; }

    .w-lg-730p {
        width: 730px !important; }

    .w-lg-735p {
        width: 735px !important; }

    .w-lg-740p {
        width: 740px !important; }

    .w-lg-745p {
        width: 745px !important; }

    .w-lg-750p {
        width: 750px !important; }

    .w-lg-755p {
        width: 755px !important; }

    .w-lg-760p {
        width: 760px !important; }

    .w-lg-765p {
        width: 765px !important; }

    .w-lg-770p {
        width: 770px !important; }

    .w-lg-775p {
        width: 775px !important; }

    .w-lg-780p {
        width: 780px !important; }

    .w-lg-785p {
        width: 785px !important; }

    .w-lg-790p {
        width: 790px !important; }

    .w-lg-795p {
        width: 795px !important; }

    .w-lg-800p {
        width: 800px !important; } }
@media (min-width: 1200px) {
    .w-xl-25p {
        width: 25px !important; }

    .w-xl-30p {
        width: 30px !important; }

    .w-xl-35p {
        width: 35px !important; }

    .w-xl-40p {
        width: 40px !important; }

    .w-xl-45p {
        width: 45px !important; }

    .w-xl-50p {
        width: 50px !important; }

    .w-xl-55p {
        width: 55px !important; }

    .w-xl-60p {
        width: 60px !important; }

    .w-xl-65p {
        width: 65px !important; }

    .w-xl-70p {
        width: 70px !important; }

    .w-xl-75p {
        width: 75px !important; }

    .w-xl-80p {
        width: 80px !important; }

    .w-xl-85p {
        width: 85px !important; }

    .w-xl-90p {
        width: 90px !important; }

    .w-xl-95p {
        width: 95px !important; }

    .w-xl-100p {
        width: 100px !important; }

    .w-xl-105p {
        width: 105px !important; }

    .w-xl-110p {
        width: 110px !important; }

    .w-xl-115p {
        width: 115px !important; }

    .w-xl-120p {
        width: 120px !important; }

    .w-xl-125p {
        width: 125px !important; }

    .w-xl-130p {
        width: 130px !important; }

    .w-xl-135p {
        width: 135px !important; }

    .w-xl-140p {
        width: 140px !important; }

    .w-xl-145p {
        width: 145px !important; }

    .w-xl-150p {
        width: 150px !important; }

    .w-xl-155p {
        width: 155px !important; }

    .w-xl-160p {
        width: 160px !important; }

    .w-xl-165p {
        width: 165px !important; }

    .w-xl-170p {
        width: 170px !important; }

    .w-xl-175p {
        width: 175px !important; }

    .w-xl-180p {
        width: 180px !important; }

    .w-xl-185p {
        width: 185px !important; }

    .w-xl-190p {
        width: 190px !important; }

    .w-xl-195p {
        width: 195px !important; }

    .w-xl-200p {
        width: 200px !important; }

    .w-xl-205p {
        width: 205px !important; }

    .w-xl-210p {
        width: 210px !important; }

    .w-xl-215p {
        width: 215px !important; }

    .w-xl-220p {
        width: 220px !important; }

    .w-xl-225p {
        width: 225px !important; }

    .w-xl-230p {
        width: 230px !important; }

    .w-xl-235p {
        width: 235px !important; }

    .w-xl-240p {
        width: 240px !important; }

    .w-xl-245p {
        width: 245px !important; }

    .w-xl-250p {
        width: 250px !important; }

    .w-xl-255p {
        width: 255px !important; }

    .w-xl-260p {
        width: 260px !important; }

    .w-xl-265p {
        width: 265px !important; }

    .w-xl-270p {
        width: 270px !important; }

    .w-xl-275p {
        width: 275px !important; }

    .w-xl-280p {
        width: 280px !important; }

    .w-xl-285p {
        width: 285px !important; }

    .w-xl-290p {
        width: 290px !important; }

    .w-xl-295p {
        width: 295px !important; }

    .w-xl-300p {
        width: 300px !important; }

    .w-xl-305p {
        width: 305px !important; }

    .w-xl-310p {
        width: 310px !important; }

    .w-xl-315p {
        width: 315px !important; }

    .w-xl-320p {
        width: 320px !important; }

    .w-xl-325p {
        width: 325px !important; }

    .w-xl-330p {
        width: 330px !important; }

    .w-xl-335p {
        width: 335px !important; }

    .w-xl-340p {
        width: 340px !important; }

    .w-xl-345p {
        width: 345px !important; }

    .w-xl-350p {
        width: 350px !important; }

    .w-xl-355p {
        width: 355px !important; }

    .w-xl-360p {
        width: 360px !important; }

    .w-xl-365p {
        width: 365px !important; }

    .w-xl-370p {
        width: 370px !important; }

    .w-xl-375p {
        width: 375px !important; }

    .w-xl-380p {
        width: 380px !important; }

    .w-xl-385p {
        width: 385px !important; }

    .w-xl-390p {
        width: 390px !important; }

    .w-xl-395p {
        width: 395px !important; }

    .w-xl-400p {
        width: 400px !important; }

    .w-xl-405p {
        width: 405px !important; }

    .w-xl-410p {
        width: 410px !important; }

    .w-xl-415p {
        width: 415px !important; }

    .w-xl-420p {
        width: 420px !important; }

    .w-xl-425p {
        width: 425px !important; }

    .w-xl-430p {
        width: 430px !important; }

    .w-xl-435p {
        width: 435px !important; }

    .w-xl-440p {
        width: 440px !important; }

    .w-xl-445p {
        width: 445px !important; }

    .w-xl-450p {
        width: 450px !important; }

    .w-xl-455p {
        width: 455px !important; }

    .w-xl-460p {
        width: 460px !important; }

    .w-xl-465p {
        width: 465px !important; }

    .w-xl-470p {
        width: 470px !important; }

    .w-xl-475p {
        width: 475px !important; }

    .w-xl-480p {
        width: 480px !important; }

    .w-xl-485p {
        width: 485px !important; }

    .w-xl-490p {
        width: 490px !important; }

    .w-xl-495p {
        width: 495px !important; }

    .w-xl-500p {
        width: 500px !important; }

    .w-xl-505p {
        width: 505px !important; }

    .w-xl-510p {
        width: 510px !important; }

    .w-xl-515p {
        width: 515px !important; }

    .w-xl-520p {
        width: 520px !important; }

    .w-xl-525p {
        width: 525px !important; }

    .w-xl-530p {
        width: 530px !important; }

    .w-xl-535p {
        width: 535px !important; }

    .w-xl-540p {
        width: 540px !important; }

    .w-xl-545p {
        width: 545px !important; }

    .w-xl-550p {
        width: 550px !important; }

    .w-xl-555p {
        width: 555px !important; }

    .w-xl-560p {
        width: 560px !important; }

    .w-xl-565p {
        width: 565px !important; }

    .w-xl-570p {
        width: 570px !important; }

    .w-xl-575p {
        width: 575px !important; }

    .w-xl-580p {
        width: 580px !important; }

    .w-xl-585p {
        width: 585px !important; }

    .w-xl-590p {
        width: 590px !important; }

    .w-xl-595p {
        width: 595px !important; }

    .w-xl-600p {
        width: 600px !important; }

    .w-xl-605p {
        width: 605px !important; }

    .w-xl-610p {
        width: 610px !important; }

    .w-xl-615p {
        width: 615px !important; }

    .w-xl-620p {
        width: 620px !important; }

    .w-xl-625p {
        width: 625px !important; }

    .w-xl-630p {
        width: 630px !important; }

    .w-xl-635p {
        width: 635px !important; }

    .w-xl-640p {
        width: 640px !important; }

    .w-xl-645p {
        width: 645px !important; }

    .w-xl-650p {
        width: 650px !important; }

    .w-xl-655p {
        width: 655px !important; }

    .w-xl-660p {
        width: 660px !important; }

    .w-xl-665p {
        width: 665px !important; }

    .w-xl-670p {
        width: 670px !important; }

    .w-xl-675p {
        width: 675px !important; }

    .w-xl-680p {
        width: 680px !important; }

    .w-xl-685p {
        width: 685px !important; }

    .w-xl-690p {
        width: 690px !important; }

    .w-xl-695p {
        width: 695px !important; }

    .w-xl-700p {
        width: 700px !important; }

    .w-xl-705p {
        width: 705px !important; }

    .w-xl-710p {
        width: 710px !important; }

    .w-xl-715p {
        width: 715px !important; }

    .w-xl-720p {
        width: 720px !important; }

    .w-xl-725p {
        width: 725px !important; }

    .w-xl-730p {
        width: 730px !important; }

    .w-xl-735p {
        width: 735px !important; }

    .w-xl-740p {
        width: 740px !important; }

    .w-xl-745p {
        width: 745px !important; }

    .w-xl-750p {
        width: 750px !important; }

    .w-xl-755p {
        width: 755px !important; }

    .w-xl-760p {
        width: 760px !important; }

    .w-xl-765p {
        width: 765px !important; }

    .w-xl-770p {
        width: 770px !important; }

    .w-xl-775p {
        width: 775px !important; }

    .w-xl-780p {
        width: 780px !important; }

    .w-xl-785p {
        width: 785px !important; }

    .w-xl-790p {
        width: 790px !important; }

    .w-xl-795p {
        width: 795px !important; }

    .w-xl-800p {
        width: 800px !important; } }
@media (min-width: 1400px) {
    .w-xxl-25p {
        width: 25px !important; }

    .w-xxl-30p {
        width: 30px !important; }

    .w-xxl-35p {
        width: 35px !important; }

    .w-xxl-40p {
        width: 40px !important; }

    .w-xxl-45p {
        width: 45px !important; }

    .w-xxl-50p {
        width: 50px !important; }

    .w-xxl-55p {
        width: 55px !important; }

    .w-xxl-60p {
        width: 60px !important; }

    .w-xxl-65p {
        width: 65px !important; }

    .w-xxl-70p {
        width: 70px !important; }

    .w-xxl-75p {
        width: 75px !important; }

    .w-xxl-80p {
        width: 80px !important; }

    .w-xxl-85p {
        width: 85px !important; }

    .w-xxl-90p {
        width: 90px !important; }

    .w-xxl-95p {
        width: 95px !important; }

    .w-xxl-100p {
        width: 100px !important; }

    .w-xxl-105p {
        width: 105px !important; }

    .w-xxl-110p {
        width: 110px !important; }

    .w-xxl-115p {
        width: 115px !important; }

    .w-xxl-120p {
        width: 120px !important; }

    .w-xxl-125p {
        width: 125px !important; }

    .w-xxl-130p {
        width: 130px !important; }

    .w-xxl-135p {
        width: 135px !important; }

    .w-xxl-140p {
        width: 140px !important; }

    .w-xxl-145p {
        width: 145px !important; }

    .w-xxl-150p {
        width: 150px !important; }

    .w-xxl-155p {
        width: 155px !important; }

    .w-xxl-160p {
        width: 160px !important; }

    .w-xxl-165p {
        width: 165px !important; }

    .w-xxl-170p {
        width: 170px !important; }

    .w-xxl-175p {
        width: 175px !important; }

    .w-xxl-180p {
        width: 180px !important; }

    .w-xxl-185p {
        width: 185px !important; }

    .w-xxl-190p {
        width: 190px !important; }

    .w-xxl-195p {
        width: 195px !important; }

    .w-xxl-200p {
        width: 200px !important; }

    .w-xxl-205p {
        width: 205px !important; }

    .w-xxl-210p {
        width: 210px !important; }

    .w-xxl-215p {
        width: 215px !important; }

    .w-xxl-220p {
        width: 220px !important; }

    .w-xxl-225p {
        width: 225px !important; }

    .w-xxl-230p {
        width: 230px !important; }

    .w-xxl-235p {
        width: 235px !important; }

    .w-xxl-240p {
        width: 240px !important; }

    .w-xxl-245p {
        width: 245px !important; }

    .w-xxl-250p {
        width: 250px !important; }

    .w-xxl-255p {
        width: 255px !important; }

    .w-xxl-260p {
        width: 260px !important; }

    .w-xxl-265p {
        width: 265px !important; }

    .w-xxl-270p {
        width: 270px !important; }

    .w-xxl-275p {
        width: 275px !important; }

    .w-xxl-280p {
        width: 280px !important; }

    .w-xxl-285p {
        width: 285px !important; }

    .w-xxl-290p {
        width: 290px !important; }

    .w-xxl-295p {
        width: 295px !important; }

    .w-xxl-300p {
        width: 300px !important; }

    .w-xxl-305p {
        width: 305px !important; }

    .w-xxl-310p {
        width: 310px !important; }

    .w-xxl-315p {
        width: 315px !important; }

    .w-xxl-320p {
        width: 320px !important; }

    .w-xxl-325p {
        width: 325px !important; }

    .w-xxl-330p {
        width: 330px !important; }

    .w-xxl-335p {
        width: 335px !important; }

    .w-xxl-340p {
        width: 340px !important; }

    .w-xxl-345p {
        width: 345px !important; }

    .w-xxl-350p {
        width: 350px !important; }

    .w-xxl-355p {
        width: 355px !important; }

    .w-xxl-360p {
        width: 360px !important; }

    .w-xxl-365p {
        width: 365px !important; }

    .w-xxl-370p {
        width: 370px !important; }

    .w-xxl-375p {
        width: 375px !important; }

    .w-xxl-380p {
        width: 380px !important; }

    .w-xxl-385p {
        width: 385px !important; }

    .w-xxl-390p {
        width: 390px !important; }

    .w-xxl-395p {
        width: 395px !important; }

    .w-xxl-400p {
        width: 400px !important; }

    .w-xxl-405p {
        width: 405px !important; }

    .w-xxl-410p {
        width: 410px !important; }

    .w-xxl-415p {
        width: 415px !important; }

    .w-xxl-420p {
        width: 420px !important; }

    .w-xxl-425p {
        width: 425px !important; }

    .w-xxl-430p {
        width: 430px !important; }

    .w-xxl-435p {
        width: 435px !important; }

    .w-xxl-440p {
        width: 440px !important; }

    .w-xxl-445p {
        width: 445px !important; }

    .w-xxl-450p {
        width: 450px !important; }

    .w-xxl-455p {
        width: 455px !important; }

    .w-xxl-460p {
        width: 460px !important; }

    .w-xxl-465p {
        width: 465px !important; }

    .w-xxl-470p {
        width: 470px !important; }

    .w-xxl-475p {
        width: 475px !important; }

    .w-xxl-480p {
        width: 480px !important; }

    .w-xxl-485p {
        width: 485px !important; }

    .w-xxl-490p {
        width: 490px !important; }

    .w-xxl-495p {
        width: 495px !important; }

    .w-xxl-500p {
        width: 500px !important; }

    .w-xxl-505p {
        width: 505px !important; }

    .w-xxl-510p {
        width: 510px !important; }

    .w-xxl-515p {
        width: 515px !important; }

    .w-xxl-520p {
        width: 520px !important; }

    .w-xxl-525p {
        width: 525px !important; }

    .w-xxl-530p {
        width: 530px !important; }

    .w-xxl-535p {
        width: 535px !important; }

    .w-xxl-540p {
        width: 540px !important; }

    .w-xxl-545p {
        width: 545px !important; }

    .w-xxl-550p {
        width: 550px !important; }

    .w-xxl-555p {
        width: 555px !important; }

    .w-xxl-560p {
        width: 560px !important; }

    .w-xxl-565p {
        width: 565px !important; }

    .w-xxl-570p {
        width: 570px !important; }

    .w-xxl-575p {
        width: 575px !important; }

    .w-xxl-580p {
        width: 580px !important; }

    .w-xxl-585p {
        width: 585px !important; }

    .w-xxl-590p {
        width: 590px !important; }

    .w-xxl-595p {
        width: 595px !important; }

    .w-xxl-600p {
        width: 600px !important; }

    .w-xxl-605p {
        width: 605px !important; }

    .w-xxl-610p {
        width: 610px !important; }

    .w-xxl-615p {
        width: 615px !important; }

    .w-xxl-620p {
        width: 620px !important; }

    .w-xxl-625p {
        width: 625px !important; }

    .w-xxl-630p {
        width: 630px !important; }

    .w-xxl-635p {
        width: 635px !important; }

    .w-xxl-640p {
        width: 640px !important; }

    .w-xxl-645p {
        width: 645px !important; }

    .w-xxl-650p {
        width: 650px !important; }

    .w-xxl-655p {
        width: 655px !important; }

    .w-xxl-660p {
        width: 660px !important; }

    .w-xxl-665p {
        width: 665px !important; }

    .w-xxl-670p {
        width: 670px !important; }

    .w-xxl-675p {
        width: 675px !important; }

    .w-xxl-680p {
        width: 680px !important; }

    .w-xxl-685p {
        width: 685px !important; }

    .w-xxl-690p {
        width: 690px !important; }

    .w-xxl-695p {
        width: 695px !important; }

    .w-xxl-700p {
        width: 700px !important; }

    .w-xxl-705p {
        width: 705px !important; }

    .w-xxl-710p {
        width: 710px !important; }

    .w-xxl-715p {
        width: 715px !important; }

    .w-xxl-720p {
        width: 720px !important; }

    .w-xxl-725p {
        width: 725px !important; }

    .w-xxl-730p {
        width: 730px !important; }

    .w-xxl-735p {
        width: 735px !important; }

    .w-xxl-740p {
        width: 740px !important; }

    .w-xxl-745p {
        width: 745px !important; }

    .w-xxl-750p {
        width: 750px !important; }

    .w-xxl-755p {
        width: 755px !important; }

    .w-xxl-760p {
        width: 760px !important; }

    .w-xxl-765p {
        width: 765px !important; }

    .w-xxl-770p {
        width: 770px !important; }

    .w-xxl-775p {
        width: 775px !important; }

    .w-xxl-780p {
        width: 780px !important; }

    .w-xxl-785p {
        width: 785px !important; }

    .w-xxl-790p {
        width: 790px !important; }

    .w-xxl-795p {
        width: 795px !important; }

    .w-xxl-800p {
        width: 800px !important; } }
.w-5 {
    width: 5% !important; }

.w-10 {
    width: 10% !important; }

.w-15 {
    width: 15% !important; }

.w-20 {
    width: 20% !important; }

.w-25 {
    width: 25% !important; }

.w-30 {
    width: 30% !important; }

.w-35 {
    width: 35% !important; }

.w-40 {
    width: 40% !important; }

.w-45 {
    width: 45% !important; }

.w-50 {
    width: 50% !important; }

.w-55 {
    width: 55% !important; }

.w-60 {
    width: 60% !important; }

.w-65 {
    width: 65% !important; }

.w-70 {
    width: 70% !important; }

.w-75 {
    width: 75% !important; }

.w-80 {
    width: 80% !important; }

.w-85 {
    width: 85% !important; }

.w-90 {
    width: 90% !important; }

.w-95 {
    width: 95% !important; }

.w-100 {
    width: 100% !important; }

@media (min-width: 576px) {
    .w-sm-5 {
        width: 5% !important; }

    .w-sm-10 {
        width: 10% !important; }

    .w-sm-15 {
        width: 15% !important; }

    .w-sm-20 {
        width: 20% !important; }

    .w-sm-25 {
        width: 25% !important; }

    .w-sm-30 {
        width: 30% !important; }

    .w-sm-35 {
        width: 35% !important; }

    .w-sm-40 {
        width: 40% !important; }

    .w-sm-45 {
        width: 45% !important; }

    .w-sm-50 {
        width: 50% !important; }

    .w-sm-55 {
        width: 55% !important; }

    .w-sm-60 {
        width: 60% !important; }

    .w-sm-65 {
        width: 65% !important; }

    .w-sm-70 {
        width: 70% !important; }

    .w-sm-75 {
        width: 75% !important; }

    .w-sm-80 {
        width: 80% !important; }

    .w-sm-85 {
        width: 85% !important; }

    .w-sm-90 {
        width: 90% !important; }

    .w-sm-95 {
        width: 95% !important; }

    .w-sm-100 {
        width: 100% !important; } }
@media (min-width: 768px) {
    .w-md-5 {
        width: 5% !important; }

    .w-md-10 {
        width: 10% !important; }

    .w-md-15 {
        width: 15% !important; }

    .w-md-20 {
        width: 20% !important; }

    .w-md-25 {
        width: 25% !important; }

    .w-md-30 {
        width: 30% !important; }

    .w-md-35 {
        width: 35% !important; }

    .w-md-40 {
        width: 40% !important; }

    .w-md-45 {
        width: 45% !important; }

    .w-md-50 {
        width: 50% !important; }

    .w-md-55 {
        width: 55% !important; }

    .w-md-60 {
        width: 60% !important; }

    .w-md-65 {
        width: 65% !important; }

    .w-md-70 {
        width: 70% !important; }

    .w-md-75 {
        width: 75% !important; }

    .w-md-80 {
        width: 80% !important; }

    .w-md-85 {
        width: 85% !important; }

    .w-md-90 {
        width: 90% !important; }

    .w-md-95 {
        width: 95% !important; }

    .w-md-100 {
        width: 100% !important; } }
@media (min-width: 992px) {
    .w-lg-5 {
        width: 5% !important; }

    .w-lg-10 {
        width: 10% !important; }

    .w-lg-15 {
        width: 15% !important; }

    .w-lg-20 {
        width: 20% !important; }

    .w-lg-25 {
        width: 25% !important; }

    .w-lg-30 {
        width: 30% !important; }

    .w-lg-35 {
        width: 35% !important; }

    .w-lg-40 {
        width: 40% !important; }

    .w-lg-45 {
        width: 45% !important; }

    .w-lg-50 {
        width: 50% !important; }

    .w-lg-55 {
        width: 55% !important; }

    .w-lg-60 {
        width: 60% !important; }

    .w-lg-65 {
        width: 65% !important; }

    .w-lg-70 {
        width: 70% !important; }

    .w-lg-75 {
        width: 75% !important; }

    .w-lg-80 {
        width: 80% !important; }

    .w-lg-85 {
        width: 85% !important; }

    .w-lg-90 {
        width: 90% !important; }

    .w-lg-95 {
        width: 95% !important; }

    .w-lg-100 {
        width: 100% !important; } }
@media (min-width: 1200px) {
    .w-xl-5 {
        width: 5% !important; }

    .w-xl-10 {
        width: 10% !important; }

    .w-xl-15 {
        width: 15% !important; }

    .w-xl-20 {
        width: 20% !important; }

    .w-xl-25 {
        width: 25% !important; }

    .w-xl-30 {
        width: 30% !important; }

    .w-xl-35 {
        width: 35% !important; }

    .w-xl-40 {
        width: 40% !important; }

    .w-xl-45 {
        width: 45% !important; }

    .w-xl-50 {
        width: 50% !important; }

    .w-xl-55 {
        width: 55% !important; }

    .w-xl-60 {
        width: 60% !important; }

    .w-xl-65 {
        width: 65% !important; }

    .w-xl-70 {
        width: 70% !important; }

    .w-xl-75 {
        width: 75% !important; }

    .w-xl-80 {
        width: 80% !important; }

    .w-xl-85 {
        width: 85% !important; }

    .w-xl-90 {
        width: 90% !important; }

    .w-xl-95 {
        width: 95% !important; }

    .w-xl-100 {
        width: 100% !important; } }
@media (min-width: 1400px) {
    .w-xxl-5 {
        width: 5% !important; }

    .w-xxl-10 {
        width: 10% !important; }

    .w-xxl-15 {
        width: 15% !important; }

    .w-xxl-20 {
        width: 20% !important; }

    .w-xxl-25 {
        width: 25% !important; }

    .w-xxl-30 {
        width: 30% !important; }

    .w-xxl-35 {
        width: 35% !important; }

    .w-xxl-40 {
        width: 40% !important; }

    .w-xxl-45 {
        width: 45% !important; }

    .w-xxl-50 {
        width: 50% !important; }

    .w-xxl-55 {
        width: 55% !important; }

    .w-xxl-60 {
        width: 60% !important; }

    .w-xxl-65 {
        width: 65% !important; }

    .w-xxl-70 {
        width: 70% !important; }

    .w-xxl-75 {
        width: 75% !important; }

    .w-xxl-80 {
        width: 80% !important; }

    .w-xxl-85 {
        width: 85% !important; }

    .w-xxl-90 {
        width: 90% !important; }

    .w-xxl-95 {
        width: 95% !important; }

    .w-xxl-100 {
        width: 100% !important; } }

/*Height*/
.h-25p {
    height: 25px !important; }

.h-30p {
    height: 30px !important; }

.h-35p {
    height: 35px !important; }

.h-40p {
    height: 40px !important; }

.h-45p {
    height: 45px !important; }

.h-50p {
    height: 50px !important; }

.h-55p {
    height: 55px !important; }

.h-60p {
    height: 60px !important; }

.h-65p {
    height: 65px !important; }

.h-70p {
    height: 70px !important; }

.h-75p {
    height: 75px !important; }

.h-80p {
    height: 80px !important; }

.h-85p {
    height: 85px !important; }

.h-90p {
    height: 90px !important; }

.h-95p {
    height: 95px !important; }

.h-100p {
    height: 100px !important; }

.h-105p {
    height: 105px !important; }

.h-110p {
    height: 110px !important; }

.h-115p {
    height: 115px !important; }

.h-120p {
    height: 120px !important; }

.h-125p {
    height: 125px !important; }

.h-130p {
    height: 130px !important; }

.h-135p {
    height: 135px !important; }

.h-140p {
    height: 140px !important; }

.h-145p {
    height: 145px !important; }

.h-150p {
    height: 150px !important; }

.h-155p {
    height: 155px !important; }

.h-160p {
    height: 160px !important; }

.h-165p {
    height: 165px !important; }

.h-170p {
    height: 170px !important; }

.h-175p {
    height: 175px !important; }

.h-180p {
    height: 180px !important; }

.h-185p {
    height: 185px !important; }

.h-190p {
    height: 190px !important; }

.h-195p {
    height: 195px !important; }

.h-200p {
    height: 200px !important; }

.h-205p {
    height: 205px !important; }

.h-210p {
    height: 210px !important; }

.h-215p {
    height: 215px !important; }

.h-220p {
    height: 220px !important; }

.h-225p {
    height: 225px !important; }

.h-230p {
    height: 230px !important; }

.h-235p {
    height: 235px !important; }

.h-240p {
    height: 240px !important; }

.h-245p {
    height: 245px !important; }

.h-250p {
    height: 250px !important; }

.h-255p {
    height: 255px !important; }

.h-260p {
    height: 260px !important; }

.h-265p {
    height: 265px !important; }

.h-270p {
    height: 270px !important; }

.h-275p {
    height: 275px !important; }

.h-280p {
    height: 280px !important; }

.h-285p {
    height: 285px !important; }

.h-290p {
    height: 290px !important; }

.h-295p {
    height: 295px !important; }

.h-300p {
    height: 300px !important; }

.h-305p {
    height: 305px !important; }

.h-310p {
    height: 310px !important; }

.h-315p {
    height: 315px !important; }

.h-320p {
    height: 320px !important; }

.h-325p {
    height: 325px !important; }

.h-330p {
    height: 330px !important; }

.h-335p {
    height: 335px !important; }

.h-340p {
    height: 340px !important; }

.h-345p {
    height: 345px !important; }

.h-350p {
    height: 350px !important; }

.h-355p {
    height: 355px !important; }

.h-360p {
    height: 360px !important; }

.h-365p {
    height: 365px !important; }

.h-370p {
    height: 370px !important; }

.h-375p {
    height: 375px !important; }

.h-380p {
    height: 380px !important; }

.h-385p {
    height: 385px !important; }

.h-390p {
    height: 390px !important; }

.h-395p {
    height: 395px !important; }

.h-400p {
    height: 400px !important; }

.h-405p {
    height: 405px !important; }

.h-410p {
    height: 410px !important; }

.h-415p {
    height: 415px !important; }

.h-420p {
    height: 420px !important; }

.h-425p {
    height: 425px !important; }

.h-430p {
    height: 430px !important; }

.h-435p {
    height: 435px !important; }

.h-440p {
    height: 440px !important; }

.h-445p {
    height: 445px !important; }

.h-450p {
    height: 450px !important; }

.h-455p {
    height: 455px !important; }

.h-460p {
    height: 460px !important; }

.h-465p {
    height: 465px !important; }

.h-470p {
    height: 470px !important; }

.h-475p {
    height: 475px !important; }

.h-480p {
    height: 480px !important; }

.h-485p {
    height: 485px !important; }

.h-490p {
    height: 490px !important; }

.h-495p {
    height: 495px !important; }

.h-500p {
    height: 500px !important; }

.h-505p {
    height: 505px !important; }

.h-510p {
    height: 510px !important; }

.h-515p {
    height: 515px !important; }

.h-520p {
    height: 520px !important; }

.h-525p {
    height: 525px !important; }

.h-530p {
    height: 530px !important; }

.h-535p {
    height: 535px !important; }

.h-540p {
    height: 540px !important; }

.h-545p {
    height: 545px !important; }

.h-550p {
    height: 550px !important; }

.h-555p {
    height: 555px !important; }

.h-560p {
    height: 560px !important; }

.h-565p {
    height: 565px !important; }

.h-570p {
    height: 570px !important; }

.h-575p {
    height: 575px !important; }

.h-580p {
    height: 580px !important; }

.h-585p {
    height: 585px !important; }

.h-590p {
    height: 590px !important; }

.h-595p {
    height: 595px !important; }

.h-600p {
    height: 600px !important; }

.h-605p {
    height: 605px !important; }

.h-610p {
    height: 610px !important; }

.h-615p {
    height: 615px !important; }

.h-620p {
    height: 620px !important; }

.h-625p {
    height: 625px !important; }

.h-630p {
    height: 630px !important; }

.h-635p {
    height: 635px !important; }

.h-640p {
    height: 640px !important; }

.h-645p {
    height: 645px !important; }

.h-650p {
    height: 650px !important; }

.h-655p {
    height: 655px !important; }

.h-660p {
    height: 660px !important; }

.h-665p {
    height: 665px !important; }

.h-670p {
    height: 670px !important; }

.h-675p {
    height: 675px !important; }

.h-680p {
    height: 680px !important; }

.h-685p {
    height: 685px !important; }

.h-690p {
    height: 690px !important; }

.h-695p {
    height: 695px !important; }

.h-700p {
    height: 700px !important; }

.h-705p {
    height: 705px !important; }

.h-710p {
    height: 710px !important; }

.h-715p {
    height: 715px !important; }

.h-720p {
    height: 720px !important; }

.h-725p {
    height: 725px !important; }

.h-730p {
    height: 730px !important; }

.h-735p {
    height: 735px !important; }

.h-740p {
    height: 740px !important; }

.h-745p {
    height: 745px !important; }

.h-750p {
    height: 750px !important; }

.h-755p {
    height: 755px !important; }

.h-760p {
    height: 760px !important; }

.h-765p {
    height: 765px !important; }

.h-770p {
    height: 770px !important; }

.h-775p {
    height: 775px !important; }

.h-780p {
    height: 780px !important; }

.h-785p {
    height: 785px !important; }

.h-790p {
    height: 790px !important; }

.h-795p {
    height: 795px !important; }

.h-800p {
    height: 800px !important; }

.h-25 {
    height: 25% !important; }

.h-30 {
    height: 30% !important; }

.h-35 {
    height: 35% !important; }

.h-40 {
    height: 40% !important; }

.h-45 {
    height: 45% !important; }

.h-50 {
    height: 50% !important; }

.h-55 {
    height: 55% !important; }

.h-60 {
    height: 60% !important; }

.h-65 {
    height: 65% !important; }

.h-70 {
    height: 70% !important; }

.h-75 {
    height: 75% !important; }

.h-80 {
    height: 80% !important; }

.h-85 {
    height: 85% !important; }

.h-90 {
    height: 90% !important; }

.h-95 {
    height: 95% !important; }

.h-100 {
    height: 100% !important; }

/*Max Height*/
.mh-100p {
    max-height: 100px !important; }

.mh-125p {
    max-height: 125px !important; }

.mh-150p {
    max-height: 150px !important; }

.mh-175p {
    max-height: 175px !important; }

.mh-200p {
    max-height: 200px !important; }

.mh-225p {
    max-height: 225px !important; }

.mh-250p {
    max-height: 250px !important; }

.mh-275p {
    max-height: 275px !important; }

.mh-300p {
    max-height: 300px !important; }

.mh-325p {
    max-height: 325px !important; }

.mh-350p {
    max-height: 350px !important; }

.mh-375p {
    max-height: 375px !important; }

.mh-400p {
    max-height: 400px !important; }

.mh-425p {
    max-height: 425px !important; }

.mh-450p {
    max-height: 450px !important; }

.mh-475p {
    max-height: 475px !important; }

.mh-500p {
    max-height: 500px !important; }

.mh-525p {
    max-height: 525px !important; }

.mh-550p {
    max-height: 550px !important; }

.mh-575p {
    max-height: 575px !important; }

.mh-600p {
    max-height: 600px !important; }

.mh-625p {
    max-height: 625px !important; }

.mh-650p {
    max-height: 650px !important; }

.mh-675p {
    max-height: 675px !important; }

.mh-700p {
    max-height: 700px !important; }

.mh-725p {
    max-height: 725px !important; }

.mh-750p {
    max-height: 750px !important; }

.mh-775p {
    max-height: 775px !important; }

.mh-800p {
    max-height: 800px !important; }

/*Min Height*/
.mnh-100p {
    min-height: 100px !important; }

.mnh-125p {
    min-height: 125px !important; }

.mnh-150p {
    min-height: 150px !important; }

.mnh-175p {
    min-height: 175px !important; }

.mnh-200p {
    min-height: 200px !important; }

.mnh-225p {
    min-height: 225px !important; }

.mnh-250p {
    min-height: 250px !important; }

.mnh-275p {
    min-height: 275px !important; }

.mnh-300p {
    min-height: 300px !important; }

.mnh-325p {
    min-height: 325px !important; }

.mnh-350p {
    min-height: 350px !important; }

.mnh-375p {
    min-height: 375px !important; }

.mnh-400p {
    min-height: 400px !important; }

.mnh-425p {
    min-height: 425px !important; }

.mnh-450p {
    min-height: 450px !important; }

.mnh-475p {
    min-height: 475px !important; }

.mnh-500p {
    min-height: 500px !important; }

.mnh-525p {
    min-height: 525px !important; }

.mnh-550p {
    min-height: 550px !important; }

.mnh-575p {
    min-height: 575px !important; }

.mnh-600p {
    min-height: 600px !important; }

.mnh-625p {
    min-height: 625px !important; }

.mnh-650p {
    min-height: 650px !important; }

.mnh-675p {
    min-height: 675px !important; }

.mnh-700p {
    min-height: 700px !important; }

.mnh-725p {
    min-height: 725px !important; }

.mnh-750p {
    min-height: 750px !important; }

.mnh-775p {
    min-height: 775px !important; }

.mnh-800p {
    min-height: 800px !important; }

/*Hr*/
hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #e0e3e4; }
hr.hr-light {
    border-top: 1px solid #f5f5f6; }
hr.hr-light-10 {
    border-top: 1px solid #e0e3e4; }
hr.hr-light-15 {
    border-top: 1px solid #e0e3e4; }
hr.hr-light-20 {
    border-top: 1px solid #d6d9da; }
hr.hr-light-30 {
    border-top: 1px solid #c1c6c8; }
hr.hr-dark {
    border-top: 1px solid #324148; }
hr.hr-dark-20 {
    border-top: 1px solid #2b383e; }
hr.hr-dark-40 {
    border-top: 1px solid #273238; }
hr.hr-white {
    border-top: 1px solid #fff; }
hr.hr-primary {
    border-top: 1px solid #ab26aa; }
hr.hr-success {
    border-top: 1px solid #22af47; }
hr.hr-info {
    border-top: 1px solid #1ebccd; }
hr.hr-warning {
    border-top: 1px solid #ffbf36; }
hr.hr-danger {
    border-top: 1px solid #f83f37; }
hr.hr-secondary {
    border-top: 1px solid #9e9e9e; }
hr.hr-soft-primary {
    border-top: 1px solid #e6bde5; }
hr.hr-soft-success {
    border-top: 1px solid #bce7c7; }
hr.hr-soft-info {
    border-top: 1px solid #bbebf0; }
hr.hr-soft-warning {
    border-top: 1px solid #ffecc2; }
hr.hr-soft-danger {
    border-top: 1px solid #fdc5c3; }
hr.hr-soft-secondary {
    border-top: 1px solid #e2e2e2; }
hr.hr-2 {
    border-width: 2px !important; }
hr.hr-3 {
    border-width: 3px !important; }
/*validate form*/
#message {
    width: 100%;
    position: relative;
    background: #c7c7c7;
    padding: 5px 8px;
    margin: 0;
}



/* Add a green text color and a checkmark when the requirements are right */
.valid {
    color: green;
    position: relative;
}

.valid:before {
    position: relative;
    left: -35px;
    content: "✔";
}

/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
    color: red;
}

.invalid:before {
    position: relative;
    left: -35px;
    content: "✖";
}

.blockquote {
    font-size: 15px;
    padding: 15px 20px;
    background: #f5f5f6;
    color: #324148;
    border-left: 3px solid var(--primary); }
.blockquote > p {
    margin-bottom: 5px; }

.blockquote-footer {
    font-size: 76%; }
