@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
/* @import url(//db.onlinewebfonts.com/c/f9c29582ab6e0d72175939ac663b784c?family=Klavika+Web+Basic+Bold);
@import url(//db.onlinewebfonts.com/c/9ea60840bd8fe427a00ded2338da6211?family=Klavika+Web+Regular+Condensed); */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
/* @font-face {
    font-family: "klavika-web";
    src: url("../fonts/klavika-bold.woff2") format("woff2"),
        url("../fonts/klavika-bold.woff") format("woff") url("../fonts/klavika-bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    font-display: auto;
}

@font-face {
    font-family: "klavika-web";
    src: url("../fonts/klavika-light.woff2") format("woff2"), url("../fonts/klavika-light.woff") format("woff"),
        url("../fonts/klavika-light.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    font-display: auto;
}

@font-face {
    font-family: "klavika-web";
    src: url("../fonts/klavika-medium.woff2") format("woff2"), url("../fonts/klavika-medium.woff") format("woff"),
        url("../fonts/klavika-medium.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    font-display: auto;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    background-color: #fff;
}

a {
    transition: all 0.2s ease-out 0s;
    color: #000000;
}

a:hover {
    color: #527476;
    text-decoration: none;
}

::selection {
    color: #fff;
    background: #868172;
}

ul,
li,
a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Titillium Web", sans-serif;
    text-transform: uppercase;
}

svg:not(:root) {
    overflow: hidden;
}

b,
strong {
    font-weight: 600;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.nav-item .enq-btn {
    border: 1px solid #0174cf;
    background: #0174cf;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 5px 30px !important;
    text-align: center;
}

.nav-item .enq-btn:hover {
    background: transparent;
    color: #0174cf !important;
}

.header {
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: #fff;
    box-shadow: 5px 0 5px 3px rgb(0 0 0 / 15%);
}



.header .navbar {
    padding: 0 30px 0;
}

.logo {
    width: 50px;
    height: auto;
}

/* .navbar-light,
.navbar-brand {
    padding: 0;
} */
.navbar-light .navbar-nav .nav-link {
    letter-spacing: 1px;
    font-size: 14px;
    padding: 10px 35px;
}

.nav-item a {
    color: #4a4a4a !important;
    font-weight: 700;
    font-family: "Titillium Web", sans-serif;
}

.nav-btn .btn {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
}

.cstm-btn {
    background: 0 0;
    border-color: #6f7c7d;
    margin-right: 5px;
}

.cstm-btn:hover {
    background-color: #6f7c7d;
    color: #ffffff;
}

.btn {
    text-transform: uppercase;
    padding: 12px 22px;
    color: #6f7c7d;
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    text-align: center;
    border-radius: 0;
}

.btn-danger {
    background: 0 0;
    border-color: #0174cf;
    color: #0174cf;
}

.banner_sec {
    position: relative;
    font-family: "Titillium Web", sans-serif;
}

.main {
    background-color: #ffffff;
    padding: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 1px 0 12px 0 rgb(0 0 0 / 5%), -1px 0 12px 0 rgb(0 0 0 / 5%);
}

/* .banner_sec .container,
.tiles_sec .container {
    max-width: 1400px;
} */
.tiles_sec {
    background: #EAEFF4;
}

.hover-info {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    background-color: rgb(64 64 64 / 75%);
    transition: opacity .6s;
}

.hover-bottom:after {
    content: '';
    background-color: rgb(1 116 207);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity .6s;
}

.tiles_sec .card:hover .hover-bottom:after,
.tiles_sec .card:hover .hover-info {
    opacity: 1;
    cursor: pointer;
}

.tiles_sec .card:hover .hover-bottom a,
.tiles_sec .card:hover .hover_content p {
    color: #fff;
}

.hover_img,
.hover-bottom {
    position: relative;
    z-index: 0;
}

.hover_content a {
    color: #ffffff;
    border-color: #ffffff;
}

.hover_content a:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.tiles_sec .card {
    padding: 0;
    /* min-height: 380px; */
    border: none;
    border-radius: 0;
    text-align: center;
    font-family: "Lato", sans-serif;
    box-shadow: 0 0 12px 1px #d2d6dc;
}

.tiles_sec .card-title a {
    font-size: 20px;
    color: #656666;
    text-transform: capitalize;
}

.tiles_sec .card-title a:hover {
    color: #656666;
}

