/*CSS variable can be found in assets/css/root.css file*/
body {
    margin: 0;
    font-family: var(--primary-font);
    font-size: var(--base-font-size);
    font-weight: var(--base-font-weight);
    line-height: var(--base-line-hight);
    color: rgb(var(--text-color));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

p {
    margin-bottom: 20px;
}

.p {
    font-size: 18px;
}


a {
    transition: .3s;
    color: rgb(var(--link-color));
    text-decoration: none;
}

a:not(.btn):not(.wc-block-components-button):not(.wp-element-button):hover {
    color: rgb(var(--link-color));
}

a:hover,
a:focus {
    outline: none;
}

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: 15px;
    margin-bottom: 0;
}

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

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

.slick-dots li button {
    background-color: rgba(0, 0, 0, .2);
    border-radius: 50%;
    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(--primary-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;
}

.c20-page-slider.slick-slider .slick-dots li {
    width: 40px;
    height: 6px;
}

.c20-page-slider.slick-slider .slick-dots li button {
    background-color: #D9D9D9;
    border-radius: 4px;
    padding: 0;
}

.c20-page-slider.slick-slider .slick-dots li.slick-active button {
    background-color: rgb(var(--primary-color));
}


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

h1,
.h1 {
    line-height: 1.25;
}

.h2,
h2 {
    line-height: 1.3;
}

.h3,
h3 {
    line-height: 1.25;
}

.h4,
h4 {
    line-height: 1.3;
}

.h5,
h5 {
    line-height: 1.35;
}

.h6,
h6 {
    line-height: 1.4;
}


.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: var(--base-content-heading-font-family);
    font-weight: var(--base-content-heading-font-weight);
}

.entry-content h1,
.entry-content .h1 {
    line-height: 1.2;
    margin: 0 0 15px;
}

.entry-content .h2,
.entry-content h2 {
    margin: 25px 0 15px;
}

.entry-content .h3,
.entry-content h3 {
    margin: 25px 0 15px;
    line-height: 1.3;
}

.entry-content .post-thumbnail {
    margin-bottom: 30px;
}

.entry-content .post-thumbnail img {
    width: 100%;
    height: auto;
}

.entry-content a:not(.btn):not(.wc-block-components-button):not(.wp-element-button) {
    color: rgb(var(--link-color));
    font-weight: 600;
}

@media (max-width: 600px) {

    .entry-content ul:not(.wc-block-components-product-details):not(.products):not(.entry-meta):not(.blocks-gallery-grid) {
        padding: 20px 20px;
    }
}


.text-shadow,
.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-color: rgb(var(--brand-color)) !important;
}

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

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

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


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

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

.bg-dark {
    background-color: #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-19 {
    line-height: 1.9;
}

.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;
}

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

/*Buttons*/
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.wc-block-components-button,
.wp-element-button,
.btn {
    display: inline-block !important;
    position: relative !important;
    transition: .5s !important;
    text-align: center !important;
    font-family: var(--base-btn-font-family) !important;
    border-width: var(--base-btn-border-width) !important;
    border-style: var(--base-btn-border-style) !important;
    border-color: var(--base-btn-border-color) !important;
    border-radius: var(--base-btn-radius) !important;
    color: var(--base-btn-color) !important;
    font-weight: var(--base-btn-font-weight) !important;
    padding: var(--base-btn-padding) !important;
    line-height: var(--base-btn-line-height) !important;
    background-color: var(--base-btn-bg) !important;
    text-transform: var(--base-btn-text-transform) !important;
    letter-spacing: 1.5px !important;
}

.btn-lg {
    font-size: var(--base-btn-font-size-lg) !important;
    padding: var(--base-btn-padding-lg) !important;
}

