@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&amp;display=swap');

@font-face {
    font-family: 'Halyard Display';
    src: url('../fonts/HalyardDisplayBlack.woff2') format('woff2'),
        url('assets/fonts/HalyardDisplayBlack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Halyard Display';
    src: url('../fonts/HalyardDisplay-Bold.woff2') format('woff2'),
        url('assets/fonts/HalyardDisplay-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Halyard Display';
    src: url('../fonts/HalyardDisplayMedium.woff2') format('woff2'),
        url('assets/fonts/HalyardDisplayMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Halyard Display';
    src: url('../fonts/HalyardDisplaySemiBold.woff2') format('woff2'),
        url('assets/fonts/HalyardDisplaySemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Halyard Display';
    src: url('../fonts/HalyardDisplay-Regular.woff2') format('woff2'),
        url('assets/fonts/HalyardDisplay-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --body-color: #424B5C;
    --primary-color: #005862;
    --headding-color: #222222;
    --section-bg: #F8F8F8;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--body-color);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
}

a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

*::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headding-color);
    font-family: 'Halyard Display';
}

a {
    text-decoration: none;
    transition: .4s;
    -webkit-transition: all .4s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

button:focus {
    outline: none;
}

input:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

p {
    color: var(--body-color);
    line-height: 30px;
    font-size: 16px;
}

.text-right {
    text-align: right;
}

.tab-pane.fade {
    transition: all 0.6s ease-out;
    transform: translateY(1rem);
}

.tab-pane.fade.show {
    transform: translateY(0rem);
}

/*Scroll Area*/
.scroll-area {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    display: none;
    z-index: 99;
}

.scroll-area i {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
}

/*
 * #-Header
*/
.header-top {
    background: var(--section-bg);
    padding: 14px 0px;
}

.header-left a {
    font-size: 14px;
    color: var(--body-color);
    line-height: 24px;
    font-weight: 400;
    display: inline-block;
}

.header-left span {
    font-size: 14px;
    color: var(--body-color);
    line-height: 24px;
    font-weight: 400;
    display: inline-block;
    padding: 0px 10px;
}

.header-left a:hover {
    color: var(--primary-color);
}

.header-right .social-icon {
    display: inline-block;
}

.header-right .talk-btn {
    display: inline-block;
    margin-left: 60px;
}

.header-right .social-icon span {
    display: inline-block;
    padding: 0px 15px;
    font-size: 14px;
}

.header-right .social-icon span a {
    color: var(--body-color);
}

.header-right .social-icon span a:hover {
    color: var(--primary-color);
}

.header-right .talk-btn a {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--body-color);
    display: flex;
    align-items: center;
}

.header-right .talk-btn a i {
    padding-left: 8px;
    font-size: 20px;
    color: var(--primary-color);
}

.header-right .talk-btn a:hover {
    color: var(--primary-color);
}

.header-right .top-menu {
    display: inline-block;
    margin-left: 15px;
}

.header-right .top-menu ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.header-right .top-menu ul li {
    display: inline-block;
    padding: 0px 15px;
}

.header-right .top-menu ul li:last-child {
    padding-right: 0px;
}

.header-right .top-menu ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--body-color);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.header-right .top-menu ul li a:hover {
    color: var(--primary-color);
}

/*
 * Header Bottom
*/
.header-bottom {
    border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}

.menu {
    float: left;
}

.menu ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.menu ul li {
    display: inline-block;
    position: relative;
}

.menu ul li a {
    display: inline-block;
    color: var(--body-color);
    text-transform: capitalize;
    font-weight: 500;
    padding: 36px 20px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    font-size: 16px;
    font-family: 'Halyard Display';
    line-height: 24px;
}

.menu ul li:hover>a {
    color: var(--primary-color);
}

.transparent-header-2 .menu ul li a {
    padding: 30px 20px;
}

.header-bottom.transparent-header.sticky .menu ul li a {
    color: var(--body-color);
}

.header-bottom.transparent-header.sticky .menu ul li.menu-item-has-children::after {
    color: var(--body-color);
    ;
}

.header-bottom.transparent-header.sticky .menu ul li:hover>a {
    color: var(--primary-color);
}

.transparent-header-2 .menu nav ul li>ul>li:hover>ul {
    top: -3px;
}

.transparent-header-2 .menu nav ul li>ul>li a {
    padding: 15px 14px;
}

.menu nav ul li>ul {
    position: absolute;
    display: block;
    max-width: 200px;
    border-radius: 0px;
    border: none;
    box-shadow: 0 18px 43px rgb(90 90 90 / 14%);
    width: 200px;
    left: 0;
    right: 0px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    text-align: left;
    transform: scaleY(0);
    transform-origin: top center;
}

.menu nav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    right: 0px;
    transform: scaleY(1);
}

.menu nav ul li>ul>li {
    display: block;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin: 0px;
    padding: 0px;
}

.menu nav ul li>ul>li a::after {
    content: "+";
    clear: both;
    display: block;
    position: absolute;
    top: 49%;
    left: 14px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4 ease-in-out;
    transition: all .4s ease-in-out;
}

.menu nav ul li>ul>li:hover>a {
    color: var(--primary-color);
}

.menu nav ul li>ul>li:hover>a::after {
    opacity: 1;
    visibility: visible;
}

.menu nav ul li>ul>li:hover>a {
    color: var(--primary-color) !important;
}

.menu nav ul li>ul>li li>a:hover {
    color: #fff;
}

.menu nav ul li>ul>li a {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    border-bottom: 1px solid #efefef;
    font-size: 15px;
    color: var(--body-color);
    margin: 0px;
    font-weight: 500;
    text-transform: capitalize;
}

.menu nav ul li>ul>li:last-child a {
    border-bottom: none;
}

.menu nav ul>li>ul>li>ul {
    left: 200px;
    top: 0px;
}

.menu nav ul li>ul>li:hover>ul {
    left: 100%;
}

.menu ul li.menu-item-has-children {
    position: relative;
}

.menu nav ul li>ul>li a::after {
    content: " ";
    clear: both;
    display: block;
    position: absolute;
    top: 29%;
    left: 13px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4 ease-in-out;
    transition: all .4s ease-in-out;
    color: var(--primary-color);
}

.menu ul li.menu-item-has-children:hover::after {
    color: var(--primary-color);
}

.header-bottom.transparent-header.sticky .menu ul li.menu-item-has-children:hover::after {
    color: var(--primary-color);
}

.menu ul li.menu-item-has-children::after {
    content: "+";
    clear: both;
    display: block;
    position: absolute;
    font-weight: 700;
    top: 39%;
    right: 7px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    color: #4d4d4d;
    font-size: 14px;
}

.menu ul li ul li.menu-item-has-children::after {
    transform: rotate(-90deg);
    top: 30%;
}

.header-bottom-right {
    position: relative;
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-bottom.transparent-header {
    background: transparent;
    z-index: 999;
    position: relative;
}

.transparent-header .menu ul li a {
    color: #fff;
}

.transparent-header .menu ul li:hover>a {
    color: var(--primary-color);
}

.transparent-header .menu ul li.menu-item-has-children::after {
    color: #fff;
}

.transparent-header .menu ul li.menu-item-has-children:hover::after {
    color: var(--primary-color);
}

.transparent-header .menu nav ul li>ul>li a {
    color: var(--body-color);
}

.transparent-header .menu nav ul li>ul>li a {
    color: var(--body-color);
}

.transparent-header .menu nav ul li>ul li.menu-item-has-children::after {
    color: var(--body-color);
    ;
}

.header-bottom.transparent-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.transparent-header .canvas_open_full a {
    color: #fff;
}

.transparent-header.sticky .canvas_open_full a {
    color: var(--body-color);
}

/*
 * Header Search
*/
.transparent-header.sticky .header-search-icon::after {
    color: var(--body-color);
}

.transparent-header.sticky .header-language-option span {
    color: var(--body-color);
}

.header-search {
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 40px 0px;
}

.header-search-icon {
    position: relative;
    width: 18px;
    height: 18px;
}

.header-search-icon::after {
    content: "\f52a";
    clear: both;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    font-family: "bootstrap-icons";
    color: var(--body-color);
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease-in-out;
}

.transparent-header .header-search-icon::after {
    color: #fff;
}

.header-search-icon.active::after {
    content: "\f659";
}

.header-top-search-form {
    transform: scale(0);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: 400px;
    background: #ffffff;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    z-index: 9;
}

.header-top-search-form.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.header-top-search-form-full {
    padding: 20px;
    position: relative;
    width: 100%;
}

.header-top-search-form-full::after {
    content: "";
    position: absolute;
    right: 4px;
    top: -12px;
    clear: both;
    display: block;
    clip-path: polygon(55% 0, 0% 100%, 100% 100%);
    width: 20px;
    height: 10px;
    background: var(--primary-color);
}

.header-top-search-form-full form {
    width: 100%;
    position: relative;
}

.header-top-search-form-full input {
    font-size: 15px;
    background-color: var(--section-bg);
    color: var(--body-color);
    border: 1px solid #f1f1f1;
    width: 100%;
    position: relative;
    padding: 14px 20px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    font-weight: 400;
}

.header-top-search-form-full input:focus {
    border-color: var(--primary-color);
}

.header-top-search-form-full button {
    position: absolute;
    top: 0;
    background: var(--primary-color);
    height: 100%;
    border: none;
    right: 0;
    color: #fff;
    padding: 0px 15px;
}

/*
 * Header Language
*/
.header-language {
    position: relative;
    margin: 0px 30px;
}

.header-language-option span {
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    cursor: pointer;
    padding-right: 6px;
    color: var(--body-color);
}

.transparent-header .header-language-option span {
    color: #fff;
}

.header-language-option span.active {
    color: var(--primary-color);
}

.header-language-option span:last-child {
    padding-right: 0px;
    padding-left: 2px;
    font-size: 12px;
}

.header-language-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 120px;
    box-shadow: 0 18px 43px rgb(90 90 90 / 14%);
    background: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    text-align: left;
    transform: scaleY(0);
    transform-origin: top center;
    transition: all .3s ease;
}

.header-language:hover .header-language-dropdown {
    opacity: 1;
    visibility: visible;
    right: 0px;
    transform: scaleY(1);
}

.header-language-dropdown ul {
    margin: 0;
    list-style: none;
    padding: 4px 12px;
}

.header-language-dropdown ul li {
    font-size: 14px;
    font-weight: 700;
    margin: 6px 4px;
    cursor: pointer;
    transition: all .3s ease;
}

.header-language-dropdown ul li:hover {
    color: var(--primary-color);
}

.transparent-header .make-appointment-button .button-2:hover {
    color: #fff;
    background: transparent;
}

.right-humbugur-btn img {
    width: 32px;
    cursor: pointer;
}

.off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #232323;
    top: 0;
    right: -100%;
    transition: all .3s ease;
}

