:root {
    --primary-font: 'Roboto', sans-serif;
    --secondary-font: 'Roboto Condensed', sans-serif;
    --primary-color: 38, 64, 68; /* Teal #264044*/
    --secondary-color: 0, 191, 190; /* Turquoise #00BFBE*/
    --brand-color: 0, 205, 204; /* Turquoise #00CDCC*/
    --text-color: 34, 34, 34; /*dark #222222*/
    --gray-bg: 250, 255, 255; /*dark #FAFFFF*/
    --sidebar-bg-color: 235, 240, 250;
}


body {
    margin: 0;
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: rgb(var(--text-color));
    -webkit-font-smoothing: antialiased;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
}

a:hover {
    color: rgb(var(--secondary-color));
}

img {
    border-style: none;
    max-width: 100%;
}

.entry-content img[class*=wp-image-] {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

.slick-dots {
    left: 0;
    bottom: -40px;
}

.c20-slider-nav.slick-dotted {
    padding-bottom: 40px;
    margin-bottom: 0;
}

.slick-dots li {
    margin: 0;
    width: 40px;
    height: 6px;
}

.slick-dots li:not(:last-child) {
    margin-right: 15px;
}

.slick-dots li button {
    background-color: #D9D9D9;
    border-radius: 20px;
    margin: 0;
    width: 100%;
    height: 100%;
}


.slick-dots li button::before {
    display: none;
}

.slick-dots li.slick-active {
    /*width: 40px;*/
}

.slick-dots li:only-child {
    display: none;
}

.slick-dots li.slick-active button {
    background-color: rgba(var(--secondary-color),1);
}


.c20-slider-nav {
    padding-bottom: 90px;
}

.c20-slider-nav .slick-prev,
.c20-slider-nav .slick-next {
    position: absolute;
    bottom: 20px;
    top: auto;
    color: #7F7F7F;
    width: 44px;
    height: 44px;
    z-index: 1;

    transform: translate3d(0,0,0);

    background-position: center;
    background-repeat: no-repeat;
}

.c20-slider-nav .slick-prev {
    right: calc( 50% + 10px);
    left: auto;

    background-image: url(../img/control/slick-left.png);
}

.c20-slider-nav .slick-next {
    left: calc( 50% + 10px);
    right: auto;
    background-image: url(../img/control/slick-right.png);
}

.c20-slider-nav .slick-prev:before,
.c20-slider-nav .slick-next:before {
    display: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--secondary-font);
    font-weight: 700;
    position: relative;
}

h1,
.h1 {
    font-size: 52px;
    line-height: 1.1;
}

.h2,
h2 {
    font-size: 32px;
    line-height: 1.3;
}

.h3,
h3 {
    font-size: 28px;
    line-height: 1.25;
}

.h4,
h4 {
    font-size: 24px;
    line-height: 1.3;
}

.h5,
h5 {
    font-size: 20px;
    line-height: 1.35;
}

.h6,
h6 {
    font-size: 18px;
    line-height: 1.4;
}

.p {
    font-size: 16px;
    line-height: 1.7;
}


@media only screen and (max-width: 1199px) {

    .font-xl-h2 {

    }
}

.entry-content {
    font-size: 18px;
}

@media only screen and (max-width: 991px) {

}

@media only screen and (max-width: 778px) {

}

@media only screen and (max-width: 600px) {

}

a {
    transition: .3s;
    color: rgb(var(--secondary-color));
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}


@media (min-width: 1600px) {
    .container {
        max-width: 1310px;
    }
}

.shadow-text {
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.has-shadow {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07) !important;
}

.has-border {
    border-bottom: 2px solid rgba(0,0,0, .22);
}

/*Color */
.bg-brand {
    background: rgb(var(--brand-color)) !important;
}

.bg-primary {
    background: rgb(var(--primary-color)) !important;
}

.bg-secondary {
    background: rgb(var(--secondary-color)) !important;
}

.bg-grey,
.bg-gray {
    background-color: rgb(var(--gray-bg)); !important;
}

.bg-white,
.bg-light {
    background: #fff !important;
}

.bg-black {
    background: #000 !important;
}

.bg-dark {
    background: #212231 !important;
}

.text-gray a:not(.btn),
.text-gray {
    color: rgb(var(--text-color)) !important;
}