.btn-sm {
    font-size: var(--base-btn-font-size-sm) !important;
    padding: var(--base-btn-padding-sm) !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.wc-block-components-button:active,
.wp-element-button:active,
.wc-block-components-button:focus,
.wp-element-button:focus,
.wc-block-components-button:hover,
.wp-element-button:hover,
.btn:focus,
.btn:active,
.btn:hover {
    border-color: var(--base-btn-border-color-focus) !important;
    color: var(--base-btn-hover-color) !important;
    background-color: var(--base-btn-hover-bg) !important;
}

.btn.btn-palette-2 {
    border-width: var(--base-btn-palette-2-border-width) !important;
    border-style: var(--base-btn-palette-2-border-style) !important;
    border-color: var(--base-btn-palette-2-border-color) !important;
    border-radius: var(--base-btn--palette-2-radius) !important;
    color: var(--base-btn-palette-2-color) !important;
    background-color: var(--base-btn-palette-2-bg) !important;
}

.btn.btn-palette-2:hover,
.btn.btn-palette-2:focus {
    color: var(--base-btn-palette-2-hover-color) !important;
    border-color: var(--base-btn-palette-2-border-color-focus) !important;
    background-color: var(--base-btn-palette-2-hover-bg) !important;
}

.btn.btn-palette-3 {
    border-width: var(--base-btn-palette-3-border-width) !important;
    border-style: var(--base-btn-palette-3-border-style) !important;
    border-color: var(--base-btn-palette-3-border-color) !important;
    border-radius: var(--base-btn--palette-3-radius) !important;
    color: var(--base-btn-palette-3-color) !important;
    background-color: var(--base-btn-palette-3-bg) !important;
}

.btn.btn-palette-3:hover,
.btn.btn-palette-3:focus {
    color: var(--base-btn-palette-3-hover-color) !important;
    border-color: var(--base-btn-palette-3-border-color-focus) !important;
    background-color: var(--base-btn-palette-3-hover-bg) !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;
    z-index: 1;
}

.has-overlay:before {
    z-index: -1;
    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 a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;
    background-color: rgb(var(--primary-color));
    border-radius: 50%;

    text-align: center;
    transition: .3s;
}

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

.c20-social a:hover {
    background-color: #fff;
}

.c20-social a img {
    width: auto;
    margin: auto;
    transition: .3s
}

.c20-social a:not(:hover) img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

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

.entry-content ul:not(.wc-block-components-product-details):not(.products):not(.entry-meta):not(.blocks-gallery-grid) li {
    position: relative;
    list-style: none;
    padding-left: 32px;
    z-index: 1;
}

.entry-content ul:not(.wc-block-components-product-details):not(.products):not(.entry-meta):not(.blocks-gallery-grid) li:after {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 4px;
    transition: .3s;
}

.entry-content ul:not(.wc-block-components-product-details):not(.products):not(.entry-meta):not(.blocks-gallery-grid) li:after {
    background-image: url(../img/list-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.entry-content ul:not(.wc-block-components-product-details):not(.products):not(.entry-meta):not(.blocks-gallery-grid) li:not(:last-child) {
    margin-bottom: 15px;
}

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

.entry-content ul:not(.wc-block-components-product-details):not(.products):not(.entry-meta):not(.blocks-gallery-grid) li a {
    color: rgb(var(--primary-color));
}

.entry-content ul:not(.wc-block-components-product-details):not(.products):not(.entry-meta):not(.blocks-gallery-grid) li a:hover {
    text-decoration: underline;
}

.c20-quote {
    background-color: #fff;
    box-shadow: 0 2px 20px 0 rgba(45,46,45, 0.1);
    position: relative;
    max-width: 900px;
    margin: 15px auto 25px;
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
}

.c20-quote > div {
    font-size: 18px;
    line-height: 1.7;
    color: rgb(var(--text-color));
    padding: 20px;
    border-radius: 10px;
    border: 4px dashed rgb(var(--primary-color));
}

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

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

.c20-quote a:hover {
    text-decoration: underline;
}

/*.entry-content .c20-quote {
    color: rgb(var(--text-color));
    border: 1px solid rgba(38, 64, 68, .1);
    box-shadow: none;
}*/

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



/*From*/
.modal-header .close {
    outline: none;
    background: none;
    border: 0;
}
#commonContactForm .modal-body {
    padding-bottom: 0
}

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

.modal-body div.wpcf7-response-output {
    margin: 0 0 20px;
    padding: 2px 10px;
}

.modal-body textarea.wpcf7-form-control {
    height: 100px;
}

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

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

.modal-body div.wpcf7-response-output {
    margin: 0 0 20px;
    padding: 2px 10px;
}

.modal-body textarea.wpcf7-form-control {
    height: 100px;
}

::-webkit-input-placeholder {
    color: var(--base-form-field-placeholder-color) !important;
}
:-moz-placeholder {
   color: var(--base-form-field-placeholder-color) !important;
   opacity:  1;
}
::-moz-placeholder {
   color: var(--base-form-field-placeholder-color) !important;
   opacity:  1;
}
:-ms-input-placeholder {
   color: var(--base-form-field-placeholder-color) !important;
}

::-ms-input-placeholder {
   color: var(--base-form-field-placeholder-color) !important;
}

::placeholder {
   color: var(--base-form-field-placeholder-color) !important;
}


/*
.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);
}

.wpcf7-form .form-group:not(.form-btn) {
    margin-bottom: 25px;
}*/

.wpcf7-form-control-wrap {
    margin-bottom: 10px;
    display: block;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 5px;
}

.wpcf7-form label .wpcf7-form-control {
    display: block;
    width: 100%;
}

.wpcf7-form-control-wrap .wpcf7-select {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSIvPjwvc3ZnPg==");
    background-repeat: no-repeat;
    background-position: 99% center;
    background-size: 20px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 40px;
}


.wpcf7-form-control.wpcf7-radio {
    background: transparent;
    border: 0;
    padding: 0
}

.wpcf7-textarea.wpcf7-form-control {
    max-height: 180px;
}

.wpcf7-form p {
    margin-bottom: 0;
}


.wpcf7 form .wpcf7-response-output {
    margin: 0px 0 20px;
}

.wp-block-column.has-black-background-color form.invalid .wpcf7-response-output,
.wp-block-column.has-black-background-color form.unaccepted .wpcf7-response-output,
.wp-block-column.has-black-background-color form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    background-color: #ffb900;
    color: #000;
}

@media screen and (max-width: 768px) { 
    .wpcf7-form-control.wpcf7-submit {
        font-size: 18px;
    }
}

/* 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;*/
}