.off_canvars_overlay.active {
    opacity: 0.5;
    visibility: visible;
    right: 0%;
}

/*
 * #-About Sidebar
*/
.about-sidebar-section {
    background: #000000;
    padding: 46px 40px 50px 50px;
    max-width: 480px;
    width: 100%;
    z-index: 999999;
    position: fixed;
    overflow-y: auto;
    right: 0;
    top: 0;
    height: 100vh;
    margin-right: -480px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.about-sidebar-section.active {
    margin-right: 0px;
}

.about-sidebar-section-full .hide-sidebar {
    position: absolute;
    top: 42px;
    right: 40px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

.about-sidebar-section-full .content {
    margin-top: 20px;
}

.about-sidebar-section-full .content p {
    color: #cecece;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 15px;
}

.about-sidebar-section-full .info {
    padding-top: 30px;
}

.about-sidebar-section-full .info .info-single {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.about-sidebar-section-full .info .info-single .icon {
    color: var(--primary-color);
    font-size: 30px;
    float: left;
}

.about-sidebar-section-full .info .info-single .content {
    overflow: hidden;
    padding-left: 12px;
    margin-top: 0px;
}

.about-sidebar-section-full .info .info-single .content h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 6px;
}

.about-sidebar-section-full .info .info-single .content span {
    color: #cecece;
    font-weight: 400;
    font-size: 15px;
}

.about-sidebar-section-full .info .info-single .content a {
    color: #cecece;
    font-weight: 400;
    font-size: 15px;
}

.about-sidebar-section-full .social ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.about-sidebar-section-full .social ul li {
    display: inline-block;
    margin: 0px 6px;
}

.about-sidebar-section-full .social ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 14px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .3s ease-in-out;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/*
 * #-Hero Area
*/
.hero-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.hero-caption h5 {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    font-family: 'DM Sans', sans-serif;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.hero-caption h2 {
    font-weight: 500;
    font-size: 70px;
    line-height: 90px;
    margin-bottom: 30px;
}

.hero-caption p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--body-color);
    margin-bottom: 11px;
}
@media (max-width: 1199px) {
    .hero-caption h2 {
        font-size: 62px;
        line-height: 72px;
        margin-bottom: 20px;
    }

    .hero-caption p {
        margin-bottom: 20px;
    }
}

.hero-area .shap-img img {
    position: absolute;
}

.hero-area .shap-img img.shap6 {
    bottom: 10%;
    right: 35%;
}

.hero-area .shap-img img.shap5 {
    top: 0%;
    left: 51%;
    width: 180px;
}

.hero-area .shap-img img.shap4 {
    left: 46%;
    top: 10%;
}

.hero-area .shap-img img.shap3 {
    left: 38%;
    top: 15%;
}

.hero-area .shap-img img.shap2 {
    bottom: 1%;
    left: 3%;
}

.hero-area .shap-img img.shap1 {
    left: 10%;
    top: 33%;
}

.hero-slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.hero-image {
    margin-top: 10px;
}

.hero-image img {
    width: 100%;
}

.hero-slider-full .owl-nav span.hero-nav {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    transition: all .3s ease;
    border-radius: 50%;
    font-size: 24px;
}

.hero-slider-full .owl-nav span.hero-nav:hover {
    background: var(--primary-color);
    color: #fff;
}

.hero-slider-full .owl-nav button.owl-prev {
    position: absolute;
    top: 45%;
    left: 20px;
}

.hero-slider-full .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    right: 20px;
}