.texts-white *,
.texts-light *,
.text-white,
.text-light,
.text-white a:not(.btn),
.text-light a:not(.btn) {
    color: #ffffff !important;
}


.texts-dark *, 
.text-dark a:not(.btn),
.text-dark {
    color: rgb(var(--text-color)) !important;
}

.text-black a:not(.btn),
.text-black {
    color: #000 !important;
}

a.text-primary:hover,
a.text-primary:focus,
.text-primary {
    color: rgb(var(--primary-color)) !important;
}

a.text-brand:hover,
a.text-brand:focus,
.text-brand {
    color: rgb(var(--brand-color)) !important;
}

a.text-secondary:hover,
a.text-secondary:focus,
.text-secondary {
    color: rgb(var(--secondary-color)) !important;
}

.lh-11 {
    line-height: 1;
}

.lh-11 {
    line-height: 1.1;
}

.lh-12 {
    line-height: 1.2;
}

.lh-13 {
    line-height: 1.3;
}

.lh-14 {
    line-height: 1.4;
}

.lh-15 {
    line-height: 1.5;
}

.lh-16 {
    line-height: 1.6;
}

.lh-17 {
    line-height: 1.7;
}

.lh-18 {
    line-height: 1.8;
}

.lh-2 {
    line-height: 2;
}



/*Text Hover state*/
a.hover-text-gray:hover,
.hover-text-gray:hover {
    color: #333 !important;
}

a.hover-text-light:hover,
.hover-text-light:hover {
    color: #ffffff !important;
}
a.hover-text-dark:hover,
.hover-text-dark:hover {
    color: rgb(var(--text-color)) !important;
}
a.hover-text-black:hover,
.hover-text-black:hover {
    color: #000 !important;
}
a.hover-text-primary:hover,
.hover-text-primary:hover {
    color: rgb(var(--primary-color)) !important;
}
a.hover-text-brand:hover,
.hover-text-brand:hover {
    color: rgb(var(--brand-color)) !important;
}
a.hover-text-secondary:hover,
.hover-text-secondary:hover {
    color: rgb(var(--secondary-color)) !important;
}

/* Typography */

.font-primary {
    font-family: var(--primary-font) !important;
}

.font-secondary {
    font-family: var(--secondary-font) !important;
}

/*Buttons*/

.btn {
    font-family: var(--secondary-font);
    display: inline-block;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    position: relative;
    padding: 10px 43px;
    border-radius: 50px;
    color: rgb(var(--text-color));
    border: 2px solid rgb(var(--secondary-color));
    transition: .5s;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
    background: transparent;
}

.btn:focus,
.btn:active,
.btn:active:focus,
.btn:hover {
    color: #fff;
    background: rgb(var(--secondary-color));
}

.btn-lg {
    font-size: 18px;
    padding: 13px 20px;
}

.btn-xs {
    font-size: 17px;
    padding: 11px 35px;
}

.btn-block {
    width: 100%;
    display: block;
}

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

.btn-round {
    border-radius: 50px !important;
    padding-right: 25px !important;
    padding-left: 25px !important;
}

.btn-primary {
    border-color: rgb(var(--primary-color)) !important;
    color: rgb(var(--primary-color)) !important;
}

.btn-secondary {
    /*background: rgb(var(--secondary-color)) !important;*/
    color: rgb(var(--secondary-color)) !important;
}

.btn-secondary:hover {
    background: rgb(var(--secondary-color)) !important;
    color: #ffffff !important;
}

.btn-white {
    color: #fff !important;
}

.btn-white:hover {
    color: rgb(var(--secondary-color)) !important;
    background: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background: rgb(var(--primary-color)) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}

.btn-brand {
    border: 2px solid rgb(var(--brand-color)) !important;
    background: rgb(var(--brand-color)) !important; 
    color: #ffffff!important;
}

.btn-brand:hover {
    border: 2px solid rgb(var(--brand-color)) !important;
    background: rgb(var(--brand-color)) !important;
    color: #ffffff!important;
}

.btn-brand-reverse {
    border: 2px solid rgb(var(--brand-color)) !important;
    background: transparent;
    color: #ffffff!important;
}

.btn-brand-reverse:hover {
    border: 2px solid rgb(var(--brand-color)) !important;
    background: rgb(var(--brand-color)) !important;
    color: #ffffff!important;
}

