:root {
    --color--black: #000;
    --color--black2: #222;
    --color--dark-grey: #514f4e;
    --color--purple: #6d6daf;
    --color--blue: #73d2cc;
    --color--lightblue: #92c8e7;
      --color--green: #5ea751;
    --color--white: #fff;
}
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Outfit';
    float: left;
    width: 100%;
    background: #fff;
    color: var(--color--dark-grey);
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
}
body, html {
    height: 100%;
}
img {
    max-width: 100%;
    height: auto;
}
img, svg {
    /*vertical-align: inherit;*/
}
:focus {
    outline: none !important;
}
a {
    color: var(--color--lightgreen);
    font-weight: 500;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    text-decoration: none
}
a:hover {
    color: var(--color--purple);
}
a, .btn, input, select, textarea, button, img {
    outline: 0 !important;
    box-shadow: none
}
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: #c70e09;
}
ol {
    padding-left: 15px
}
select {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0 0 0 #000
}
a img {
    outline: 0
}
input, select, textarea {
    outline: 0;
    -webkit-border-radius: 0;
    box-shadow: none
}
input[type="submit"] {
    cursor: pointer
}
a:hover, a:focus {
    text-decoration: none
}
p:empty {
    display: none
}
p:last-child {
    margin-bottom: 0;
}
iframe {
    border: none;
    width: 100%;
    height: 100%
}
.alignnone {
    display: block;
    margin: 25px auto;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 25px auto;
}
.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 22px 15px 0px;
}
.aligncenter, div.aligncenter {
    width: auto !important;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.no_result a {
    text-decoration: underline;
}

/*============ Heading CSS ============*/
a
{
    color: var(--color--purple);
}
a:hover
{
    text-decoration: underline;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
 
    font-family: 'Outfit';
}
h1, .title
{
    font-size: 56px;
    font-weight: 400;
    color: var(--color--purple);
    line-height: 1.2;
}
.heading{
    font-size: 48px;
    color: var(--color--dark-grey);
}
.h2, h2 {
    font-size: 46px;
    line-height: 1.2;
    margin: 20px 0;
    font-weight: 500;
}
.sub-title
{
font-size: 32px;
font-weight: 400;
line-height: 45px;
}
h3, .heading3
{
font-size: 32px;
font-weight: 600;
line-height: 40px;
}
h4
{
font-size: 18px;
font-weight: 600;
line-height: 24px; 
}
h5
{
font-size: 16px;
font-weight: 600;
line-height: 24px; 
}
h6
{
font-size: 15px; 
}

/*============ Heading CSS END ============*/

/* list style css*/
#container-wrap ul, #container-wrap ol
{
    margin-bottom: 20px;
    font-size: 16px;
    padding-left: 0;
    list-style: none;
}
#container-wrap ol li, #container-wrap ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 50px;
    line-height: 1.2;
}
#container-wrap ul li:before {
    content: "";
    background: var(--color--dark-grey);
    width: 6px;
    height: 6px;
    position: absolute;
    top: 5px;
    border-radius: 50%;
    left: auto;
    margin-left: -25px;
}
#container-wrap ol {
    counter-reset: list-counter; /* Reset the counter */
    position: relative;
}
#container-wrap ol li:before {
    counter-increment: list-counter; /* Increment the counter */
    content: counter(list-counter) ". "; /* Display the incremented number */
    margin-left: -25px;
    position: absolute;
    left: auto;
    font-weight: 600;
    margin-right: 30px;
}
#container-wrap ol li ul li:before {
    content: "" !important;
}
#container-wrap ul li ol li:before {
    content: counter(list-counter) ". " !important;
    height: 0 !important;
    top: 0;
}
/* list style css*/


/*==================== Common CSS ====================*/
.space-pd {
    padding: 70px 0;
}
.space-mr {
    margin: 70px 0;
}
.header-ph.btn {
    padding: 14px 20px;
    width: auto;
}
.header-top a, .header-top p {
    color: var(--color--black);
}
.btn, .wp-block-button__link {
    background: var(--color--purple);
    border: 2px solid var(--color--purple);
    border-radius: 96px;
    font-size: 14px;
    padding: 10px 24px;
    font-weight: 600;
    line-height: 19px; uppercase;
    color: var(--color--white);
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
}
.btn.focus, .btn:focus, .wp-block-button__link:focus {
    box-shadow: none;
}
.btn:hover, .btn:active, .btn:focus, .wp-block-button__link:hover, .wp-block-button__link:active, .wp-block-button__link:focus {
    background: var(--color--white) !important;
    color: var(--color--purple) !important;
    border-color: var(--color--purple) !important;
    animation-name: rubberBand;
    text-decoration: none;
}
.btn svg path {
    fill: #fff;
}
.btn:hover svg path {
    fill: var(--color--lightgreen);
}
.btn, .wp-block-button__link {
    min-width: 180px;
    width: auto;
}
/*==================== Common CSS END ====================*/