.active .hero-slider-item h2,
.active .hero-slider-item a,
.active .hero-slider-item p,
.active .hero-slider-item h5 {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1.3s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.6s;
}

.active .hero-slider-item h5 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.active .hero-slider-item p {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.active .hero-slider-item a {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.active .hero-slider-item .hero-image img {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .5s;
    animation-duration: 1s;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.hero-slider-area .shap-img img {
    position: absolute;
    z-index: 9;
    width: auto;
}

.hero-slider-area .shap-img img.shap1 {
    left: 10%;
    top: 35%;
}

.hero-slider-area .shap-img img.shap4 {
    left: 46%;
    top: 10%;
}

.hero-slider-area .shap-img img.shap3 {
    right: 10%;
    top: 7%;
}

.hero-slider-area .shap-img img.shap6 {
    right: 37%;
    bottom: 15%;
}

.hero-slider-item .hero-caption {
    overflow: hidden;
}

.hero-slider-area.hero-slider-2 {
    margin-top: -99px;
}

.hero-slider-full2 .owl-nav span.hero-nav {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    transition: all .3s ease;
    border-radius: 50%;
    font-size: 24px;
}

.hero-slider-full2 .owl-nav span.hero-nav:hover {
    background: var(--primary-color);
    color: #fff;
}

.hero-slider-full2 .owl-nav button.owl-prev {
    position: absolute;
    top: 45%;
    left: 20px;
}

.hero-slider-full2 .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    right: 20px;
}

.hero-slider-item.slider2 {
    z-index: 9;
    padding-top: 280px;
    padding-bottom: 200px;
}

@media (max-width:1400px) {
    .hero-slider-full2 .hero-slider-item.slider2 {
        padding-top: 240px;
        padding-bottom: 180px;
    }
}

.hero-slider-item.slider2:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -9;
    background: linear-gradient(104.22deg, rgba(34, 34, 34, 0.32) 0.25%, rgba(34, 34, 34, 0.8) 20.65%, rgba(34, 34, 34, 0.1) 99.81%);
}

.hero-slider-area.hero-slider-2 .shap-img img.shap4 {
    left: 42%;
    top: 20%;
}

.hero-slider-area.hero-slider-2 .shap-img img.shap3 {
    right: 10%;
    top: 18%;
}

.hero-slider-item.slider2 .hero-caption h5 {
    color: #FFFFFF
}

.hero-slider-item.slider2 .hero-caption h2 {
    color: #fff;
}

.hero-slider-item.slider2 .hero-caption p {
    color: #fff;
}

@media (max-width:1600px) {
    .hero-area .shap-img img.shap1 {
        left: 4%;
    }

    .hero-slider-area .shap-img img.shap1 {
        left: 4%;
    }
}

@media (max-width:1400px) {
    .hero-area .shap-img img.shap1 {
        left: 0;
    }

    .hero-slider-area .shap-img img.shap1 {
        left: 0%;
    }
}

/*
 * #-Info Area
*/
.info-box {
    text-align: center;
}

.info-box h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    padding-bottom: 0px;
    padding-top: 25px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.info-box h3 a {
    color: var(--headding-color);
    font-family: 'Halyard Display';
}

.info-box h3:hover a {
    color: var(--primary-color);
}

.info-box p {
    padding-top: 12px;
}

.info-box.info-box6 {
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 50px 30px 42px 30px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.info-box.info-box6 h3 a {
    transition: inherit;
}

.info-box.info-box6:hover {
    background-color: var(--primary-color);
}

.info-box.info-box6:hover h3 a {
    color: #FFFFFF
}

.infobox-slider .owl-stage-outer {
    padding-top: 10px;
}

.owl-item img {
    width: auto;
    margin: auto;
}

.info-box .info-image img {
    width: 69px;
    height: 55px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    /* object-fit: cover; */
}

.infobox-slider.owl-carousel .owl-stage {
    padding-bottom: 55px;
}

.infobox-slider.owl-theme .owl-dots .owl-dot span {
    background: rgba(66, 75, 92, 0.1);
    border-width: 1px;
    border-color: rgba(66, 75, 92, 0.1);
    border-style: solid;
}

.infobox-slider.owl-theme .owl-dots .owl-dot:hover span {
    border-color: var(--primary-color)
}

.infobox-slider.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

.info-box-5 {
    background: #FFFFFF;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.info-box-5 .icon {
    position: relative;
    z-index: 9;
    margin: 0 auto;
    margin-bottom: 12px;
    width: 90px;
    height: 90px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.info-box-5 .icon img {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.info-box-5 .icon img.hover-img {
    display: none;
}

.info-box-5 .icon:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(110, 158, 250, 0.2);
    bottom: 9px;
    right: 0;
    left: 0;
    margin: 0 auto;
    border-radius: 50%;
    z-index: -9;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.info-box-5 .content h4 {
    font-family: 'Halyard Display';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 8px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.info-box-5 .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.info-box-5:hover {
    background: var(--primary-color);
}

.info-box-5:hover .content h4 {
    color: #fff;
}

.info-box-5:hover .content p {
    color: #fff;
}

.info-box-5:hover img {
    display: none;
}

.info-box-5:hover img.hover-img {
    display: block;
}

/*
 * #-About Area
*/
.about-content {
    padding-left: 40px;
}

.about-images {
    text-align: right;
    
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.about-images img {
    max-width: 100%;
    height: 500px;
    transition: all .5s ease-in-out;
    object-fit: cover;
}
.about-shap-img img.shap2 {
    top: -13% !important;
    left: -71px !important;
    z-index: -1 !important;
}

.section-title h3 {
    color: var(--primary-color);
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 4px;
}

.section-title h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 62px;
    padding-bottom: 10px;
}

.section-title p {
    padding-bottom: 10px;
}

/* About Iconbox */
.about-iconbox-top {
    display: flex;
    align-items: start;
}

.about-iconbox-top .iconbox-img {
    position: relative;
    padding-left: 5px;
}

.about-iconbox-top .iconbox-img::after {
    content: "";
    position: absolute;
    height: 45px;
    width: 45px;
    background: rgba(110, 158, 250, 0.2);
    left: -7px;
    top: -10px;
    border-radius: 50%;
}

.about-iconbox-top h3 {
    padding-left: 15px;
    font-size: 24px;
    color: var(--headding-color);
    font-weight: 500;
    line-height: 36px;
}

.about-iconbox-content {
    padding-top: 8px;
}

/* Large Title */
.large-title {
    padding-top: 40px;
    text-align: center;
}

.large-title h2 {
    font-weight: 500;
    line-height: 100px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #F8F8F8;
    font-size: 9vw;
}

.large-title h2 span {
    color: var(--primary-color);
}

/* Project Content */
#project-content.tab-content {
    position: relative;
}

#project-content .owl-theme .owl-nav {
    position: absolute;
    top: -114px;
    right: 0;
}

/* Project Slider */
#project-content .owl-carousel .owl-stage {
    padding-bottom: 55px;
}

span.slidenav {
    display: inline-block;
    height: 50px;
    width: 50px;
    text-align: center;
    background: #F8F8F8;
    color: var(--body-color);
    border-radius: 50%;
    padding-top: 13px;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

span.slidenav:hover {
    background: var(--primary-color);
    color: #FFFFFF
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: inherit
}

/* Project Single */
.project-single {
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.project-img {
    position: relative;
    overflow: hidden;
     border-radius: 5px;
}

.project-img img {
    width: 100%;
   
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    margin-bottom: 20px;
    height: 100%;
    min-height: 284px;
    object-fit: cover;
    border: 1px solid #ddd;
}


.project-hover {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(110, 158, 250, 0.2);
    border-radius: 10px 10px 0px 0px;
    text-align: center;
    padding-top: 27%;
    visibility: hidden;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.project-hover a {
    height: 60px;
    width: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 19px;
    line-height: 19px;
    color: #FFFFFF;
    display: inline-block;
    text-align: center;
    padding-top: 20px;
    -webkit-transition: all .2s ease-in-out;
    transition: .2s ease-in-out;
}

.project-single:hover .project-img img {
    transform: scale(1.1);
}

.project-single:hover .project-hover {
    visibility: visible;
}

.project-content {
    padding: 30px 30px;
    padding-bottom: 30px;
}

.project-content p {
    line-height: 30px;
}

.project-content p a {
    font-family: 'DM Sans';
    font-size: 16px;
    line-height: 21px;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-right: 10px;
    position: relative
}

.project-content p a:after {
    content: ",";
    position: absolute;
    right: 7%;
    bottom: 0;
}

.project-content p a:last-child:after {
    visibility: hidden;
}

.project-content h3 a {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    color: var(--headding-color);
    display: block;
    padding-bottom: 10px;
}

.single-testimonial p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
}

.all-testimonial.owl-carousel .owl-stage {
    padding-bottom: 50px;
    padding-top: 50px;
}

.all-testimonial.owl-theme .owl-dots .owl-dot span {
    background: rgba(66, 75, 92, 0.1);
    border-width: 1px;
    border-color: rgba(66, 75, 92, 0.1);
    border-style: solid;
}

.all-testimonial.owl-theme .owl-dots .owl-dot:hover span {
    border-color: var(--primary-color)
}

.all-testimonial.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

.all-testimonial.owl-carousel .owl-item.active.center .single-testimonial {
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
}

.single-testimonial.shadow-style {
    background: #FFFFFF;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

/* About Shape */
.helpline-image img.homeabout-main {
    position: relative;
    z-index: 9;
}

.homeabout-shape1 {
    height: 130px;
    width: 130px;
    background: var(--primary-color);
    padding: 28px 20px;
    text-align: center;
    border-radius: 10px;
    position: absolute;
    right: 4%;
    top: 2%;
    z-index: 9;
}

.homeabout-shape1 h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 61px;
    text-transform: uppercase;
    color: #FFFFFF
}

.homeabout-shape1 p {
    font-size: 14px;
    line-height: 18px;
    text-transform: capitalize;
    color: #fff;
}

.homeabout-shape2 {
    position: absolute;
    left: -4%;
    top: 48%;
    z-index: 99;
}

.homeabout-shape2 img {
    max-width: 42px;
}

.homeabout-shape3 {
    position: absolute;
    bottom: -19%;
    left: -20%;
}

.homeabout-shape3 img {
    width: auto;
}

.homeabout-shape4 {
    position: absolute;
    top: -1%;
    left: -13%;
}

.homeabout-shape4 img {
    max-width: 103px;
}

.homeabout-shape5 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
}

.homeabout-shape5 img {
    max-width: 48px;
}

.helpline-content .about-box {
    display: flex;
    align-items: center;
    padding: 15px 0px;
}

.about-box .number-text {
    padding-left: 24px;
}

.about-box .number-text h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 4px;
}

.about-box .number-text span {
    line-height: 30px;
}

.about-quote {
    background: rgba(110, 158, 250, 0.1);
    border-radius: 2px;
    padding: 14px 14px 10px 57px;
    margin-top: 30px;
    position: relative;
    z-index: 9;
}

.about-quote::after {
    content: url('assets/img/shap/quote-shap.png');
    position: absolute;
    bottom: 10%;
    left: -16px;
}

.about-quote p {
    font-style: italic;
    font-weight: 700;
    line-height: 24px;
    position: relative;
}

.about-quote p::after {
    content: "❝";
    position: absolute;
    left: -24px;
    top: -5px;
    font-weight: 400;
    font-size: 28px;
    line-height: 45px;
    color: var(--body-color);
}

.single-testimonial.style2 p {
    font-size: 24px;
    line-height: 42px;
}

.single-testimonial.style2.mlr-85 {
    margin-left: -85px;
    margin-right: 85px;
}

.single-testimonial.style2 .testimonial-img img {
    max-width: 105px;
}

.single-testimonial.style2 .testimonial-text {
    padding-top: 20px;
}

.button-1 {
    height: 62px;
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    justify-content: center;
    border-radius: 40px;
    position: relative;
    padding: 0px 32px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--primary-color);
    z-index: 1;
    padding-right: 2px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    overflow: hidden;
}

.button-1 i {
    margin-left: 23px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.button-1:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: -100%;
    background: var(--primary-color);
    z-index: -1;
    border-radius: 40px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.button-1:hover:after {
    left: 0px;
}

.button-1:hover {
    color: #fff;
}

.button-1:hover i {
    color: var(--primary-color);
    background: #fff;
}

.button-2 {
    padding: 12px 22px;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #fff;
    background: var(--primary-color);
    border-radius: 50px;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--primary-color);
}

.button-2 i {
    font-size: 16px;
    margin-left: 8px;
}

.button-2:hover {
    color: var(--primary-color);
    background: #fff;
}

/*
 * #-Footer
*/
.footer-top {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.shaparator-footer {
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
}

.footer-subscribe-form {
    padding-bottom: 5px;
    position: relative;
}

.footer-subscribe-form input {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    width: 100%;
    position: relative;
    height: 90px;
    transition: all .3s ease;
    padding-left: 42px;
    padding-right: 90px;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 24px;
    background: transparent;
}

.footer-subscribe-form input:focus {
    border-color: #6e9efa4d;
}

.footer-subscribe-form button {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border: none;
    top: 2px;
    right: 3px;
}

.footer-widegts-single p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.footer-widegts-single .footer-social span {
    display: inline-block;
    margin-right: 30px;
}

.footer-widegts-single .footer-social span:last-child {
    margin-right: 0px;
}

.footer-widegts-single .footer-social span a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.3);
    transition: all .3s ease;
    font-size: 18px;
}

