/* ========================================================================== */


/* 
 * Project: WorkCare V3
 * Author: HiUp Solutions 
 * Date: 2 Jan, 2020
*/


/* ========================================================================== */

:root {
    --primary-color: #20c3f3;
    --secondary-color: #0e7db5;
    --para-color: #333333;
    --para-light-color: #999999;
    --white-color: #fff;
    --dark_gray-color: #4e4e4e;
    --light_gray-color: #f5f5f5;
    --purple-color: #2b2867;
    --pink-color: #d9306c;
    --pink-dark-color: #c8215c;
    --indigo-color: #2b2868;
    --purple-color: #6f42c1;
    --footer-bg: #4e4e4e;
    /* FONT FAMILY */
    --primary-font: "Lato", sans-serif;
    --heading-line-height: 1.2;
    --font-primary-capital-letter: 0.75;
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    outline: none!important;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}


/* * {
    transition: all 0.2s ease-in;
} */

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font: 1rem/1.8 "Lato", sans-serif;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.5px;
    color: #4e4e4e;
}

@media(max-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}


/* ========================================================================== */


/* TYPOGRAPHY STYLE */


/* ========================================================================== */

p {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.5px;
}

p {
    line-height: 1.3;
}

label {
    line-height: 1.0;
}

p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
dl,
ol,
ul {
    margin: 0;
    padding: 0;
}


/* HEADING STYLE */

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}


/* ========================================================================== */


/* PADDING AND MARGIN SECTION  */


/* ========================================================================== */

.py-32 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-42 {
    padding-top: 42px;
    padding-bottom: 42px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.py-5053 {
    padding-top: 50px;
    padding-bottom: 53px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.py-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.py-80 {
    padding-top: 85px;
    padding-bottom: 85px;
}

.pt-51 {
    padding-top: 51px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pr-62 {
    padding-right: 60px;
}

.mt-50 {
    margin-top: 50px;
}


/* ========================================================================== */


/* ACHOR  */


/* ========================================================================== */

a {
    color: inherit;
    text-decoration: none!important;
    margin: 0;
    padding: 0;
    line-height: initial;
}

.content p {
    margin-top: 20px;
}


/* ========================================================================== */


/* LIST STYLES */


/* ========================================================================== */

ul,
article>ul {
    list-style-type: none!important;
}

.content ul li {
    font-size: 16px;
    line-height: 22px;
    padding-left: 2em;
    text-indent: -1.7em;
    margin: 20px 0;
}

.border-radius-8{
  border-radius: 8px;
}

/* the custom styled bullets */

.content ul li:before {
    background-color: #0e7db5;
    border-radius: 50%;
    content: "";
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 2px;
    height: 8px;
    width: 8px;
}

.content ul.a {
    list-style-position: outside;
}

.content ul.b {
    list-style-position: inside;
}

.checked ul {
    list-style-image: url('../../assets/img/icons/tick.svg');
}

.checked ul li {
    font-size: 16px;
    line-height: 22px;
    padding-left: 2em;
    text-indent: -1.7em;
    margin: 14px 0;
    position: relative;
}

.checked ul li:before {
    content: "";
    display: inline-block;
    background-size: cover;
    background-position: center;
    position: absolute;
    margin-right: 22px;
    margin-bottom: 2px;
    height: 8px;
    width: 8px;
}

.dashed ul li {
    font-size: 16px;
    line-height: 22px;
    padding-left: 2em;
    text-indent: -1.7em;
    margin: 14px 0;
    position: relative;
    margin-left: 22px;
}

.dashed ul li:before {
    content: "-";
    display: inline-block;
    background-size: cover;
    background-position: center;
    /* position: absolute; */
    margin-right: 22px;
    margin-bottom: 2px;
    height: 8px;
    width: 8px;
}


/* ========================================================================== */


/* HERO BANNER */


/* ========================================================================== */

.hero-image {
    height: 50vh;
    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}


/* Place text in the middle of the image */

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
}

.hero-text p {
    font-size: 20px;
    font-weight: 600;
    /* padding: 20px 0; */
}

.thumbnail-image {
    width: 450px;
    height: 255px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    object-fit: contain;
    border-radius: 8px;
}


/* Place text in the middle of the image */

.thumbnail-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2;
    width: calc(100% - 15px);
}

.thumbnail-text p {
    font-size: 20px;
    font-weight: 600;
    /* padding: 20px 0; */
}

.global-thumbnail.thumbnail-image {
    width: 100%;
    margin: 0 0 15px;
}

.global-thumbnail.thumbnail-image .thumbnail-text p {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 10px;
}

.global-thumbnail.thumbnail-image .thumbnail-text {
    margin: 0 !important;
}

.global-thumbnail.thumbnail-image .thumbnail-text a img {
    width: 58px !important;
    height: 57px !important;
}

.global-thumbnail.thumbnail-image .thumbnail-text img {
    width: 163px !important;
    height: 33px !important;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}


/* gutters-15 Class Rules */

.row.gutters-15 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
    width: auto;
}

