body {
    font-family: var(--barlowfont);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    color: var(--dark);
    font-size: 1.25rem;
    line-height: 160%;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0px;
    margin: 0px;
}

ul {
    list-style-type: none;
    margin-bottom: 0px;
}

input,
textarea,
select,
input[type="text"],
input[type="email"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

html {
    text-size-adjust: none;
    -ms-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -o-text-size-adjust: none;
}

html,
body {
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
    outline: none;
    vertical-align: middle;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
    display: block
}


/* =========== Transition CSS ========= */

a,
span,
:after,
:before,
.benefit-info-box a,
input,
textarea,
img {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.benefit-info-box i,
.btn i,
.btn,
.btn span {
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.benefit-info-box span,
.service-image-box figure>img {
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.blog-social-box ul>li>a>i,
.blog-social-box ul>li>a>i:before,
.blog-social-box ul>li>a>i:after,
.languages ul:before {
    transition-duration: 0s;
}


/* Animation Fade In */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Start Bounce effect css */

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-30px);
    }

    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}


/* End Bounce effect css */


/* ====== Button CSS ===== */

.btn-blue {
    position: relative;
    background: linear-gradient(94.81deg, var(--primary-color)-9.25%, var(--secondary-color)104.62%);
    font-family: var(--barlowfont);
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 57px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 58px;
    padding: 0 33px;
    border-radius: 100px 100px;
    -webkit-border-radius: 100px 100px;
    -moz-border-radius: 100px 100px;
    -ms-border-radius: 100px 100px;
    -o-border-radius: 100px 100px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-white {
    position: relative;
    background: var(--white);
    font-family: var(--barlowfont);
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 57px;
    color: var(--body-copy);
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 58px;
    padding: 0 33px;
    border-radius: 100px 100px;
    -webkit-border-radius: 100px 100px;
    -moz-border-radius: 100px 100px;
    -ms-border-radius: 100px 100px;
    -o-border-radius: 100px 100px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-link {
    position: relative;
    background: transparent;
    font-family: var(--barlowfont);
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 57px;
    color: var(--body-copy);
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 58px;
    padding: 0 33px;
    border-radius: 0 0;
    -webkit-border-radius: 0 0;
    -moz-border-radius: 0 0;
    -ms-border-radius: 0 0;
    -o-border-radius: 0 0;
    cursor: pointer;
    white-space: nowrap;
}

.has-icon {
    font-size: 20px;
    color: var(--white);
    font-weight: 300;
    padding: 0 20px;
}

.has-icon div.icon {
    display: inline-block;
    margin-right: 15px;
}

.has-icon:hover div.icon>img {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}

.link {
    position: relative;
    display: inline-block;
    font-family: var(--barlowfont);
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    line-height: 160%;
}

.link:before {
    position: absolute;
    content: "";
    background: var(--white);
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
}

.link:hover:before {
    width: 30%;
}


/* Button arrow effect CSS */

.btn,
.btn span {
    position: relative;
    display: inline-block;
}

.btn i {
    position: absolute;
    right: 0;
    opacity: 0;
    top: 50%;
    margin-top: 1px;
    font-size: 14px;
    transform: translateY(-50%);
}

.btn:hover i {
    opacity: 1;
    right: -20px;
}

.btn:hover span {
    transform: translate3d(-0.6rem, 0, 0);
    -webkit-transform: translate3d(-0.6rem, 0, 0);
    -moz-transform: translate3d(-0.6rem, 0, 0);
    -ms-transform: translate3d(-0.6rem, 0, 0);
    -o-transform: translate3d(-0.6rem, 0, 0);
}


/* ======= Header CSS ======= */

.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    padding-left: 3.125rem;
    padding-right: 3.125rem;
    transition: all 0.1s ease-out;
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -ms-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
}

.header-fixed {
    background: var(--secondary-color);
}

.navbar-brand {
    padding-right: 2rem;
    transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
}

.navbar-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: auto;
}

.navbar-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-left: auto;
}

ul.main-menu {
    padding: 0 0;
    margin: 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 25px;
}

ul.main-menu>li {
    position: relative;
}

ul.main-menu>li.has-dropdown>a>span.arrow-icon {
    position: relative;
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    margin-left: 10px;
    margin-top: 1px;
}

ul.main-menu>li>a {
    position: relative;
    font-size: 20px;
    color: var(--white);
    font-weight: 300;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3.5rem 0;
}