.footer-widegts-single .footer-social span a:hover {
    color: #fff;
    background: var(--primary-color);
}

.footer-widegts-single h3.title {
    font-weight: 500;
    font-size: 24px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 15px;
}

.footer-widegts-single ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.footer-widegts-single ul li {
    padding: 5px 0px;
}

.footer-widegts-single ul li a {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 1;
}

.footer-widegts-single ul li a:hover {
    padding-left: 15px;
    color: var(--primary-color);
}

.footer-widegts-single ul li a:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--primary-color);
    left: 0px;
    top: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 3;
}

.footer-widegts-single ul li a:hover:after {
    width: 8px;
}

.footer-widegts-single ul.contact-info li:first-child {
    margin-top: 7px;
    display: inline-block;
}

.footer-widegts-single ul.contact-info li {
    position: relative;
    padding-top: 0px;
    line-height: 1.2;
    padding-bottom: 25px;
    padding-left: 25px;
}

.footer-widegts-single ul.contact-info li:last-child {
    padding-bottom: 0px;
}

.footer-widegts-single ul.contact-info li i {
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    padding-top: 2px;
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 0px;
    left: 0px;
}

.footer-widegts-single ul.contact-info li span {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    display: block;
}

.footer-widegts-single ul.contact-info li span:last-child {
    margin-bottom: 0px;
}