.cstm_link {
    background-color: transparent;
    font-size: 16px;
    color: #0174cf;
    border: none;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

.cstm_link:hover {
    background-color: transparent;
    border: none;
    text-decoration: underline;
    color: #0174cf;
}

.cstm_link::after {
    font-size: 26px;
    font-family: "boxicons";
    content: "\e9b2";
    line-height: 1;
    position: absolute;
}

.icons div {
    font-size: 26px;
}

.cstm_link:focus,
.cstm_link:active,
.cstm_link:active:focus {
    background-color: transparent;
    font-size: 16px;
    color: #0174cf;
    border: none;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    box-shadow: none;
}

.icon-chart {
    position: relative;
}

.icon-chart .chart-image-wrapper {
    height: 500px;
    overflow: hidden;
    position: relative;
    background-color: #6f7c7d;
}

.icon-chart .chart-image-wrapper img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center ";
}

img.lazyloaded {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.icon-chart .chart-image-wrapper>div {
    margin: auto;
    /* width: 225px; */
    text-align: center;
    z-index: 1;
    /* padding-right: 1.5%; */
}

.icon-chart .chart-image-wrapper>div span.dollar {
    font-size: 40px;
    font-family: "Titillium Web", sans-serif;
    line-height: 50px;
    margin-bottom: 15px;
}

.icon-chart .chart-image-wrapper>div span {
    font-weight: 700;
    margin: 0;
    display: block;
}

.icon-chart .chart-image-wrapper>div span.label {
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 30px;
}

.icon-chart .container {
    padding: 50px 0;
}

.icon-chart ul.icons {
    list-style: none;
    padding: 0;
    margin: 0 auto 0;
    width: 100%;
}

.icon-chart li .number {
    font-size: 40px;
    /* font-weight: 100; */
    line-height: 48px;
    margin: 6px 0 0;
}

/* .icon-chart li img {
    width: 56px;
    height: 56px;
} */
.icon-chart li i span {
    margin: 6px 0 0;
    text-transform: uppercase;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    display: block;
    color: #4a4a4a;
}

.btn-secondary {
    background: 0 0;
    border-color: #6f7c7d;
}

.ops-map {
    /* min-height: 280px; */
    color: #fff;
    text-align: center;
    background-color: rgba(74, 74, 74, 0.7);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    padding: 100px 0;
    position: relative;
}

.ops-map ul {
    padding: 0;
    list-style-type: none;
    margin: 25px 0;
}

.ops-map ul li {
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    vertical-align: top;
    width: 30%;
    display: inline-block;
}

.ops-map ul li .number {
    font-size: 36px;
    line-height: 1.25;
    display: block;
}

/* .ops-map a,.ops-map a:hover {
    color: #fff;
} */
section.tiles .content {
    max-width: 530px;
    margin: auto;
    z-index: 1;
    position: relative;
    padding: 32px 32px 112px;
    min-height: 380px;
}

section.tiles .content img {
    max-width: 100%;
}

.background-red {
    background-color: #4982af;
}

.color-white {
    color: #fff;
}

section.tiles .content h4 {
    text-transform: uppercase;
    margin: 16px 0;
    font-size: 24px;
}

section.tiles .content i {
    font-size: 56px;
    line-height: 16px;
}

section.tiles .content i span {
    text-transform: uppercase;
    display: block;
    font-size: 15px;
    font-style: normal;
    margin-top: 16px;
}

.color-red {
    color: #0174cf;
}

.background-dark-blue {
    background-color: #272c33;
}

section.tiles .tile.vertical {
    height: 100%;
}

section.tiles .tile-bg img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center ";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

/* section.tiles .tile-bg:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    position: absolute;
    top: 0;
    left: 0;
} */
section.tiles .tile.vertical>.col {
    padding-bottom: 32px;
}

section.tiles .tile.vertical .content {
    padding: 32px;
    min-height: auto;
}

.col-md {
    position: relative;
}

.secondary-tiles {
    overflow: hidden;
}


.footer {
    background-color: #272727;
    color: #bfbfbf;
    position: relative;
}

.footer-wrapper {
    padding: 30px 0px 25px;
}

.footer_social {
    line-height: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.footer_social .social-icons li {
    list-style-type: none;
    display: inline-block;
    margin-right: 10px;

}

.footer_social .social-icons li a {
    color: #ffffff;
}

.footer_social li a i {
    border: 1px solid;
    padding: 6px;
    width: 30px;
    text-align: center;
    font-size: 15px;
    height: 30px;
    border-radius: 68px;
}

.footer_social li a:hover i {
    background-color: #ffffff;
    color: #000000;
}

.footer_links {
    text-align: center;
    margin-bottom: 20px;
}

.footer_links li {
    display: inline-block;
}

.footer_links .footer_link {
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    line-height: 1;
    color: #7f7f7f;
}

.footer_links .footer_link:hover {
    color: #ffffff;
}

.copyright {
    text-align: center;
    color: #7f7f7f;
    font-size: 14px;
}

.copyright a {
    color: #ffffff;
}

#banner .owl-nav {
    margin-top: 0;
}

#banner .owl-prev {
    position: absolute;
    top: 50%;
    left: 30px;
    font-size: 45px !important;
    line-height: 45px !important;
    color: #ffffff !important;
}