ul.main-menu>li>a:after {
    position: absolute;
    content: "";
    background: var(--white);
    width: 0;
    height: 2px;
    left: auto;
    right: 0;
    bottom: 50px;
}

ul.main-menu>li>a:hover:after,
ul.main-menu>li.current-menu-item>a:after,
ul.main-menu>li.current-menu-parent>a:after {
    width: 100%;
    left: 0;
    right: auto;
}

/* dropdown menu */
ul.main-menu>li ul {
    position: absolute;
    background: var(--white);
    width: 310px;
    top: 70%;
    box-shadow: 0px 15px 15px rgba(var(--black-rgb), 15%);
    transition-duration: 0.3s;
    z-index: 9999;
    display: none;
    white-space: nowrap;
}

ul.main-menu>li:hover>ul {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
    -webkit-animation: fadeIn 0.3s ease-in-out;
}

ul.main-menu>li ul>li {
    position: relative;
}

ul.main-menu>li ul>li>a {
    position: relative;
    display: block;
    font-size: 19px;
    color: var(--body-copy);
    border-bottom: rgba(var(--lightgray-rgb), 80%) 1px solid;
    padding: .75rem 0.75rem;
    z-index: 99;
}

ul.main-menu>li ul>li:last-child>a {
    border-bottom: none;
}

ul.main-menu>li ul>li>a:hover {
    color: var(--white);
}

ul.main-menu>li ul>li>a:before {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    width: 0;
    height: 100%;
    left: auto;
    right: 0;
    top: 0;
    z-index: -1;
}

ul.main-menu>li ul>li>a:hover:before,
ul.main-menu>li ul>li.current-menu-item>a:before {
    width: 100%;
    left: 0;
    right: auto;
    -webkit-transition-delay: 200ms;
         -o-transition-delay: 200ms;
            transition-delay: 200ms;
}

ul.main-menu>li ul>li.current-menu-item>a{
    color: var(--white);
}



.header .navbar-start>.btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.header .navbar-end>.btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

/* .arrow-box-block {
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
} */

.arrow-box-block a {
    display: block;
}

/*hamburger Menu*/
.svgburg {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.navbar-burger {
    position: relative;
    top: 5px;
}

.path1,
.path2 {
    stroke-dasharray: 104;
    -webkit-stroke-dasharray: 104;
    -ms-stroke-dasharray: 104;
    -moz-stroke-dasharray: 104;
    -o-stroke-dasharray: 104;
    stroke-dashoffset: -71;
    -webkit-stroke-dashoffset: -71;
    -ms-stroke-dashoffset: -71;
    -moz-stroke-dashoffset: -71;
    -o-stroke-dashoffset: -71;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -o-transition: 1s all ease;
    stroke: var(--white);
}

.cross {
    stroke-dashoffset: 68;
    -webkit-stroke-dashoffset: 68;
    -ms-stroke-dashoffset: 68;
    -moz-stroke-dashoffset: 68;
    -o-stroke-dashoffset: 68;
}

.mline {
    stroke-dasharray: 41;
    -webkit-stroke-dasharray: 41;
    -ms-stroke-dasharray: 41;
    -moz-stroke-dasharray: 41;
    -o-stroke-dasharray: 41;
    stroke-dashoffset: -82;
    -webkit-stroke-dashoffset: -82;
    -ms-stroke-dashoffset: -82;
    -moz-stroke-dashoffset: -82;
    -o-stroke-dashoffset: -82;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -o-transition: 1s all ease;
    stroke: var(--white);
}

.hide {
    stroke-dasharray: 43;
    -webkit-stroke-dasharray: 43;
    -ms-stroke-dasharray: 43;
    -moz-stroke-dasharray: 43;
    -o-stroke-dasharray: 43;
    stroke-dashoffset: 130;
    -webkit-stroke-dashoffset: 130;
    -ms-stroke-dashoffset: 130;
    -moz-stroke-dashoffset: 130;
    -o-stroke-dashoffset: 130;
}

/*Language css*/
.languages {
    position: relative;
    display: inline-block;
    padding-right: 25px;
}

.languages .current {
    width: 48px;
    height: 48px;
    border: var(--white) 1px solid;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
}

.languages ul {
    background: var(--white);
    display: none;
    width: 150px;
    left: -52px;
    position: absolute;
    margin: 0;
    padding: 3px 0;
    list-style: none;
    font-size: 13px;
    top: 138%;
    z-index: 99;
}

.languages ul:before {
    position: absolute;
    content: "";
    background: var(--white);
    width: 15px;
    height: 15px;
    top: -6px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.languages ul>li:not(:last-child) {
    border-bottom: var(--lightgray) 1px solid;
}

.languages ul>li>a {
    text-decoration: none;
    padding: 5px 10px;
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--body-copy);
    text-align: center;
}

.languages ul>li>a.sel {
    color: var(--primary-color);
}

.languages ul>li>a.sel:hover {
    color: var(--primary-color);
}

.languages ul>li>a:hover {
    color: var(--primary-color);
}

.languages:hover .hover {
    display: inline-block;
}

.languages:hover:after {
    border-top-color: #000;
}

.header-fixed ul.main-menu>li ul {
    top: 100%;
}

.header-fixed ul.main-menu>li>a {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.header-fixed ul.main-menu>li>a:after {
    bottom: 36px;
}


/* Css for Mozilla Firefox */
@-moz-document url-prefix() {

    ul.main-menu>li ul {
        top: 72%;
    }

    ul.main-menu>li>a::after {
        bottom: 44px;
    }

    .header-fixed ul.main-menu>li ul {
        top: 100% !important;
    }

    .header-fixed ul.main-menu>li>a:after {
        bottom: 30px;
    }

    .heading-block {
        margin-top: 0px !important;
    }

}


/* ======= home hero section CSS ======= */

.hero-section {
    position: relative;
    background: url(../images/banner-image.jpg) no-repeat center center / cover;
}

.hero-section-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(var(--primary-color-rgb), 0.5), rgba(var(--secondary-color-rgb), 0.5));
}