.site-content .wpcf7-form label,
.site-content .gform_wrapper label.gfield_label,
.site-content .gform_wrapper legend.gfield_label {
    font-family: var(--base-form-label-font-family) !important;
    font-weight: var(--base-form-label-font-weight) !important;
    line-height: var(--base-form-label-line-height) !important;
    text-transform: var(--base-form-label-text-transform) !important;
    color: var(--base-form-label-color) !important;
}

.wpcf7-form-control-wrap select.wpcf7-form-control,
.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;
    width: 100%;
}

.site-content .wpcf7-form-control:not(.wpcf7-submit),
.site-content .gform_wrapper select,
.site-content .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.site-content .gform_wrapper textarea {
    font-family: var(--base-form-field-font-family) !important;
    font-weight: var(--base-form-field-font-weight) !important;
    line-height: var(--base-form-field-line-height) !important;
    text-transform: var(--base-form-field-text-transform) !important;
    padding: var(--base-form-field-padding) !important;
    background-color: var(--base-form-field-bg) !important; 
    color: var(--base-form-field-color) !important;
    border-radius: var(--base-form-field-radius) !important;
    border-width: var(--base-form-field-border-width) !important;
    border-style: var(--base-form-field-border-style) !important;
    border-color: var(--base-form-field-border-color) !important;
    /*border-color: rgba(0, 0, 0, .1) !important;*/
    letter-spacing: normal ;
    height: auto ;
    box-shadow: none;
    margin-bottom: 0 ;
}