#banner .owl-next {
    position: absolute;
    top: 50%;
    right: 30px;
    font-size: 45px !important;
    line-height: 45px !important;
    color: #ffffff !important;
}

#banner .owl-prev:hover,
#banner .owl-next:hover {
    background-color: transparent;
    color: #ffffff !important;
}

#banner.owl-theme .owl-dots {
    margin: 0;
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
}

#banner.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    border: 2px solid #777;
    background: #000;

}

#banner.owl-theme .owl-dots .owl-dot.active span,
#banner.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

.chart-image-wrapper .overlayer {
    position: absolute;
    width: 100% !important;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #00000070;
}

.banner_text {
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 0 10px;
    top: 35%;
    text-align: center;
}

.bg_btn {
    border-color: #ffffff;
    color: #ffffff;
}

.bg_btn:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.home-title h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.home-title h2 span.first-word {
    color: #505050;
}

.home-title p {
    font-size: 16px;
    margin-bottom: 20px;
}

.bttns a {
    cursor: pointer;
    display: inline-block;
    position: relative;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    background: #0174cf;
    color: #ffffff;
    padding: 12px 30px;
    min-width: 150px;
}

.bttns a:hover {
    background: #0174cf;
    color: #ffffff;
    text-decoration: none;
}

.slider {
    width: 100%;
    height: 500px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    padding: 110px 0;
}

.about_sec {
    position: relative;
    padding: 50px 0 20px;
    background-image: url(../images/about-page.jpg);
    padding-left: 50%;
    padding-top: 50px;
    padding-bottom: 90px;
    padding-right: 100px;
    background-position: 30px center;
    background-size: cover;
}

.about_text {
    padding: 20px 0;
}

.about_text h3 {
    font-size: 38px;
    font-weight: 600;
    color: #0174cf;
    font-family: "Lato", sans-serif;
    margin-bottom: 24px;
}

.about_text .subtitle {
    margin-bottom: 16px;
}

.about_text p {
    font-size: 15px;
    margin-bottom: 14px;
    letter-spacing: 1px;
    line-height: 29px;
}

.ops-map::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000070;
}

.bg_text {
    z-index: 1;
}

.bg_text p {
    font-size: 20px;
}

.tiles_sec {
    padding: 50px 0 50px;
}

.top_bar {
    position: relative;
    padding: 5px 35px;
    box-shadow: 5px 0 5px 3px rgb(0 0 0 / 15%);
    background: #0174cf;
}

.top_right ul {
    display: flex;
    align-items: center;
    justify-content: end;
}

.top_right ul li {
    margin: 0 10px;
}

.top_right ul a {
    color: #ffffff;
    font-size: 14px;
}

.top_left .social-icons li {
    list-style-type: none;
    display: inline-block;
    margin-right: 10px;
}

.top_left .social-icons li a {
    color: #ffffff;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #f8f8f9;
}

.choose-wrap {
    position: relative;
    padding: 30px;
    /* margin-bottom: 30px; */
    /* border-bottom: 1px solid #cecece; */
    min-height: 193px;
    display: flex;
    max-width: 530px;
}

.choose-icon {
    /* border: 1px solid #cecece; */
    padding: 0 10px;
    /* background-color: #DC79AE;
    background: rgb(215,169,215);
    background: linear-gradient(90deg, rgba(215,169,215,1) 0%, rgba(220,121,174,1) 100%); */
    position: relative;
    height: 80px;
    width: 80px;
    text-align: center;
}