.wp-block-button.btn .wp-block-button__link {
    background: transparent;
    color: inherit;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-transform: inherit;
    text-align: inherit;
}

.c20-btn-group .btn:not(:last-child) {
    margin-right: 10px;
}


.font-smooth {
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

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


/* Reusable Classes*/

.c20-sec {
    padding: 70px 0;
    position: relative;
}

@media screen and (max-width:1440px) {
    .c20-sec {
        padding: 55px 0;
    }
}

@media screen and (max-width: 991px) {
    .c20-sec {
        padding: 40px 0;
    }
}

.c20-sec-parallax {
    overflow: hidden;
    position: absolute !important;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 85vh !important;
    min-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transform: translateY(-50%);
}

.has-bg-image,
.has-image-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.has-overlay {
    position: relative;
}

.has-overlay:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40,11,9, .5);
}

.bg-parallax {
    position: absolute!important;
    top: 50%;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transform: translateY(-50%);
}

.c20-heading {
    position: relative;
    margin-bottom: 50px;
}

.c20-heading .c20-title {
    font-size: 38px;
    line-height: 1.25;
    margin: 0;
}

.c20-heading .c20-subtitle {
    margin: 15px 0 0;
}

.c20-heading .c20-title span {
    color: rgb(var(--secondary-color));
}

/*Social*/

.c20_social {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    justify-content: center;
    padding: 0;
}
.c20_social li {
    width: 36px;
    height: 36px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--secondary-color));
    border-radius: 50%;
    transition: .3s;
}

.c20_social li:hover {
    background-color: #fff;
}

.c20_social li.icon-fb:hover {
    /*background: #1877F2;*/
}

.c20_social li.icon-bbb:hover {
    /*background: #016090;*/
}

.c20_social li.icon-map:hover {
    /*background: #EA4335;*/
}

.c20_social li.icon-yelp:hover {
    /*background: #AF0606;*/
}

.c20_social li.icon-yt:hover {
    /*background: #FF0000;*/
}

.c20_social li.icon-tiktok:hover {
    /*background: #000;*/
}

.c20_social li:not(:last-child) {
    margin-right: 6px;
}

.c20_social li a {
    width: 100%;
    height: 100%;
    display: flex;
}

.c20_social li img {
    width: 60%;
    margin: auto;
    transition: .3s
}

.c20_social li:not(:hover) img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}


/*.c20_social li:hover img {*/

/*.c20_social li.icon-tw:hover {
    background: #1DA1F2;
}*/

/*.c20_social li.icon-yt:hover {
    background: #FF0000;
}*/

/*.c20_social li.icon-ins:hover {
    background: #405de6;
}
*/

/*.c20_social li.icon-pin:hover {
    background: #e60023;
}
*/

/*List*/
.entry-content ul:not(.entry-meta):not(.blocks-gallery-grid) {
    padding: 0;
    margin-bottom: 25px;
}

.entry-content ul:not(.entry-meta):not(.blocks-gallery-grid) li {
    position: relative;
    list-style: none;
    padding-left: 30px;
    z-index: 1;
}

.entry-content ul:not(.entry-meta):not(.blocks-gallery-grid) li:after {
    content: '';
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
}

.entry-content ul:not(.entry-meta):not(.blocks-gallery-grid) li:after {
    background-image: url(../img/circle-check-regular.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.entry-content ul:not(.entry-meta):not(.blocks-gallery-grid) li:not(:last-child) {
    margin-bottom: 10px;
}

.entry-content ul:not(.entry-meta):not(.blocks-gallery-grid) li,
.entry-content ul:not(.entry-meta):not(.blocks-gallery-grid) li a {
    font-weight: 500 !important;
}

.entry-content ul:not(.entry-meta):not(.blocks-gallery-grid) li a {
    color: rgb(var(--secondary-color));
}

.entry-content ul:not(.entry-meta):not(.blocks-gallery-grid) li a:hover {
    text-decoration: underline;
}



.c20-quote {
    font-family: var(--secondary-font);
    background-color: #fff;
    box-shadow: 0 2px 20px 0 rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 20px;
    line-height: 1.8;
    position: relative;
    max-width: 900px;
    margin: 15px auto 25px;
    color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--secondary-color));
    border-bottom: 5px solid rgb(var(--secondary-color));
}