.footer-widegts-single ul.contact-info li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    display: block;
    text-transform: lowercase;
}

.footer-widegts-single ul.contact-info li a:after {
    display: none;
}

.footer-widegts-single ul.contact-info li a:last-child {
    margin-bottom: 0px;
}

.footer-widegts-single ul.contact-info li a:hover {
    color: var(--primary-color);
    padding-left: 0px;
}

.footer-bottom {
    background: #1F1F1F;
}

.footer-bottom .copyright-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #FFFFFF99;
}

.footer-bottom .copyright-text p a {
    color: var(--primary-color);
    font-weight: 700;
}

/*
 * #-Company Logo Section
*/
.single-logo-item img {
    opacity: .7 !important;
    -webkit-transition: all .4s ease-in-out;
    transition: all .3s ease-in-out;
    width: 140px !important;
    cursor: pointer;
}

.single-logo-item img:hover {
    opacity: 1 !important;
}

/*
 * #-Blog Item
*/
.blog-single-item {
    background: #FFFFFF;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.blog-single-item .thumbnail img {
    width: 100%;
}

.blog-single-item .content {
    padding: 30px;
    padding-top: 27px;
}

.blog-single-item .content .auth {
    margin-bottom: 7px;
}

.blog-single-item .content .auth span {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: var(--body-color);
}

.blog-single-item .content .auth span:first-child {
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}

.blog-single-item .content .auth span:first-child:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 1px;
    height: 13px;
    background: var(--body-color);
    opacity: .15;
    bottom: 1px;
    right: 0px;
}

.blog-single-item .content h3 {
    margin-bottom: 30px;
}

.blog-single-item .content h3 a {
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    font-family: 'Halyard Display';
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    color: #2E2626;
}

.blog-single-item .content h3 a:hover {
    color: var(--primary-color);
}

.blog-single-item a.button-1 {
    height: 44px;
    border: 1px solid rgba(34, 34, 34, 0.1);
    padding-left: 20px;
    color: var(--headding-color);
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
}

.blog-single-item a.button-1:hover {
    color: #fff;
}

.blog-single-item a.button-1 i {
    width: 38px;
    height: 38px;
    background: var(--headding-color);
    margin-left: 12px;
    font-size: 10px;
}

.blog-single-item a.button-1:hover i {
    color: var(--primary-color);
    background: #fff;
}

.blog-single-item a.blog-btn {
    color: var(--headding-color);
}

.blog-single-item a.blog-btn:hover {
    color: var(--primary-color);
}

.blog-single-item a.blog-btn i {
    margin-left: 10px;
}

/*
 * info Box 2
*/
.info-box-2 {
    background: #FFFFFF;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    padding-top: 20px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease;
}

.info-box-2:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.09);
}

.info-box-2 .icon {
    width: 63px;
    height: 62px;
    margin: 0 auto;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.info-box-2 .icon img {
    max-width: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}


.info-box-2 h4 {
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    padding: 9px 0px;
}

/*
 * Info Box 4
*/
.info-box-4 {
    text-align: center;
}

.info-box-4 .icon {
    border: 1px dashed rgba(34, 34, 34, 0.1);
    border-radius: 100px;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    margin: 0 auto;
    margin-bottom: 22px;
}

.info-box-4 .icon img {
    width: 78px !important;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.info-box-4 .icon img.hover-img {
    display: none;
}

.info-box-4:hover .icon {
    border-color: var(--primary-color);
}

.info-box-4:hover .icon img {
    display: none;
}

.info-box-4:hover .icon img.hover-img {
    display: block;
}

.info-box-4 .content h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
}

.info-box-4 .content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    max-width: 340px;
    margin: 0px auto;
}

.our-best-services-slider.owl-theme .owl-dots {
    margin-top: 45px !important;
}

.our-best-services-slider.owl-theme .owl-dots .owl-dot span {
    background: rgba(66, 75, 92, 0.1);
    border-width: 1px;
    border-color: rgba(66, 75, 92, 0.1);
    border-style: solid;
}

.our-best-services-slider.owl-theme .owl-dots .owl-dot:hover span {
    border-color: var(--primary-color)
}

.our-best-services-slider.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

.owl-theme .owl-dots .owl-dot span {
    margin: 5px;
}

/* Social Icon Widget */
.socialicon-widget ul li {
    display: inline-block;
    padding-right: 30px
}

.socialicon-widget ul li a {
    height: 45px;
    width: 45px;
    background: rgba(110, 158, 250, 0.1);
    color: rgba(34, 34, 34, 0.2);
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    line-height: 45px;
}