.choose-icon i {
    font-size: 40px;
    line-height: 50px;
    color: #fff;
    display: block;
}

.choose-text {
    padding-left: 15px;
}

.choose-title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
}

.background-white .choose-icon i {
    color: rgb(1 116 207);
}

.background-brown {
    /* background-color: #cc6723; */
    background-color: #0174cf;
}

.background-white .choose-title {
    color: rgb(1 116 207);
}


/* Dropdown Menu */
.dropdown-menu>li {
    position: relative;
    -webkit-user-select: none;
    /* Chrome/Safari  */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/ / Rules below not implemented in browsers yet  */
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
}

.dropdown-menu {
    width: 220px;
}



/* page banner */
.section-header-banner {
    width: 100%;
    height: 400px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.section-title-header h2 {
    font-size: 70px;
    color: #0174cf;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.section-title-header p {
    font-size: 16px;
    margin: 10px 0;
    font-weight: 600;
    color: #0174cf;
    letter-spacing: 1px;
}

.section-title-header p a {
    color: #191919;
}

.section-title-header p a:hover {
    text-decoration: underline;
}

.section-padding {
    padding-bottom: 70px;
    padding-top: 70px;
}

.get-in-touch {
    padding: 6px 20px;
    margin-bottom: 15px;
}

.get-in-touch h3 {
    font-size: 36px;
    color: #0174cf;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.get-in-touch p {
    font-size: 14px;
}

.address-contact-page {
    padding: 5px 20px;
}

.address-contact-page h4 {
    font-size: 28px;
    color: #0174cf;
    line-height: 40px;
    letter-spacing: 1px;
}

.address-contact-page ul {
    margin: 10px 0;
}

.address-contact-page ul li {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    margin: 20px 0;
}

.address-contact-page ul li span i {
    vertical-align: middle;
    margin-right: 15px;
    font-size: 24px;
    color: #0174cf;
}

.address-contact-page p,
.address-contact-page a {
    margin-bottom: 0px;
    font-size: 14px;
    color: #7d7d7d;
    line-height: 25px;
    font-weight: 600;
}


form .contact-form {
    width: 100%;
    margin: auto;
}

form .contact-form input,
form .contact-form textarea,
form .contact-form select {
    width: 100%;
    padding: 6px 20px;
    margin: 15px 0;
    outline: none;
    border-radius: 0;
    border: 1px solid transparent;
    border-bottom: 1px solid #c9c9c9;
    background: #f0f0f0;
    font-family: 'Lato', sans-serif;
}

form .contact-form select {
    opacity: 0.6;
}

form .contact-form input:focus,
form .contact-form textarea:focus,
form .contact-form select:focus {
    border: 1px solid #c9c9c9;
}

form .contact-form input::placeholder,
form .contact-form textarea::placeholder,
.form .contact-form select option {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
}

.service_sec .card {
    margin-bottom: 30px;
    text-align: center;
}

.service_sec .cstm_link {
    border: 1px solid #ffffff;
    padding: 10px 50px;
    text-decoration: none;
}

.service_sec .cstm_link:hover {
    color: #000000;
    background-color: #ffffff;
}

.modal-title {
    color: #0174cf;
}

.form-control {
    color: #0174cf;
}

.modal-body .mb-3 {
    padding: 0;
}

.modal-body .form-control {
    height: 40px;
}

.default-btn {
    border: 1px solid #0174cf;
    background: #0174cf;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 5px 30px !important;
    text-align: center;
    font-weight: 600;
    font-family: "Titillium Web", sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
}

.default-btn:hover {
    background: transparent;
    color: #0174cf !important;
}

.testimonial_sec {
    background: #f5f5f5;
}

.before-after_sec img {
    margin-bottom: 20px;
    border: 3px solid #0174cf;
}

#response,
#response1 {
    font-size: 16px;
    color: green;
    border: 1px solid green;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    display: none;
}

#alert,
#alert1 {
    font-size: 16px;
    color: Red;
    border: 1px solid Red;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    display: none;
}

#pageloader {
    background: rgba(255, 255, 255, 0.8);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

#pageloader img {
    left: 50%;
    margin-left: -32px;
    margin-top: -32px;
    position: absolute;
    top: 50%;
}

.bttns button {
    cursor: pointer;
    display: inline-block;
    position: relative;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    background: #0174cf;
    color: #ffffff;
    padding: 12px 30px;
    min-width: 150px;
}