/*.c20-quote > div {
    position: relative;
    border: 3px dashed rgb(var(--secondary-color));
    border-radius: 4px;
    padding: 20px 25px;
}*/

.c20-quote p:last-child {
    margin-bottom: 0;
}

.c20-quote a {
    color: rgb(var(--secondary-color))!important;
    font-weight: bold;
}



/*From*/
.modal-header .close {
    outline: none;
    background: none;
    border: 0;
}


::-webkit-input-placeholder {
    color: rgba(0,0,0,.4);
}
:-moz-placeholder {
   color: rgba(0,0,0,.4);
   opacity:  1;
}
::-moz-placeholder {
   color: rgba(0,0,0,.4);
   opacity:  1;
}
:-ms-input-placeholder {
   color: rgba(0,0,0,.4);
}
::-ms-input-placeholder {
   color: rgba(0,0,0,.4);
}
::placeholder {
   color: rgba(0,0,0,.4);
}


.main-sidebar ::-webkit-input-placeholder {
    color: rgba(0,0,0,1);
}

.main-sidebar :-moz-placeholder {
   color: rgba(0,0,0,1);
   opacity:  1;
}
.main-sidebar ::-moz-placeholder {
   color: rgba(0,0,0,1);
   opacity:  1;
}

.main-sidebar :-ms-input-placeholder {
   color: rgba(0,0,0,1);
}

.main-sidebar ::-ms-input-placeholder {
   color: rgba(0,0,0,1);
}

.main-sidebar ::placeholder {
   color: rgba(0,0,0,1);
}



/* START GRAVITY FORM STYLE*/

.c20-form {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}

.gform_heading {
    display: none;
}

.gform_wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

.gform_wrapper.gravity-theme .gform-body .gform_fields {
    /*grid-row-gap: 34px;*/
}

.gform_wrapper label.gfield_label,
.gform_wrapper legend.gfield_label {
    color: #333;
    font-weight: 400!important;
}

.gform_wrapper select,
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    height: initial !important;
}

.gform_wrapper select,
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper textarea {
    font-family: inherit;
    letter-spacing: normal;
    font-size: 18px !important;
    padding: 10px 10px;
    box-shadow: none!important;
    background: #fff!important;
    border-radius: 5px;
    color: #333;
    border: 1px solid transparent;
    margin-bottom: 0;
    width: 100%;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
.gform_wrapper textarea:focus {
    border-color: transparent;
    outline: none;
}

.gform_wrapper select {
    padding: 7px 10px 7px !important;
    height: auto !important;
}

.gform_wrapper .gform_footer {
    padding: 0 !important;
    justify-content: center !important;
    margin: 25px 0 0 0 !important;
}

/* Submit Button*/
.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_page_footer input.button,
.gform_wrapper .gform_page_footer input[type=submit] {
    background: transparent;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6 !important;
    min-height: auto !important;
    color: #fff;
    box-shadow: none !important;
    padding: 10px 45px;

    border: 2px solid rgb(var(--secondary-color));

    outline: none !important;
    margin-right: 0 !important;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--secondary-font);
    transition: .3s;
}

.gform_wrapper .gform_footer input.button:hover,
.gform_wrapper .gform_footer input[type=submit]:hover,
.gform_wrapper .gform_page_footer input.button:hover,
.gform_wrapper .gform_page_footer input[type=submit]:hover {
    background-color: rgb(var(--secondary-color));
}

.gform_wrapper .top_label div.ginput_container {
    margin-top: 2px !important;
}

.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
.gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {
    margin: 5px 0 0;
    line-height: 1.2;
    font-size: 14px;
    color: #333;
}

@media (min-width: 641px) {

    .gform_wrapper.gravity-theme .gform-body .ginput_container_address span:not(.ginput_full):not(:last-of-type):not(:nth-last-of-type(2)),
    .gform_wrapper.gravity-theme .gform-body .ginput_full:not(:last-of-type) {
        margin-bottom: 16px;
    }
}

/*Validation*/

.gform_wrapper .gform_validation_errors {
    padding: 10px 15px !important;
}

.gform_wrapper .gform_validation_errors>h2 {
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    font-family: var(--font-primary);
}

.gform_wrapper .validation_message {
    padding: 3px 10px !important;
}