.socialicon-widget ul li a i {
    padding-right: 0px;
}

.socialicon-widget ul li:last-child {
    padding-right: 0px;
}

.socialicon-widget ul li a:hover {
    background: var(--primary-color);
    color: #FFFFFF
}


/*
 * #-Appointment Page
*/
.appointment-contactdet {
    z-index: 9;
    background: var(--primary-color);
    padding: 40px 100px;
    border-radius: 10px;
    margin-bottom: -80px;
    position: relative;
}

.appointment-contactdet .teamdetails-left .number-icon {
    background: rgba(255, 255, 255, 0.1);
}

.appointment-contactdet .helpline-number .number-text span {
    color: rgba(255, 255, 255, 0.6);
}

.appointment-contactdet .helpline-number .number-text a {
    color: #FFFFFF;
}

.get-appointment-area.appointment-page-mt {
    padding-top: 170px;
}


.about-shap-img img {
    position: absolute;
    z-index: 9;
}

.about-shap-img img.shap1 {
    top: 33%;
    left: 0;
}

.about-shap-img img.shap2 {
    top: 0%;
    left: 0;
    z-index: -1;
}

.about-count-num {
    position: absolute;
    right: 0;
    width: 170px;
    height: 170px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    bottom: 24%;
    right: 40px;
}

.about-count-num-full h4 {
    font-weight: 500;
    font-size: 40px;
    line-height: 61px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.about-count-num-full span {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
}

.about-content.pr-60 {
    padding-left: 0px;
    padding-right: 60px;
}

.helpline-image.home-page-3a .homeabout-shape3 {
    left: 0;
    bottom: 0;
}

.helpline-image.home-page-3a .homeabout-shape3 {
    left: -28px;
    bottom: -28px;
}

.about-content.pr-60 {
    padding-left: 0;
    padding-right: 60px;
}

.about-content.pr-60 .homeabout-shape2 {
    left: -56px;
}

/*
 * #-Mobile Menu
*/
.off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #232323;
    top: 0;
}

.off_canvars_overlay.active {
    opacity: 0.5;
    visibility: visible;
}

.offcanvas_menu_wrapper {
    width: 290px;
    position: fixed;
    background: #fff;
    z-index: 99999;
    top: 0;
    height: 100vh;
    transition: .5s;
    left: 0;
    margin-left: -300px;
    padding: 20px 0px 30px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper.active {
    margin-left: 0;
}

.offcanvas_menu_wrapper .slinky-theme-default {
    background: inherit;
    min-height: 300px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper .header_search_box {
    display: block;
}

.offcanvas_main_menu>li.menu-item-has-children.menu-open>span.menu-expand {
    transform: rotate(180deg);
}

.offcanvas_main_menu>li ul li.menu-item-has-children.menu-open span.menu-expand {
    transform: rotate(180deg);
}

.offcanvas_main_menu li {
    position: relative;
}

.offcanvas_main_menu li:last-child {
    margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
    position: absolute;
    right: 10px;
}

.offcanvas_main_menu li a {
    display: block;
    padding: 15px 15px;
    margin-bottom: 0px;
    border-bottom: 1px solid #ededed82;
    padding-left: 25px;
    color: var(--body-color);
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    font-size: 16px;
    font-family: 'Halyard Display';
    line-height: 24px;
}

.offcanvas_main_menu li a:hover {
    color: var(--primary-color);
}

.offcanvas_main_menu li ul.sub-menu {
    padding-left: 0px;
    background: #fff;
}

.offcanvas_footer {
    margin-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.offcanvas_footer span a {
    font-size: 14px;
}

.offcanvas_footer span a:hover {
    color: var(--primary-color);
}

.slinky-theme-default a:not(.back) {
    padding: 10px 0;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}

.slinky-theme-default a:not(.back):hover {
    background: inherit;
    color: var(--primary-color);
}

.canvas_close {
    position: absolute;
    top: 10px;
    right: 13px;
}

.canvas_close a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
}

.mobile-logo {
    padding-left: 20px;
    margin-bottom: 30px;
    padding-top: 10px;
}

.canvas_open {
    cursor: pointer;
    z-index: 999;
    position: relative;
    display: block;
}

.canvas_open span {
    width: 100%;
    height: 2px;
    background: #1e1b39;
    display: block;
    margin: 8px 0px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.canvas_open.white span {
    background: #fff;
}

.canvas_open span:nth-child(2) {
    transition: all 0.4s ease-in-out;
    position: relative;
}

.canvas_open span:nth-child(2)::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.4s ease-in-out;
}

.canvas_open.white span:nth-child(2)::before {
    background: #fff;
}

.canvas_open span:nth-child(2)::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.4s ease-in-out;
}

.canvas_open.white span:nth-child(2)::after {
    background: #fff;
}

.canvas_open.active span:nth-child(2)::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #1e1b39;
    position: absolute;
    left: 0;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.canvas_open.active.white span:nth-child(2)::before {
    background: #fff;
}

.canvas_open.active span:nth-child(2)::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #1e1b39;
    position: absolute;
    left: 0;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.canvas_open.active.white span:nth-child(2)::before {
    background: #fff;
}

.canvas_open.active span:nth-child(2)::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #1e1b39;
    position: absolute;
    left: 0;
    transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.canvas_open.active.white span:nth-child(2)::after {
    background: #fff;
}

.canvas_open.active span:nth-child(1) {
    opacity: 0;
    visibility: hidden;
}

.canvas_open.active span:nth-child(3) {
    opacity: 0;
    visibility: hidden;
}

.canvas_open span:nth-child(2) {
    width: 100%;
    height: 2px;
    background: #1e1b39;
    display: block;
    margin: 5px 0px;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.canvas_open.active span:nth-child(2) {
    position: relative;
    width: 0;
}

.offcanvas_main_menu li span.menu-expand {
    position: absolute;
    right: 0px;
    cursor: pointer;
    width: 48px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    top: 0px;
    color: #000;
    border-left: 1px solid #ededed82;
}

.offcanvas_main_menu>li.menu-item-has-children.menu-open>span.menu-expand {
    transform: rotate(180deg);
    border-right: 1px solid #cfcdd5;
    border-left: none;
}

.offcanvas_main_menu>li ul li.menu-item-has-children.menu-open span.menu-expand {
    transform: rotate(180deg);
    border-right: 1px solid #cfcdd5;
    border-left: none;
}

.offcanvas_main_menu li span.menu-expand i {
    line-height: 1;
    padding-top: 5px;
}

.offcanvas_menu_wrapper::after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    z-index: -1;
}

.offcanvas_menu_wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.offcanvas_main_menu li .sub-menu li a {
    padding: 12px 15px;
    padding-left: 38px;
    font-size: 15px;
}

.offcanvas_main_menu li .sub-menu span.menu-expand {
    position: absolute;
    right: 0px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    top: 0px;
    color: #000;
    border-left: 1px solid #cfcdd5;
}

.canvas_open_full {
    display: none;
}

/*
 * Sticky
*/
.sticky-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-animation: sticky 1s;
    -moz-animation: sticky 1s;
    -o-animation: sticky 1s;
    animation: sticky 1s;
    -webkit-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    background: #fff;
}