.hero-info-box {
    position: relative;
    z-index: 12;
}

.hero-info-box h1,
.hero-info-box h2,
.hero-info-box h3,
.hero-info-box h4,
.hero-info-box h5 {
    color: var(--white);
}

.hero-info-box h3 {
    font-weight: 300;
}

.hero-info-box p {
    color: var(--white);
    max-width: 90%;
}

.arrow-box-block {
    position: absolute;
    right: 38px;
    bottom: 58px;
    z-index: 99;
}


/* ======= home benefit section CSS ======= */

.benefit-wrapper {
    position: absolute;
    width: 100%;
    left: auto;
    right: auto;
    bottom: 0;
    margin: 0 auto;
    z-index: 95;
}

.benefit-box {
    display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.benefit-info-box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
}

.benefit-info-box a {
    display: block;
    color: var(--white);
    text-align: center;
    min-height: 150px;
    overflow: hidden;
    background: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 30px;
    padding-right: 30px;   
    border-right: var(--secondary-color) 1px solid;
}

.benefit-info-box:last-child a {
    border-right: none;
}

.benefit-info-box span {
    position: relative;
    display: inline-block;
}

.benefit-info-box p {
    font-weight: 500;
    margin-bottom: 0;
}

.benefit-info-box i {
    position: absolute;
    width: 36px;
    height: 36px;
    background: var(--white);
    right: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    bottom: 10px;
    margin-top: 0;
    font-size: 14px;
    line-height: 36px;
    color: var(--body-copy);
    border-radius: 100px 100px;
    -webkit-border-radius: 100px 100px;
    -moz-border-radius: 100px 100px;
    -ms-border-radius: 100px 100px;
    -o-border-radius: 100px 100px;
}

.benefit-info-box a:hover i {
    opacity: 1;
    bottom: -45px;
}

.benefit-info-box a:hover span {
    transform: translate3d(0, -1.4rem, 0);
    -webkit-transform: translate3d(0, -1.4rem, 0);
    -moz-transform: translate3d(0, -1.4rem, 0);
    -ms-transform: translate3d(0, -1.4rem, 0);
    -o-transform: translate3d(0, -1.4rem, 0);
}

.benefit-info-box a:hover {
    background: var(--secondary-color);
    min-height: 200px;
    box-shadow: 0px 16px 24px rgba(var(--black-rgb), 25%);
}

.benefit-wrapper.is-mobile {
    display: none;
}


/* ======= home about section CSS ======= */

.heading-block{
    margin-top: -16px;
}

.about-section {
    position: relative;
    padding-bottom: 230px;
    z-index: 11;
}