/*============ Client Review Schema CSS ============*/
.clientreviews {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 30px;
}
.review-schema-wrapper {
    margin-top: 35px;
}
.clientreviews p strong, .testimonialTitle strong {
    font-weight: 600;
}
.clientreviews .heading {
    font-size: 28px;
}
.video-schema iframe {
    height: 260px;
}
/*============ Client Review Schema CSS END ============*/

/*============ Form CSS ============*/
.wpcf7 {
    position: relative;
    z-index: 9;
}
.wpcf7 .form-group {
    margin-bottom: 15px;
}
.form-control:focus {
    box-shadow: none;
    background: none;
    color: var(--color--black);
    border-color: var(--color--lightgreen);
}
.wpcf7-form-control-wrap {
    display: inline-flex;
    display: -webkit-inline-flex;
    display: -ms-inline-flex;
    width: 100%;
}
.wpcf7 .wpcf7-not-valid-tip, .wpcf7 label.error, .wpcf7 .email-error{
    color: #fff;
    margin-bottom: 0;
    display: block;
    position: absolute;
    bottom: -18px;
    right: 0;
    font-size: 11px;
    background-color: #DC3231;
    padding: 2px 5px 2px;
    border-radius: 0;
    height: 20px;
    line-height: 18px;
}
.wpcf7 .wpcf7-not-valid-tip {
    display: none;
}
.custom-choose .wpcf7-not-valid-tip {
       display: block !important;
    bottom: -25px;
    font-size: 9px;
}
.wpcf7 .wpcf7-response-output {
    border: none !important;
    margin: 0 !important;
    font-size: 15px;
    line-height: 1.3;
    position: absolute;
    left: 0;
    bottom: -45px;
    right: 0;
    text-align: center;
    color: #c20000;
    font-weight: normal;
    padding: 5px 0 !important;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
    color: #398f14 !important;
}
.wpcf7 label {
    color: #4d4d4d;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    display: block;
}
.quiz-gp .wpcf7-form-control-wrap{
    display: block !important;
}
.form-control, .infusion-field input[type="text"] {
    border: none;
    border-bottom: 1px solid #959595;
    padding: 12px 0px;
    color: #15071e;
    outline: none;
    border-radius: 0;
    background-color: transparent;
    width: 100%;
}
textarea.form-control {
    height: 150px;
    resize: none;
}
.select-box select {
    color: #000;
    text-shadow: none;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    padding: 14px 0;
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.select-box select::-ms-expand {
    display: none;
}
.select-box>span {
    position: relative;
}
.select-box>span::after {
    content: "";
    right: 5px;
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    -moz-transform: rotate(45deg) translateY(-50%);
    -o-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    border-right: 2px solid rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    pointer-events: none;
}
.wpcf7-acceptance span.wpcf7-list-item, .checkbox span.wpcf7-list-item {
    margin: 0;
    margin-right: 30px;
}
.wpcf7-acceptance input[type="checkbox"], .checkbox input[type="checkbox"] {
    display: none;
    width: auto;
}
.wpcf7-acceptance .wpcf7-list-item-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    color: #0c1a36;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
    border: 1px solid #cdd3da;
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
}
.wpcf7-acceptance label input:checked+.wpcf7-list-item-label::before {
    border-color: #0c1a36;
    background: #0c1a36;
}
.wpcf7-acceptance label input:checked+.wpcf7-list-item-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox .wpcf7-list-item-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    color: #8a8b8d;
}
.checkbox .wpcf7-list-item-label::before {
    border: 1px solid #afafaf;
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    top: 1px;
    left: 0;
}
.checkbox label input:checked+.wpcf7-list-item-label {
    color: #4e6072;
}
.checkbox label input:checked+.wpcf7-list-item-label::before {
    border-color: #4e6072;
    background: #4e6072;
}
.checkbox label input:checked+.wpcf7-list-item-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.wpcf7-acceptance label a {
    color: #DCAC35;
}
.submit-btn {
    position: relative;
    display: inline-flex;
    display: -webkit-inline-flex;
    display: -ms-inline-flex;
}
.submit-btn input[type="submit"] {
    border-radius: 0;
    background: var(--color--lightgreen);
    width: auto;
    border: none;
    padding: 12px 10px;
    font-weight: 500;
    color: #fff;
    border: 2px solid var(--color--lightgreen);
    line-height: 24px;
    width: 100%;
}
.submit-btn input[type="submit"]:hover {
    background: none;
    color: var(--color--white);
    border-color: var(--color--lightgreen);
}
.wpcf7-spinner {
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
div.wpcf7 .ajax-loader {
    display: none;
}
div.wpcf7 .ajax-loader.is-active {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 100px;
    background-color: var(--color--lightgreen);
    background-image: url(../img/loader-w.svg);
    height: 100%;
    width: 100%;
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: center;
    display: block !important;
    top: 0;
    bottom: auto;
}
.msg-side-form {
    position: absolute;
    color: #fff;
    font-size: 12px;
    right: 62px;
    margin: 0;
    background-color: #c20000;
    padding: 5px;
    height: 22px;
    line-height: normal;
    letter-spacing: 0;
    bottom: 0;
}
.radio-btn input[type=radio] {
    display: none;
}
.radio-btn span.wpcf7-list-item {
    margin-left: 0;
    padding-left: 23px;
    margin-right: 20px;
    position: relative;
}
.radio-btn span.wpcf7-list-item label {
    margin-bottom: 0;
    cursor: pointer;
    line-height: 25px;
    color: #AFAFAF;
}
.radio-btn span.wpcf7-list-item:last-child {
    margin-right: 0;
}
.radio-btn label .wpcf7-list-item-label::before {
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    top: 4px;
    left: 0;
}
.radio-btn input[type=radio]:checked~.wpcf7-list-item-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.radio-btn input[type=radio]:checked~.wpcf7-list-item-label::before {
    border-color: #a91b2a;
    background: #a91b2a;
}
/*============ Form CSS END ============*/

/*========= Nav Multiple CSS =========*/
.main-menu {
    width: 100%;
}
.wrap-header {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}
.main-header.small-header .header-row {
    padding-top: 0;
}
.header-row {
    border-bottom: 1px solid #FFFFFF33;
    padding: 0;
    transition: all 0.3s ease;
}
.menu-header {
        display: flex;
    align-items: center;
}
.menu-top {
    padding: 0 0;
    position: relative;
    display: flex;
}

ul.menu-top li {
    color: #fff;
    position: relative;
    padding: 31px 20px;
    line-height: normal;
}
.small-header ul.menu-top li{
     padding: 20px 20px;
}
ul.menu-top>li.menu-item-has-children {
    padding-right: 40px;
}
/*.menu-item-has-children a {
    transform: rotate(0deg) !important;
}*/
ul.menu-top li:first-child {
    padding-left: 0;
}

ul.menu-top li ul {
    display: inline;
}

.menu-top li a {
    color: var(--color--dark-grey);
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
    height: 100%;
    font-weight: 600;
    padding: 10px 10px;
}

.menu-top li a:hover, .footer-nav li:hover a {
    transition: .3s ease-in-out all;
    color: var( --color--purple);
    transform: rotate(-10deg);
}
.menu-header>ul>li.current_page_item>a, .menu-header>ul>li.current_page_ancestor>a, .footer-nav .current-menu-item > a {
    color: var(--color--purple);
/*     transform: rotate(-10deg); */
}

#mainNav>li.menu-item-has-children::before {
    content: "";
    right: 35px;
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform: rotate(45deg) translateY(-50%);
    -moz-transform: rotate(45deg) translateY(-50%);
    -o-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    border-right: 2px solid var(--color--purple);
    border-bottom: 2px solid var(--color--purple);
    transform-origin: 5px 0px;
    transition: all 0.3s ease-in-out;
}
#mainNav>li.menu-item-has-children:hover::before {
    border-color: var(--color--purple);
    transform: rotate(-135deg) translateY(-50%);
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transition: all 0.3s ease-in-out;
}
.small-header .menu-top::before {
    display: none;
}

