/* M.Rafee.SK */

html, body {
    min-height: 100%!important;
}

body{
    color: #4c4e4e;
    font-family: 'Poppins-Regular', 'arial';
    overflow-x: hidden;
}

@font-face {
    font-family: Poppins-Bold;
    src: local("Poppins-Bold"),
        local("Poppins-Bold"),
        url(../fonts/poppins/Poppins-Bold.ttf);
}

@font-face {
    font-family: Poppins-Regular;
    src: local("Poppins-Regular"),
        local("Poppins-Regular"),
        url(../fonts/poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: Poppins-ExtraLight;
    src: local("Poppins-ExtraLight"),
        local("Poppins-ExtraLight"),
        url(../fonts/poppins/Poppins-ExtraLight.ttf);
}

@font-face {
    font-family: Poppins-Italic;
    src: local("Poppins-Italic"),
        local("Poppins-Italic"),
        url(../fonts/poppins/Poppins-Italic.ttf);
}

@font-face {
    font-family: Poppins-Light;
    src: local("Poppins-Light"),
        local("Poppins-Light"),
        url(../fonts/poppins/Poppins-Light.ttf);
}

@font-face {
    font-family: Poppins-Medium;
    src: local("Poppins-Medium"),
        local("Poppins-Medium"),
        url(../fonts/poppins/Poppins-Medium.ttf);
}

@font-face {
    font-family: Poppins-SemiBold;
    src: local("Poppins-SemiBold"),
        local("Poppins-SemiBold"),
        url(../fonts/poppins/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: Caladea-Bold;
    src: local("Caladea-Bold"),
        local("Caladea-Bold"),
        url(../fonts/caladea/Caladea-Bold.ttf);
}

@font-face {
    font-family: Caladea-BoldItalic;
    src: local("Caladea-BoldItalic"),
        local("Caladea-BoldItalic"),
        url(../fonts/caladea/Caladea-BoldItalic.ttf);
}

@font-face {
    font-family: Caladea-Italic;
    src: local("Caladea-Italic"),
        local("Caladea-Italic"),
        url(../fonts/caladea/Caladea-Italic.ttf);
}

@font-face {
    font-family: Caladea-Regular;
    src: local("Caladea-Regular"),
        local("Caladea-Regular"),
        url(../fonts/caladea/Caladea-Regular.ttf);
}

.poppins-extralight {
    font-family: "Poppins-ExtraLight", arial;
}

.poppins-light {
    font-family: "Poppins-Light", arial;
}

.poppins-italic {
    font-family: "Poppins-Italic", arial;
}

.poppins-medium {
    font-family: "Poppins-Medium", arial;
}

.poppins-regular {
    font-family: "Poppins-Regular", arial;
}

.poppins-semibold {
    font-family: "Poppins-SemiBold", arial;
}

.poppins-bold {
    font-family: "Poppins-Bold", arial;
}

.color-000 {
    color: #000;
}

.color-111 {
    color: #111;
}

.color-222 {
    color: #222;
}

.color-333 {
    color: #333;
}

.color-444 {
    color: #444;
}

.color-555 {
    color: #555;
}

.color-666 {
    color: #666;
}

.color-777 {
    color: #777;
}

.color-888 {
    color: #888;
}

.color-999 {
    color: #999;
}

.color-blue {
    color: #180f55
}

.pointer, select {
    cursor: pointer;
}

button:focus {
    outline: none;
}

.form-control-lg {
    height: calc(1.5em + 1rem + 12px);
    font-size: 14px;
}

.btn-outline-none:focus {
    outline: none;
}

a:hover {
    text-decoration: none;
}

/*input type number*/

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield;
}

.bg-000 {
    background: #000;
}

.navbar-fluid {
    background: #fff;
    z-index: 2;
}

.navbar-nav li a {
    font-size: 18px;
    color: #565555;
}

.c-hamburger {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 24px;
    height: 20px;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.c-hamburger span {
    display: block;
    position: absolute;
    top: 9px;
    left: 0px;
    right: 0px;
    height: 2px;
    background: #2b1202;
}

.c-hamburger span::before, .c-hamburger span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2b1202;
    content: "";
}

.c-hamburger--htx span::before, .c-hamburger--htx span::after {
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
    transition-property: top, transform;
}

.c-hamburger span::before {
    top: -9px;
}

.c-hamburger span::after {
    bottom: -9px;
}

.c-hamburger--htx.is-active span {
    background: transparent!important;
}

.c-hamburger--htx.is-active span::before {
    top: 0;
    transform: rotate(45deg);
    width: 26px;
    left: -4px;
    margin-left: 3px;
}

.c-hamburger--htx.is-active span::after {
    bottom: 0;
    transform: rotate(-45deg);
    width: 26px;
    left: -4px;
    margin-left: 3px;
}

.c-hamburger--htx.is-active span::before, .c-hamburger--htx.is-active span::after {
    transition-delay: 0s, 0.3s;
}

.c-hamburger--htx span::before {
    transition-property: top, transform;
}

.c-hamburger--htx span::after {
    transition-property: bottom, transform;
}

.mobile-number {
    font-size: 16px;
}

.call-text {
    color: #b8b8b8;
    font-size: 14px;
}

.banner-image {
    background-repeat: no-repeat;
}

#bannerCarousel {
    background: -moz-linear-gradient(135deg, #b6e7ff 0%, #fececb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #b6e7ff), color-stop(100%, #fececb));
    background: -webkit-linear-gradient(135deg, #b6e7ff 0%, #fececb 100%);
    background: -o-linear-gradient(135deg, #b6e7ff 0%, #fececb 100%);
    background: -ms-linear-gradient(135deg, #b6e7ff 0%, #fececb 100%);
    background: linear-gradient(135deg, #b6e7ff 0%, #fececb 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b6e7ff', endColorstr='#fececb', GradientType=1);
}

.banner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-text {
    font-family: "Caladea-BoldItalic", arial;
    font-size: 60px;
    color: #000;
    line-height: 1.2;
}

.banner-text span {
    color: #005bd3;
}

.quote-heading {
    display: inline-block;
    font-size: 30px;
    color: #000;
    margin-bottom: 15px;
    font-family: 'Poppins-Bold', 'arial';
}

.section-heading {
    position: relative;
    display: inline-block;
    font-size: 36px;
    color: #242424;
    margin-bottom: 30px;
    font-family: 'Poppins-Semibold', 'arial';
}

.section-heading:before {
    position: absolute;
    content: '';
    width: 82px;
    height: 4px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background: #356ad8;
    border-radius: 2px;
}

.quote-question {
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
}

.quote-options {
    padding-top: 10px;
}

.features-box {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 10px solid rgba(189, 229, 249, 0.2);
    box-shadow: 0px 0px 20px 7px rgba(245, 209, 209, 0.2);
}

.feature-imagebox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-text {
    font-size: 22px;
}

.form-control-borderbottom {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #dee2e6!important;
}

.results-btn {
    font-size: 18px;
    background: #1ebef0;
}

#beforeAfter {
    background: url('../img/area-bg.png') repeat center / cover;
    background-attachment: fixed;
}

.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    background: #252324;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #017bc2;
}

.doctor-box {
    border: 10px solid rgba(189, 229, 249, 0.2);
    box-shadow: 0px 0px 20px 7px rgba(245, 209, 209, 0.2);
}

.doctor-image {
    height: 380px;
    border-bottom-left-radius: 50% 50%;
}

.doctor-details {
    font-size: 18px;
}

.doctor-name {
    color: #1ebef0;
    font-size: 22px;
}

.doctor-description {
    min-height: 80px;
}

#videoCarousel .item-video {
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
/*    border: 10px solid rgba(189, 229, 249, 0.2);*/
    box-shadow: 0px 0px 20px 7px rgba(245, 209, 209, 0.2);
}

footer {
    overflow: hidden;
    background: #1c1c1c;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #fff;
}

.footer-border {
    border-bottom: 1px solid #5d5d5d;
}

#customerSlider .owl-nav {
    position: absolute;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translate(0, -50%);
}

.costcalculator-btn {
    position: fixed;
    font-size: 20px;
    background: #ee0c0c;
    top: 50%;
    right: -72px;
    transform: rotate(-90deg);
    margin-top: -5%;
    z-index: 2;
}

.modal-content, .modal-header, .modal-footer {
    border: none;
}

#costCalculatebtn {
    background: #febd30;
}