.about-section:after {
    position: absolute;
    content: "";
    background-image: url(../images/shape-one.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    width: 898px;
    height: 1022px;
    top: -120px;
    left: 47%;
    z-index: -1;
}

.about-section .columns {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.about-info-box {
    position: relative;
}

.about-info-box:before {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    width: 10px;
    height: 100%;
    left: -92px;
    top: 0;
    bottom: 0;
}

.about-info-box h1,
.about-info-box h2,
.about-info-box h3 {
    color: var(--secondary-color);
}

.about-info-box h4 {
    color: var(--dark);
}

.about-info-box p>mark {
    color: var(--secondary-color);
    display: block;
    font-weight: 600;
}

.about-image-box {
    background: var(--secondary-color);
    box-shadow: 0px 16px 24px rgba(var(--black-rgb), 15%);
}

.about-image-box figure>img {
    width: 100%;
    max-width: 100%;
}

.about-image-box figcaption {
    padding: 40px 45px 50px 45px;
}

.about-image-box figcaption h4 {
    color: var(--white);
}

.about-image-box figcaption p {
    color: var(--white);
    margin-bottom: 15px;
}


/* ======= home service section CSS ======= */

.service-section {
    margin-top: -120px;
}

.service-image-box {
    position: relative;
    box-shadow: 0px 16px 24px rgba(var(--black-rgb), 15%);
}

.service-image-box figure {
    overflow: hidden;
}

.service-image-box figure>a>img {
    object-fit: cover;
    object-position: center center;
    margin-bottom: -3px;
}

.service-image-box:hover figure>a>img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.service-image-box figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
}

.service-image-box figcaption>a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: rgba(var(--primary-color-rgb), 70%);
    color: var(--white);
    padding: 20px 35px;
    z-index: 12;
}

.service-image-box figcaption>a:after {
    position: absolute;
    content: "";
    background: rgba(var(--secondary-color-rgb), 40%);
    width: 0;
    height: 100%;
    left: auto;
    right: 0;
    z-index: -1;
}

.service-image-box figcaption>a:hover:after,
.service-image-box:hover figcaption>a:after {
    width: 100%;
    left: 0;
    right: auto;
}

.service-image-box figcaption h5 {
    color: var(--white);
}

.service-image-box.mb-5 {
    margin-bottom: 2rem !important;
}

.service-info-video-block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
}