.sub-menu li.menu-item-has-children {
    position: relative;
}

.menu-top li>.sub-menu>li.menu-item-has-children:after {
    content: "";
    right: 7px;
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: rotate(-45deg) translateY(-50%);
    -webkit-transform: rotate(-45deg) translateY(-50%);
    -moz-transform: rotate(-45deg) translateY(-50%);
    -o-transform: rotate(-45deg) translateY(-50%);
    -ms-transform: rotate(-45deg) translateY(-50%);
    border-right: 2px solid #beccd7;
    border-bottom: 2px solid #beccd7;
    transform-origin: 0 2px;
}

ul.menu-top li:hover>ul, ul.menu-top li:focus-within>ul {
    display: block;
    position: absolute;
    top: 100%;
    transition: all 0.3s ease;
    top: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

ul.menu-top li:hover li {
    float: none;
}

.sub-menu li ul.sub-menu {
    position: absolute;
    background-color: var(--color--lightgreen);
    z-index: 99;
    top: 0 !important;
    left: 100%;
}

.menu-top li ul li {
    border-top: 0;
    display: block;
    margin: 0;
}

ul.menu-top li .sub-menu li ul.sub-menu li>a {
    background-color: var(--color--white);
    color: var(--color--purple);
}

ul.menu-top li .sub-menu li ul.sub-menu li>a:hover,
ul.menu-top li .sub-menu li ul.sub-menu li.current-menu-item>a {
    background: var(--color--purple);
    color: #fff;
}

ul.menu-top li:hover li a:hover,
.menu-top ul.sub-menu li.current_page_item a {color: var(--color--purple);}

ul.menu-top ul ul {
    left: 100%;
}

.sub-menu {
    min-width: 210px;
    z-index: 9;
    text-align: left;
    box-shadow: 0px 4px 4px 0px rgba(26, 24, 29, .1);
    background-color: var(--color--white);
    top: 125%;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    transition: cubic-bezier(0.25, 0.1, 0.32, 0.83) 0.5s;
    -webkit-transition: cubic-bezier(0.25, 0.1, 0.32, 0.83) 0.3s;
    -moz-transition: cubic-bezier(0.25, 0.1, 0.32, 0.83) 0.3s;
    -o-transition: cubic-bezier(0.25, 0.1, 0.32, 0.83) 0.3s;
    position: absolute;
    
    
    
    
    !;
}

ul.menu-top li .sub-menu li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

ul.menu-top li .sub-menu li:last-child {
    border-bottom: none;
}

ul.menu-top li .sub-menu li a {
    font-size: 14px;
    padding: 10px 10px;
    margin: 0;
    border: none;
    display: flex;
}

ul.menu-top li .sub-menu li a:hover {
    border: none;
    background: var(--color--purple);
    transform: rotate(0deg);
    color: var(--color--white);
}

ul.menu-top li .sub-menu li a:hover::before,
ul.menu-top li .sub-menu li a:hover::after {
    display: none;
}

.pointer-hide a {
    pointer-events: none;
}

.submenu-scroll .sub-menu {
    overflow-y: scroll;
    height: 450px;
}

.submenu-scroll .sub-menu::-webkit-scrollbar-track {
    background-color: #fff;
}

.submenu-scroll .sub-menu::-webkit-scrollbar {
    width: 4px;
    background-color: #fff;
}

.submenu-scroll .sub-menu::-webkit-scrollbar-thumb {
    background-color: ;
}

/*========= Nav Multiple CSS END =========*/
/*========= Header Search CSS START =========*/
.search-row{
    position: relative;
}
.search-icon {
    cursor: pointer;
    transition: all ease-in-out .45s;
    width: 24px;
    height: 24px;
    margin-left: 0px;
    margin-right: 15px;
    ter;
    display: block;
}
.search-icon svg, .search-icon img {
    width: 24px;
    height: 24px;
}
.search-icon svg, .search-icon svg path{
}
.header-search-box {
    position: absolute;
    background-color: #fff;
    transition: all 0.5s ease 0s;
    opacity: 0;
    height: 0;
    top: 36px;
    right: 0;
    padding: 5px 15px 10px 12px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 2px;
    width: 400px;
}
.header-search-box.open-search {
    opacity: 1;
    height: 60px;
    z-index: 999999;
}
.header-search-box span.closebtn {
    cursor: pointer;
    top: 0;
    transform: translateY(60%);
    position: absolute;
    right: 0px;
    width: 30px;
    height: 30px;
}
.header-search-box span.closebtn::before, .header-search-box span.closebtn::after {
    position: absolute;
    content: "";
    height: 20px;
    width: 2px;
    background-color: var(--color--black);
}
.header-search-box span.closebtn::before {
    transform: rotate(45deg);
}
.header-search-box span.closebtn::after {
    transform: rotate(-45deg);
}
.header-search-box span.closebtn:hover::before, .header-search-box span.closebtn:hover::after{
    background-color: #006564;
}

.header-search-box .search-input-wrap .searchform {
    position: absolute;
    left: 10px;
    top: 0;
    transform: translate(0, 0);
    max-width: 85%;
    margin: 0 auto;
    width: 100%;
}
.header-search-box input.search {
    height: 55px;
    color: #000;
    padding: 8px 58px 8px 10px;
    border: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
}
.header-search-box input.search:focus ~ .msg-side-form{
    display:none;
}

#site-searchs {
    top: 0;
    position: absolute;
    right: 0px;
    width: auto;
    height: 55px;
    border: none;
    padding: 5px 10px;
    line-height: 38px;
    cursor: pointer;
    background: none;
}
#site-searchs svg, #site-searchs img{
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(0);
}
#site-searchs svg, #site-searchs svg path{
    fill: var(--color--black);
    width: 25px;
    height: 25px;
}
/*========= Header Search CSS END =========*/
.header-left-col {
    align-items: center;
    width: 20%;
    transition: all 0.5s ease-in-out;
}
.header-right-col {
    width: 80%;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: end;
    position: relative;
}
.small-hedaer .header-left-col {
    width: 18%;
    transition: all 0.5s ease-in-out;
}