.row.gutters-15>[class^="col-"],
.row.gutters-15>[class*=" col-"] {
    position: relative;
    width: 100%;
    padding-right: 7.5px;
    padding-left: 7.5px;
}

.row.gutters27‬ {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -27.5‬px!important;
    margin-left: -27.5‬px!important;
    width: auto;
}

.row.gutters27‬>[class^="col-"],
.row.gutters27‬>[class*=" col-"] {
    position: relative;
    width: 100%;
    padding-right: 27.5‬px!important;
    padding-left: 27.5‬px!important;
}


/* ========================================================================== */


/* BUTTON STYLE  */


/* ========================================================================== */

.btn-pink,
a.btn-pink {
    color: #fff;
    background-color: #d9306c;
    border-color: #d9306c;
}

.btn-pink:hover,
.btn-pink:active {
    color: #fff;
    background-color: #c8215c;
    border-color: #c8215c;
}

.btn-pink:not(:disabled):not(.disabled).active,
.btn-pink:not(:disabled):not(.disabled):active,
.show>.btn-pink.dropdown-toggle {
    color: #fff;
    background-color: #c8215c;
    border-color: #c8215c;
}

.btn-indigo,
a.btn-indigo {
    color: #fff;
    background-color: #2b2868;
    border-color: #2b2868;
}

.btn-indigo:hover,
.btn-indigo:active {
    color: #fff;
    background-color: #2b2867;
    border-color: #2b2867;
}

.btn-indigo:not(:disabled):not(.disabled).active,
.btn-indigo:not(:disabled):not(.disabled):active,
.show>.btn-indigo.dropdown-toggle {
    color: #fff;
    background-color: #2b2868;
    border-color: #2b2868;
}

.btn-workcare,
a.btn-workcare {
    color: #fff;
    background-color: #387bb0;
    border-color: #387bb0;
}

.btn-workcare:hover,
.btn-workcare:active {
    color: #fff;
    background-color: #387bb0;
    border-color: #387bb0;
}


/* ========================================================================== */


/* QUOTE */


/* ========================================================================== */

blockquote {
    width: 100%;
    margin: 0 auto;
}

blockquote p {
    font-style: italic;
    margin-bottom: 0;
    position: relative !important;
    line-height: 1.5 !important;
}

blockquote p::before,
blockquote p::after {
    display: none !important;
}

blockquote cite {
    font-size: 1.5rem;
}


/* ========================================================================== */


/* FAQ SECTION */


/* ========================================================================== */

.faq .accordion-section .panel-default>.panel-heading {
    border: 0;
    padding: 0;
    /* margin-top: 23px; */
    margin-top: 14px;
}

.faq .accordion-section .panel-default .panel-title {
    padding-right: 20px;
}

.faq .accordion-section .panel-default .panel-title a {
    display: block;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.5px;
    color: #4e4e4e;
}

.faq .accordion-section .panel-default .panel-title a:after {
    font-family: 'FontAwesome';
    font-style: normal;
    font-size: 2rem;
    content: "\f106";
    color: #1f7de2;
    float: right;
    margin-top: -12px;
    margin-right: -20px;
}

.faq .accordion-section .panel-default .panel-title a.collapsed:after {
    content: "\f107";
}

.faq .accordion-section .panel-default .panel-body {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: -0.5px;
    color: #4e4e4e;
    background-color: #fafafa;
    /* margin: 20px 0 41px; */
}


/* ========================================================================== */