.offer_sec {
    padding: 50px 0;
}

.offer_slider .item {
    text-align: center;
}

.offer_slider .item a {
    margin: 10px 0;
    border-color: #000000;
    color: #000000;
    padding: 8px 20px;
}

.offer_slider .item a:hover {
    background-color: #000000;
    color: #ffffff;
}

/* vikash_work */


.our_popular_main_sec {
    padding: 30px 0;
}

.our_popular {
    text-align: center;
}

.our_popular_sec {
    padding: 30px 0 0;
}

.logo_hedding h1 {
    font-weight: 100;
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    color: #0174cf;
    font-weight: bold;
}

.baby-img {
    /* width: 24%;
    float: left; */
    margin-right: 17px;
    margin-bottom: 30px !important;
}

.videoss-custom-texts {
    position: relative;
    box-shadow: 0 0 5px #7e7d7d;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    background-color: #0a0a0a;
    opacity: 0.8;
}

.videoss-custom-texts::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.34);
}

.videoss-custom-texts::after {
    content: '';
    position: absolute;
    background-image: linear-gradient(rgba(162, 162, 162, 0.3803921568627451), rgba(23, 193, 202, 0.86));
    width: 100%;
    height: 100%;
    top: 0;
    transition: all .5s ease 0s;
    left: 0;
    opacity: 0;
}

.videoss-custom-texts:hover::after {
    opacity: 1;
}

.videoss-category-content {
    z-index: 1;
    position: absolute;
    top: 50%;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 400;
    left: 0;
}

.videoss-custom-texts:hover .videoss-content-menu {
    max-height: 250px;
}

.videoss-content-menu {
    max-height: 0;
    transition: max-height 0.4s ease;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
    display: flex;
    font-size: 20px;
}

.videoss-content-menu h4 {
    color: #fff;
    text-transform: capitalize;
    padding: 0 10px;
    text-align: center;
    font-family: Montserrat;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 10px;
}

.videoss-content-menu a {
    font-family: Lato;
    padding: 5px 30px;
    background: transparent;
    border: 1px solid #fff;
    line-height: 30px;
    border-radius: 50px;
    color: #fff !important;
    display: inline-block;
    margin: 28px 0 0;
    text-transform: capitalize;
    transition: 0.5s;
    font-size: 18px;
    font-weight: 300;
}


.videoss-custom-texts:hover .videoss-category-content h3 {
    display: block;
    transition: 4s;
}

.videoss-category-content h3 {
    transition: 0.5s;
    color: #fff;
    text-transform: uppercase;
    padding: 0 25px;
    text-align: center;
    font-family: Montserrat;
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 3px 8px 20px #0000004d;
}

.videoss-custom-texts p {
    margin: 0px !important;
}

.videoss-custom-texts:hover img {
    transform: scale(1.2);
}

.videoss-custom-texts img {
    max-width: unset;
    opacity: 1;
    transition: opacity 0.25s ease;
    width: 100%;
    height: auto;
    transition: all 1.5s ease 0s;
    width: 100%;
}

.videoss-custom-text {
    margin-bottom: 20px;
}

.our_popular_treatment {
    padding: 30px 0;
}

.about_hedding_home {
    text-align: center;
}


/*  */


/* .feature-short {
    color: #fff;
} */
.box20 {
    overflow: hidden;
}


.featured .col1 .feature-short .one .featured-heading {
    color: #fff;
}

/* .featured_heading_main{
    position: relative;
} */

.featured-heading {
    position: absolute;
    font-size: 30px;
    top: 0;
    left: 0;
    padding: 30px;
    height: 100%;
    width: 100%;
    background-size: cover;
}

.small-text-hide {
    font-size: 13px !important;
    display: none;
    line-height: 22px;
}

.box20:hover .small-text-hide {
    font-size: 13px;
    display: block;
    color: #fff;
}

.box20:hover .hot-offer-cta {
    display: none;
}

.overlay-dia {
    position: absolute;
    top: 0;
    content: '';
    z-index: 0;
    width: 88%;
    height: 100%;
    background: rgba(44, 180, 213, .64);
    transform: skew(137.25deg);
    right: 172px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.box20:hover .overlay-dia {
    position: absolute;
    top: 0;
    content: '';
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 180, 213, .64);
    transform: skew(0);
    right: 0;
}

.feature_sec .overlay-dia {
    background: #f5907c8c;
    transform: skew(222.25deg);
}