.service-info-video-block .overlay {
    background: linear-gradient(94.81deg, rgba(var(--primary-color-rgb), 80%), rgba(var(--secondary-color-rgb), 80%));
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.service-info-video-block a.popup-video {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.service-info-video-block a.popup-video:hover {
    opacity: 0.7;
}


/* ======= home review section CSS ======= */

.review-info {
    padding-right: 10rem;
}

.review-inner-wrapper {
    background: var(--secondary-color);
}

.review-inner-wrapper .slick-track {
    webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.review-info {
    flex: 0 0 calc(100% - 360px);
}

.review-info h4 {
    color: var(--white);
}

.review-info p {
    color: var(--white);
    font-weight: 600;
}


/* ======= home step section CSS ======= */

ul.step-list {
    display: -webkit-box;
display: -ms-flexbox;
display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

ul.step-list>li {
    margin-left: -17px;
    margin-right: -17px;
}

ul.step-list>li>span.icon-box {
    width: 260px;
    height: 260px;
    display: block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 100% 100%;
    -webkit-border-radius: 100% 100%;
    -moz-border-radius: 100% 100%;
    -ms-border-radius: 100% 100%;
    -o-border-radius: 100% 100%;
}

ul.step-list>li:hover>span.icon-box {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

ul.step-list>li:nth-of-type(1) .icon-box {
    background: rgba(var(--redish-rgb), 30%);
}

ul.step-list>li:nth-of-type(2) .icon-box {
    background: rgba(var(--orange-rgb), 30%);
}

ul.step-list>li:nth-of-type(3) .icon-box {
    background: rgba(var(--primary-color-rgb), 30%);
}

ul.step-list>li:nth-of-type(4) .icon-box {
    background: rgba(var(--green-rgb), 30%);
}

ul.step-list>li:nth-of-type(5) .icon-box {
    background: rgba(var(--secondary-color-rgb), 30%);
}

ul.step-list>li>p {
    font-weight: 600;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
}


/* ======= Start home need disability section CSS ======= */

.need-disability-block {
    position: relative;
    padding-bottom: 100px;
}

.need-disability-image-box {
    height: 720px;
    background-color: var(--lightgray);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.need-disability-info-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 999;
}

.need-disability-info-box-wrapper>div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2);
            flex: 0 0 calc(100% / 2);
}

.need-disability-info-box .title-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1.4rem 1rem;
    cursor: pointer;
}

.need-disability-info-box .title-box::after {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    position: absolute;
    right: 2.188rem;
    content: " ";
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.need-disability-info-box .title-box.active::after {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
}

.need-disability-info-box .title-box .icon-box {
    display: block;
    min-width: 64px;
    min-height: 64px;
    background: rgba(var(--body-copy-rgb), 20%);
    border-radius: 50% 50%;
    -webkit-border-radius: 50% 50%;
    -moz-border-radius: 50% 50%;
    -ms-border-radius: 50% 50%;
    -o-border-radius: 50% 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.need-disability-info-box .description-box {
    display: none;
    padding: 0 2rem 2rem 2rem;
}

.need-disability-info-box .description-box>p {
    color: var(--white);
}

.need-disability-info-box .description-box>p:last-child {
    margin-bottom: 0;
}


/* ======= End home need disability section CSS ======= */


/* ======= home blog section CSS ======= */

.blog-section {
    position: relative;
    background-color: rgba(var(--primary-color-rgb), 5%);
    z-index: 11;
}

.blog-section:after {
    position: absolute;
    content: "";
    background-image: url(../images/shape-one.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    width: 898px;
    height: 1022px;
    top: 25px;
    right: 55%;
    z-index: -1;
}

.home-blog-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.home-blog-grid>div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 3 - 22px);
            flex: 0 0 calc(100% / 3 - 22px);
}

.home-blog-grid>div:not(:last-child) {
    margin-bottom: 1.8750rem;
}

.home-blog-info-box {
    box-shadow: 0px 16px 24px rgba(var(--black-rgb), 15%);
}

.home-blog-info-box figure {
    overflow: hidden;
    width: 100%;
    height: 220px;
}

.home-blog-info-box figure>a {
    width: 100%;
    height: 100%;
}

.home-blog-info-box figcaption {
    position: relative;
    min-height: 245px;
    background: var(--white);
    padding: 30px 50px 70px 30px;
}

.home-blog-info-box figcaption h5>a {
    color: var(--body-copy);
}

.home-blog-info-box figcaption h5>a:hover {
    color: var(--secondary-color);
}

.home-blog-info-box figcaption .date {
    font-size: 20px;
}

.home-blog-info-box figcaption .link {
    position: absolute;
    left: auto;
    bottom: 30px;
}

.home-blog-info-box figcaption .link:before {
    background: var(--primary-color);
}

.home-blog-info-box:hover {
    box-shadow: 0px 16px 24px rgba(var(--black-rgb), 30%);
}

.home-blog-info-box:hover figure>a {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}


/* ======= home contact section CSS ======= */

.home-contact-section {
    background: linear-gradient(94.81deg, var(--primary-color)-9.25%, var(--secondary-color)104.62%);
}

ul.contact-list>li {
    position: relative;
    padding-left: 95px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 60px;
    margin-bottom: 2rem;
}

ul.contact-list>li>div.icon-block {
    position: absolute;
    width: 64px;
    height: 64px;
    background: rgba(var(--black-rgb), 20%);
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
}

ul.contact-list>li p {
    color: var(--white);
    font-weight: 300;
}

ul.contact-list>li p>a {
    color: var(--white);
}

ul.contact-list>li p>span {
    display: block;
    font-weight: 600;
}

.home-contact-form-block {
    background: var(--white);
    box-shadow: 0px 16px 24px rgba(var(--black-rgb), 15%);
    margin-left: 18px;
}

.form-info-box h1,
.form-info-box h2,
.form-info-box h3,
.form-info-box h4,
.form-info-box p {
    color: var(--white);
}

.contact-image-box {
    width: 56px;
    height: 56px;
    overflow: hidden;
}

.form-group:not(.no-group) {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr .6rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--body-copy);
    margin-bottom: .55rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    width: 100%;
    height: 56px;
    border-color: var(--medium-gray);
    border-width: 2px ;
    border-style: solid ;
    padding: 0 .75rem;
    font-size: 20px;
    color: var(--body-copy);
    font-family: var(--barlowfont);
}

textarea {
    width: 100% ;
    height: 120px;
    border-color: var(--medium-gray);
    border-width: 2px;
    border-style: solid;
    padding: .75rem;
    font-size: 20px;
    color: var(--body-copy);
    resize: none;
    font-family: var(--barlowfont);
}

textarea:focus {
    border-color: var(--primary-color);
}

.wpforms-field-label {
    display: block !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    color: var(--body-copy) !important;
    margin-bottom: .55rem !important;
}

.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="password"],
.wpforms-field input[type="tel"] {
    width: 100% !important;
    height: 56px !important;
    border-color: var(--medium-gray) !important;
    border-width: 2px !important;
    border-style: solid !important;
    padding: 0 .75rem !important;
    font-size: 20px !important;
    color: var(--body-copy) !important;
    font-family: var(--barlowfont);
}

.wpforms-field input[type="text"]:focus,
.wpforms-field input[type="email"]:focus,
.wpforms-field input[type="password"]:focus,
.wpforms-field input[type="tel"]:focus {
    border-color: var(--primary-color) !important;
}

.wpforms-field textarea {
    width: 100% !important;
    height: 120px !important;
    border-color: var(--medium-gray) !important;
    border-width: 2px !important;
    border-style: solid !important;
    padding: .75rem !important;
    font-size: 20px !important;
    color: var(--body-copy) !important;
    resize: none;
    font-family: var(--barlowfont);
}

.wpforms-field textarea:focus {
    border-color: var(--primary-color) !important;
}

.wpforms-submit-container .btn-blue {
    position: relative !important;
    background: linear-gradient(94.81deg, var(--primary-color)-9.25%, var(--secondary-color)104.62%) !important;
    font-family: var(--barlowfont) !important;
    display: inline-block !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 57px !important;
    color: var(--white) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    height: 58px !important;
    padding: 0 33px !important;
    border-radius: 100px 100px !important;
    -webkit-border-radius: 100px 100px !important;
    -moz-border-radius: 100px 100px !important;
    -ms-border-radius: 100px 100px !important;
    -o-border-radius: 100px 100px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

.wpforms-submit-container button.wpforms-submit{
    border: none !important;
}

.wpforms-submit-container button.wpforms-submit:hover{
    opacity: 0.9;
}

div.wpforms-container-full .wpforms-form .wpforms-field {
    padding: 0 0 !important;
    margin-bottom: 1.5rem !important;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--body-copy);
    opacity: .6; 
    font-size: 20px;
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--body-copy);
    opacity: .6; 
    font-size: 20px;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--body-copy);
    opacity: .6; 
    font-size: 20px;
  }