@-webkit-keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

.mt--2 .hero-slider-item {
    margin-top: -2px;
}

.header-bottom.transparent-header .logo img.bg-transparent-logo {
    display: none;
}

.header-bottom.transparent-header.sticky .logo img {
    display: none;
}

.header-bottom.transparent-header.sticky .logo img.bg-transparent-logo {
    display: block;
}

.button-area-about-footer span {
    display: none;
}

.sub-title h1 {
    font-size: 30px;
    font-weight: 600;
    color: var(--headding-color);
    text-align: center;
    margin-bottom: 20px;
}

.sub-title p {
    font-size: 18px;
    font-weight: 400;
    color: var(--body-color);
    text-align: center;
    margin-bottom: 30px;
}
/* Widget Appointment */
.widget-appointment{
    background: var(--primary-color);
}
.widget-appointment h5{
    color: #FFFFFF;
}
.widget-appointment .get-appointment-form .single-field{
    padding-bottom: 10px;
}
.widget-appointment .get-appointment-form .single-field .nice-select:focus{
    border: 2px solid #FFFFFF
}
.widget-appointment .get-appointment-form .single-field input:focus {
	border-color: #FFFFFF;
}
.widget-appointment .get-appointment-form .single-field textarea{
    width: 100%;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background: transparent;
    padding: 15px 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.6);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.widget-appointment .get-appointment-form .single-field textarea:focus{
    border: 2px solid #FFFFFF;
}
.widget-appointment .nice-select::after{
    border-bottom: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
}
.widget-appointment .get-appointment-form .single-field button.button-1 {
	width: 100%;
	height: 50px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	display: flex;
	justify-content: space-between;
	background: #FFFFFF;
	border: none;
	color: var(--primary-color);
}
.get-appointment-form .single-field button.button-1 i{
    background: var(--primary-color);
    color: #FFFFFF
}
.get-appointment-form .single-field.pb-0{
    padding-bottom: 0px;
}
.widget-appointment button.button-1:hover::after{
    display: none;
}
/*.teamdetails-left img{
    border-radius: 3px;
}
.teamdetails-left h2{
    font-weight: 500;
    font-size: 32px;
    line-height: 30px;
    color: #2E2626;
    padding-bottom: 7px;
}
.teamdetails-left span{
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: var(--primary-color);
}
.teamdetails-left ul.icons{
    margin: 0;
    padding: 0;
    list-style: none;
}
.teamdetails-left ul.icons li{
    display: inline-block;
    padding-right: 30px;
}
.teamdetails-left ul.icons li a{
    line-height: 30px;
    color: #666666;
}
.teamdetails-left ul.icons li a:hover{
    color: var(--primary-color);
}
.teamdetails-left h5{
    font-weight: 500;
    font-size: 18px;
    line-height: 42px;
}
.teamdetails-left .helpline-number{
    padding: 15px 0px;
    box-shadow: inherit;
}
.teamdetails-left .helpline-number .number-text a{
    color: var(--headding-color)
}
.teamdetails-left .helpline-number .number-icon{
    background: rgba(110, 158, 250, 0.1);
}
/* Teamdetails Right */
.teamdetails-right{
    padding-left: 20px;
}
.team-timeline{
    position: relative;
}
.team-timeline::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 90%;
	background: rgba(110, 158, 250, 0.1);
	top: 14px;
	left: 35%;
}
.team-timelinesingle{
    padding-bottom: 40px;
    display: flex;
}
.team-timelinesingle:last-child{
    padding-bottom: 30px;
}
.team-timelinesingle h5{
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
}
.team-timelinesingle h6{
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
}
.team-timelineleft{
    text-align: right;
    padding-right: 60px;
    position: relative;
    height: 100%;
    width: 35%
}
.team-timelineleft::after {
	content: "";
	position: absolute;
	right: -5px;
	top: 10px;
	height: 10px;
	width: 10px;
	background: var(--primary-color);
	border-radius: 50%;
}
.appointment-contactdet {
    z-index: 9;
    background: var(--primary-color);
    padding: 40px 100px;
    border-radius: 10px;
    margin-bottom: -80px;
    position: relative;
}
.appointment-contactdet .teamdetails-left .number-icon{
    background: rgba(255, 255, 255, 0.1);
}
.appointment-contactdet .helpline-number .number-text span{
    color: rgba(255, 255, 255, 0.6);
}
.appointment-contactdet .helpline-number .number-text a {
	color: #FFFFFF;
}
.get-appointment-area.appointment-page-mt {
    padding-top: 170px;
}