/* BOOTSTRAP OFFSET RIGHT */


/* ========================================================================== */

.col-xs-offset-right-12 {
    margin-right: 100%;
}

.col-xs-offset-right-11 {
    margin-right: 91.66666667%;
}

.col-xs-offset-right-10 {
    margin-right: 83.33333333%;
}

.col-xs-offset-right-9 {
    margin-right: 75%;
}

.col-xs-offset-right-8 {
    margin-right: 66.66666667%;
}

.col-xs-offset-right-7 {
    margin-right: 58.33333333%;
}

.col-xs-offset-right-6 {
    margin-right: 50%;
}

.col-xs-offset-right-5 {
    margin-right: 41.66666667%;
}

.col-xs-offset-right-4 {
    margin-right: 33.33333333%;
}

.col-xs-offset-right-3 {
    margin-right: 25%;
}

.col-xs-offset-right-2 {
    margin-right: 16.66666667%;
}

.col-xs-offset-right-1 {
    margin-right: 8.33333333%;
}

.col-xs-offset-right-0 {
    margin-right: 0;
}

@media (min-width: 768px) {
    .col-sm-offset-right-12 {
        margin-right: 100%;
    }
    .col-sm-offset-right-11 {
        margin-right: 91.66666667%;
    }
    .col-sm-offset-right-10 {
        margin-right: 83.33333333%;
    }
    .col-sm-offset-right-9 {
        margin-right: 75%;
    }
    .col-sm-offset-right-8 {
        margin-right: 66.66666667%;
    }
    .col-sm-offset-right-7 {
        margin-right: 58.33333333%;
    }
    .col-sm-offset-right-6 {
        margin-right: 50%;
    }
    .col-sm-offset-right-5 {
        margin-right: 41.66666667%;
    }
    .col-sm-offset-right-4 {
        margin-right: 33.33333333%;
    }
    .col-sm-offset-right-3 {
        margin-right: 25%;
    }
    .col-sm-offset-right-2 {
        margin-right: 16.66666667%;
    }
    .col-sm-offset-right-1 {
        margin-right: 8.33333333%;
    }
    .col-sm-offset-right-0 {
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .col-md-offset-right-12 {
        margin-right: 100%;
    }
    .col-md-offset-right-11 {
        margin-right: 91.66666667%;
    }
    .col-md-offset-right-10 {
        margin-right: 83.33333333%;
    }
    .col-md-offset-right-9 {
        margin-right: 75%;
    }
    .col-md-offset-right-8 {
        margin-right: 66.66666667%;
    }
    .col-md-offset-right-7 {
        margin-right: 58.33333333%;
    }
    .col-md-offset-right-6 {
        margin-right: 50%;
    }
    .col-md-offset-right-5 {
        margin-right: 41.66666667%;
    }
    .col-md-offset-right-4 {
        margin-right: 33.33333333%;
    }
    .col-md-offset-right-3 {
        margin-right: 25%;
    }
    .col-md-offset-right-2 {
        margin-right: 16.66666667%;
    }
    .col-md-offset-right-1 {
        margin-right: 8.33333333%;
    }
    .col-md-offset-right-0 {
        margin-right: 0;
    }
}

@media (min-width: 1200px) {
    .col-lg-offset-right-12 {
        margin-right: 100%;
    }
    .col-lg-offset-right-11 {
        margin-right: 91.66666667%;
    }
    .col-lg-offset-right-10 {
        margin-right: 83.33333333%;
    }
    .col-lg-offset-right-9 {
        margin-right: 75%;
    }
    .col-lg-offset-right-8 {
        margin-right: 66.66666667%;
    }
    .col-lg-offset-right-7 {
        margin-right: 58.33333333%;
    }
    .col-lg-offset-right-6 {
        margin-right: 50%;
    }
    .col-lg-offset-right-5 {
        margin-right: 41.66666667%;
    }
    .col-lg-offset-right-4 {
        margin-right: 33.33333333%;
    }
    .col-lg-offset-right-3 {
        margin-right: 25%;
    }
    .col-lg-offset-right-2 {
        margin-right: 16.66666667%;
    }
    .col-lg-offset-right-1 {
        margin-right: 8.33333333%;
    }
    .col-lg-offset-right-0 {
        margin-right: 0;
    }
}