/* ======= footer section CSS ======= */

ul.footer-menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
}

ul.footer-menu a {
    position: relative;
    font-size: 20px;
    color: var(--body-copy);
    padding-bottom: .3rem;
}

ul.footer-menu a:hover,
ul.footer-menu a.active {
    color: var(--secondary-color);
}

ul.footer-menu a:before {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    width: 0;
    height: 2px;
    left: auto;
    right: 0;
    bottom: 0;
}

ul.footer-menu a:hover:before {
    width: 100%;
    left: 0;
    right: auto;
}

.footer-bottom-section {
    border-top: var(--lightgray) 1px solid;
}

ul.social-item {
    gap: 10px;
}

ul.social-item>li>a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    border-radius: 50% 50%;
    -webkit-border-radius: 50% 50%;
    -moz-border-radius: 50% 50%;
    -ms-border-radius: 50% 50%;
    -o-border-radius: 50% 50%;
    color: var(--black);
    transition-duration: 0s;
    z-index: 99;
}

ul.social-item>li>a:before {
    position: absolute;
    content: "";
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    border-radius: 50% 50%;
    -webkit-border-radius: 50% 50%;
    -moz-border-radius: 50% 50%;
    -ms-border-radius: 50% 50%;
    -o-border-radius: 50% 50%;
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    z-index: -1;
    opacity: 0;
}

ul.social-item>li>a:hover:before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}

ul.social-item>li>a:hover {
    color: var(--white);
}


/* ======= Inner pages CSS ======= */