.feature_sec .box20:hover .overlay-dia {
    background: #f5907c8c;
}

.hot-offer-cta {
    position: absolute;
    bottom: 30px;
    left: 30px;
    padding: 0;
    color: #fff;
    font-size: 18px !important;
    font-weight: 300;
}

.header1 {
    font-size: 24px;
    line-height: 0px;
    padding-bottom: 10px;
    background: 0 0;
    border: none;
    color: #fff;
}

.feature {
    margin-bottom: 20px;
}

.hairfall-box:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(116, 33, 93, .56);
}

.feature-short .box20 {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 64.166666666667%;
}

.hair-content {
    position: absolute;
    bottom: 0;
}

.pokill {
    font-size: 14px;
    color: #fff;
}

.rdmore {
    font-size: 18px;
    color: #fff;
}

.featured-heading h2 {
    color: #ffff;
}

.popular_treatment {
    padding: 30px 0 0;
}

.bg_about_main {
    padding: 30px 0;
}

/* .bg_about {
    background-image: url(../images/about-section1.jpg);
    background-repeat: no-repeat;
    padding: 20px 0;
    background-size: cover;
    position: relative !important;
    background-attachment: fixed;
} */

.bg-image-sc img {
    width: 89%;
}

.haddings-top {
    text-align: center;
}

.haddings-top h2 {
    font-size: 52px;
    margin-bottom: 10px;
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0px;
    margin-top: 20px;
    text-transform: none;
    color: #0174cf;
}

.about-hadding h2 {
    color: #0174cf;
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0px;
    text-transform: none;
    font-family: Montserrat;
    text-align: center;
}

.about-hadding p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: none;
    text-align: center;
    margin-bottom: 20px;
}

.Know {
    padding: 10px 20px 10px;
    background: #0174cf;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin: 10px;
    margin-bottom: 10px;
}


.Know:hover {
    background: #fff;
    color: #0174cf;
    border: solid 1px #0174cf;
}

.cust_tab_main .nav-tabs .nav-link {
    background-color: #0174cf;
    border: 1px solid white;
    color: #fff;
    font-size: 14px;
}

.cust_tab_main .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #0174cf !important;
    background-color: #fff !important;
    border-color: #dee2e6 #dee2e6 #fff;
    font-size: 14px;
}

.panel_body {
    background-color: #f5f5f5;
    padding: 14px 20px;
}

.panel_body p {
    font-size: 13px;
    color: #333;
    line-height: 30px;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0px;
}

.about-skills {
    text-align: center;
}

.about-skills ul li {
    list-style: none;
    font-size: 12px;
    color: #333;
    padding: 5px 0px;
    text-align: center;
    border-bottom: 1px dotted #999999;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: none;
    font-family: Montserrat;
    text-align: center;
    margin-top: 10px;
}

.about-Education h3 {
    font-size: 16px;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    background-color: #474543;
    margin: 0 auto;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: none;
    text-align: center;
}

.sckin_wepper_main {
    padding: 50px 0;
}

.about-caption span {
    font-size: 18px;
    display: block;
    color: #0174cf;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 17px;
}

.about-caption h2 {
    font-size: 50px;
    display: block;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.1;
    color: #0174cf;
    margin-top: 0px;
    font-style: normal;
}

.about-caption p {
    font-size: 17px;
    color: #64676c;
    line-height: 36px;
}

.dropdown-menu {
    width: 440px;
}

.dropdown-menu.show {
    display: flex;
    flex-wrap: wrap;
}

.dropdown-menu li.nav-item {
    width: 50%;
}


.youtube_wepper {
    padding: 10px 0 70px;
}

.dropdown-menu .nav-link:hover {
    background-color: #0174cf;
    color: #fff !important;
}

.testimonial_sec .owl-carousel .owl-item img {
    display: inline-block !important;
    width: auto;
}

.testimonial_sec .author-img img {
    width: 70px !important;
    height: auto;
    border-radius: 100%;
}

.testimonial_sec .font-medium {
    font-weight: 500;
}

.testimonial_sec .border-radius-new {
    border-radius: 20px;
}