/*   * #-Breadcrumb Area
*/
.breadcumb-area{
    text-align: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.breadcumb-area h2{
    font-weight: 500;
    font-size: 70px;
    line-height: 90px;
}
.breadcumb-area ul li{
    display: inline-block;
    color: var(--primary-color);
    font-family: 'DM Sans';
    font-size: 24px;
    line-height: 36px;
    padding: 0px 10px;
    position: relative;
}
.breadcumb-area ul li a{
    color: var(--primary-color);
}
.breadcumb-area ul li::after {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	font-size: 15px;
	position: absolute;
	top: 0px;
	right: -7px;
	color: var(--primary-color);
	display: inline-block;
}
.breadcumb-area ul li:last-child:after{
    display: none
}
.appointment-contactdet {
    z-index: 9;
    background: var(--primary-color);
    padding: 40px 100px;
    border-radius: 10px;
    margin-bottom: -80px;
    position: relative;
}
.appointment-contactdet .teamdetails-left .number-icon{
    background: rgba(255, 255, 255, 0.1);
}
.appointment-contactdet .helpline-number .number-text span{
    color: rgba(255, 255, 255, 0.6);
}
.appointment-contactdet .helpline-number .number-text a {
	color: #FFFFFF;
}
.get-appointment-area.appointment-page-mt {
    padding-top: 170px;
}
.teamdetails-left img{
    border-radius: 3px;
}
.teamdetails-left h2{
    font-weight: 500;
    font-size: 32px;
    line-height: 30px;
    color: #2E2626;
    padding-bottom: 7px;
}
.teamdetails-left span{
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: var(--primary-color);
}
.teamdetails-left ul.icons{
    margin: 0;
    padding: 0;
    list-style: none;
}
.teamdetails-left ul.icons li{
    display: inline-block;
    padding-right: 30px;
}
.teamdetails-left ul.icons li a{
    line-height: 30px;
    color: #666666;
}
.teamdetails-left ul.icons li a:hover{
    color: var(--primary-color);
}
.teamdetails-left h5{
    font-weight: 500;
    font-size: 18px;
    line-height: 42px;
}
.teamdetails-left .helpline-number{
    padding: 15px 0px;
    box-shadow: inherit;
}
.teamdetails-left .helpline-number .number-text a{
    color: #fff;
    
}
.teamdetails-left .helpline-number .number-icon{
    background: rgba(110, 158, 250, 0.1);
}
.helpline-image{
    position: relative;
}
.helpline-shape{
    position: absolute;
    right: 0;
    top: 0;
}
.helpline-image img{
    width: 100%
}
.helpline-content ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.helpline-content ul li{
    display: block;
    padding-left: 23px;
    font-size: 24px;
    line-height: 36px;
    color: var(--headding-color);
    padding-bottom: 5px;
    position: relative;
}
.helpline-content ul li::after {
	content: "";
	position: absolute;
	left: 0px;
	top: 14px;
	width: 4px;
	height: 12px;
	border-radius: 3px;
	background: var(--primary-color);
}
.helpline-number{
    padding: 17px 30px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}
.helpline-number .number-icon {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    float: left;
    line-height: 36px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.helpline-number .number-text {
	padding-left: 8px;
	overflow: hidden;
}
.helpline-number .number-text span{
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: var(--body-color);
}
.helpline-number .number-text h3{
    font-size: 16px;
}
.helpline-number .number-text a{
    line-height: 24px;
    font-weight: 500;
    color: var(--primary-color);
}
/*
 * #-Testimonial Area
*/
.testimonial-area{
    background: var(--section-bg);
}
.single-testimonial {
	background: #FFFFFF;
	border-radius: 10px;
	padding: 100px 50px 35px 50px;
	position: relative;
}
.testimonial-top{
    position: absolute;
    width: 100%;
    top: -20px;
    display: flex;
    align-items: center;
}
.testimonial-img{
    padding-right: 16px;
    position: relative
}
.testimonial-img img{
    max-width: 95px;
    width: 100%;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid var(--primary-color)
}
.testimonial-img::after {
	content: "â";
	position: absolute;
	height: 30px;
	width: 30px;
	background: var(--primary-color);
	color: #FFFFFF;
	font-size: 24px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	font-weight: 400;
	left: 0;
    top: 0;
}
.get-appointment-area{
    background: #222;
    padding: 100px 0px;
    position: relative;
    z-index: 0;
}
.get-appointment-area .shap img{
    position: absolute;
}
/* .get-appointment-area .shap img.shap1 {
    top: 30%;
    left: 3%;
    transform: rotate(18deg);
    z-index: -1;
}
.get-appointment-area .shap img.shap2 {
    top: 37%;
    left: 26%;
    z-index: -1;
}
.get-appointment-area .shap img.shap3 {
    top: 5%;
    left: 57%;
    z-index: -1;
}
.get-appointment-area .shap img.shap4 {
    right: 6%;
    top: 48%;
    z-index: -1;
} */
.get-appointment-form p span{
    color: #DF5646
}
.get-appointment-form .single-field{
    padding-bottom: 20px;
    display: inline-block;
    width: 100%;
}
.get-appointment-form .single-field label {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
    margin-bottom: 10px;
    width: 100%;
    display: inline-block;
    font-family: 'Halyard Display';
}
.get-appointment-form .single-field .nice-select {
    height: 50px;
    align-items: center;
    display: flex;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background: transparent;
    padding: 16px;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.6);
    -webkit-transition:all .3s ease;
    transition: all .3s ease;
}
.get-appointment-form .single-field .nice-select:focus{
    border-color: var(--primary-color);
}
.get-appointment-form .single-field .nice-select ul.list {
    width: 100%;
    color: var(--body-color);
}
.get-appointment-form .single-field .nice-select ul.list li.option {
    font-size: 14px;
    border-bottom: 1px solid #dddddd5c;
}
.get-appointment-form .single-field .nice-select ul.list li.option:last-child{
    border-bottom: none;
}
.get-appointment-form .single-field input {
    width: 100%;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background: transparent;
    padding: 0px 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.6);
    -webkit-transition:all .3s ease;
    transition: all .3s ease;
}
.sidebar-single-widget .get-appointment-form .single-field input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.sidebar-single-widget .get-appointment-form .single-field input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.get-appointment-form .single-field input:focus{
    border-color: var(--primary-color);
}
.get-appointment-form .single-field textarea {
	width: 100%;
	height: 80px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	background: transparent;
	padding: 15px 16px;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	color: rgba(255, 255, 255, 0.6);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.sidebar-single-widget .get-appointment-form .single-field textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.sidebar-single-widget .get-appointment-form .single-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.get-appointment-form .single-field textarea:focus{
    border-color: var(--primary-color);
}
.get-appointment-form .single-field button.button-1 {
    width: 100%;
    height: 50px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    background: var(--primary-color);
    border: none;
    color: #fff;
}
.get-appointment-form .single-field button.button-1 i {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 99;
    position: relative;
    color: #fff;
    font-size: 18px;
}
.get-appointment-area.style-2 {
    background: var(--section-bg);
    padding-bottom: 0px;
}
.get-appointment-area .single-field textarea {
    border: 2px solid rgba(34, 34, 34, 0.1);
    border-radius: 5px;
    height: 100px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--body-color);
    padding: 16px;
    width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.get-appointment-area .single-field textarea:focus{
    border-color: var(--primary-color);
}
.get-appointment-area.style-2 .single-field textarea {
    background: transparent;
}
.get-appointment-form.style-2 .single-field label {
    color: var(--headding-color);
}
.get-appointment-form.style-2 .single-field .nice-select {
    border: 2px solid rgba(34, 34, 34, 0.1);
    color: var(--body-color);
}
.get-appointment-form.style-2 .single-field input {
    border: 2px solid rgba(34, 34, 34, 0.1);
    color: var(--body-color);
}
.get-appointment-form.style-2 .single-field .nice-select:focus {
    border-color: var(--primary-color);
}
.get-appointment-form.style-2 .single-field input:focus {
    border-color: var(--primary-color);
}
.get-appointment-form.style-2 .single-field button.button-1 {
    width: auto;
}
.get-appointment-form.style-2 .shap img.shap1 {
    bottom: 5%;
    left: 3%;
}
.get-appointment-form.style-2 .shap img.shap2 {
    top: 48%;
    left: 26%;
}
.get-appointment-form.style-2 .shap img.shap4 {
    right: 4%;
    top: 47%;
}
.shap{
    z-index: 0;
}