.social-media-icons {
    position: fixed;
    z-index: 1;
    width: 60px;
    right: 10px;
    bottom: 50px;
}

.social-media-btn {
    height: 60px;
}

.social-media-btn:not(:last-child) {
    margin-bottom: 10px;
}

.social-media-btn a {
    color: #fff;
    height: 100%;
    width: 100%;
    font-size: 27px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn {
    background: #4dc247;
}

.feedback-section {
    height: 0;
    position: fixed;
    bottom: 0 !important;
    background-color: #dc3545;
    color: #ffffff;
    text-align: center;
    width: 100%;
    left: 0;
    z-index: 9999;
}

.feedback-section span:nth-child(1) {
    line-height: 70px;
    font-size: 17px;
}

.scroll-top {
    width: 25px;
    height: 25px;
    position: fixed;
    bottom: 10px;
    right: 5px;
    z-index: 999;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: none;
    background: #999;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
}

@media only screen and (min-width: 576px) {

}

@media only screen and (min-width: 768px) {
}

@media only screen and (min-width: 992px) {    
    .navbar-nav li a {
        margin: 0 35px;
    }
}

@media only screen and (min-width: 1200px) {
    .banner-image {
        background-position: 20% 100%;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1600px) {

}

@media only screen and (min-width: 1440px) {
    .banner-image {
        height: 600px;
    }
}

@media only screen and (max-width: 1400px) {
    .banner-image {
        height: 500px;
    }
}

@media only screen and (max-width: 1199px) {
    .banner-image {
        height: 600px;
        background-position: bottom center;
        background-size: initial;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

}

@media only screen and (max-width: 991px) {       
    .section-heading {
        font-size: 30px;
    }

    .quote-heading {
        font-size: 20px;
    }

    .quote-question {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-text {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-text {
        font-size: 24px;
    }

    .contact-details {
        order: -1;
        width: 100%;
    }

    .banner-image {
        height: 400px;
        background-position: bottom center;
    }

    .readmore-btn {
        font-size: 18px;
    }

    .doctor-image {
        height: 250px;
    }
    
    .doctor-details {
        font-size: 14px;
    }
    
    #videoCarousel .item-video {
        height: 300px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {

}

@media only screen and (max-width: 575px) {

}

@media only screen and (min-width: 400px) and (max-width: 575px) {

}

@media only screen and (max-width: 360px) {

}