/*====== Header Css =========*/
.grecaptcha-badge {
    bottom: 80px !important;
}

footer {
    color: var(--color--purple);
    font-weight: 500;
    padding: 50px 0 20px;
   
}
.footer-address p {
    margin: 0;
}
.pre-footer-nav li {
    margin-bottom: 10px;
}
.social-icon-footer a {
    margin: 0 10px;
}
.social-icon-footer img {
    width: 22px;
    height: 22px;
}
.copyright {
    border-top: 1px solid #032b3f33;
    font-size: 14px;
    padding-top: 20px;
}
.copyright-text {
    padding-right: 40px;
    opacity: 75%;
}
.footer-phone {
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
}
.footer-phone:after {
    content: "";
    background: var(--color--purple);
    width: 1px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 4px;
}
footer a {
    position: relative;
}
footer .footer-address a:before, .footer-nav a:before, .copyright-text a:before {
    position: absolute;
    content: "";
    background: var(--color--green);
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
    width: 0;
}
footer a:hover:before {
    width: 100%;
}
footer a:hover {
    color: var(--color--green);
}
.social-icon-footer a:hover:before {
    width: 0;
}
.social-icon-footer a:hover {
    transform: scale(1.2);
}
.bg-cover
{
    background-size: cover
}
.no-repeat
{
    background-repeat: no-repeat;
}
/*alert bar on header css start*/
#alert-bar {
    display: none;
}
.alertbar {
    background: var( --color--purple);
    color: var( --color--white);
    width: 100%;
    display: block;
    padding: 5px 40px 6px 0px;
    border: 0;
    border-radius: 0;
    font-size: 14px;
}
.alertbar * {
    color: var( --color--white);
    margin: 0 auto;
}
.alertbar a {
    text-decoration: underline;
    text-underline-position: under;
}
.alertbar .alert_closebtn:hover {
    font-size: 30px;
    color: #fff;
}
.alertbar .alert_closebtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    right: 0;
    margin-top: 0;
    cursor: pointer;
}
.alertbar p a {
     color: var(--color--white);
     transition: all 0.3s ease-in-out;
     text-decoration: underline;
}
.alertbar p a:hover {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
body.alert-close .showing-alertbar {
    padding-top: 0 !important;
}
.header-white-layout .showing-alertbar {
    padding-top: 0 !important;
}
body.header-white-layout.alert-close {
    padding-top: 0 !important;
}
body.alert-close .display-alery-bar-cntr {
    margin-top: 0 !important;
}
.alert-close .showing-alertbar {
    display: none;
}
@media (max-width: 1200px){
    body.alert-close #header {
        padding-bottom: 0px !important;
    }

}