.testimonial_sec img.comms {
    width: 40px !important;
    height: auto;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.servicep {
    padding-top: 100px;
}



/* new */

.footer_wepper {
    padding: 50px 0px 11px;
    background: #0174cf;
    /* margin: 40px 0 0; */
}

.footer_wepper .container-fluid {
    padding: 0 30px;
}

.footer_logo {
    border-style: dashed;
    border-width: 0px 1px 0px 0px;
    border-color: #ffffff4d;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.footer_logo img {
    width: 20%;
}

.footer_logo p {
    margin-bottom: 0;
    color: #fff;
    font-size: 13px;
}

.sosal-midia-icn {
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.facbook {
    text-align: center;
    width: 40px;
    margin: 4px;
    height: 40px;
    color: #fff;
    line-height: 0;
    border-radius: 50%;
    border: 1px solid #0174cf;
}

.facbook i {
    color: #fff;
}

.footer_heddng {
    padding: 0px 0px 0px 25px;
}

.footer_heddng h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 16px;
}

.number-box  a
{
    padding-right: 5px;
    font-size: 13px;
}

.adders_main {
    display: flex;
    align-items: center;
    position: relative;
}

.adders_main ul {
    padding: 0;
}

.adders_main li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    transition: all .5s ease;
    color: #fff;
    font-size: 13px;
}

.adders_main li span {
    font-size: 18px;
    margin-right: 15px;
    color: #fff;
    line-height: 10px;
}

.adders_main li a {
    color: #fff;
}

.footer_heddng h4 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.adders_main input {
    border-bottom: 1px solid #fff;
    text-transform: capitalize;
    font-weight: unset;
    font-size: 16px;
}

.send i {
    font-size: 30px;
    color: #fff;
    position: absolute;
    right: 35px;
    bottom: 25px;
}

.bx {
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.all_input_wepper input {
    border: none;
    border-bottom: 1px solid #1c1c1c;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    background: #0000;
    border-radius: 0;
    padding: 10px;
    text-transform: uppercase;
}

.footer_heddng h3 {
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
}

.footer_heddng h4 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    padding: 25px 0px;
}


.adders_main input {
    border-bottom: 1px solid #fff;
    text-transform: capitalize;
    font-weight: unset;
    font-size: 16px;
}

.send i {
    font-size: 30px;
    color: #fff;
    position: absolute;
    right: 5px;
    bottom: 5px;
}

.sosal-midia-icn a {
    font-size: 21px;
    color: #fff;
    line-height: 44px;
}

.adders_main input::placeholder {
    color: #fff !important;
}

.logo-sec-footer {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-bottom: 16px;
}

.logo-sec-footer h1 {
    font-size: 22px;
    font-weight: 600;
    color: white;
}

.footer_heddng .form-control:focus {
    color: unset;
    background-color: transparent;
    border-color: #fff;
    outline: 0;
    box-shadow: unset;
}

.view_m a {
    background-color: #0174cf;
    color: #fff;
    padding: 10px 30px;
}

.view_m a:hover {
    border: 1px solid #0174cf;
}

.view_m {
    margin-top: 20px;
}

.service_inner_content {
    box-shadow: 0px 0px 14px 2px rgb(51 51 51 / 18%);
    border-radius: 10px;
    transition: ease-in all 2s;
    padding: 20px;
    min-height: 227px;
    margin-bottom: 40px;
}

.service_inner_content h2 {
    color: #283174;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
}

.service_inner_content p {
    font-size: 14px;
    text-align: justify;
}

.footer-rights-wrapper {
    padding: 0px 0px 17px;
    width: 100%;
    background: #0174cf;
}

p.footer-copyright-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 13px;
    line-height: 1.2em;
    font-weight: 500;
    margin-bottom: 0;
}

.footer-copyright-link {
    display: inline;
    margin-right: 5px;
    margin-left: 5px;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.2px;
    text-decoration: none;
}

.page-banner{
    position: relative;
}

.destop_none{
    display: none !important;
}

.footer-copyright-text a:hover{
    color: #fff;
}

.destp_no{
    display: none !important;
}

/* .logo_center a{
    display: flex;
    align-items: center;
    justify-content: center;
} */
.logo_center {
    padding: 8px 0 0;
}

.about-new-text
{
    text-align: right;
    color: #fff;
    position: relative;
}

.about-new-text p , .about-new-text h2, .about-new-text p a
{
    color: #fff;
}

.new-about-banner
{
    position: relative;
}
.new-about-banner::before{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.34);
}

#g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -78px 0 0 0 !important;
    width: 302px !important;
    height: 76px !important;
    z-index: -999999;
    opacity: 0;
  }