.wpcf7-form-control:focus,
.site-content .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
.site-content .gform_wrapper textarea:focus {
    border-color: var(--base-form-field-border-color-focus);
    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*/
.site-content .wpcf7-form-control.wpcf7-submit,
.site-content .gform_wrapper .gform_footer input.button,
.site-content .gform_wrapper .gform_footer input[type=submit],
.site-content .gform_wrapper .gform_page_footer input.button,
.site-content .gform_wrapper .gform_page_footer input[type=submit] {
    font-family: var(--base-form-btn-font-family);
    font-weight: var(--base-form-btn-font-weight) !important;
    line-height: var(--base-form-btn-line-height) !important;
    text-transform: var(--base-form-btn-text-transform) !important;
    padding: var(--base-form-btn-padding) !important;
    background: var(--base-form-btn-bg) !important;
    color: var(--base-form-btn-color) !important;
    border-radius: var(--base-form-btn-radius) !important;
    border-width: var(--base-form-btn-border-width) !important;
    border-style: var(--base-form-btn-border-style) !important;
    border-color: var(--base-form-btn-border-color) !important;
    min-height: auto !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer !important;
    margin-bottom: 0;
    width: 100%;
    transition: all .4s !important;
}

.site-content .gform_wrapper .gform_footer input.button:hover,
.site-content .gform_wrapper .gform_footer input[type=submit]:hover,
.site-content .gform_wrapper .gform_page_footer input.button:hover,
.site-content .gform_wrapper .gform_page_footer input[type=submit]:hover {
    border-radius: var(--base-form-btn-radius) !important;
    border-width: var(--base-form-btn-border-width) !important;
    border-style: var(--base-form-btn-border-style) !important;

    border-color: var(--base-form-btn-border-color-hover) !important;
    color: var(--base-form-btn-color-hover) !important;
    background-color: var(--base-form-btn-bg-hover) !important;
}

.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; 
}

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

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

/*sidebar and widget */
/*
.main-sidebar .widget ul:not(.c20-social) {
    padding: 20px 20px 10px;
    margin: 0;
}

.main-sidebar ul:not(.c20-social),
.widget_recent_entries ul {
    padding:0;
    list-style: none;
}

.main-sidebar ul:not(.c20-social) li,
.widget_recent_entries ul li {
    padding: 5px 0;
}

.main-sidebar ul:not(.c20-social) li {
    border-top: 1px solid #ddd;
}

.widget_recent_entries ul li {
    border-top: 1px solid #fff;
}

.main-sidebar ul:not(.c20-social) li a,
.widget_recent_entries ul li a {
    font-size: 17px;
    font-weight: 600;
    font-family: var(--secondary-font);
    padding: 10px 10px 10px 20px;
    display: block;
    position: relative;
    z-index: 1;
    line-height: 1.625;
    transition: .4s;
}

.widget_recent_entries ul li a {
    color: #fff;
}

.main-sidebar ul:not(.c20-social) li a {
    color: rgb(var(--primary-color));
}

.main-sidebar ul:not(.c20-social) li a:hover,
.widget_recent_entries ul li a:hover {
    color: #fff;
}

.main-sidebar ul:not(.c20-social) li a:after,
.main-sidebar ul:not(.c20-social) li a:before,
.widget_recent_entries ul li a:after,
.widget_recent_entries ul li a:before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 0;
    transform: translateY(-50%);
    transition: .4s;
    background-color: transparent;
    z-index: -1;
}

.main-sidebar ul:not(.c20-social) li a:after,
.widget_recent_entries ul li a:after {
    top: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    transform: translateY(0);
}

.widget_recent_entries ul li a:after {
    background-image: url(../img/control/arrow-right-white.png);
}

.main-sidebar ul:not(.c20-social) li a:after {
    background-image: url(../img/control/arrow-right-red.png);
}

.widget_recent_entries ul li a:hover:after {
    background-image: url(../img/control/arrow-right-white.png);
}

.main-sidebar ul:not(.c20-social) li a:hover:after {
    background-image: url(../img/control/arrow-right-white.png);
}

.main-sidebar ul:not(.c20-social) li a:hover:before,
.widget_recent_entries ul li a:hover:before {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    background-color: rgb(var(--primary-color));
}

*/

/*end sidebar and widget */

/*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: 991px) {

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

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

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

    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: 700px;
}

.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 li a:hover,
.floating-lists ul li:hover a {
    color: #fff;
}

.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*/