.gform_wrapper div.validation_error {
    display: none;
}

.gform_wrapper .ginput_container.ginput_container_phone + .gfield_description {
    display: none; 
}

.gform_wrapper .ginput_container_consent {
    position: relative;
    padding-left: 20px;
}

.gform_wrapper .ginput_container_consent input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 8px;
}

.c20-sec.c20-sec-contact .gform_wrapper .gform-field-label {
    color: #fff;
}


#commonContactForm .modal-body {
    padding-bottom: 0
}

.modal-body .row > div:last-child .form-group {
    margin-bottom: 0;
}

/*Bird Eye Review */

.actionButtonWrapper a {
    width: auto !important;
    border-radius: 50px !important;
    color: #fff !important;
    background-color: #1976d2 !important;
    font-size: 16px !IMPORTANT;
    padding: 10px 20px !important;
}

.review-wrapper .content {
    font-size: 16px;
    margin: 0 0 !important;
    line-height: 1.6;
}

.review-wrapper .heading {
    font-size: 20px;
    line-height: 1 !important;
    margin-bottom: 15px !IMPORTANT;
    font-weight: bold;
}

.review-wrapper hr {
    margin: 15px 0px;
}
.review-wrapper article p:first-child {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.review-wrapper article p:first-child > span {
    margin: 0 5px 0 0 !important;
}

.review-wrapper article p:first-child .star-num > span {
    height: auto;
    vertical-align: middle;
    padding-top: 0;
    padding-left: 0;
}




@media (max-width: 1280px) {
    .btn-xs {
        font-size: 16px;
        padding: 8px 25px;
    }
}

@media (max-width: 991px) {

    .c20-heading .c20-title {
        font-size: 30px;
    }

    .c20-heading .c20-subtitle {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {

    h1,
    .h1 {
        font-size: 38px;
    }

    .btn-xs {
        font-size: 16px;
        padding: 8px 25px;
    }

    img.alignright,
    .wp-block-image .alignright,
    img.alignleft,
    .wp-block-image .alignright,
    img.aligncenter,
    .wp-block-image .alignright {
        margin: 0 auto 15px !important;
        display: block;
        float: none !important;
    }
}


@media screen and (max-width:600px) {
    .c20-heading {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .c20-heading .c20-title {
        font-size: 26px;
    }
}



/*Home Service Area */

.service-area {
    position: relative;
    overflow: hidden;
}

.service-area .ratio::before {
    padding-top: 31%;
}

.service-area .ratio  {
    min-height: 600px;
}

.floating-lists {
    position: absolute;
    right: 30px;
    top: 50%;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: -195px;
}

.floating-lists .floating-list {
    background: rgb(var(--primary-color));
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.15);
    padding: 25px 15px 25px;
    margin-left: 10px;
    min-width: 220px;
}

.list-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 0 10px;
    margin: 0 0 20px;
}

.floating-lists ul {
    padding: 0;
    height: 350px;
    overflow: auto;
    margin-bottom: 0;
}

.floating-lists ul li {
    list-style: none;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    padding: 10px 10px;
    background: transparent;
    transition: .3s;
}

.floating-lists ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    display: block;
    white-space: nowrap;
    padding: 0 !important;
    background: transparent;
}

.floating-lists ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.floating-lists ul li:hover {
    background-color: rgba(255,255,255,0.07);
}

.floating-lists ul::-webkit-scrollbar {
    width: 6px;
    background-color: rgba(255,255,255,0.12);
}

.floating-lists ul::-webkit-scrollbar-track {
    border-radius: 0px;
}

.floating-lists ul::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #fff;
}

@media (max-width: 600px) {

    .floating-lists {
        right: 5px;
        flex-wrap: wrap;
        margin-top: -198px;
    }

    .floating-lists .floating-list {
        width: 300px;
        max-width: 85%;
        margin-right: auto;
        margin-left: auto;
        padding: 15px;
    }
    .floating-lists .floating-list:first-child {
        margin-bottom: 20px;
    }

    .floating-lists ul {
        height: 150px;
    }

    .floating-lists ul li {
        padding: 5px 10px;
    }

    .floating-lists ul li,
    .floating-lists ul li a {
        font-size: 14px;
    }

    .list-title {
        margin-bottom: 10px;
    }
}

/*End Service Area*/