.inner-hero-section {
    background: linear-gradient(94.81deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.offering-section {
    background: url(../images/offering-background-image.jpg);
    background-attachment: fixed !important;
    position: relative;
}

.service-faq-block .faq-item-box {
    border-color: var(--lightgray);
    border-width: 3px;
    border-style: solid;
}

.faq-item-box>.question-panel.active>p {
    color: var(--primary-color);
}

.faq-item-box>.description-box {
    display: none;
}

.faq-icon {
    display: block;
    background-color: var(--medium-gray);
    min-width: 24px;
    min-height: 24px;
    border-radius: 50% 50%;
    -webkit-border-radius: 50% 50%;
    -moz-border-radius: 50% 50%;
    -ms-border-radius: 50% 50%;
    -o-border-radius: 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon:before {
    position: absolute;
    content: "";
    background: var(--body-copy);
    width: 12px;
    height: 2px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.faq-icon:after {
    position: absolute;
    content: "";
    background: var(--body-copy);
    width: 12px;
    height: 2px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.faq-item-box>.question-panel.active>.faq-icon {
    background-color: var(--primary-color);
}

.faq-item-box>.question-panel.active>.faq-icon:before,
.faq-item-box>.question-panel.active>.faq-icon:after {
    background-color: var(--white);
}

.faq-item-box>.question-panel.active>.faq-icon:after {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.blog-single-section .blog-single-image-box {
    position: relative;
    margin-top: -70px;
}

.blog-social-box>p {
    position: relative;
    font-size: 16px;
    padding-bottom: 32px;
}

.blog-social-box>p:after {
    position: absolute;
    content: "";
    background-color: var(--medium-gray);
    width: 1px;
    height: 40px;
    bottom: -14px;
    left: 20px;
}

.blog-social-box ul {
    display: inline-block;
}

.blog-social-box ul>li>a {
    display: block;
    background-color: #F3F3F3;
    color: var(--body-copy);
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.blog-social-box ul>li:not(:last-child) {
    margin-bottom: 10px;
}

.blog-social-box ul>li>a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.social-fixed {
    position: fixed;
}

.service-listing-section .columns:not(:last-child) {
    margin-bottom: 9.375rem;
}

.landing-info-section .columns:not(:last-child) {
    margin-bottom: 9.375rem;
}


/* ======= 404 page CSS ======= */

.fourofour-box figcaption {
    position: relative;
    margin-top: -135px;
}

.fourofour-box figure>img {
    max-width: 555px;
}


/* ======= landing page CSS ======= */

.page-template-landing-page .header{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.page-template-landing-page .header-fixed{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.landing-hero-info-block h1,
.landing-hero-info-block h2,
.landing-hero-info-block h3,
landing-hero-info-block h4,
.landing-hero-info-block p {
    color: var(--white);
}

.landing-info-image-box {
    box-shadow: 0px 16px 24px rgba(var(--black-rgb), 15%);
}

.page-template-landing-page .has-bg-light ul>li{
    border-bottom: #e5e5e5 1px solid;
    padding: 5px 0;
}


/* 06-12-2021 Update CSS aj */
.page-id-351 .hero-info-box h3 {
  font-size: 24px;
}

.languages ul li:last-child {
    display: none;    
}

.languages ul > li:not(:last-child) {
    border-bottom: 0;
}


/*============ Css Adding 08-12-2021 ===========*/

.bio-bg {
    background: linear-gradient(200deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.bio-section .heading-block h1,
.bio-section .heading-block h2,
.bio-section .heading-block h3,
.bio-section .heading-block h4,
.bio-section .heading-block h5{
    color: var(--white);
}

.bio-block-wrap .bio-item-box{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 3);
            flex: 0 0 calc(100% / 3);
}

.bio-block-wrap .bio-item-box figure{
    border: var(--white) 1px solid;
    padding: 3px;
}

.bio-block-wrap .bio-item-box figcaption h5{
    color: var(--white);
    margin-bottom: 8px;
} 

.bio-block-wrap .bio-item-box figcaption p{
    font-size: 17px;
    color: var(--white);
    font-weight: 400;
}

/*============== Css edited on 09-05-2022 ==============*/

.disability-advocate-section .heading-block h2,
.disability-advocate-section .heading-block p{
    color: var(--white);
}

.icon-item-box .icon-box-block>span{
    display: inline-block;
    height: 100px;
}
.icon-item-box .icon-box-block>span>img{
    height: 100%;
    width: auto;
}

.icon-item-box .icon-content-block h5,
.icon-item-box .icon-content-block p{
    color: var(--white);
}