@media (max-width: 767px){
    .alertbar .alert_closebtn {
        top: 0;
        transform: none;
        right: 10px;
    }
    .alertbar {
        text-align: left;
        padding: 10px 0px 10px 0;
        font-size: 13px;
        line-height: 24px;
    }
    
}
/*alert bar on header css end*/
.header-top {
    background: var(--color--blue);
    padding: 5.5px 0;
}
.header-top img {
    margin: 0 10px;
}
.header-top a:hover {
    text-decoration: underline;
    color: unset;
}
.main-header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    transition: all 0.4s ease-in-out;
    background: transparent;
    /*box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.13);*/
}
.small-header {
    top: 0;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.13);
    background: var(--color--white);
}
.top-logo img {
    /* transition: all 0.4s ease-in-out; */
    max-width: 160px;
}
.small-header .top-logo img {
    max-width: 140px;
}
.brightday-logo {
    position: absolute;
    left: 0;
    opacity: 0;
    top: 0;
    transform: translateY(-60%);
    -webkit-transform: translateY(-25%);
}
.small-header .brightday-logo {
    opacity: 1;
}
.small-header .main-logo {
    opacity: 0;
}
/* button animation*/

@keyframes rubberBand {
    from {
        transform: scale3d(1,1,1)
    }

    30% {
        transform: scale3d(1.05,.95,1)
    }

    40% {
        transform: scale3d(.75,1.1,1)
    }

    50% {
        transform: scale3d(1.05,.95,1)
    }

    65% {
        transform: scale3d(.95,1.05,1)
    }

    75% {
        transform: scale3d(1.05,.95,1)
    }

    to {
        transform: scale3d(1,1,1)
    }
}
/* */
.entry-title {
    display: none;
}
.footer-cntr
{
    font-size: 16px;
    padding-top: 46px;
     z-index: 1;
    position: relative;
}
.footer-nav {
   column-count: 2;
    display: block !important;
}
.footer-nav li a {
    padding-bottom: 24px;
}
.footer-nav li a, .footer-address-wrp a, .footer-bottom a {
    display: inline-flex;
    color: var(--color--dark-grey);
}
.footer-address-wrp a
 {
    color: var(--color--purple) !important;
}
.footer-nav li a:hover, .footer-address-wrp a:hover, .footer-bottom a:hover
{
    color:var(--color--purple);
}
.footer-bottom {
    border-top: 1px solid #F6F4F0;
    padding: 10px 0;
    font-size: 12px;
}
div#container-wrap {
    min-height: 500px;
    padding-top: 30px;
}
.heading3
{
    color: var(--color--green);
}
.paragraph
{
    font-size: 24px;
}
.form-control.wpcf7-not-valid {
    border: 1px solid #DC3231 !important;
}
/* focus visble*/
body :focus-visible{
    outline: -webkit-focus-ring-color auto 1px !important;
}
a:-webkit-any-link:focus-visible, a:focus {
    outline-offset: 1px;
}

.links-content {
    font-size: 24px;
}
#Public-Transportation h4, #Street-Parking h4 {
    margin-bottom: 10px !important;
}
.custom-btn > .container {
    padding-left: 0;
}
/* Hide calendar icon in Chrome, Edge, Safari */
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
.custom-gender .wpcf7-list-item.first {
    margin-left: 0;
}
.custom-gender .wpcf7-list-item.first {
    margin-left: 0;
}
.custom-gender .wpcf7-list-item-label, .custom-service-list .wpcf7-list-item-label{
      display: inline-block !important;
    margin-left: 6px;
    opacity: 1 !important;
    transition: 0s !important;
}
.custom-service-list .wpcf7-list-item {
    margin-left: 0;
    margin-bottom: 5px;
    width: 100%;
}
.custom-service-list .wpcf7-checkbox.form-control {
    flex-direction: column;
    height: auto;
    align-items: flex-start;
}
.custom-service-list .wpcf7-list-item input[type="checkbox"] {
    position: relative;
    top: 2px;
}
.custom-service-list .wpcf7-list-item.last {
    margin-bottom: 0;
}