/* ======== variables.css ======== */
/**
 * CSS Custom Properties (Variables)
 * Theme: Sudhanva
 * Purpose: Centralize all color definitions, spacing, typography, and common values
 */

:root {
    /* ========================================
       PRIMARY COLORS
       ======================================== */
    --color-primary: #4f2a14;
    /* Primary brown */
    --color-secondary: #bba88f;
    /* Secondary beige/tan */
    --color-accent: #a76435;
    /* Accent brown */

    /* ========================================
       BACKGROUND COLORS
       ======================================== */
    --bg-primary: #ffffff;
    /* White background */
    --bg-secondary: #fbf1ea;
    /* Light beige background */
    --bg-tertiary: #f4e6dc;
    /* Lighter beige */
    --bg-quaternary: #fbf2ec;
    /* Very light beige */
    --bg-dark: #292828;
    /* Dark footer background */
    --bg-darker: #252323;
    /* Darker footer background */
    --bg-overlay: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    --bg-overlay-light: rgba(0, 0, 0, 0.4);
    /* Light overlay */

    /* ========================================
       TEXT COLORS
       ======================================== */
    --text-primary: #000000;
    /* Black text */
    --text-secondary: #2c2c2c;
    /* Dark gray text */
    --text-tertiary: #3b3b3b;
    /* Medium gray text */
    --text-light: #ffffff;
    /* White text */
    --text-muted: #585858;
    /* Muted gray text */
    --text-accent: #957f70;
    /* Accent text color */

    /* ========================================
       BORDER COLORS
       ======================================== */
    --border-light: #cccccc;
    /* Light border */
    --border-medium: #c6b6ab;
    /* Medium border */
    --border-dark: #000000;
    /* Dark border */

    /* ========================================
       SOCIAL MEDIA COLORS
       ======================================== */
    --color-email: #d44638;
    /* Email/Gmail red */
    --color-facebook: #1877f2;
    /* Facebook blue */
    --color-twitter: #1da1f2;
    /* Twitter blue */
    --color-instagram: #E4405F;
    /* Instagram gradient (simplified) */
    --color-youtube: #FF0000;
    /* YouTube red */

    /* ========================================
       TYPOGRAPHY
       ======================================== */
    /* Font Families */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Baskervville', serif;
    --font-tertiary: 'Montserrat', sans-serif;

    /* Font Sizes */
    --font-size-xs: 13px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-md: 18px;
    --font-size-lg: 26px;
    --font-size-xl: 30px;
    --font-size-2xl: 35px;
    --font-size-3xl: 37px;
    --font-size-4xl: 45px;
    --font-size-5xl: 50px;
    --font-size-6xl: 63px;

    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    --line-height-loose: 2;

    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Letter Spacing */
    --letter-spacing-tight: 0.5px;
    --letter-spacing-normal: 0.8px;
    --letter-spacing-wide: 1px;

    /* ========================================
       SPACING
       ======================================== */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 3rem;
    /* 48px */
    --spacing-xl: 4rem;
    /* 64px */
    --spacing-2xl: 5rem;
    /* 80px */
    --spacing-3xl: 6rem;
    /* 96px */

    /* ========================================
       TRANSITIONS & ANIMATIONS
       ======================================== */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 1s ease;
    --transition-slower: 2s ease;

    /* Animation Durations */
    --animation-duration-fast: 0.3s;
    --animation-duration-normal: 0.6s;
    --animation-duration-slow: 1s;

    /* Animation Timing Functions */
    --animation-ease: ease;
    --animation-ease-in: ease-in;
    --animation-ease-out: ease-out;
    --animation-ease-in-out: ease-in-out;

    /* ========================================
       LAYOUT
       ======================================== */
    --container-max-width: 1200px;
    --header-height: 80px;
    --header-height-scrolled: 60px;

    /* Z-Index Scale */
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;

    /* ========================================
       BORDERS & RADIUS
       ======================================== */
    --border-width-thin: 1px;
    --border-width-medium: 2px;
    --border-width-thick: 3px;

    --border-radius-sm: 3px;
    --border-radius-md: 5px;
    --border-radius-lg: 10px;
    --border-radius-full: 50%;

    /* ========================================
       SHADOWS
       ======================================== */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);

    /* ========================================
       BREAKPOINTS (for reference in media queries)
       Note: CSS variables cannot be used directly in media queries
       These are documented here for consistency
       ======================================== */
    --breakpoint-xs: 480px;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;

    /* ========================================
       BUTTONS
       ======================================== */
    --btn-height: 45px;
    --btn-padding-x: 30px;
    --btn-padding-y: 10px;
    --btn-border-width: 2px;

    /* ========================================
       FORMS
       ======================================== */
    --input-height: 45px;
    --input-padding-x: 15px;
    --input-padding-y: 10px;
    --input-border-color: var(--border-light);
    --input-focus-border-color: var(--color-primary);

    /* ========================================
       SCROLLBAR
       ======================================== */
    --scrollbar-width: 9px;
    --scrollbar-track-bg: #cb987a;
    --scrollbar-thumb-bg: var(--color-primary);
}

/* ========================================
   DARK MODE SUPPORT (Optional - for future use)
   ======================================== */
@media (prefers-color-scheme: dark) {
    :root {
        /* Dark mode variables can be added here if needed */
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    :root {
        /* Adjust colors for print if needed */
        --text-primary: #000000;
        --bg-primary: #ffffff;
    }
}


/* ======== bootstrap.min.css ======== */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

body {
    margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],
template {
    display: none
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    margin: .67em 0;
    font-size: 2em
}

mark {
    color: #000;
    background: #ff0
}

small {
    font-size: 80%
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0
}

input {
    line-height: normal
}

input[type=checkbox],
input[type=radio] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-appearance: textfield
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid silver
}

legend {
    padding: 0;
    border: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-spacing: 0;
    border-collapse: collapse
}

td,
th {
    padding: 0
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {

    *,
    :after,
    :before {
        color: #000 !important;
        text-shadow: none !important;
        background: 0 0 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important
    }

    a,
    a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: ""
    }

    blockquote,
    pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img,
    tr {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    h2,
    h3,
    p {
        orphans: 3;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }

    .navbar {
        display: none
    }

    .btn>.caret,
    .dropup>.btn>.caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td,
    .table th {
        background-color: #fff !important
    }

    .table-bordered td,
    .table-bordered th {
        border: 1px solid #ddd !important
    }
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.glyphicon-asterisk:before {
    content: "\002a"
}

.glyphicon-plus:before {
    content: "\002b"
}

.glyphicon-eur:before,
.glyphicon-euro:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}

.glyphicon-cd:before {
    content: "\e201"
}

.glyphicon-save-file:before {
    content: "\e202"
}

.glyphicon-open-file:before {
    content: "\e203"
}

.glyphicon-level-up:before {
    content: "\e204"
}

.glyphicon-copy:before {
    content: "\e205"
}

.glyphicon-paste:before {
    content: "\e206"
}

.glyphicon-alert:before {
    content: "\e209"
}

.glyphicon-equalizer:before {
    content: "\e210"
}

.glyphicon-king:before {
    content: "\e211"
}

.glyphicon-queen:before {
    content: "\e212"
}

.glyphicon-pawn:before {
    content: "\e213"
}

.glyphicon-bishop:before {
    content: "\e214"
}

.glyphicon-knight:before {
    content: "\e215"
}

.glyphicon-baby-formula:before {
    content: "\e216"
}

.glyphicon-tent:before {
    content: "\26fa"
}

.glyphicon-blackboard:before {
    content: "\e218"
}

.glyphicon-bed:before {
    content: "\e219"
}

.glyphicon-apple:before {
    content: "\f8ff"
}

.glyphicon-erase:before {
    content: "\e221"
}

.glyphicon-hourglass:before {
    content: "\231b"
}

.glyphicon-lamp:before {
    content: "\e223"
}

.glyphicon-duplicate:before {
    content: "\e224"
}

.glyphicon-piggy-bank:before {
    content: "\e225"
}

.glyphicon-scissors:before {
    content: "\e226"
}

.glyphicon-bitcoin:before {
    content: "\e227"
}

.glyphicon-btc:before {
    content: "\e227"
}

.glyphicon-xbt:before {
    content: "\e227"
}

.glyphicon-yen:before {
    content: "\00a5"
}

.glyphicon-jpy:before {
    content: "\00a5"
}

.glyphicon-ruble:before {
    content: "\20bd"
}

.glyphicon-rub:before {
    content: "\20bd"
}

.glyphicon-scale:before {
    content: "\e230"
}

.glyphicon-ice-lolly:before {
    content: "\e231"
}

.glyphicon-ice-lolly-tasted:before {
    content: "\e232"
}

.glyphicon-education:before {
    content: "\e233"
}

.glyphicon-option-horizontal:before {
    content: "\e234"
}

.glyphicon-option-vertical:before {
    content: "\e235"
}

.glyphicon-menu-hamburger:before {
    content: "\e236"
}

.glyphicon-modal-window:before {
    content: "\e237"
}

.glyphicon-oil:before {
    content: "\e238"
}

.glyphicon-grain:before {
    content: "\e239"
}

.glyphicon-sunglasses:before {
    content: "\e240"
}

.glyphicon-text-size:before {
    content: "\e241"
}

.glyphicon-text-color:before {
    content: "\e242"
}

.glyphicon-text-background:before {
    content: "\e243"
}

.glyphicon-object-align-top:before {
    content: "\e244"
}

.glyphicon-object-align-bottom:before {
    content: "\e245"
}

.glyphicon-object-align-horizontal:before {
    content: "\e246"
}

.glyphicon-object-align-left:before {
    content: "\e247"
}

.glyphicon-object-align-vertical:before {
    content: "\e248"
}

.glyphicon-object-align-right:before {
    content: "\e249"
}

.glyphicon-triangle-right:before {
    content: "\e250"
}

.glyphicon-triangle-left:before {
    content: "\e251"
}

.glyphicon-triangle-bottom:before {
    content: "\e252"
}

.glyphicon-triangle-top:before {
    content: "\e253"
}

.glyphicon-console:before {
    content: "\e254"
}

.glyphicon-superscript:before {
    content: "\e255"
}

.glyphicon-subscript:before {
    content: "\e256"
}

.glyphicon-menu-left:before {
    content: "\e257"
}

.glyphicon-menu-right:before {
    content: "\e258"
}

.glyphicon-menu-down:before {
    content: "\e259"
}

.glyphicon-menu-up:before {
    content: "\e260"
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

a {
    color: #337ab7;
    text-decoration: none
}

a:focus,
a:hover {
    color: #23527c;
    text-decoration: underline
}

a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

figure {
    margin: 0
}

img {
    vertical-align: middle
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
    display: block;
    max-width: 100%;
    height: auto
}

.img-rounded {
    border-radius: 6px
}

.img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.img-circle {
    border-radius: 50%
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

[role=button] {
    cursor: pointer
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
    font-weight: 400;
    line-height: 1;
    color: #777
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
    margin-top: 20px;
    margin-bottom: 10px
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small {
    font-size: 65%
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
    margin-top: 10px;
    margin-bottom: 10px
}

.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
    font-size: 75%
}

.h1,
h1 {
    font-size: 36px
}

.h2,
h2 {
    font-size: 30px
}

.h3,
h3 {
    font-size: 24px
}

.h4,
h4 {
    font-size: 18px
}

.h5,
h5 {
    font-size: 14px
}

.h6,
h6 {
    font-size: 12px
}

p {
    margin: 0 0 10px
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4
}

@media (min-width:768px) {
    .lead {
        font-size: 21px
    }
}

.small,
small {
    font-size: 85%
}

.mark,
mark {
    padding: .2em;
    background-color: #fcf8e3
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-muted {
    color: #777
}

.text-primary {
    color: #337ab7
}

a.text-primary:focus,
a.text-primary:hover {
    color: #286090
}

.text-success {
    color: #3c763d
}

a.text-success:focus,
a.text-success:hover {
    color: #2b542c
}

.text-info {
    color: #31708f
}

a.text-info:focus,
a.text-info:hover {
    color: #245269
}

.text-warning {
    color: #8a6d3b
}

a.text-warning:focus,
a.text-warning:hover {
    color: #66512c
}

.text-danger {
    color: #a94442
}

a.text-danger:focus,
a.text-danger:hover {
    color: #843534
}

.bg-primary {
    color: #fff;
    background-color: #337ab7
}

a.bg-primary:focus,
a.bg-primary:hover {
    background-color: #286090
}

.bg-success {
    background-color: #dff0d8
}

a.bg-success:focus,
a.bg-success:hover {
    background-color: #c1e2b3
}

.bg-info {
    background-color: #d9edf7
}

a.bg-info:focus,
a.bg-info:hover {
    background-color: #afd9ee
}

.bg-warning {
    background-color: #fcf8e3
}

a.bg-warning:focus,
a.bg-warning:hover {
    background-color: #f7ecb5
}

.bg-danger {
    background-color: #f2dede
}

a.bg-danger:focus,
a.bg-danger:hover {
    background-color: #e4b9b9
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

ol,
ul {
    margin-top: 0;
    margin-bottom: 10px
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none
}

.list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px
}

dl {
    margin-top: 0;
    margin-bottom: 20px
}

dd,
dt {
    line-height: 1.42857143
}

dt {
    font-weight: 700
}

dd {
    margin-left: 0
}

@media (min-width:768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        overflow: hidden;
        clear: left;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dl-horizontal dd {
        margin-left: 180px
    }
}

abbr[data-original-title],
abbr[title] {
    cursor: help;
    border-bottom: 1px dotted #777
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee
}

blockquote ol:last-child,
blockquote p:last-child,
blockquote ul:last-child {
    margin-bottom: 0
}

blockquote .small,
blockquote footer,
blockquote small {
    display: block;
    font-size: 80%;
    line-height: 1.42857143;
    color: #777
}

blockquote .small:before,
blockquote footer:before,
blockquote small:before {
    content: '\2014 \00A0'
}

.blockquote-reverse,
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    text-align: right;
    border-right: 5px solid #eee;
    border-left: 0
}

.blockquote-reverse .small:before,
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
blockquote.pull-right .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before {
    content: ''
}

.blockquote-reverse .small:after,
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
blockquote.pull-right .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after {
    content: '\00A0 \2014'
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25)
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
    -webkit-box-shadow: none;
    box-shadow: none
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:768px) {
    .container {
        width: 750px
    }
}

@media (min-width:992px) {
    .container {
        width: 970px
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px
    }
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.row {
    margin-right: -15px;
    margin-left: -15px
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    float: left
}

.col-xs-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666667%
}

.col-xs-pull-10 {
    right: 83.33333333%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666667%
}

.col-xs-pull-7 {
    right: 58.33333333%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666667%
}

.col-xs-pull-4 {
    right: 33.33333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.66666667%
}

.col-xs-pull-1 {
    right: 8.33333333%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-push-11 {
    left: 91.66666667%
}

.col-xs-push-10 {
    left: 83.33333333%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-8 {
    left: 66.66666667%
}

.col-xs-push-7 {
    left: 58.33333333%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-5 {
    left: 41.66666667%
}

.col-xs-push-4 {
    left: 33.33333333%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-2 {
    left: 16.66666667%
}

.col-xs-push-1 {
    left: 8.33333333%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-offset-12 {
    margin-left: 100%
}

.col-xs-offset-11 {
    margin-left: 91.66666667%
}

.col-xs-offset-10 {
    margin-left: 83.33333333%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-8 {
    margin-left: 66.66666667%
}

.col-xs-offset-7 {
    margin-left: 58.33333333%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-5 {
    margin-left: 41.66666667%
}

.col-xs-offset-4 {
    margin-left: 33.33333333%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-2 {
    margin-left: 16.66666667%
}

.col-xs-offset-1 {
    margin-left: 8.33333333%
}

.col-xs-offset-0 {
    margin-left: 0
}

@media (min-width:768px) {

    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9 {
        float: left
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }
}

@media (min-width:992px) {

    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9 {
        float: left
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-pull-11 {
        right: 91.66666667%
    }

    .col-md-pull-10 {
        right: 83.33333333%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-8 {
        right: 66.66666667%
    }

    .col-md-pull-7 {
        right: 58.33333333%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-5 {
        right: 41.66666667%
    }

    .col-md-pull-4 {
        right: 33.33333333%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-2 {
        right: 16.66666667%
    }

    .col-md-pull-1 {
        right: 8.33333333%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-push-11 {
        left: 91.66666667%
    }

    .col-md-push-10 {
        left: 83.33333333%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-8 {
        left: 66.66666667%
    }

    .col-md-push-7 {
        left: 58.33333333%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-5 {
        left: 41.66666667%
    }

    .col-md-push-4 {
        left: 33.33333333%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-2 {
        left: 16.66666667%
    }

    .col-md-push-1 {
        left: 8.33333333%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-0 {
        margin-left: 0
    }
}

@media (min-width:1200px) {

    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9 {
        float: left
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-pull-11 {
        right: 91.66666667%
    }

    .col-lg-pull-10 {
        right: 83.33333333%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-8 {
        right: 66.66666667%
    }

    .col-lg-pull-7 {
        right: 58.33333333%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-5 {
        right: 41.66666667%
    }

    .col-lg-pull-4 {
        right: 33.33333333%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-2 {
        right: 16.66666667%
    }

    .col-lg-pull-1 {
        right: 8.33333333%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-push-11 {
        left: 91.66666667%
    }

    .col-lg-push-10 {
        left: 83.33333333%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-8 {
        left: 66.66666667%
    }

    .col-lg-push-7 {
        left: 58.33333333%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-5 {
        left: 41.66666667%
    }

    .col-lg-push-4 {
        left: 33.33333333%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-2 {
        left: 16.66666667%
    }

    .col-lg-push-1 {
        left: 8.33333333%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }
}

table {
    background-color: transparent
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left
}

th {
    text-align: left
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table>caption+thead>tr:first-child>td,
.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>td,
.table>thead:first-child>tr:first-child>th {
    border-top: 0
}

.table>tbody+tbody {
    border-top: 2px solid #ddd
}

.table .table {
    background-color: #fff
}

.table-condensed>tbody>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>thead>tr>th {
    padding: 5px
}

.table-bordered {
    border: 1px solid #ddd
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border: 1px solid #ddd
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border-bottom-width: 2px
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.table-hover>tbody>tr:hover {
    background-color: #f5f5f5
}

table col[class*=col-] {
    position: static;
    display: table-column;
    float: none
}

table td[class*=col-],
table th[class*=col-] {
    position: static;
    display: table-cell;
    float: none
}

.table>tbody>tr.active>td,
.table>tbody>tr.active>th,
.table>tbody>tr>td.active,
.table>tbody>tr>th.active,
.table>tfoot>tr.active>td,
.table>tfoot>tr.active>th,
.table>tfoot>tr>td.active,
.table>tfoot>tr>th.active,
.table>thead>tr.active>td,
.table>thead>tr.active>th,
.table>thead>tr>td.active,
.table>thead>tr>th.active {
    background-color: #f5f5f5
}

.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr.active:hover>th,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover {
    background-color: #e8e8e8
}

.table>tbody>tr.success>td,
.table>tbody>tr.success>th,
.table>tbody>tr>td.success,
.table>tbody>tr>th.success,
.table>tfoot>tr.success>td,
.table>tfoot>tr.success>th,
.table>tfoot>tr>td.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>thead>tr.success>th,
.table>thead>tr>td.success,
.table>thead>tr>th.success {
    background-color: #dff0d8
}

.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr.success:hover>th,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover {
    background-color: #d0e9c6
}

.table>tbody>tr.info>td,
.table>tbody>tr.info>th,
.table>tbody>tr>td.info,
.table>tbody>tr>th.info,
.table>tfoot>tr.info>td,
.table>tfoot>tr.info>th,
.table>tfoot>tr>td.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>thead>tr.info>th,
.table>thead>tr>td.info,
.table>thead>tr>th.info {
    background-color: #d9edf7
}

.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr.info:hover>th,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover {
    background-color: #c4e3f3
}

.table>tbody>tr.warning>td,
.table>tbody>tr.warning>th,
.table>tbody>tr>td.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr.warning>td,
.table>tfoot>tr.warning>th,
.table>tfoot>tr>td.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>thead>tr.warning>th,
.table>thead>tr>td.warning,
.table>thead>tr>th.warning {
    background-color: #fcf8e3
}

.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr.warning:hover>th,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover {
    background-color: #faf2cc
}

.table>tbody>tr.danger>td,
.table>tbody>tr.danger>th,
.table>tbody>tr>td.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr.danger>td,
.table>tfoot>tr.danger>th,
.table>tfoot>tr>td.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>thead>tr.danger>th,
.table>thead>tr>td.danger,
.table>thead>tr>th.danger {
    background-color: #f2dede
}

.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr.danger:hover>th,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover {
    background-color: #ebcccc
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto
}

@media screen and (max-width:767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }

    .table-responsive>.table {
        margin-bottom: 0
    }

    .table-responsive>.table>tbody>tr>td,
    .table-responsive>.table>tbody>tr>th,
    .table-responsive>.table>tfoot>tr>td,
    .table-responsive>.table>tfoot>tr>th,
    .table-responsive>.table>thead>tr>td,
    .table-responsive>.table>thead>tr>th {
        white-space: nowrap
    }

    .table-responsive>.table-bordered {
        border: 0
    }

    .table-responsive>.table-bordered>tbody>tr>td:first-child,
    .table-responsive>.table-bordered>tbody>tr>th:first-child,
    .table-responsive>.table-bordered>tfoot>tr>td:first-child,
    .table-responsive>.table-bordered>tfoot>tr>th:first-child,
    .table-responsive>.table-bordered>thead>tr>td:first-child,
    .table-responsive>.table-bordered>thead>tr>th:first-child {
        border-left: 0
    }

    .table-responsive>.table-bordered>tbody>tr>td:last-child,
    .table-responsive>.table-bordered>tbody>tr>th:last-child,
    .table-responsive>.table-bordered>tfoot>tr>td:last-child,
    .table-responsive>.table-bordered>tfoot>tr>th:last-child,
    .table-responsive>.table-bordered>thead>tr>td:last-child,
    .table-responsive>.table-bordered>thead>tr>th:last-child {
        border-right: 0
    }

    .table-responsive>.table-bordered>tbody>tr:last-child>td,
    .table-responsive>.table-bordered>tbody>tr:last-child>th,
    .table-responsive>.table-bordered>tfoot>tr:last-child>td,
    .table-responsive>.table-bordered>tfoot>tr:last-child>th {
        border-bottom: 0
    }
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700
}

input[type=search] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

input[type=checkbox],
input[type=radio] {
    margin: 4px 0 0;
    margin-top: 1px\9;
    line-height: normal
}

input[type=file] {
    display: block
}

input[type=range] {
    display: block;
    width: 100%
}

select[multiple],
select[size] {
    height: auto
}

input[type=file]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1
}

.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed
}

textarea.form-control {
    height: auto
}

input[type=search] {
    -webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

    input[type=date].form-control,
    input[type=time].form-control,
    input[type=datetime-local].form-control,
    input[type=month].form-control {
        line-height: 34px
    }

    .input-group-sm input[type=date],
    .input-group-sm input[type=time],
    .input-group-sm input[type=datetime-local],
    .input-group-sm input[type=month],
    input[type=date].input-sm,
    input[type=time].input-sm,
    input[type=datetime-local].input-sm,
    input[type=month].input-sm {
        line-height: 30px
    }

    .input-group-lg input[type=date],
    .input-group-lg input[type=time],
    .input-group-lg input[type=datetime-local],
    .input-group-lg input[type=month],
    input[type=date].input-lg,
    input[type=time].input-lg,
    input[type=datetime-local].input-lg,
    input[type=month].input-lg {
        line-height: 46px
    }
}

.form-group {
    margin-bottom: 15px
}

.checkbox,
.radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.checkbox label,
.radio label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
    position: absolute;
    margin-top: 4px\9;
    margin-left: -20px
}

.checkbox+.checkbox,
.radio+.radio {
    margin-top: -5px
}

.checkbox-inline,
.radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer
}

.checkbox-inline+.checkbox-inline,
.radio-inline+.radio-inline {
    margin-top: 0;
    margin-left: 10px
}

fieldset[disabled] input[type=checkbox],
fieldset[disabled] input[type=radio],
input[type=checkbox].disabled,
input[type=checkbox][disabled],
input[type=radio].disabled,
input[type=radio][disabled] {
    cursor: not-allowed
}

.checkbox-inline.disabled,
.radio-inline.disabled,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .radio-inline {
    cursor: not-allowed
}

.checkbox.disabled label,
.radio.disabled label,
fieldset[disabled] .checkbox label,
fieldset[disabled] .radio label {
    cursor: not-allowed
}

.form-control-static {
    min-height: 34px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0
}

.form-control-static.input-lg,
.form-control-static.input-sm {
    padding-right: 0;
    padding-left: 0
}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-sm {
    height: 30px;
    line-height: 30px
}

select[multiple].input-sm,
textarea.input-sm {
    height: auto
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px
}

.form-group-sm select[multiple].form-control,
.form-group-sm textarea.form-control {
    height: auto
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-lg {
    height: 46px;
    line-height: 46px
}

select[multiple].input-lg,
textarea.input-lg {
    height: auto
}

.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px
}

.form-group-lg select[multiple].form-control,
.form-group-lg textarea.form-control {
    height: auto
}

.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.has-feedback {
    position: relative
}

.has-feedback .form-control {
    padding-right: 42.5px
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none
}

.form-group-lg .form-control+.form-control-feedback,
.input-group-lg+.form-control-feedback,
.input-lg+.form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px
}

.form-group-sm .form-control+.form-control-feedback,
.input-group-sm+.form-control-feedback,
.input-sm+.form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .control-label,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.checkbox label,
.has-success.checkbox-inline label,
.has-success.radio label,
.has-success.radio-inline label {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d
}

.has-success .form-control-feedback {
    color: #3c763d
}

.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning .control-label,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.checkbox label,
.has-warning.checkbox-inline label,
.has-warning.radio label,
.has-warning.radio-inline label {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #8a6d3b
}

.has-warning .form-control-feedback {
    color: #8a6d3b
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: #a94442
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-feedback label~.form-control-feedback {
    top: 25px
}

.has-feedback label.sr-only~.form-control-feedback {
    top: 0
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373
}

@media (min-width:768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-static {
        display: inline-block
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .form-inline .input-group .form-control,
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn {
        width: auto
    }

    .form-inline .input-group>.form-control {
        width: 100%
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .checkbox,
    .form-inline .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .checkbox label,
    .form-inline .radio label {
        padding-left: 0
    }

    .form-inline .checkbox input[type=checkbox],
    .form-inline .radio input[type=radio] {
        position: relative;
        margin-left: 0
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0
    }
}

.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .radio,
.form-horizontal .radio-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0
}

.form-horizontal .checkbox,
.form-horizontal .radio {
    min-height: 27px
}

.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width:768px) {
    .form-horizontal .control-label {
        padding-top: 7px;
        margin-bottom: 0;
        text-align: right
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px
}

@media (min-width:768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 18px
    }
}

@media (min-width:768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px
    }
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.btn.focus,
.btn:focus,
.btn:hover {
    color: #333;
    text-decoration: none
}

.btn.active,
.btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default.focus,
.btn-default:focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default.active,
.btn-default:active,
.open>.dropdown-toggle.btn-default {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.dropdown-toggle.btn-default.focus,
.open>.dropdown-toggle.btn-default:focus,
.open>.dropdown-toggle.btn-default:hover {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c
}

.btn-default.active,
.btn-default:active,
.open>.dropdown-toggle.btn-default {
    background-image: none
}

.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
    background-color: #fff;
    border-color: #ccc
}

.btn-default .badge {
    color: #fff;
    background-color: #333
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4
}

.btn-primary.focus,
.btn-primary:focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40
}

.btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.btn-primary.active,
.btn-primary:active,
.open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover {
    color: #fff;
    background-color: #204d74;
    border-color: #122b40
}

.btn-primary.active,
.btn-primary:active,
.open>.dropdown-toggle.btn-primary {
    background-image: none
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
    background-color: #337ab7;
    border-color: #2e6da4
}

.btn-primary .badge {
    color: #337ab7;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success.focus,
.btn-success:focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success.active,
.btn-success:active,
.open>.dropdown-toggle.btn-success {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success:active.focus,
.btn-success:active:focus,
.btn-success:active:hover,
.open>.dropdown-toggle.btn-success.focus,
.open>.dropdown-toggle.btn-success:focus,
.open>.dropdown-toggle.btn-success:hover {
    color: #fff;
    background-color: #398439;
    border-color: #255625
}

.btn-success.active,
.btn-success:active,
.open>.dropdown-toggle.btn-success {
    background-image: none
}

.btn-success.disabled.focus,
.btn-success.disabled:focus,
.btn-success.disabled:hover,
.btn-success[disabled].focus,
.btn-success[disabled]:focus,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success:hover {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info.focus,
.btn-info:focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85
}

.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info.active,
.btn-info:active,
.open>.dropdown-toggle.btn-info {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info.active.focus,
.btn-info.active:focus,
.btn-info.active:hover,
.btn-info:active.focus,
.btn-info:active:focus,
.btn-info:active:hover,
.open>.dropdown-toggle.btn-info.focus,
.open>.dropdown-toggle.btn-info:focus,
.open>.dropdown-toggle.btn-info:hover {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85
}

.btn-info.active,
.btn-info:active,
.open>.dropdown-toggle.btn-info {
    background-image: none
}

.btn-info.disabled.focus,
.btn-info.disabled:focus,
.btn-info.disabled:hover,
.btn-info[disabled].focus,
.btn-info[disabled]:focus,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info:hover {
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning.focus,
.btn-warning:focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning.active,
.btn-warning:active,
.open>.dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning.active.focus,
.btn-warning.active:focus,
.btn-warning.active:hover,
.btn-warning:active.focus,
.btn-warning:active:focus,
.btn-warning:active:hover,
.open>.dropdown-toggle.btn-warning.focus,
.open>.dropdown-toggle.btn-warning:focus,
.open>.dropdown-toggle.btn-warning:hover {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d
}

.btn-warning.active,
.btn-warning:active,
.open>.dropdown-toggle.btn-warning {
    background-image: none
}

.btn-warning.disabled.focus,
.btn-warning.disabled:focus,
.btn-warning.disabled:hover,
.btn-warning[disabled].focus,
.btn-warning[disabled]:focus,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning:hover {
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger.focus,
.btn-danger:focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger.active,
.btn-danger:active,
.open>.dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger.active.focus,
.btn-danger.active:focus,
.btn-danger.active:hover,
.btn-danger:active.focus,
.btn-danger:active:focus,
.btn-danger:active:hover,
.open>.dropdown-toggle.btn-danger.focus,
.open>.dropdown-toggle.btn-danger:focus,
.open>.dropdown-toggle.btn-danger:hover {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19
}

.btn-danger.active,
.btn-danger:active,
.open>.dropdown-toggle.btn-danger {
    background-image: none
}

.btn-danger.disabled.focus,
.btn-danger.disabled:focus,
.btn-danger.disabled:hover,
.btn-danger[disabled].focus,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger:hover {
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff
}

.btn-link {
    font-weight: 400;
    color: #337ab7;
    border-radius: 0
}

.btn-link,
.btn-link.active,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-link,
.btn-link:active,
.btn-link:focus,
.btn-link:hover {
    border-color: transparent
}

.btn-link:focus,
.btn-link:hover {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent
}

.btn-link[disabled]:focus,
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:focus,
fieldset[disabled] .btn-link:hover {
    color: #777;
    text-decoration: none
}

.btn-group-lg>.btn,
.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.btn-group-sm>.btn,
.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-group-xs>.btn,
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block+.btn-block {
    margin-top: 5px
}

input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropdown,
.dropup {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #337ab7;
    outline: 0
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
    color: #777
}

.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}

.open>.dropdown-menu {
    display: block
}

.open>a {
    outline: 0
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

.dropdown-menu-left {
    right: auto;
    left: 0
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990
}

.pull-right>.dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid\9
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media (min-width:768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0
    }
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    position: relative;
    float: left
}

.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
    z-index: 2
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
    float: left
}

.btn-toolbar>.btn,
.btn-toolbar>.btn-group,
.btn-toolbar>.input-group {
    margin-left: 5px
}

.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group>.btn:first-child {
    margin-left: 0
}

.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group>.btn-group {
    float: left
}

.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group>.btn+.dropdown-toggle {
    padding-right: 8px;
    padding-left: 8px
}

.btn-group>.btn-lg+.dropdown-toggle {
    padding-right: 12px;
    padding-left: 12px
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group,
.btn-group-vertical>.btn-group>.btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical>.btn-group>.btn {
    float: none
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical>.btn:first-child:not(:last-child) {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn:last-child:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified>.btn,
.btn-group-justified>.btn-group {
    display: table-cell;
    float: none;
    width: 1%
}

.btn-group-justified>.btn-group .btn {
    width: 100%
}

.btn-group-justified>.btn-group .dropdown-menu {
    left: auto
}

[data-toggle=buttons]>.btn input[type=checkbox],
[data-toggle=buttons]>.btn input[type=radio],
[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],
[data-toggle=buttons]>.btn-group>.btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*=col-] {
    float: none;
    padding-right: 0;
    padding-left: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group .form-control:focus {
    z-index: 3
}

.input-group-lg>.form-control,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-group-lg>.form-control,
select.input-group-lg>.input-group-addon,
select.input-group-lg>.input-group-btn>.btn {
    height: 46px;
    line-height: 46px
}

select[multiple].input-group-lg>.form-control,
select[multiple].input-group-lg>.input-group-addon,
select[multiple].input-group-lg>.input-group-btn>.btn,
textarea.input-group-lg>.form-control,
textarea.input-group-lg>.input-group-addon,
textarea.input-group-lg>.input-group-btn>.btn {
    height: auto
}

.input-group-sm>.form-control,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-group-sm>.form-control,
select.input-group-sm>.input-group-addon,
select.input-group-sm>.input-group-btn>.btn {
    height: 30px;
    line-height: 30px
}

select[multiple].input-group-sm>.form-control,
select[multiple].input-group-sm>.input-group-addon,
select[multiple].input-group-sm>.input-group-btn>.btn,
textarea.input-group-sm>.form-control,
textarea.input-group-sm>.input-group-addon,
textarea.input-group-sm>.input-group-btn>.btn {
    height: auto
}

.input-group .form-control,
.input-group-addon,
.input-group-btn {
    display: table-cell
}

.input-group .form-control:not(:first-child):not(:last-child),
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px
}

.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px
}

.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px
}

.input-group-addon input[type=checkbox],
.input-group-addon input[type=radio] {
    margin-top: 0
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group>.btn,
.input-group-btn:first-child>.dropdown-toggle,
.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,
.input-group-btn:first-child>.btn:not(:first-child),
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group>.btn,
.input-group-btn:last-child>.dropdown-toggle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn>.btn {
    position: relative
}

.input-group-btn>.btn+.btn {
    margin-left: -1px
}

.input-group-btn>.btn:active,
.input-group-btn>.btn:focus,
.input-group-btn>.btn:hover {
    z-index: 2
}

.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group {
    margin-right: -1px
}

.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group {
    z-index: 2;
    margin-left: -1px
}

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav>li {
    position: relative;
    display: block
}

.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.nav>li>a:focus,
.nav>li>a:hover {
    text-decoration: none;
    background-color: #eee
}

.nav>li.disabled>a {
    color: #777
}

.nav>li.disabled>a:focus,
.nav>li.disabled>a:hover {
    color: #777;
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    background-color: #eee;
    border-color: #337ab7
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav>li>a>img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs>li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.nav-tabs>li>a:hover {
    border-color: #eee #eee #ddd
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0
}

.nav-tabs.nav-justified>li {
    float: none
}

.nav-tabs.nav-justified>li>a {
    margin-bottom: 5px;
    text-align: center
}

.nav-tabs.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width:768px) {
    .nav-tabs.nav-justified>li {
        display: table-cell;
        width: 1%
    }

    .nav-tabs.nav-justified>li>a {
        margin-bottom: 0
    }
}

.nav-tabs.nav-justified>li>a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:focus,
.nav-tabs.nav-justified>.active>a:hover {
    border: 1px solid #ddd
}

@media (min-width:768px) {
    .nav-tabs.nav-justified>li>a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs.nav-justified>.active>a,
    .nav-tabs.nav-justified>.active>a:focus,
    .nav-tabs.nav-justified>.active>a:hover {
        border-bottom-color: #fff
    }
}

.nav-pills>li {
    float: left
}

.nav-pills>li>a {
    border-radius: 4px
}

.nav-pills>li+li {
    margin-left: 2px
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
    color: #fff;
    background-color: #337ab7
}

.nav-stacked>li {
    float: none
}

.nav-stacked>li+li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified {
    width: 100%
}

.nav-justified>li {
    float: none
}

.nav-justified>li>a {
    margin-bottom: 5px;
    text-align: center
}

.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width:768px) {
    .nav-justified>li {
        display: table-cell;
        width: 1%
    }

    .nav-justified>li>a {
        margin-bottom: 0
    }
}

.nav-tabs-justified {
    border-bottom: 0
}

.nav-tabs-justified>li>a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:focus,
.nav-tabs-justified>.active>a:hover {
    border: 1px solid #ddd
}

@media (min-width:768px) {
    .nav-tabs-justified>li>a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs-justified>.active>a,
    .nav-tabs-justified>.active>a:focus,
    .nav-tabs-justified>.active>a:hover {
        border-bottom-color: #fff
    }
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent
}

@media (min-width:768px) {
    .navbar {
        border-radius: 4px
    }
}

@media (min-width:768px) {
    .navbar-header {
        float: left
    }
}

.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1)
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (min-width:768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important
    }

    .navbar-collapse.in {
        overflow-y: visible
    }

    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse {
        padding-right: 0;
        padding-left: 0
    }
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
    max-height: 340px
}

@media (max-device-width:480px) and (orientation:landscape) {

    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse {
        max-height: 200px
    }
}

.container-fluid>.navbar-collapse,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container>.navbar-header {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width:768px) {

    .container-fluid>.navbar-collapse,
    .container-fluid>.navbar-header,
    .container>.navbar-collapse,
    .container>.navbar-header {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width:768px) {
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-fixed-bottom,
.navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

@media (min-width:768px) {

    .navbar-fixed-bottom,
    .navbar-fixed-top {
        border-radius: 0
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none
}

.navbar-brand>img {
    display: block
}

@media (min-width:768px) {

    .navbar>.container .navbar-brand,
    .navbar>.container-fluid .navbar-brand {
        margin-left: -15px
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.navbar-toggle:focus {
    outline: 0
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px
}

@media (min-width:768px) {
    .navbar-toggle {
        display: none
    }
}

.navbar-nav {
    margin: 7.5px -15px
}

.navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px
}

@media (max-width:767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu>li>a {
        padding: 5px 15px 5px 25px
    }

    .navbar-nav .open .dropdown-menu>li>a {
        line-height: 20px
    }

    .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-nav .open .dropdown-menu>li>a:hover {
        background-image: none
    }
}

@media (min-width:768px) {
    .navbar-nav {
        float: left;
        margin: 0
    }

    .navbar-nav>li {
        float: left
    }

    .navbar-nav>li>a {
        padding-top: 15px;
        padding-bottom: 15px
    }
}

.navbar-form {
    padding: 10px 15px;
    margin-top: 8px;
    margin-right: -15px;
    margin-bottom: 8px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1)
}

@media (min-width:768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .navbar-form .form-control-static {
        display: inline-block
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .navbar-form .input-group .form-control,
    .navbar-form .input-group .input-group-addon,
    .navbar-form .input-group .input-group-btn {
        width: auto
    }

    .navbar-form .input-group>.form-control {
        width: 100%
    }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .checkbox,
    .navbar-form .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .checkbox label,
    .navbar-form .radio label {
        padding-left: 0
    }

    .navbar-form .checkbox input[type=checkbox],
    .navbar-form .radio input[type=radio] {
        position: relative;
        margin-left: 0
    }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
}

@media (max-width:767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }

    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

@media (min-width:768px) {
    .navbar-form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.navbar-nav>li>.dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
    margin-bottom: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px
}

.navbar-btn.btn-sm {
    margin-top: 10px;
    margin-bottom: 10px
}

.navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px
}

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px
}

@media (min-width:768px) {
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px
    }
}

@media (min-width:768px) {
    .navbar-left {
        float: left !important
    }

    .navbar-right {
        float: right !important;
        margin-right: -15px
    }

    .navbar-right~.navbar-right {
        margin-right: 0
    }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7
}

.navbar-default .navbar-brand {
    color: #777
}

.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
    color: #5e5e5e;
    background-color: transparent
}

.navbar-default .navbar-text {
    color: #777
}

.navbar-default .navbar-nav>li>a {
    color: #777
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    color: #333;
    background-color: transparent
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    color: #555;
    background-color: #e7e7e7
}

.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:focus,
.navbar-default .navbar-nav>.disabled>a:hover {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #ddd
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: #ddd
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e7e7e7
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    color: #555;
    background-color: #e7e7e7
}

@media (max-width:767px) {
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #777
    }

    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #333;
        background-color: transparent
    }

    .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
        color: #555;
        background-color: #e7e7e7
    }

    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover {
        color: #ccc;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #777
}

.navbar-default .navbar-link:hover {
    color: #333
}

.navbar-default .btn-link {
    color: #777
}

.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover {
    color: #333
}

.navbar-default .btn-link[disabled]:focus,
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:focus,
fieldset[disabled] .navbar-default .btn-link:hover {
    color: #ccc
}

.navbar-inverse {
    background-color: #222;
    border-color: #080808
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d
}

.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-text {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav>li>a {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav>li>a:focus,
.navbar-inverse .navbar-nav>li>a:hover {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus,
.navbar-inverse .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: #080808
}

.navbar-inverse .navbar-nav>.disabled>a,
.navbar-inverse .navbar-nav>.disabled>a:focus,
.navbar-inverse .navbar-nav>.disabled>a:hover {
    color: #444;
    background-color: transparent
}

.navbar-inverse .navbar-toggle {
    border-color: #333
}

.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
    background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:focus,
.navbar-inverse .navbar-nav>.open>a:hover {
    color: #fff;
    background-color: #080808
}

@media (max-width:767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
        border-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #9d9d9d
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #fff;
        background-color: transparent
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover {
        color: #fff;
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover {
        color: #444;
        background-color: transparent
    }
}

.navbar-inverse .navbar-link {
    color: #9d9d9d
}

.navbar-inverse .navbar-link:hover {
    color: #fff
}

.navbar-inverse .btn-link {
    color: #9d9d9d
}

.navbar-inverse .btn-link:focus,
.navbar-inverse .btn-link:hover {
    color: #fff
}

.navbar-inverse .btn-link[disabled]:focus,
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover {
    color: #444
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px
}

.breadcrumb>li {
    display: inline-block
}

.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0"
}

.breadcrumb>.active {
    color: #777
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.pagination>li {
    display: inline
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd
}

.pagination-lg>li>a,
.pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.pagination-sm>li>a,
.pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none
}

.pager li {
    display: inline
}

.pager li>a,
.pager li>span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px
}

.pager li>a:focus,
.pager li>a:hover {
    text-decoration: none;
    background-color: #eee
}

.pager .next>a,
.pager .next>span {
    float: right
}

.pager .previous>a,
.pager .previous>span {
    float: left
}

.pager .disabled>a,
.pager .disabled>a:focus,
.pager .disabled>a:hover,
.pager .disabled>span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em
}

a.label:focus,
a.label:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

.label-default {
    background-color: #777
}

.label-default[href]:focus,
.label-default[href]:hover {
    background-color: #5e5e5e
}

.label-primary {
    background-color: #337ab7
}

.label-primary[href]:focus,
.label-primary[href]:hover {
    background-color: #286090
}

.label-success {
    background-color: #5cb85c
}

.label-success[href]:focus,
.label-success[href]:hover {
    background-color: #449d44
}

.label-info {
    background-color: #5bc0de
}

.label-info[href]:focus,
.label-info[href]:hover {
    background-color: #31b0d5
}

.label-warning {
    background-color: #f0ad4e
}

.label-warning[href]:focus,
.label-warning[href]:hover {
    background-color: #ec971f
}

.label-danger {
    background-color: #d9534f
}

.label-danger[href]:focus,
.label-danger[href]:hover {
    background-color: #c9302c
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777;
    border-radius: 10px
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.btn-group-xs>.btn .badge,
.btn-xs .badge {
    top: 0;
    padding: 1px 5px
}

a.badge:focus,
a.badge:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.list-group-item.active>.badge,
.nav-pills>.active>a>.badge {
    color: #337ab7;
    background-color: #fff
}

.list-group-item>.badge {
    float: right
}

.list-group-item>.badge+.badge {
    margin-right: 5px
}

.nav-pills>li>a>.badge {
    margin-left: 3px
}

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee
}

.jumbotron .h1,
.jumbotron h1 {
    color: inherit
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200
}

.jumbotron>hr {
    border-top-color: #d5d5d5
}

.container .jumbotron,
.container-fluid .jumbotron {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 6px
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width:768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .container .jumbotron,
    .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px
    }

    .jumbotron .h1,
    .jumbotron h1 {
        font-size: 63px
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out
}

.thumbnail a>img,
.thumbnail>img {
    margin-right: auto;
    margin-left: auto
}

a.thumbnail.active,
a.thumbnail:focus,
a.thumbnail:hover {
    border-color: #337ab7
}

.thumbnail .caption {
    padding: 9px;
    color: #333
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px
}

.alert h4 {
    margin-top: 0;
    color: inherit
}

.alert .alert-link {
    font-weight: 700
}

.alert>p,
.alert>ul {
    margin-bottom: 0
}

.alert>p+p {
    margin-top: 5px
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #2b542c
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #245269
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #66512c
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.alert-danger hr {
    border-top-color: #e4b9c0
}

.alert-danger .alert-link {
    color: #843534
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease
}

.progress-bar-striped,
.progress-striped .progress-bar {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px
}

.progress-bar.active,
.progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite
}

.progress-bar-success {
    background-color: #5cb85c
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-info {
    background-color: #5bc0de
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-warning {
    background-color: #f0ad4e
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-danger {
    background-color: #d9534f
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.media {
    margin-top: 15px
}

.media:first-child {
    margin-top: 0
}

.media,
.media-body {
    overflow: hidden;
    zoom: 1
}

.media-body {
    width: 10000px
}

.media-object {
    display: block
}

.media-object.img-thumbnail {
    max-width: none
}

.media-right,
.media>.pull-right {
    padding-left: 10px
}

.media-left,
.media>.pull-left {
    padding-right: 10px
}

.media-body,
.media-left,
.media-right {
    display: table-cell;
    vertical-align: top
}

.media-middle {
    vertical-align: middle
}

.media-bottom {
    vertical-align: bottom
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    padding-left: 0;
    margin-bottom: 20px
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd
}

.list-group-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

a.list-group-item,
button.list-group-item {
    color: #555
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
    color: #333
}

a.list-group-item:focus,
a.list-group-item:hover,
button.list-group-item:focus,
button.list-group-item:hover {
    color: #555;
    text-decoration: none;
    background-color: #f5f5f5
}

button.list-group-item {
    width: 100%;
    text-align: left
}

.list-group-item.disabled,
.list-group-item.disabled:focus,
.list-group-item.disabled:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #eee
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading {
    color: inherit
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text {
    color: #777
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading>.small,
.list-group-item.active .list-group-item-heading>small,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading>.small,
.list-group-item.active:focus .list-group-item-heading>small,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading>.small,
.list-group-item.active:hover .list-group-item-heading>small {
    color: inherit
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:focus .list-group-item-text,
.list-group-item.active:hover .list-group-item-text {
    color: #c7ddef
}

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8
}

a.list-group-item-success,
button.list-group-item-success {
    color: #3c763d
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
    color: inherit
}

a.list-group-item-success:focus,
a.list-group-item-success:hover,
button.list-group-item-success:focus,
button.list-group-item-success:hover {
    color: #3c763d;
    background-color: #d0e9c6
}

a.list-group-item-success.active,
a.list-group-item-success.active:focus,
a.list-group-item-success.active:hover,
button.list-group-item-success.active,
button.list-group-item-success.active:focus,
button.list-group-item-success.active:hover {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7
}

a.list-group-item-info,
button.list-group-item-info {
    color: #31708f
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
    color: inherit
}

a.list-group-item-info:focus,
a.list-group-item-info:hover,
button.list-group-item-info:focus,
button.list-group-item-info:hover {
    color: #31708f;
    background-color: #c4e3f3
}

a.list-group-item-info.active,
a.list-group-item-info.active:focus,
a.list-group-item-info.active:hover,
button.list-group-item-info.active,
button.list-group-item-info.active:focus,
button.list-group-item-info.active:hover {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f
}

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3
}

a.list-group-item-warning,
button.list-group-item-warning {
    color: #8a6d3b
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
    color: inherit
}

a.list-group-item-warning:focus,
a.list-group-item-warning:hover,
button.list-group-item-warning:focus,
button.list-group-item-warning:hover {
    color: #8a6d3b;
    background-color: #faf2cc
}

a.list-group-item-warning.active,
a.list-group-item-warning.active:focus,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active,
button.list-group-item-warning.active:focus,
button.list-group-item-warning.active:hover {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b
}

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede
}

a.list-group-item-danger,
button.list-group-item-danger {
    color: #a94442
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
    color: inherit
}

a.list-group-item-danger:focus,
a.list-group-item-danger:hover,
button.list-group-item-danger:focus,
button.list-group-item-danger:hover {
    color: #a94442;
    background-color: #ebcccc
}

a.list-group-item-danger.active,
a.list-group-item-danger.active:focus,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active,
button.list-group-item-danger.active:focus,
button.list-group-item-danger.active:hover {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05)
}

.panel-body {
    padding: 15px
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel-heading>.dropdown .dropdown-toggle {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.panel-title>.small,
.panel-title>.small>a,
.panel-title>a,
.panel-title>small,
.panel-title>small>a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.list-group,
.panel>.panel-collapse>.list-group {
    margin-bottom: 0
}

.panel>.list-group .list-group-item,
.panel>.panel-collapse>.list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel>.list-group:first-child .list-group-item:first-child,
.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel>.list-group:last-child .list-group-item:last-child,
.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.panel-heading+.list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group+.panel-footer {
    border-top-width: 0
}

.panel>.panel-collapse>.table,
.panel>.table,
.panel>.table-responsive>.table {
    margin-bottom: 0
}

.panel>.panel-collapse>.table caption,
.panel>.table caption,
.panel>.table-responsive>.table caption {
    padding-right: 15px;
    padding-left: 15px
}

.panel>.table-responsive:first-child>.table:first-child,
.panel>.table:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:first-child {
    border-top-left-radius: 3px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child,
.panel>.table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.panel>.panel-body+.table,
.panel>.panel-body+.table-responsive,
.panel>.table+.panel-body,
.panel>.table-responsive+.panel-body {
    border-top: 1px solid #ddd
}

.panel>.table>tbody:first-child>tr:first-child td,
.panel>.table>tbody:first-child>tr:first-child th {
    border-top: 0
}

.panel>.table-bordered,
.panel>.table-responsive>.table-bordered {
    border: 0
}

.panel>.table-bordered>tbody>tr>td:first-child,
.panel>.table-bordered>tbody>tr>th:first-child,
.panel>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-bordered>thead>tr>td:first-child,
.panel>.table-bordered>thead>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:first-child {
    border-left: 0
}

.panel>.table-bordered>tbody>tr>td:last-child,
.panel>.table-bordered>tbody>tr>th:last-child,
.panel>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-bordered>thead>tr>td:last-child,
.panel>.table-bordered>thead>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:last-child {
    border-right: 0
}

.panel>.table-bordered>tbody>tr:first-child>td,
.panel>.table-bordered>tbody>tr:first-child>th,
.panel>.table-bordered>thead>tr:first-child>td,
.panel>.table-bordered>thead>tr:first-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>th {
    border-bottom: 0
}

.panel>.table-bordered>tbody>tr:last-child>td,
.panel>.table-bordered>tbody>tr:last-child>th,
.panel>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-bordered>tfoot>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
    border-bottom: 0
}

.panel>.table-responsive {
    margin-bottom: 0;
    border: 0
}

.panel-group {
    margin-bottom: 20px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.panel-group .panel+.panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-heading+.panel-collapse>.list-group,
.panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 1px solid #ddd
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer+.panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.panel-default {
    border-color: #ddd
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ddd
}

.panel-default>.panel-heading .badge {
    color: #f5f5f5;
    background-color: #333
}

.panel-default>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #337ab7
}

.panel-primary>.panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #337ab7
}

.panel-primary>.panel-heading .badge {
    color: #337ab7;
    background-color: #fff
}

.panel-primary>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #337ab7
}

.panel-success {
    border-color: #d6e9c6
}

.panel-success>.panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.panel-success>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #d6e9c6
}

.panel-success>.panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.panel-success>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #d6e9c6
}

.panel-info {
    border-color: #bce8f1
}

.panel-info>.panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.panel-info>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #bce8f1
}

.panel-info>.panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.panel-info>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #bce8f1
}

.panel-warning {
    border-color: #faebcc
}

.panel-warning>.panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.panel-warning>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #faebcc
}

.panel-warning>.panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.panel-warning>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #faebcc
}

.panel-danger {
    border-color: #ebccd1
}

.panel-danger>.panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.panel-danger>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ebccd1
}

.panel-danger>.panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ebccd1
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive-4by3 {
    padding-bottom: 75%
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05)
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, .15)
}

.well-lg {
    padding: 24px;
    border-radius: 6px
}

.well-sm {
    padding: 9px;
    border-radius: 3px
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2
}

.close:focus,
.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0
}

.modal-open {
    overflow: hidden
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%)
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
    margin-bottom: 0;
    margin-left: 5px
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg {
        width: 900px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    filter: alpha(opacity=0);
    opacity: 0;
    line-break: auto
}

.tooltip.in {
    filter: alpha(opacity=90);
    opacity: .9
}

.tooltip.top {
    padding: 5px 0;
    margin-top: -3px
}

.tooltip.right {
    padding: 0 5px;
    margin-left: 3px
}

.tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px
}

.tooltip.left {
    padding: 0 5px;
    margin-left: -3px
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    line-break: auto
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover>.arrow,
.popover>.arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover>.arrow {
    border-width: 11px
}

.popover>.arrow:after {
    content: "";
    border-width: 10px
}

.popover.top>.arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    border-bottom-width: 0
}

.popover.top>.arrow:after {
    bottom: 1px;
    margin-left: -10px;
    content: " ";
    border-top-color: #fff;
    border-bottom-width: 0
}

.popover.right>.arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, .25);
    border-left-width: 0
}

.popover.right>.arrow:after {
    bottom: -10px;
    left: 1px;
    content: " ";
    border-right-color: #fff;
    border-left-width: 0
}

.popover.bottom>.arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25)
}

.popover.bottom>.arrow:after {
    top: 1px;
    margin-left: -10px;
    content: " ";
    border-top-width: 0;
    border-bottom-color: #fff
}

.popover.left>.arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25)
}

.popover.left>.arrow:after {
    right: 1px;
    bottom: -10px;
    content: " ";
    border-right-width: 0;
    border-left-color: #fff
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-inner>.item {
    position: relative;
    display: none;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    line-height: 1
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .carousel-inner>.item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px
    }

    .carousel-inner>.item.active.right,
    .carousel-inner>.item.next {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    .carousel-inner>.item.active.left,
    .carousel-inner>.item.prev {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    .carousel-inner>.item.active,
    .carousel-inner>.item.next.left,
    .carousel-inner>.item.prev.right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
    display: block
}

.carousel-inner>.active {
    left: 0
}

.carousel-inner>.next,
.carousel-inner>.prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner>.next {
    left: 100%
}

.carousel-inner>.prev {
    left: -100%
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
    left: 0
}

.carousel-inner>.active.left {
    left: -100%
}

.carousel-inner>.active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: .5
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x
}

.carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x
}

.carousel-control:focus,
.carousel-control:hover {
    color: #fff;
    text-decoration: none;
    filter: alpha(opacity=90);
    outline: 0;
    opacity: .9
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-next,
.carousel-control .icon-prev {
    width: 20px;
    height: 20px;
    font-family: serif;
    line-height: 1
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #0009;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width:768px) {

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next,
    .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -10px
    }

    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -10px
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

.btn-group-vertical>.btn-group:after,
.btn-group-vertical>.btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.modal-header:after,
.modal-header:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
    display: table;
    content: " "
}

.btn-group-vertical>.btn-group:after,
.btn-toolbar:after,
.clearfix:after,
.container-fluid:after,
.container:after,
.dl-horizontal dd:after,
.form-horizontal .form-group:after,
.modal-footer:after,
.modal-header:after,
.nav:after,
.navbar-collapse:after,
.navbar-header:after,
.navbar:after,
.pager:after,
.panel-body:after,
.row:after {
    clear: both
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.hide {
    display: none !important
}

.show {
    display: block !important
}

.invisible {
    visibility: hidden
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.hidden {
    display: none !important
}

.affix {
    position: fixed
}

@-ms-viewport {
    width: device-width
}

.visible-lg,
.visible-md,
.visible-sm,
.visible-xs {
    display: none !important
}

.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
    display: none !important
}

@media (max-width:767px) {
    .visible-xs {
        display: block !important
    }

    table.visible-xs {
        display: table !important
    }

    tr.visible-xs {
        display: table-row !important
    }

    td.visible-xs,
    th.visible-xs {
        display: table-cell !important
    }
}

@media (max-width:767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media (max-width:767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media (max-width:767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm {
        display: block !important
    }

    table.visible-sm {
        display: table !important
    }

    tr.visible-sm {
        display: table-row !important
    }

    td.visible-sm,
    th.visible-sm {
        display: table-cell !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md {
        display: block !important
    }

    table.visible-md {
        display: table !important
    }

    tr.visible-md {
        display: table-row !important
    }

    td.visible-md,
    th.visible-md {
        display: table-cell !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media (min-width:1200px) {
    .visible-lg {
        display: block !important
    }

    table.visible-lg {
        display: table !important
    }

    tr.visible-lg {
        display: table-row !important
    }

    td.visible-lg,
    th.visible-lg {
        display: table-cell !important
    }
}

@media (min-width:1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media (min-width:1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media (min-width:1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media (max-width:767px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .hidden-sm {
        display: none !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width:1200px) {
    .hidden-lg {
        display: none !important
    }
}

.visible-print {
    display: none !important
}

@media print {
    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table !important
    }

    tr.visible-print {
        display: table-row !important
    }

    td.visible-print,
    th.visible-print {
        display: table-cell !important
    }
}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

@media print {
    .hidden-print {
        display: none !important
    }
}

/*# sourceMappingURL=bootstrap.min.css.map */

/* ======== slick.css ======== */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

/* ======== slick-theme.css ======== */

.slick-loading .slick-list {
    background: #fff url(ajax-loader.gif) center center no-repeat
}

@font-face {
    font-family: slick;
    font-weight: 400;
    font-style: normal;
    src: url(fonts/slick.eot);
    src: url(fonts/slick.eot?#iefix) format('embedded-opentype'), url(fonts/slick.woff) format('woff'), url(fonts/slick.ttf) format('truetype'), url(fonts/slick.svg#slick) format('svg')
}

.slick-next,
.slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    color: transparent;
    outline: 0;
    background: 0 0
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next:before,
.slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: 'Ã¢â€ Â'
}

[dir=rtl] .slick-prev:before {
    content: 'Ã¢â€ â€™'
}

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    right: auto;
    left: -25px
}

.slick-next:before {
    content: 'Ã¢â€ â€™'
}

[dir=rtl] .slick-next:before {
    content: 'Ã¢â€ Â'
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: 0 0
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: 0
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
    opacity: 1
}

.slick-dots li button:before {
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: 'Ã¢â‚¬Â¢';
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #000
}

/* ======== jquery.fancybox.min.css ======== */
body.compensate-for-scrollbar {
    overflow: hidden
}

.fancybox-active {
    height: auto
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992
}

.fancybox-container * {
    box-sizing: border-box
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71)
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-toolbar {
    right: 0;
    top: 0
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994
}

.fancybox-slide:before {
    content: "";
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
    display: block
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0
}

.fancybox-slide--image:before {
    display: none
}

.fancybox-slide--html {
    padding: 6px
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
    cursor: grab
}

.fancybox-is-grabbing .fancybox-content {
    cursor: grabbing
}

.fancybox-container [data-selectable=true] {
    cursor: text
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%
}

.fancybox-slide--video .fancybox-content {
    background: #000
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff
}

.fancybox-iframe,
.fancybox-video {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0
}

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
    color: #ccc
}

.fancybox-button:hover {
    color: #fff
}

.fancybox-button:focus {
    outline: none
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none
}

.fancybox-button div {
    height: 100%
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
    display: none
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998
}

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none
}

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px
}

.fancybox-navigation .fancybox-button div {
    padding: 7px
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right)
}

.fancybox-caption {
    background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, transparent);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996
}

@supports (padding:max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left))
    }
}

.fancybox-caption--separate {
    margin-top: -50px
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline
}

.fancybox-loading {
    animation: a 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999
}

@keyframes a {
    to {
        transform: rotate(1turn)
    }
}

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1)
}

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translateZ(0)
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scaleX(1)
}

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    transform: rotate(-1turn)
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    transform: rotate(1turn)
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    transform: rotate(0deg)
}

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scaleX(1) translateZ(0)
}

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translateZ(0) scale(1)
}

@media (max-height:576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px
    }

    .fancybox-slide--image {
        padding: 6px 0
    }

    .fancybox-close-small {
        right: -6px
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px
    }

    @supports (padding:max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right))
        }
    }
}

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px
}

.fancybox-share p {
    margin: 0;
    padding: 0
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
    color: #fff
}

.fancybox-share__button:hover {
    text-decoration: none
}

.fancybox-share__button--fb {
    background: #3b5998
}

.fancybox-share__button--fb:hover {
    background: #344e86
}

.fancybox-share__button--pt {
    background: #bd081d
}

.fancybox-share__button--pt:hover {
    background: #aa0719
}

.fancybox-share__button--tw {
    background: #1da1f2
}

.fancybox-share__button--tw:hover {
    background: #0d95e8
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px
}

.fancybox-share__button svg path {
    fill: #fff
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%
}

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px
}

.fancybox-thumbs__list a:before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991
}

.fancybox-thumbs__list a:focus:before {
    opacity: .5
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
    opacity: 1
}

@media (max-width:576px) {
    .fancybox-thumbs {
        width: 110px
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px)
    }
}

/* ======== blog.css ======== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.clear:after,
.clear:before,
.comment-author:after,
.comment-author:before,
.comment-content:after,
.comment-content:before,
.comment-meta:after,
.comment-meta:before,
.entry-content:after,
.entry-content:before,
.entry-footer:after,
.entry-footer:before,
.nav-links:after,
.nav-links:before,
.pagination:after,
.pagination:before,
.site-content:after,
.site-content:before,
.site-footer:after,
.site-footer:before,
.site-header:after,
.site-header:before,
.widget-area:after,
.widget-area:before,
.widget:after,
.widget:before {
    content: "";
    display: table;
    table-layout: fixed
}

.clear:after,
.comment-author:after,
.comment-content:after,
.comment-meta:after,
.entry-content:after,
.entry-footer:after,
.nav-links:after,
.pagination:after,
.site-content:after,
.site-footer:after,
.site-header:after,
.widget-area:after,
.widget:after {
    clear: both
}

cite,
dfn,
em,
i {
    font-style: italic
}

blockquote {
    color: #666;
    font-size: 18px;
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    overflow: hidden;
    padding: 0
}

blockquote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    margin-top: .5em
}

address {
    margin: 0 0 1.5em
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: .9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: .9375rem
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help
}

ins,
mark {
    background: #eee;
    text-decoration: none
}

big {
    font-size: 125%
}

blockquote {
    quotes: "" ""
}

q {
    quotes: "Ã¢â‚¬Å“" "Ã¢â‚¬Â" "Ã¢â‚¬Ëœ" "Ã¢â‚¬â„¢"
}

blockquote:after,
blockquote:before {
    content: ""
}

:focus {
    outline: 0
}

html[lang=ar] body,
html[lang=ar] button,
html[lang=ar] input,
html[lang=ar] select,
html[lang=ar] textarea,
html[lang=ary] body,
html[lang=ary] button,
html[lang=ary] input,
html[lang=ary] select,
html[lang=ary] textarea,
html[lang=azb] body,
html[lang=azb] button,
html[lang=azb] input,
html[lang=azb] select,
html[lang=azb] textarea,
html[lang=fa-IR] body,
html[lang=fa-IR] button,
html[lang=fa-IR] input,
html[lang=fa-IR] select,
html[lang=fa-IR] textarea,
html[lang=haz] body,
html[lang=haz] button,
html[lang=haz] input,
html[lang=haz] select,
html[lang=haz] textarea,
html[lang=ps] body,
html[lang=ps] button,
html[lang=ps] input,
html[lang=ps] select,
html[lang=ps] textarea,
html[lang=ur] body,
html[lang=ur] button,
html[lang=ur] input,
html[lang=ur] select,
html[lang=ur] textarea {
    font-family: Tahoma, Arial, sans-serif
}

html[lang=ar] h1,
html[lang=ar] h2,
html[lang=ar] h3,
html[lang=ar] h4,
html[lang=ar] h5,
html[lang=ar] h6,
html[lang=ary] h1,
html[lang=ary] h2,
html[lang=ary] h3,
html[lang=ary] h4,
html[lang=ary] h5,
html[lang=ary] h6,
html[lang=azb] h1,
html[lang=azb] h2,
html[lang=azb] h3,
html[lang=azb] h4,
html[lang=azb] h5,
html[lang=azb] h6,
html[lang=fa-IR] h1,
html[lang=fa-IR] h2,
html[lang=fa-IR] h3,
html[lang=fa-IR] h4,
html[lang=fa-IR] h5,
html[lang=fa-IR] h6,
html[lang=haz] h1,
html[lang=haz] h2,
html[lang=haz] h3,
html[lang=haz] h4,
html[lang=haz] h5,
html[lang=haz] h6,
html[lang=ps] h1,
html[lang=ps] h2,
html[lang=ps] h3,
html[lang=ps] h4,
html[lang=ps] h5,
html[lang=ps] h6,
html[lang=ur] h1,
html[lang=ur] h2,
html[lang=ur] h3,
html[lang=ur] h4,
html[lang=ur] h5,
html[lang=ur] h6 {
    font-weight: 700
}

html[lang^=zh-] body,
html[lang^=zh-] button,
html[lang^=zh-] input,
html[lang^=zh-] select,
html[lang^=zh-] textarea {
    font-family: "PingFang TC", "Helvetica Neue", Helvetica, STHeitiTC-Light, Arial, sans-serif
}

html[lang=zh-CN] body,
html[lang=zh-CN] button,
html[lang=zh-CN] input,
html[lang=zh-CN] select,
html[lang=zh-CN] textarea {
    font-family: "PingFang SC", "Helvetica Neue", Helvetica, STHeitiSC-Light, Arial, sans-serif
}

html[lang^=zh-] h1,
html[lang^=zh-] h2,
html[lang^=zh-] h3,
html[lang^=zh-] h4,
html[lang^=zh-] h5,
html[lang^=zh-] h6 {
    font-weight: 700
}

html[lang=bg-BG] body,
html[lang=bg-BG] button,
html[lang=bg-BG] input,
html[lang=bg-BG] select,
html[lang=bg-BG] textarea,
html[lang=ru-RU] body,
html[lang=ru-RU] button,
html[lang=ru-RU] input,
html[lang=ru-RU] select,
html[lang=ru-RU] textarea,
html[lang=uk] body,
html[lang=uk] button,
html[lang=uk] input,
html[lang=uk] select,
html[lang=uk] textarea {
    font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif
}

html[lang=bg-BG] h1,
html[lang=bg-BG] h2,
html[lang=bg-BG] h3,
html[lang=bg-BG] h4,
html[lang=bg-BG] h5,
html[lang=bg-BG] h6,
html[lang=ru-RU] h1,
html[lang=ru-RU] h2,
html[lang=ru-RU] h3,
html[lang=ru-RU] h4,
html[lang=ru-RU] h5,
html[lang=ru-RU] h6,
html[lang=uk] h1,
html[lang=uk] h2,
html[lang=uk] h3,
html[lang=uk] h4,
html[lang=uk] h5,
html[lang=uk] h6 {
    font-weight: 700;
    line-height: 1.2
}

html[lang=bn-BD] body,
html[lang=bn-BD] button,
html[lang=bn-BD] input,
html[lang=bn-BD] select,
html[lang=bn-BD] textarea,
html[lang=hi-IN] body,
html[lang=hi-IN] button,
html[lang=hi-IN] input,
html[lang=hi-IN] select,
html[lang=hi-IN] textarea,
html[lang=mr-IN] body,
html[lang=mr-IN] button,
html[lang=mr-IN] input,
html[lang=mr-IN] select,
html[lang=mr-IN] textarea {
    font-family: Arial, sans-serif
}

html[lang=bn-BD] h1,
html[lang=bn-BD] h2,
html[lang=bn-BD] h3,
html[lang=bn-BD] h4,
html[lang=bn-BD] h5,
html[lang=bn-BD] h6,
html[lang=hi-IN] h1,
html[lang=hi-IN] h2,
html[lang=hi-IN] h3,
html[lang=hi-IN] h4,
html[lang=hi-IN] h5,
html[lang=hi-IN] h6,
html[lang=mr-IN] h1,
html[lang=mr-IN] h2,
html[lang=mr-IN] h3,
html[lang=mr-IN] h4,
html[lang=mr-IN] h5,
html[lang=mr-IN] h6 {
    font-weight: 700
}

html[lang=el] body,
html[lang=el] button,
html[lang=el] input,
html[lang=el] select,
html[lang=el] textarea {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

html[lang=el] h1,
html[lang=el] h2,
html[lang=el] h3,
html[lang=el] h4,
html[lang=el] h5,
html[lang=el] h6 {
    font-weight: 700;
    line-height: 1.3
}

html[lang=gu-IN] body,
html[lang=gu-IN] button,
html[lang=gu-IN] input,
html[lang=gu-IN] select,
html[lang=gu-IN] textarea {
    font-family: Arial, sans-serif
}

html[lang=gu-IN] h1,
html[lang=gu-IN] h2,
html[lang=gu-IN] h3,
html[lang=gu-IN] h4,
html[lang=gu-IN] h5,
html[lang=gu-IN] h6 {
    font-weight: 700
}

html[lang=he-IL] body,
html[lang=he-IL] button,
html[lang=he-IL] input,
html[lang=he-IL] select,
html[lang=he-IL] textarea {
    font-family: "Arial Hebrew", Arial, sans-serif
}

html[lang=he-IL] h1,
html[lang=he-IL] h2,
html[lang=he-IL] h3,
html[lang=he-IL] h4,
html[lang=he-IL] h5,
html[lang=he-IL] h6 {
    font-weight: 700
}

html[lang=ja] body,
html[lang=ja] button,
html[lang=ja] input,
html[lang=ja] select,
html[lang=ja] textarea {
    font-family: "Hiragino Kaku Gothic Pro", Meiryo, sans-serif
}

html[lang=ja] h1,
html[lang=ja] h2,
html[lang=ja] h3,
html[lang=ja] h4,
html[lang=ja] h5,
html[lang=ja] h6 {
    font-weight: 700
}

html[lang=ko-KR] body,
html[lang=ko-KR] button,
html[lang=ko-KR] input,
html[lang=ko-KR] select,
html[lang=ko-KR] textarea {
    font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Nanum Gothic", Dotum, sans-serif
}

html[lang=ko-KR] h1,
html[lang=ko-KR] h2,
html[lang=ko-KR] h3,
html[lang=ko-KR] h4,
html[lang=ko-KR] h5,
html[lang=ko-KR] h6 {
    font-weight: 600
}

html[lang=th] h1,
html[lang=th] h2,
html[lang=th] h3,
html[lang=th] h4,
html[lang=th] h5,
html[lang=th] h6 {
    line-height: 1.65;
    font-family: "Sukhumvit Set", "Helvetica Neue", Helvetica, Arial, sans-serif
}

html[lang=th] body,
html[lang=th] button,
html[lang=th] input,
html[lang=th] select,
html[lang=th] textarea {
    line-height: 1.8;
    font-family: "Sukhumvit Set", "Helvetica Neue", Helvetica, Arial, sans-serif
}

html[lang=ar] *,
html[lang=ary] *,
html[lang=azb] *,
html[lang=bg-BG] *,
html[lang=bn-BD] *,
html[lang=el] *,
html[lang=gu-IN] *,
html[lang=haz] *,
html[lang=he-IL] *,
html[lang=hi-IN] *,
html[lang=ja] *,
html[lang=ko-KR] *,
html[lang=mr-IN] *,
html[lang=ps] *,
html[lang=ru-RU] *,
html[lang=th] *,
html[lang=uk] *,
html[lang^=zh-] * {
    letter-spacing: 0 !important
}

label {
    color: #333;
    display: block;
    font-weight: 800;
    margin-bottom: .5em
}

fieldset {
    margin-bottom: 1em
}

input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea {
    color: #666;
    background: #fff;
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    border: 1px solid #bbb;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: block;
    padding: .7em;
    width: 100%
}

input[type=color]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=range]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus {
    color: #222;
    border-color: #333
}

select {
    border: 1px solid #bbb;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    height: 3em;
    max-width: 100%
}

input[type=checkbox],
input[type=radio] {
    margin-right: .5em
}

input[type=checkbox]+label,
input[type=radio]+label {
    font-weight: 400
}

button,
input[type=button],
input[type=submit] {
    background-color: #222;
    border: 0;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 800;
    line-height: 1;
    padding: 1em 2em;
    text-shadow: none;
    -webkit-transition: background .2s;
    transition: background .2s
}

input+button,
input+input[type=button],
input+input[type=submit] {
    padding: .75em 2em
}

button.secondary,
input[type=button].secondary,
input[type=reset],
input[type=reset].secondary,
input[type=submit].secondary {
    background-color: #ddd;
    color: #222
}

button:focus,
button:hover,
input[type=button]:focus,
input[type=button]:hover,
input[type=submit]:focus,
input[type=submit]:hover {
    background: #767676
}

button.secondary:focus,
button.secondary:hover,
input[type=button].secondary:focus,
input[type=button].secondary:hover,
input[type=reset].secondary:focus,
input[type=reset].secondary:hover,
input[type=reset]:focus,
input[type=reset]:hover,
input[type=submit].secondary:focus,
input[type=submit].secondary:hover {
    background: #bbb
}

::-webkit-input-placeholder {
    color: #333;
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif
}

:-moz-placeholder {
    color: #333;
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif
}

::-moz-placeholder {
    color: #333;
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
    opacity: 1
}

:-ms-input-placeholder {
    color: #333;
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif
}

hr {
    background-color: #bbb;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em
}

ol,
ul {
    margin: 0 0 1.5em;
    padding: 0
}

ul {
    list-style: disc
}

ol {
    list-style: decimal
}

li>ol,
li>ul {
    margin-bottom: 0;
    margin-left: 1.5em
}

dt {
    font-weight: 700
}

dd {
    margin: 0 1.5em 1.5em
}

table {
    border-collapse: collapse;
    margin: 0 0 1.5em;
    width: 100%
}

thead th {
    border-bottom: 2px solid #bbb;
    padding-bottom: .5em
}

th {
    padding: .4em;
    text-align: left
}

tr {
    border-bottom: 1px solid #eee
}

td {
    padding: .4em
}

td:first-child,
th:first-child {
    padding-left: 0
}

td:last-child,
th:last-child {
    padding-right: 0
}

a {
    color: #222;
    text-decoration: none
}

a:focus {
    outline: thin dotted
}

a:active,
a:hover {
    color: #000;
    outline: 0
}

.comment-content a,
.entry-content a,
.entry-summary a,
.posts-navigation a,
.site-footer .widget-area a,
.widget a,
.widget_authors a strong {
    -webkit-box-shadow: inset 0 -1px 0 #0f0f0f;
    box-shadow: inset 0 -1px 0 #0f0f0f;
    -webkit-transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
    transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
    transition: color 80ms ease-in, box-shadow 130ms ease-in-out;
    transition: color 80ms ease-in, box-shadow 130ms ease-in-out, -webkit-box-shadow 130ms ease-in-out
}

.comment-metadata a,
.comment-metadata a.comment-edit-link,
.comment-navigation a,
.comment-reply-link,
.comments-pagination a,
.edit-link a,
.entry-footer .cat-links a,
.entry-footer .tags-links a,
.entry-footer a,
.entry-meta a,
.entry-title a,
.logged-in-as a,
.page-links a,
.page-links a .page-number,
.pagination a,
.post-navigation a,
.site-footer .widget-area ul li a,
.site-info a,
.widget .widget-title a,
.widget ul li a,
a .nav-title {
    -webkit-box-shadow: inset 0 -1px 0 #fff;
    box-shadow: inset 0 -1px 0 #fff;
    text-decoration: none;
    -webkit-transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
    transition: color 80ms ease-in, -webkit-box-shadow 130ms ease-in-out;
    transition: color 80ms ease-in, box-shadow 130ms ease-in-out;
    transition: color 80ms ease-in, box-shadow 130ms ease-in-out, -webkit-box-shadow 130ms ease-in-out
}

.comment-content a:focus,
.comment-content a:hover,
.comment-metadata a.comment-edit-link:focus,
.comment-metadata a.comment-edit-link:hover,
.comment-metadata a:focus,
.comment-metadata a:hover,
.comment-reply-link:focus,
.comment-reply-link:hover,
.comments-pagination a:not(.prev):not(.next):focus,
.comments-pagination a:not(.prev):not(.next):hover,
.edit-link a:focus,
.edit-link a:hover,
.entry-content a:focus,
.entry-content a:hover,
.entry-footer .cat-links a:focus,
.entry-footer .cat-links a:hover,
.entry-footer .tags-links a:focus,
.entry-footer .tags-links a:hover,
.entry-footer a:focus,
.entry-footer a:hover,
.entry-meta a:focus,
.entry-meta a:hover,
.entry-summary a:focus,
.entry-summary a:hover,
.entry-title a:focus,
.entry-title a:hover,
.logged-in-as a:focus,
.logged-in-as a:hover,
.page-links a:focus .page-number,
.page-links a:hover .page-number,
.pagination a:not(.prev):not(.next):focus,
.pagination a:not(.prev):not(.next):hover,
.post-navigation a:focus,
.post-navigation a:hover,
.posts-navigation a:focus,
.posts-navigation a:hover,
.site-footer .widget-area a:focus,
.site-footer .widget-area a:hover,
.site-info a:focus,
.site-info a:hover,
.widget .widget-title a:focus,
.widget .widget-title a:hover,
.widget a:focus,
.widget a:hover,
.widget ul li a:focus,
.widget ul li a:hover,
.widget_authors a:focus strong,
.widget_authors a:hover strong,
a:focus .nav-title,
a:hover .nav-title {
    color: #000;
    -webkit-box-shadow: inset 0 0 0 transparent, 0 3px 0 #000;
    box-shadow: inset 0 0 0 transparent, 0 3px 0 #000
}

.comment-content a img,
.entry-content a img,
.widget a img {
    -webkit-box-shadow: 0 0 0 8px #fff;
    box-shadow: 0 0 0 8px #fff
}

.post-navigation a:focus .icon,
.post-navigation a:hover .icon {
    color: #222
}

.post-thumbnail {
    margin-bottom: 1em
}

.post-thumbnail a img {
    -webkit-backface-visibility: hidden;
    -webkit-transition: opacity .2s;
    transition: opacity .2s
}

.post-thumbnail a:focus img,
.post-thumbnail a:hover img {
    opacity: .7
}

.navigation-top {
    background: #fff;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    font-size: 16px;
    font-size: 1rem;
    position: relative
}

.navigation-top .wrap {
    max-width: 1000px;
    padding: 0
}

.navigation-top a {
    color: #222;
    font-weight: 600;
    -webkit-transition: color .2s;
    transition: color .2s
}

.navigation-top .current-menu-item>a,
.navigation-top .current_page_item>a {
    color: #767676
}

.main-navigation {
    clear: both;
    display: block
}

.main-navigation ul {
    background: #fff;
    list-style: none;
    margin: 0;
    padding: 0 1.5em;
    text-align: left
}

.js .main-navigation ul,
.main-navigation .menu-item-has-children>a>.icon,
.main-navigation .page_item_has_children>a>.icon,
.main-navigation ul a>.icon {
    display: none
}

.main-navigation>div>ul {
    border-top: 1px solid #eee;
    padding: .75em 1.695em
}

.js .main-navigation.toggled-on>div>ul {
    display: block
}

.main-navigation ul ul {
    padding: 0 0 0 1.5em
}

.main-navigation ul ul.toggled-on {
    display: block
}

.main-navigation ul ul a {
    letter-spacing: 0;
    padding: .4em 0;
    position: relative;
    text-transform: none
}

.main-navigation li {
    border-bottom: 1px solid #eee;
    position: relative
}

.main-navigation li li,
.main-navigation li:last-child {
    border: 0
}

.main-navigation a {
    display: block;
    padding: .5em 0;
    text-decoration: none
}

.main-navigation a:hover {
    color: #767676
}

.menu-toggle {
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #222;
    display: none;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 800;
    line-height: 1.5;
    margin: 1px auto 2px;
    padding: 1em;
    text-shadow: none
}

.js .menu-toggle {
    display: block
}

.main-navigation.toggled-on ul.nav-menu {
    display: block
}

.menu-toggle:focus,
.menu-toggle:hover {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.menu-toggle:focus {
    outline: thin solid
}

.menu-toggle .icon {
    margin-right: .5em;
    top: -2px
}

.menu-toggle .icon-close,
.toggled-on .menu-toggle .icon-bars {
    display: none
}

.toggled-on .menu-toggle .icon-close {
    display: inline-block
}

.dropdown-toggle {
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #222;
    display: block;
    font-size: 16px;
    right: -.5em;
    line-height: 1.5;
    margin: 0 auto;
    padding: .5em;
    position: absolute;
    text-shadow: none;
    top: 0
}

.dropdown-toggle:focus,
.dropdown-toggle:hover {
    background: 0 0
}

.dropdown-toggle:focus {
    outline: thin dotted
}

.dropdown-toggle.toggled-on .icon {
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.site-header .menu-scroll-down {
    display: none
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

*,
:after,
:before {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit
}

body {
    background: #fff
}

#page {
    position: relative;
    word-wrap: break-word
}

.wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    padding-left: 2em;
    padding-right: 2em
}

.wrap:after {
    clear: both;
    content: "";
    display: block
}

#masthead .wrap {
    position: relative
}

.site-header {
    background-color: #fafafa;
    position: relative
}

.site-branding {
    padding: 1em 0;
    position: relative;
    -webkit-transition: margin-bottom .2s;
    transition: margin-bottom .2s;
    z-index: 3
}

.site-branding a {
    text-decoration: none;
    -webkit-transition: opacity .2s;
    transition: opacity .2s
}

.site-branding a:focus,
.site-branding a:hover {
    opacity: .7
}

.site-title {
    clear: none;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .08em;
    margin: 0;
    padding: 0;
    text-transform: uppercase
}

.site-title,
.site-title a {
    color: #222;
    opacity: 1
}

body.has-header-image .site-title,
body.has-header-image .site-title a,
body.has-header-video .site-title,
body.has-header-video .site-title a {
    color: #fff
}

.site-description {
    color: #666;
    font-size: 13px;
    font-size: .8125rem;
    margin-bottom: 0
}

body.has-header-image .site-description,
body.has-header-video .site-description {
    color: #fff;
    opacity: .8
}

.custom-logo-link {
    display: inline-block;
    padding-right: 1em;
    vertical-align: middle;
    width: auto
}

.custom-logo-link img {
    display: inline-block;
    max-height: 80px;
    width: auto
}

body.home.title-tagline-hidden.has-header-image .custom-logo-link img,
body.home.title-tagline-hidden.has-header-video .custom-logo-link img {
    max-height: 200px;
    max-width: 100%
}

.custom-logo-link a:focus,
.custom-logo-link a:hover {
    opacity: .9
}

body:not(.title-tagline-hidden) .site-branding-text {
    display: inline-block;
    vertical-align: middle
}

.custom-header {
    position: relative
}

.has-header-image.home.blog .custom-header,
.has-header-image.twentyseventeen-front-page .custom-header,
.has-header-video.home.blog .custom-header,
.has-header-video.twentyseventeen-front-page .custom-header {
    display: table;
    height: 300px;
    height: 75vh;
    width: 100%
}

.custom-header-media {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.custom-header-media:before {
    background: -moz-linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .3) 75%, rgba(0, 0, 0, .3) 100%);
    background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .3) 75%, rgba(0, 0, 0, .3) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .3) 75%, rgba(0, 0, 0, .3) 100%);
    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 2
}

.has-header-image .custom-header-media img,
.has-header-video .custom-header-media iframe,
.has-header-video .custom-header-media video {
    position: fixed;
    height: auto;
    left: 50%;
    max-width: 1000%;
    min-height: 100%;
    min-width: 100%;
    min-width: 100vw;
    width: auto;
    top: 50%;
    padding-bottom: 1px;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.wp-custom-header .wp-custom-header-video-button {
    background-color: rgba(34, 34, 34, .5);
    border: 1px solid rgba(255, 255, 255, .6);
    color: rgba(255, 255, 255, .6);
    height: 45px;
    overflow: hidden;
    padding: 0;
    position: fixed;
    right: 30px;
    top: 30px;
    -webkit-transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .3s ease-in-out;
    transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .3s ease-in-out;
    width: 45px
}

.wp-custom-header .wp-custom-header-video-button:focus,
.wp-custom-header .wp-custom-header-video-button:hover {
    border-color: rgba(255, 255, 255, .8);
    background-color: rgba(34, 34, 34, .8);
    color: #fff
}

.admin-bar .wp-custom-header-video-button {
    top: 62px
}

.has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-media img {
    bottom: 0;
    position: absolute;
    top: auto;
    -ms-transform: translateX(-50%) translateY(0);
    -moz-transform: translateX(-50%) translateY(0);
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0)
}

@supports (object-fit:cover) {

    .has-header-image .custom-header-media img,
    .has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-media img,
    .has-header-video .custom-header-media iframe,
    .has-header-video .custom-header-media video {
        height: 100%;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        -ms-transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        transform: none;
        width: 100%
    }
}

body:not(.has-header-image):not(.has-header-video) .custom-header-media {
    display: none
}

.has-header-image.home.blog .site-branding,
.has-header-image.twentyseventeen-front-page .site-branding,
.has-header-video.home.blog .site-branding,
.has-header-video.twentyseventeen-front-page .site-branding {
    display: table-cell;
    height: 100%;
    vertical-align: bottom
}

.twentyseventeen-front-page .site-content {
    padding: 0
}

.twentyseventeen-panel {
    overflow: hidden;
    position: relative
}

.panel-image {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative
}

.panel-image:before {
    background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .3) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, .3)));
    background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .3) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .3) 100%);
    bottom: 0;
    content: "";
    left: 0;
    right: 0;
    position: absolute;
    top: 100px
}

.twentyseventeen-front-page article:not(.has-post-thumbnail):not(:first-child) {
    border-top: 1px solid #ddd
}

.panel-content {
    position: relative
}

.panel-content .wrap {
    padding-bottom: .5em;
    padding-top: 1.75em
}

.twentyseventeen-panel .edit-link {
    display: block;
    margin: .3em 0 0
}

.twentyseventeen-panel .entry-header .edit-link {
    font-size: 14px;
    font-size: .875rem
}

.twentyseventeen-front-page .panel-content .recent-posts article {
    border: 0;
    color: #333;
    margin-bottom: 3em
}

.recent-posts .entry-header {
    margin-bottom: 1.2em
}

.page .panel-content .recent-posts .entry-title {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none
}

.twentyseventeen-panel .recent-posts .entry-header .edit-link {
    color: #222;
    display: inline-block;
    font-size: 11px;
    font-size: .6875rem;
    margin-left: 1em
}

.site-content-contain {
    background-color: #fff;
    position: relative
}

.site-content {
    padding: 2.5em 0 0
}

.sticky {
    position: relative
}

.post:not(.sticky) .icon-thumb-tack {
    display: none
}

.sticky .icon-thumb-tack {
    display: block;
    height: 18px;
    left: -1.5em;
    position: absolute;
    top: 1.65em;
    width: 20px
}

.page .panel-content .entry-title,
.page-title,
body.page:not(.twentyseventeen-front-page) .entry-title {
    color: #222;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase
}

.entry-header .entry-title {
    margin-bottom: .25em
}

.entry-title a {
    color: #333;
    text-decoration: none;
    margin-left: -2px
}

.entry-title:not(:first-child) {
    padding-top: 0
}

.entry-meta {
    color: #767676;
    font-size: 11px;
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .1818em;
    padding-bottom: .25em;
    text-transform: uppercase
}

.entry-meta a {
    color: #767676
}

.byline,
.updated:not(.published) {
    display: none
}

.group-blog .byline,
.single .byline {
    display: inline
}

.comments-pagination,
.pagination {
    border-top: 1px solid #eee;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 800;
    padding: 2em 0 3em;
    text-align: center
}

.comments-pagination .icon,
.pagination .icon {
    width: .666666666em;
    height: .666666666em
}

.comments-pagination {
    border: 0
}

.page-numbers {
    display: none;
    padding: .5em .75em
}

.page-numbers.current {
    color: #767676;
    display: inline-block
}

.page-numbers.current .screen-reader-text {
    clip: auto;
    height: auto;
    overflow: auto;
    position: relative !important;
    width: auto
}

.next.page-numbers,
.prev.page-numbers {
    background-color: #ddd;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
    padding: .25em .5em .4em
}

.next.page-numbers,
.prev.page-numbers {
    -webkit-transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .3s ease-in-out;
    transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .3s ease-in-out
}

.next.page-numbers:focus,
.next.page-numbers:hover,
.prev.page-numbers:focus,
.prev.page-numbers:hover {
    background-color: #767676;
    color: #fff
}

.prev.page-numbers {
    float: left
}

.next.page-numbers {
    float: right
}

.entry-content blockquote.alignleft,
.entry-content blockquote.alignright {
    color: #666;
    font-size: 13px;
    font-size: .8125rem;
    width: 48%
}

.archive .site-main>article,
.blog .site-main>article,
.search .site-main>article {
    padding-bottom: 2em
}

body.post-template-default header .contactmenuaddress,
body.post-template-default header .contactmenulinker,
body.post-template-default header .contactmenulinker a,
body.post-template-default header .headerlogo .logotext,
body.post-template-default header .logosubtext,
body.post-template-default header .menutext {
    color: #000
}

body:not(.twentyseventeen-front-page) .entry-header {
    padding: 1em 0;
    display: none
}

body:not(.twentyseventeen-front-page) #comments,
body:not(.twentyseventeen-front-page) .entry-content,
body:not(.twentyseventeen-front-page) .entry-header {
    margin-left: auto;
    margin-right: auto
}

body:not(.twentyseventeen-front-page) .entry-header {
    padding-top: 0
}

.archive .entry-meta a.post-edit-link,
.blog .entry-meta a.post-edit-link,
.search .entry-meta a.post-edit-link {
    color: #222;
    display: inline-block;
    margin-left: 1em;
    white-space: nowrap
}

.search .page .entry-meta a.post-edit-link {
    margin-left: 0;
    white-space: nowrap
}

.taxonomy-description {
    color: #666;
    font-size: 13px;
    font-size: .8125rem
}

.entry-content .more-link:before {
    content: "";
    display: block;
    margin-top: 1.5em
}

.archive.page-one-column:not(.has-sidebar) #primary,
.archive.page-one-column:not(.has-sidebar) .page-header,
.page.page-one-column:not(.twentyseventeen-front-page) #primary,
.single-post:not(.has-sidebar) #primary {
    margin-left: auto;
    margin-right: auto;
    max-width: 740px
}

.single-featured-image-header {
    background-color: #fafafa;
    border-bottom: 1px solid #eee
}

.single-featured-image-header img {
    display: block;
    margin: auto
}

.page-links {
    font-size: 14px;
    font-size: .875rem;
    font-weight: 800;
    padding: 2em 0 3em
}

.page-links .page-number {
    color: #767676;
    display: inline-block;
    padding: .5em 1em
}

.page-links a {
    display: inline-block
}

.page-links a .page-number {
    color: #222
}

.entry-footer {
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    margin-top: 2em;
    padding: 2em 0
}

.entry-footer .cat-links,
.entry-footer .tags-links {
    display: block;
    font-size: 11px;
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .1818em;
    padding-left: 2.5em;
    position: relative;
    text-transform: uppercase
}

.entry-footer .cat-links+.tags-links {
    margin-top: 1em
}

.entry-footer .cat-links a,
.entry-footer .tags-links a {
    color: #333
}

.entry-footer .cat-links .icon,
.entry-footer .tags-links .icon {
    color: #767676;
    left: 0;
    margin-right: .5em;
    position: absolute;
    top: 2px
}

.entry-footer .edit-link {
    display: inline-block
}

.entry-footer .edit-link a.post-edit-link {
    background-color: #222;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 800;
    margin-top: 2em;
    padding: .7em 2em;
    -webkit-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
    white-space: nowrap
}

.entry-footer .edit-link a.post-edit-link:focus,
.entry-footer .edit-link a.post-edit-link:hover {
    background-color: #767676
}

.archive .format-aside .entry-title,
.archive .format-status .entry-title,
.blog .format-aside .entry-title,
.blog .format-status .entry-title {
    display: none
}

.format-quote blockquote {
    color: #333;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 300;
    overflow: visible;
    position: relative
}

.format-quote blockquote .icon {
    display: block;
    height: 20px;
    left: -1.25em;
    position: absolute;
    top: .4em;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
    width: 20px
}

.post-navigation {
    font-weight: 800;
    margin: 3em 0
}

.post-navigation .nav-links {
    padding: 1em 0
}

.nav-subtitle {
    background: 0 0;
    color: #767676;
    display: block;
    font-size: 11px;
    font-size: .6875rem;
    letter-spacing: .1818em;
    margin-bottom: 1em;
    text-transform: uppercase
}

.nav-title {
    color: #333;
    font-size: 15px;
    font-size: .9375rem
}

.post-navigation .nav-next {
    margin-top: 1.5em
}

.nav-links .nav-previous .nav-title .nav-title-icon-wrapper {
    margin-right: .5em
}

.nav-links .nav-next .nav-title .nav-title-icon-wrapper {
    margin-left: .5em
}

.page-header {
    padding-bottom: 2em
}

.page .entry-header .edit-link {
    font-size: 14px;
    font-size: .875rem
}

.search .page .entry-header .edit-link {
    font-size: 11px;
    font-size: .6875rem
}

.page-links {
    clear: both;
    margin: 0 0 1.5em
}

.page:not(.home) #content {
    padding-bottom: 1.5em
}

.error404 .page-content {
    padding-bottom: 4em
}

.error404 .page-content .search-form,
.search .page-content .search-form {
    margin-bottom: 3em
}

.site-footer {
    border-top: 1px solid #eee
}

.site-footer .wrap {
    padding-bottom: 1.5em;
    padding-top: 2em
}

.site-footer .widget-area {
    padding-bottom: 2em;
    padding-top: 2em
}

.social-navigation {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 1em
}

.social-navigation ul {
    list-style: none;
    margin-bottom: 0;
    margin-left: 0
}

.social-navigation li {
    display: inline
}

.social-navigation a {
    background-color: #767676;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    color: #fff;
    display: inline-block;
    height: 40px;
    margin: 0 1em .5em 0;
    text-align: center;
    width: 40px
}

.social-navigation a:focus,
.social-navigation a:hover {
    background-color: #333
}

.social-navigation .icon {
    height: 16px;
    top: 12px;
    width: 16px;
    vertical-align: top
}

.site-info {
    font-size: 14px;
    font-size: .875rem;
    margin-bottom: 1em
}

.site-info a {
    color: #666
}

.site-info .sep {
    margin: 0;
    display: block;
    visibility: hidden;
    height: 0;
    width: 100%
}

.site-info span[role=separator] {
    padding: 0 .2em 0 .4em
}

.site-info span[role=separator]::before {
    content: '\002f'
}

#comments {
    clear: both;
    padding: 2em 0 .5em
}

.comments-title {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 1.5em
}

.comment-list,
.comment-list .children {
    list-style: none;
    margin: 0;
    padding: 0
}

.comment-list li:before {
    display: none
}

.comment-body {
    margin-left: 65px
}

.comment-author {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: .4em;
    position: relative;
    z-index: 2
}

.comment-author .avatar {
    height: 50px;
    left: -65px;
    position: absolute;
    width: 50px
}

.comment-author .says {
    display: none
}

.comment-meta {
    margin-bottom: 1.5em
}

.comment-metadata {
    color: #767676;
    font-size: 10px;
    font-size: .625rem;
    font-weight: 800;
    letter-spacing: .1818em;
    text-transform: uppercase
}

.comment-metadata a {
    color: #767676
}

.comment-metadata a.comment-edit-link {
    color: #222;
    margin-left: 1em
}

.comment-body {
    color: #333;
    font-size: 14px;
    font-size: .875rem;
    margin-bottom: 4em
}

.comment-reply-link {
    font-weight: 800;
    position: relative
}

.comment-reply-link .icon {
    color: #222;
    left: -2em;
    height: 1em;
    position: absolute;
    top: 0;
    width: 1em
}

.children .comment-author .avatar {
    height: 30px;
    left: -45px;
    width: 30px
}

.bypostauthor>.comment-body>.comment-meta>.comment-author .avatar {
    border: 1px solid #333;
    padding: 2px
}

.comment-awaiting-moderation,
.no-comments {
    color: #767676;
    font-size: 14px;
    font-size: .875rem;
    font-style: italic
}

.comments-pagination {
    margin: 2em 0 3em
}

.form-submit {
    text-align: right;
    margin: 20px 0 0
}

.comment-form #wp-comment-cookies-consent {
    margin: 0 10px 0 0
}

.comment-form .comment-form-cookies-consent label {
    display: inline
}

#secondary {
    padding: 1em 0 2em
}

.widget {
    padding-bottom: 3em
}

h2.widget-title {
    color: #222;
    font-size: 13px;
    font-size: .8125rem;
    font-weight: 800;
    letter-spacing: .1818em;
    margin-bottom: 1.5em;
    text-transform: uppercase
}

.widget-title a {
    color: inherit
}

.widget select {
    width: 100%
}

.widget ul {
    list-style: none;
    margin: 0
}

.widget ol li,
.widget ul li {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: .5em 0
}

.widget:not(.widget_tag_cloud) ul li+li {
    margin-top: -1px
}

.widget ul li ul {
    margin: 0 0 -1px;
    padding: 0;
    position: relative
}

.widget ul li li {
    border: 0;
    padding-left: 24px;
    padding-left: 1.5rem
}

.widget-grofile ul.grofile-links li ul,
.widget_meta ul li ul,
.widget_pages ul li ul,
.widget_rss_links ul li ul,
.widget_top-posts ul li ul {
    bottom: 0
}

.widget-grofile ul.grofile-links li,
.widget-grofile ul.grofile-links li li,
.widget_nav_menu ul li li,
.widget_rss_links ul li,
.widget_rss_links ul li li,
.widget_top-posts ul li,
.widget_top-posts ul li li {
    padding-bottom: .25em;
    padding-top: .25em
}

.widget_rss ul li {
    padding-bottom: 1em;
    padding-top: 1em
}

.widget .post-date,
.widget .rss-date {
    font-size: .81em
}

.widget_text {
    word-wrap: break-word
}

.widget_text ul {
    list-style: disc;
    margin: 0 0 1.5em 1.5em
}

.widget_text ol {
    list-style: decimal
}

.widget_text ol li,
.widget_text ul li {
    border: none
}

.widget_text ol li:last-child,
.widget_text ul li:last-child {
    padding-bottom: 0
}

.widget_text ul li ul {
    margin: 0 0 0 1.5em
}

.widget_text ul li li {
    padding-left: 0;
    padding-right: 0
}

.widget_text ol li {
    list-style-position: inside
}

.widget_text ol li+li {
    margin-top: -1px
}

.widget_rss .widget-title .rsswidget:first-child {
    float: right
}

.widget_rss .widget-title .rsswidget:first-child:hover {
    background-color: transparent
}

.widget_rss .widget-title .rsswidget:first-child img {
    display: block
}

.widget_rss ul li {
    padding: 2.125em 0
}

.widget_rss ul li:first-child {
    border-top: none;
    padding-top: 0
}

.widget_rss li .rsswidget {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 300;
    line-height: 1.4
}

.widget_rss .rss-date,
.widget_rss li cite {
    color: #767676;
    display: block;
    font-size: 10px;
    font-size: .625rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.5;
    text-transform: uppercase
}

.widget_rss .rss-date {
    margin: .5em 0 1.5em;
    padding: 0
}

.widget_rss .rssSummary {
    margin-bottom: .5em
}

.widget_contact_info .contact-map {
    margin-bottom: .5em
}

.widget-grofile h4 {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 0
}

.widget_recent_comments table,
.widget_recent_comments td,
.widget_recent_comments th {
    border: 0
}

.widget_recent_entries .post-date {
    display: block
}

.search-form {
    position: relative
}

.search-form .search-submit {
    bottom: 3px;
    padding: .5em 1em;
    position: absolute;
    right: 3px;
    top: 3px
}

.search-form .search-submit .icon {
    height: 24px;
    top: -2px;
    width: 24px
}

.tagcloud ul li {
    float: left;
    border-top: 0;
    border-bottom: 0;
    padding: 0;
    margin: 4px 4px 0 0
}

.tagcloud,
.widget_tag_cloud,
.wp_widget_tag_cloud {
    line-height: 1.5
}

.widget .tagcloud a,
.widget.widget_tag_cloud a,
.wp_widget_tag_cloud a {
    border: 1px solid #ddd;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    padding: 4px 10px 5px;
    position: relative;
    -webkit-transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .3s ease-in-out;
    transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .3s ease-in-out;
    width: auto;
    word-wrap: break-word;
    z-index: 0
}

.widget .tagcloud a:focus,
.widget .tagcloud a:hover,
.widget.widget_tag_cloud a:focus,
.widget.widget_tag_cloud a:hover,
.wp_widget_tag_cloud a:focus,
.wp_widget_tag_cloud a:hover {
    border-color: #bbb;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none
}

.widget_calendar td,
.widget_calendar th {
    text-align: center
}

.widget_calendar tfoot td {
    border: 0
}

.gallery-columns-5 .gallery-caption,
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none
}

img,
video {
    height: auto;
    max-width: 100%
}

img.alignleft,
img.alignright {
    float: none;
    margin: 0
}

.comment-content .wp-smiley,
.entry-content .wp-smiley,
.page-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0
}

embed,
iframe,
object {
    margin-bottom: 1.5em;
    max-width: 100%
}

p>embed:only-child,
p>iframe:only-child,
p>object:only-child {
    margin-bottom: 0
}

.gallery-caption,
.wp-caption {
    color: #666;
    font-size: 13px;
    font-size: .8125rem;
    font-style: italic;
    margin-bottom: 1.5em;
    max-width: 100%
}

.wp-caption img[class*=wp-image-] {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption .wp-caption-text {
    margin: .8075em 0
}

.mejs-container {
    margin-bottom: 1.5em
}

.mejs-controls a.mejs-horizontal-volume-slider,
.mejs-controls a.mejs-horizontal-volume-slider:focus,
.mejs-controls a.mejs-horizontal-volume-slider:hover {
    background: 0 0;
    border: 0
}

.site-content .wp-playlist-light {
    border-color: #eee;
    color: #222
}

.site-content .wp-playlist-light .wp-playlist-current-item .wp-playlist-item-album {
    color: #333
}

.site-content .wp-playlist-light .wp-playlist-current-item .wp-playlist-item-artist {
    color: #767676
}

.site-content .wp-playlist-light .wp-playlist-item {
    border-bottom: 1px dotted #eee;
    -webkit-transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .3s ease-in-out;
    transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .3s ease-in-out
}

.site-content .wp-playlist-light .wp-playlist-item:focus,
.site-content .wp-playlist-light .wp-playlist-item:hover {
    border-bottom-color: transparent;
    background-color: #767676;
    color: #fff
}

.site-content .wp-playlist-light .wp-playlist-item:focus a,
.site-content .wp-playlist-light .wp-playlist-item:hover a,
.site-content .wp-playlist-light a.wp-playlist-caption:hover {
    color: #fff
}

.site-content .wp-playlist-dark {
    background: #222;
    border-color: #333
}

.site-content .wp-playlist-dark .mejs-container .mejs-controls {
    background-color: #333
}

.site-content .wp-playlist-dark .wp-playlist-caption {
    color: #fff
}

.site-content .wp-playlist-dark .wp-playlist-current-item .wp-playlist-item-album {
    color: #eee
}

.site-content .wp-playlist-dark .wp-playlist-current-item .wp-playlist-item-artist {
    color: #aaa
}

.site-content .wp-playlist-dark .wp-playlist-playing {
    background-color: #333
}

.site-content .wp-playlist-dark .wp-playlist-item {
    border-bottom: 1px dotted #555;
    -webkit-transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .3s ease-in-out;
    transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .3s ease-in-out
}

.site-content .wp-playlist-dark .wp-playlist-item:focus,
.site-content .wp-playlist-dark .wp-playlist-item:hover {
    border-bottom-color: transparent;
    background-color: #aaa;
    color: #222
}

.site-content .wp-playlist-dark .wp-playlist-item:focus a,
.site-content .wp-playlist-dark .wp-playlist-item:hover a,
.site-content .wp-playlist-dark a.wp-playlist-caption:hover {
    color: #222
}

.site-content .wp-playlist {
    padding: .625em .625em .3125em
}

.site-content .wp-playlist-current-item .wp-playlist-item-title {
    font-weight: 700
}

.site-content .wp-playlist-current-item .wp-playlist-item-album {
    font-style: normal
}

.site-content .wp-playlist-current-item .wp-playlist-item-artist {
    font-size: 10px;
    font-size: .625rem;
    font-weight: 800;
    letter-spacing: .1818em;
    text-transform: uppercase
}

.site-content .wp-playlist-item {
    padding: 0 .3125em;
    cursor: pointer
}

.site-content .wp-playlist-item:last-of-type {
    border-bottom: none
}

.site-content .wp-playlist-item a {
    padding: .3125em 0;
    border-bottom: none
}

.site-content .wp-playlist-item a,
.site-content .wp-playlist-item a:focus,
.site-content .wp-playlist-item a:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: 0 0
}

.site-content .wp-playlist-item-length {
    top: 5px
}

.icon {
    display: inline-block;
    fill: currentColor;
    height: 1em;
    position: relative;
    top: -.0625em;
    vertical-align: middle;
    width: 1em
}

.gallery-item {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    margin: 0 0 1.5em;
    padding: 0 1em 0 0;
    width: 50%
}

.gallery-columns-1 .gallery-item {
    width: 100%
}

.gallery-columns-2 .gallery-item {
    max-width: 50%
}

.gallery-item a,
.gallery-item a:focus,
.gallery-item a:hover,
.widget-area .gallery-item a,
.widget-area .gallery-item a:focus,
.widget-area .gallery-item a:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: 0 0;
    display: inline-block;
    max-width: 100%
}

.gallery-item a img {
    display: block;
    -webkit-transition: -webkit-filter .2s ease-in;
    transition: -webkit-filter .2s ease-in;
    transition: filter .2s ease-in;
    transition: filter .2s ease-in, -webkit-filter .2s ease-in;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.gallery-item a:focus img,
.gallery-item a:hover img {
    -webkit-filter: opacity(60%);
    filter: opacity(60%)
}

.gallery-caption {
    display: block;
    text-align: left;
    padding: 0 10px 0 0;
    margin-bottom: 0
}

.highlight-front-sections.twentyseventeen-customizer.twentyseventeen-front-page .twentyseventeen-panel:after {
    border: 2px dashed #0085ba;
    bottom: 1em;
    content: "";
    display: block;
    left: 1em;
    position: absolute;
    right: 1em;
    top: 1em;
    z-index: 1
}

.highlight-front-sections.twentyseventeen-customizer.twentyseventeen-front-page .twentyseventeen-panel .panel-content {
    z-index: 2
}

.twentyseventeen-customizer.twentyseventeen-front-page .twentyseventeen-panel .twentyseventeen-panel-title {
    display: block;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3em;
    text-transform: uppercase;
    text-align: center
}

.highlight-front-sections.twentyseventeen-customizer.twentyseventeen-front-page .twentyseventeen-panel:nth-of-type(1):after {
    border: none
}

.twentyseventeen-front-page.twentyseventeen-customizer #primary article.panel-placeholder {
    border: 0
}

.twentyseventeen-panel>.customize-partial-edit-shortcut>button {
    top: 30px;
    left: 30px
}

.twentyseventeen-panel .customize-partial-edit-shortcut-hidden:before {
    visibility: visible
}

.svg-fallback {
    display: none
}

.no-svg .svg-fallback {
    display: inline-block
}

.no-svg .dropdown-toggle {
    padding: .5em 0 0;
    right: 0;
    text-align: center;
    width: 2em
}

.no-svg .dropdown-toggle .svg-fallback.icon-angle-down {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.no-svg .dropdown-toggle.toggled-on .svg-fallback.icon-angle-down {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.no-svg .dropdown-toggle .svg-fallback.icon-angle-down:before {
    content: "\005E"
}

.no-svg .social-navigation a {
    background: 0 0;
    color: #222;
    height: auto;
    width: auto
}

.no-svg .next.page-numbers .screen-reader-text,
.no-svg .prev.page-numbers .screen-reader-text,
.no-svg .search-submit .screen-reader-text,
.no-svg .social-navigation li a .screen-reader-text {
    clip: auto;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    height: auto;
    position: relative !important;
    width: auto
}

.blogbannerimg,
.bloglist_banner {
    width: 100%;
    height: 95vh;
    position: relative
}

.blog_bold_flex {
    width: 80%;
    margin: 0 auto;
    padding: 3% 0;
    background-color: #fbf2ece6;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    position: absolute;
    bottom: -10%;
    left: 10%
}

.blog_bold_flex h4 {
    font-size: 45px;
    line-height: 48px;
    color: #4f2a14;
    text-align: center;
    margin-bottom: 20px;
    font-family: Baskervville, serif;
    font-weight: 700
}

.blogtextheading {
    width: 60%;
    margin: 0 auto;
    padding: 3% 0;
    background-color: #fbf2ece6;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    position: absolute;
    bottom: -10%;
    left: 20%
}

.blogtextheading h1 {
    font-size: 45px;
    line-height: 48px;
    color: #4f2a14;
    text-align: center;
    margin-bottom: 20px;
    font-family: Baskervville, serif;
    font-weight: 700
}

.blogbannerimg img,
.bloglist_banner img {
    width: 100%;
    height: 95vh;
    object-fit: cover
}

.blogdetails .paraText {
    padding: 10% 0 5%
}

.blogdetails .paraText .richtext p {
    font-size: 16px;
    line-height: 29px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-align: justify;
    margin: 0 0 15px
}

.blogdetails .paraText .richtext h1 {
    color: #0f0f0f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600
}

.blogdetails .paraText .richtext h2 {
    color: #0f0f0f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 35px
}

.blogdetails .paraText .richtext h3 {
    color: #0f0f0f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 35px
}

.blogdetails .paraText .richtext h4 {
    color: #0f0f0f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 30px
}

.blogdetails .paraText .richtext h5 {
    color: #0f0f0f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 30px
}

.blogdetails .paraText .richtext ol {
    margin: 15px 0 0;
    padding: 0 0 0 25px
}

#primary .entry-footer {
    max-width: 80%;
    margin: 0 auto
}

#primary .comments-area,
#primary .navigation {
    max-width: 80%;
    margin: 0 auto
}

.allwebsitebloglist {
    width: 100%;
    padding: 14% 0 5%
}

.allwebsitebloglist .Custome_Blog_list {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.allwebsitebloglist .Custome_Blog_list a.bloglink {
    width: 45%;
    margin: 0 2.5% 5%;
    display: block
}

.allwebsitebloglist .Custome_Blog_list .blog-img {
    height: 365px
}

.allwebsitebloglist .Custome_Blog_list .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.allwebsitebloglist .Custome_Blog_list .blog-title {
    padding: 30px 25px;
    background: #fbf1ea
}

.allwebsitebloglist .Custome_Blog_list a.bloglink h3 {
    font-size: 20px;
    line-height: 35px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-align: center
}

@media screen and (min-width:20em) {
    body.customize-partial-edit-shortcuts-shown .site-header .site-title {
        padding-left: 0
    }
}

@media screen and (min-width:30em) {

    body,
    button,
    input,
    select,
    textarea {
        font-size: 18px;
        font-size: 1.125rem
    }

    h1 {
        font-size: 30px;
        font-size: 1.875rem
    }

    .home.blog .entry-title,
    .page .panel-content .recent-posts .entry-title,
    h2 {
        font-size: 26px;
        font-size: 1.625rem
    }

    h3 {
        font-size: 22px;
        font-size: 1.375rem
    }

    h4 {
        font-size: 18px;
        font-size: 1.125rem
    }

    h5 {
        font-size: 13px;
        font-size: .8125rem
    }

    h6 {
        font-size: 16px;
        font-size: 1rem
    }

    .entry-content blockquote.alignleft,
    .entry-content blockquote.alignright {
        font-size: 14px;
        font-size: .875rem
    }

    img.alignleft {
        float: left;
        margin-right: 1.5em
    }

    img.alignright {
        float: right;
        margin-left: 1.5em
    }

    .site-branding {
        padding: 3em 0
    }

    .panel-content .wrap {
        padding-bottom: 2em;
        padding-top: 3.5em
    }

    .page-one-column .panel-content .wrap {
        max-width: 740px
    }

    .panel-content .entry-header {
        margin-bottom: 4.5em
    }

    .panel-content .recent-posts .entry-header {
        margin-bottom: 0
    }

    .taxonomy-description {
        font-size: 14px;
        font-size: .875rem
    }

    .page-numbers.current {
        font-size: 16px;
        font-size: 1rem
    }

    .site-footer {
        font-size: 16px;
        font-size: 1rem
    }

    .gallery-item {
        max-width: 25%
    }

    .gallery-columns-1 .gallery-item {
        max-width: 100%
    }

    .gallery-columns-2 .gallery-item {
        max-width: 50%
    }

    .gallery-columns-3 .gallery-item {
        max-width: 33.33%
    }

    .gallery-columns-4 .gallery-item {
        max-width: 25%
    }
}

@media screen and (min-width:48em) {

    body,
    button,
    input,
    select,
    textarea {
        font-size: 16px;
        font-size: 1rem;
        line-height: 1.5
    }

    .entry-content blockquote.alignleft,
    .entry-content blockquote.alignright {
        font-size: 13px;
        font-size: .8125rem
    }

    .wrap {
        max-width: 1000px;
        padding-left: 3em;
        padding-right: 3em
    }

    .has-sidebar:not(.error404) #primary {
        float: none;
        width: 100%
    }

    .has-sidebar #secondary {
        float: right;
        padding-top: 0;
        width: 36%;
        display: none
    }

    .error404 #primary {
        float: none
    }

    .site-branding {
        margin-bottom: 0
    }

    .has-header-image.home.blog .site-branding,
    .has-header-image.twentyseventeen-front-page .site-branding,
    .has-header-video.home.blog .site-branding,
    .has-header-video.twentyseventeen-front-page .site-branding {
        bottom: 0;
        display: block;
        left: 0;
        height: auto;
        padding-top: 0;
        position: absolute;
        width: 100%
    }

    .has-header-image.home.blog .custom-header,
    .has-header-image.twentyseventeen-front-page .custom-header,
    .has-header-video.home.blog .custom-header,
    .has-header-video.twentyseventeen-front-page .custom-header {
        display: block;
        height: auto
    }

    .custom-header-media {
        height: 165px;
        position: relative
    }

    .home.blog.has-header-image .custom-header-media,
    .home.blog.has-header-video .custom-header-media,
    .twentyseventeen-front-page.has-header-image .custom-header-media,
    .twentyseventeen-front-page.has-header-video .custom-header-media {
        height: 0;
        position: relative
    }

    .has-header-image:not(.twentyseventeen-front-page):not(.home) .custom-header-media,
    .has-header-video:not(.twentyseventeen-front-page):not(.home) .custom-header-media {
        bottom: 0;
        height: auto;
        left: 0;
        position: absolute;
        right: 0;
        top: 0
    }

    .custom-logo-link {
        padding-right: 2em
    }

    .custom-logo-link img,
    body.home.title-tagline-hidden.has-header-image .custom-logo-link img,
    body.home.title-tagline-hidden.has-header-video .custom-logo-link img {
        max-width: 350px
    }

    .title-tagline-hidden.home.has-header-image .custom-logo-link img,
    .title-tagline-hidden.home.has-header-video .custom-logo-link img {
        max-height: 200px
    }

    .site-title {
        font-size: 36px;
        font-size: 2.25rem
    }

    .site-description {
        font-size: 16px;
        font-size: 1rem
    }

    .navigation-top {
        bottom: 0;
        font-size: 14px;
        font-size: .875rem;
        left: 0;
        position: absolute;
        right: 0;
        width: 100%;
        z-index: 3
    }

    .navigation-top .wrap {
        max-width: 1000px;
        padding: .75em 3.4166666666667em
    }

    .navigation-top nav {
        margin-left: -1.25em
    }

    .site-navigation-fixed.navigation-top {
        bottom: auto;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 7
    }

    .admin-bar .site-navigation-fixed.navigation-top {
        top: 32px
    }

    .js .dropdown-toggle,
    .js .menu-toggle {
        display: none
    }

    .main-navigation {
        width: auto
    }

    .js .main-navigation ul,
    .js .main-navigation ul ul,
    .js .main-navigation>div>ul {
        display: block
    }

    .main-navigation ul {
        background: 0 0;
        padding: 0
    }

    .main-navigation>div>ul {
        border: 0;
        margin-bottom: 0;
        padding: 0
    }

    .main-navigation li {
        border: 0;
        display: inline-block
    }

    .main-navigation li li {
        display: block
    }

    .main-navigation a {
        padding: 1em 1.25em
    }

    .main-navigation ul ul {
        background: #fff;
        border: 1px solid #bbb;
        left: -999em;
        padding: 0;
        position: absolute;
        top: 100%;
        z-index: 99999
    }

    .main-navigation ul li.menu-item-has-children:after,
    .main-navigation ul li.menu-item-has-children:before,
    .main-navigation ul li.page_item_has_children:after,
    .main-navigation ul li.page_item_has_children:before {
        border-style: solid;
        border-width: 0 6px 6px;
        content: "";
        display: none;
        height: 0;
        position: absolute;
        right: 1em;
        bottom: -1px;
        width: 0;
        z-index: 100000
    }

    .main-navigation ul li.menu-item-has-children.focus:after,
    .main-navigation ul li.menu-item-has-children.focus:before,
    .main-navigation ul li.menu-item-has-children:hover:after,
    .main-navigation ul li.menu-item-has-children:hover:before,
    .main-navigation ul li.page_item_has_children.focus:after,
    .main-navigation ul li.page_item_has_children.focus:before,
    .main-navigation ul li.page_item_has_children:hover:after,
    .main-navigation ul li.page_item_has_children:hover:before {
        display: block
    }

    .main-navigation ul li.menu-item-has-children:before,
    .main-navigation ul li.page_item_has_children:before {
        border-color: transparent transparent #bbb;
        bottom: 0
    }

    .main-navigation ul li.menu-item-has-children:after,
    .main-navigation ul li.page_item_has_children:after {
        border-color: transparent transparent #fff
    }

    .main-navigation ul ul li.focus>ul,
    .main-navigation ul ul li:hover>ul {
        left: 100%;
        right: auto
    }

    .main-navigation ul ul a {
        padding: .75em 1.25em;
        width: 16em
    }

    .main-navigation li li {
        -webkit-transition: background-color .2s ease-in-out;
        transition: background-color .2s ease-in-out
    }

    .main-navigation li li.focus,
    .main-navigation li li:hover {
        background: #767676
    }

    .main-navigation li li a {
        -webkit-transition: color .3s ease-in-out;
        transition: color .3s ease-in-out
    }

    .main-navigation li li a:focus,
    .main-navigation li li a:hover,
    .main-navigation li li.current-menu-item a:focus,
    .main-navigation li li.current-menu-item a:hover,
    .main-navigation li li.current_page_item a:focus,
    .main-navigation li li.current_page_item a:hover,
    .main-navigation li li.focus>a,
    .main-navigation li li:focus>a,
    .main-navigation li li:hover>a {
        color: #fff
    }

    .main-navigation ul li.focus>ul,
    .main-navigation ul li:hover>ul {
        left: .5em;
        right: auto
    }

    .main-navigation .menu-item-has-children>a>.icon,
    .main-navigation .page_item_has_children>a>.icon {
        display: inline;
        left: 5px;
        position: relative;
        top: -1px
    }

    .main-navigation ul ul .menu-item-has-children>a>.icon,
    .main-navigation ul ul .page_item_has_children>a>.icon {
        margin-top: -9px;
        left: auto;
        position: absolute;
        right: 1em;
        top: 50%;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

    .main-navigation ul ul ul {
        left: -999em;
        margin-top: -1px;
        top: 0
    }

    .main-navigation ul ul li.menu-item-has-children.focus:after,
    .main-navigation ul ul li.menu-item-has-children.focus:before,
    .main-navigation ul ul li.menu-item-has-children:hover:after,
    .main-navigation ul ul li.menu-item-has-children:hover:before,
    .main-navigation ul ul li.page_item_has_children.focus:after,
    .main-navigation ul ul li.page_item_has_children.focus:before,
    .main-navigation ul ul li.page_item_has_children:hover:after,
    .main-navigation ul ul li.page_item_has_children:hover:before {
        display: none
    }

    .site-header .site-navigation-fixed .menu-scroll-down {
        display: none
    }

    .site-header .menu-scroll-down {
        display: block;
        padding: 1em;
        position: absolute;
        right: 0
    }

    .site-header .menu-scroll-down .icon {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .site-header .menu-scroll-down {
        color: #fff;
        top: 2em
    }

    .site-header .navigation-top .menu-scroll-down {
        color: #767676;
        top: .7em
    }

    .menu-scroll-down:focus {
        outline: thin dotted
    }

    .menu-scroll-down .icon {
        height: 18px;
        width: 18px
    }

    .home.blog.has-header-image .site-branding,
    .home.blog.has-header-video .site-branding,
    .twentyseventeen-front-page.has-header-image .site-branding,
    .twentyseventeen-front-page.has-header-video .site-branding {
        margin-bottom: 70px
    }

    .home.blog.has-header-image .custom-header-media,
    .home.blog.has-header-video .custom-header-media,
    .twentyseventeen-front-page.has-header-image .custom-header-media,
    .twentyseventeen-front-page.has-header-video .custom-header-media {
        height: 1200px;
        height: 100vh;
        max-height: 100%;
        overflow: hidden
    }

    .home.blog.has-header-image .custom-header-media:before,
    .home.blog.has-header-video .custom-header-media:before,
    .twentyseventeen-front-page.has-header-image .custom-header-media:before,
    .twentyseventeen-front-page.has-header-video .custom-header-media:before {
        height: 33%
    }

    .admin-bar.home.blog.has-header-image .custom-header-media,
    .admin-bar.home.blog.has-header-video .custom-header-media,
    .admin-bar.twentyseventeen-front-page.has-header-image .custom-header-media,
    .admin-bar.twentyseventeen-front-page.has-header-video .custom-header-media {
        height: calc(100vh - 32px)
    }

    .panel-content .wrap {
        padding-bottom: 4.5em;
        padding-top: 6em
    }

    .panel-image {
        height: 100vh;
        max-height: 1200px
    }

    .background-fixed .panel-image {
        background-attachment: fixed
    }

    .page-two-column .panel-content .entry-header {
        float: left;
        width: 36%
    }

    .page-two-column .panel-content .entry-content {
        float: right;
        width: 58%
    }

    .page-two-column .panel-content .recent-posts {
        clear: right;
        float: right;
        width: 58%
    }

    .panel-content .recent-posts article {
        margin-bottom: 4em
    }

    .page-two-column #primary .panel-content .recent-posts .entry-content,
    .page-two-column #primary .panel-content .recent-posts .entry-header,
    .panel-content .recent-posts .entry-content,
    .panel-content .recent-posts .entry-header {
        float: none;
        width: 100%
    }

    .panel-content .recent-posts .entry-header {
        margin-bottom: 1.5em
    }

    .page .panel-content .recent-posts .entry-title {
        font-size: 26px;
        font-size: 1.625rem
    }

    .site-content {
        padding: 5.5em 0 0
    }

    .page .entry-title,
    .single-post .entry-title {
        font-size: 26px;
        font-size: 1.625rem
    }

    .comments-pagination,
    .post-navigation {
        clear: both
    }

    .post-navigation .nav-previous {
        float: left;
        width: 50%
    }

    .post-navigation .nav-next {
        float: right;
        text-align: right;
        width: 50%
    }

    .nav-next,
    .post-navigation .nav-next {
        margin-top: 0
    }

    .sticky .icon-thumb-tack {
        height: 23px;
        left: -2.5em;
        top: 1.5em;
        width: 32px
    }

    body.has-sidebar.error404 #primary .page-header,
    body.page-two-column.archive:not(.has-sidebar) #primary .page-header,
    body.page-two-column:not(.archive) #primary .entry-header,
    body:not(.has-sidebar):not(.page-one-column) .page-header {
        float: left;
        width: 36%
    }

    .archive:not(.page-one-column):not(.has-sidebar) #primary article,
    .blog:not(.has-sidebar) #primary article,
    .error404.has-sidebar #primary .page-content,
    .error404:not(.has-sidebar) #primary .page-content,
    .search:not(.has-sidebar) #primary article,
    body.page-two-column #comments,
    body.page-two-column:not(.archive) #primary .entry-content {
        float: right;
        width: 58%
    }

    .archive .site-main>article,
    .blog .site-main>article,
    .search .site-main>article {
        padding-bottom: 4em
    }

    .navigation.pagination {
        clear: both;
        float: right;
        width: 58%
    }

    .archive.page-one-column:not(.has-sidebar) .navigation.pagination,
    .has-sidebar .navigation.pagination {
        float: none;
        width: 100%
    }

    .entry-footer {
        display: table;
        width: 100%
    }

    .entry-footer .cat-tags-links {
        display: table-cell;
        vertical-align: middle;
        width: 100%
    }

    .entry-footer .edit-link {
        display: table-cell;
        text-align: right;
        vertical-align: middle
    }

    .entry-footer .edit-link a.post-edit-link {
        margin-top: 0;
        margin-left: 1em
    }

    :not(.has-sidebar) .entry-content blockquote.alignleft {
        margin-left: -17.5%;
        width: 48%
    }

    :not(.has-sidebar) .entry-content blockquote.alignright {
        margin-right: -17.5%;
        width: 48%
    }

    .has-sidebar .entry-content blockquote.alignleft {
        margin-left: 0;
        width: 34%
    }

    .has-sidebar .entry-content blockquote.alignright {
        margin-right: 0;
        width: 34%
    }

    .has-sidebar #primary .entry-content blockquote.alignright.below-entry-meta {
        margin-right: -72.5%;
        width: 62%
    }

    .archive:not(.has-sidebar) .entry-content blockquote.alignleft,
    .blog:not(.has-sidebar) .entry-content blockquote.alignleft,
    .page-two-column .entry-content blockquote.alignleft,
    .twentyseventeen-front-page.page-two-column .entry-content blockquote.alignleft {
        margin-left: -72.5%;
        width: 62%
    }

    .archive:not(.has-sidebar) .entry-content blockquote.alignright,
    .blog:not(.has-sidebar) .entry-content blockquote.alignright,
    .page-two-column .entry-content blockquote.alignright,
    .twentyseventeen-front-page.page-two-column .entry-content blockquote.alignright {
        margin-right: 0;
        width: 36%
    }

    .format-quote blockquote .icon {
        left: -1.5em
    }

    .archive.page-one-column:not(.has-sidebar) .page-header,
    .page.page-one-column .entry-header,
    .twentyseventeen-front-page.page-one-column .entry-header {
        margin-bottom: 4em
    }

    .page:not(.home) #content {
        padding-bottom: 3.25em
    }

    .error404 .page-content {
        padding-bottom: 9em
    }

    #comments {
        padding-top: 5em
    }

    .comments-title {
        margin-bottom: 2.5em
    }

    ol.children .children {
        padding-left: 2em
    }

    .nav-links .nav-title {
        position: relative
    }

    .nav-title-icon-wrapper {
        position: absolute;
        text-align: center;
        width: 2em
    }

    .nav-links .nav-previous .nav-title .nav-title-icon-wrapper {
        left: -2em
    }

    .nav-links .nav-next .nav-title .nav-title-icon-wrapper {
        right: -2em
    }

    #secondary {
        font-size: 14px;
        font-size: .875rem;
        line-height: 1.6
    }

    h2.widget-title {
        font-size: 11px;
        font-size: .6875rem;
        margin-bottom: 2em
    }

    .site-footer {
        font-size: 14px;
        font-size: .875rem;
        line-height: 1.6;
        margin-top: 3em
    }

    .site-footer .widget-column.footer-widget-1 {
        float: left;
        width: 36%
    }

    .site-footer .widget-column.footer-widget-2 {
        float: right;
        width: 58%
    }

    .social-navigation {
        clear: left;
        float: left;
        margin-bottom: 0;
        width: 36%
    }

    .site-info {
        float: left;
        padding: .7em 0 0;
        width: 58%
    }

    .social-navigation+.site-info {
        margin-left: 6%
    }

    .site-info .sep {
        margin: 0 .5em;
        display: inline;
        visibility: visible;
        height: auto;
        width: auto
    }

    .gallery-columns-5 .gallery-item {
        max-width: 20%
    }

    .gallery-columns-6 .gallery-item {
        max-width: 16.66%
    }

    .gallery-columns-7 .gallery-item {
        max-width: 14.28%
    }

    .gallery-columns-8 .gallery-item {
        max-width: 12.5%
    }

    .gallery-columns-9 .gallery-item {
        max-width: 11.11%
    }
}

@media screen and (min-width:67em) {
    .navigation-top .wrap {
        padding: .75em 2em
    }

    .navigation-top nav {
        margin-left: 0
    }

    .sticky .icon-thumb-tack {
        font-size: 32px;
        font-size: 2rem;
        height: 22px;
        left: -1.25em;
        top: .75em;
        width: 32px
    }

    .page-numbers {
        display: inline-block
    }

    .page-numbers.current {
        font-size: 15px;
        font-size: .9375rem
    }

    .page-numbers.current .screen-reader-text {
        clip: rect(1px, 1px, 1px, 1px);
        height: 1px;
        overflow: hidden;
        position: absolute !important;
        width: 1px
    }

    .comment-body {
        margin-left: 0
    }
}

@media screen and (min-width:79em) {
    .has-sidebar .entry-content blockquote.alignleft {
        margin-left: -20%
    }

    .archive:not(.has-sidebar) .entry-content blockquote.alignright,
    .blog:not(.has-sidebar) .entry-content blockquote.alignright,
    .page-two-column .entry-content blockquote.alignright,
    .twentyseventeen-front-page .entry-content blockquote.alignright {
        margin-right: -20%
    }
}

@media screen and (max-width:48.875em) and (min-width:48em) {

    .admin-bar .site-navigation-fixed.navigation-top,
    .admin-bar .site-navigation-hidden.navigation-top {
        top: 46px
    }
}

@media print {

    #secondary,
    .comment-edit-link,
    .comment-metadata .edit-link,
    .comment-reply-link,
    .comment-respond,
    .comments-pagination,
    .content-bottom-widgets,
    .edit-link,
    .header-image,
    .icon-thumb-tack,
    .navigation-top,
    .page-links,
    .pagination.navigation,
    .panel-image-prop,
    .pingback .edit-link,
    .post-navigation,
    .site-footer aside.widget-area,
    .site-info,
    .social-navigation,
    button,
    form,
    input,
    select,
    textarea {
        display: none !important
    }

    #comments,
    .entry-footer,
    .single-featured-image-header,
    .site-footer {
        border: 0
    }

    body {
        font-size: 12pt
    }

    h1 {
        font-size: 24pt
    }

    h2 {
        font-size: 22pt
    }

    h3 {
        font-size: 17pt
    }

    h4 {
        font-size: 12pt
    }

    h5 {
        font-size: 11pt
    }

    h6 {
        font-size: 12pt
    }

    .page .panel-content .entry-title,
    .page-title,
    body.page:not(.twentyseventeen-front-page) .entry-title {
        font-size: 10pt
    }

    .wrap {
        padding-left: 5% !important;
        padding-right: 5% !important;
        max-width: none
    }

    .site-header {
        background: 0 0;
        padding: 0
    }

    .custom-header-media {
        padding: 0
    }

    .home.blog.has-header-image .site-branding,
    .home.blog.has-header-video .site-branding,
    .twentyseventeen-front-page.has-header-image .site-branding,
    .twentyseventeen-front-page.has-header-video .site-branding {
        position: relative
    }

    .site-branding {
        margin-top: 0;
        margin-bottom: 1.75em !important
    }

    .site-title {
        font-size: 25pt
    }

    .site-description {
        font-size: 12pt;
        opacity: 1
    }

    .single-featured-image-header {
        background: 0 0
    }

    .entry-meta {
        font-size: 9pt
    }

    .site,
    body {
        background: 0 0 !important
    }

    .site-title a,
    .twentyseventeen-front-page.has-header-image .site-title,
    .twentyseventeen-front-page.has-header-image .site-title a,
    .twentyseventeen-front-page.has-header-video .site-title,
    .twentyseventeen-front-page.has-header-video .site-title a,
    a,
    body {
        color: #222 !important
    }

    .entry-meta,
    .entry-meta a,
    .site-description,
    .twentyseventeen-front-page.has-header-image .site-description,
    .twentyseventeen-front-page.has-header-video .site-description,
    blockquote,
    h2,
    h5 {
        color: #777 !important
    }

    .entry-content blockquote.alignleft,
    .entry-content blockquote.alignright {
        font-size: 11pt;
        width: 34%
    }

    .site-footer {
        padding: 0
    }
}

.post-template-default .wrap {
    padding: 0;
    max-width: 100%
}

.richtext ul.lightlist li {
    font-weight: 400;
    margin: 0 0 8px;
}


/* ======== style.css ======== */
Utilities CSS Minifier Online CSS Minifier Tool and Compressor,
with Fast and Simple API Access Input CSS .slick-next:before,
.slick-prev::before {
    color: #000;
    font-size: 36px;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.loader,
.slick-next,
.slick-prev {
    top: 50%
}

#myImg {

    border-radius: 5px;

    cursor: pointer;

    transition: 0.3s;

}


.faqslidersection h2 {
    visibility: visible;
    animation-name: fadeIn;
    text-align: center;
    background: #f4e6dc;
    padding: 35px;
    color: #4f2a14;

}

#myImg:hover {
    opacity: 0.7;
}



/* The Modal (background) */

.modal {

    display: none;
    /* Hidden by default */

    position: fixed;
    /* Stay in place */

    z-index: 9999;
    /* Sit on top */

    padding-top: 100px;
    /* Location of the box */

    left: 0;

    top: 0;

    width: 100%;
    /* Full width */

    height: 100%;
    /* Full height */

    overflow: auto;
    /* Enable scroll if needed */

    background-color: rgb(0, 0, 0);
    /* Fallback color */

    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */

}



/* Modal Content (image) */

.modal-content {

    margin: auto;

    display: block;

    width: 28%;

    /* max-width: 490px; */

}

/*   li.submenustart.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-464 {
    margin-top: 6%;
}
li.submenustart.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-533{
    margin-top: 6%;
} */

/* Caption of Modal Image */

#caption {

    margin: auto;

    display: block;

    width: 80%;

    max-width: 700px;

    text-align: center;

    color: #ccc;

    padding: 10px 0;

    height: 150px;

}



/* Add Animation */

.modal-content,
#caption {

    -webkit-animation-name: zoom;

    -webkit-animation-duration: 0.6s;

    animation-name: zoom;

    animation-duration: 0.6s;

}



@-webkit-keyframes zoom {

    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }

}



@keyframes zoom {

    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }

}



/* The Close Button */

.modal-up .close {

    position: fixed;
    top: 5%;
    right: 31%;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 9999;
    opacity: 111;

}


.blog-feed-card {
    display: flex;
    border: 1px solid rgba(204, 204, 204, 0.563);
}

.blog-feed-text {
    margin-left: 9px;
    padding: 10px 6px;
}

.blog-feed-text p {
    font-size: 14px;
}

.blog-feed-text a {
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.blog-feed-text h4 {
    font-weight: 700;
    margin-bottom: 9px;
}

.blog-feed-card .blog-feed-img img {
    height: 130px;
    width: 239px;
}

.latest-blogs {
    padding-bottom: 40px;
}

.close:hover,

.close:focus {

    color: #bbb;

    text-decoration: none;

    cursor: pointer;

}




.btnbox a,
.homebannerslider,
.masthead,
.mega-menu__sub.fmenuhead .nav-main,
.related,
.servicelinksbox ul.subnav li a,
.videobox {
    position: relative
}

.socialiconsbox a,
header {
    -webkit-transition: .5s;
    -o-transition: .5s
}

.saconsultsection .wpcf7 .wpcf7-recaptcha iframe {
    margin-left: 10px;
}

.googlelanguage #google_translate_element,
.menubox {
    float: right
}

.whatsapp-icon {
    width: 50px;
    position: fixed;
    bottom: 5%;
    right: 2%;
    background: white;
    border-radius: 50px;
    box-shadow: 0 0 12px #ccc;
    transition: 0.5s;
    z-index: 999;
}

.whatsapp-icon:hover {
    box-shadow: none;
}

.btnbox a,
.menubtntoggle,
.menutext {
    vertical-align: middle
}

.headerlogo .logotext,
.landinghead {
    font-weight: 700;
    font-family: Baskervville, serif
}

.blogbox,
.cathoverbox,
.centerit,
.landingcontent {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical
}

.footerasection4 a,
.socialiconsbox a,
a {
    text-decoration: none !important
}

.btnbox a,
.contactmenuaddress,
.landingheadnownew span,
.listbannertext h1 span,
.logosubtext,
.menutext,
.namebox p,
.namedetails .address,
.quoteup .category-quote,
.topnav ul li a,
.translatesection a {
    text-transform: uppercase
}

.blogbox,
.cathoverbox,
.centerit,
.landingcontent,
.serviceslistbox .richtext p {
    -webkit-box-orient: vertical
}

.serviceslistbox .whitebtn.btnbox,
.topnav ul li a {
    text-align: left
}

.detailtabbtnbox ul,
.hospitallist ul,
.servicelinksbox ul {
    list-style-type: none
}



.servicedetailbody,
.servicedetailbody .pagewrapper,
.servicedetailbody .wrapper,
body,
html {
    overflow: visible
}

#loader-wrapper,
.blogimg,
.categorybox,
.doctorimg,
.drsudhanvapage .imgbox,
.googlelanguage,
.imghidden,
.pagewrapper,
.procedurebox,
.serviceslistbox .richtext p,
.testimonialslide,
.wrapper,
body.home {
    overflow: hidden
}

.loadercss {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #4f2a14;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    -webkit-animation: 2s linear infinite spin;
    animation: 1.4s linear infinite spin;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.slidertextbox .related {
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0
}

.detailsslider .slick-slide,
.detailsslider img,
.slick-slide,
.testimonialslider .slick-slide {
    height: auto
}

.slick-next:before {
    content: 'â€º';
}

.slick-prev::before {
    content: 'â€¹';
}

.p0 {
    padding: 0 !important
}

.richtext p {
    margin-bottom: 15px
}

.aboutmetext p span,
.cverticaltabs .richtext p span,
.cverticaltabs .richtext p strong,
.dandp-bannertext p span,
.firstletter p:first-child::first-letter,
.quotetextbox p span,
.whymebox .richtext p span {
    font-size: 96px;
    display: inline-block;
    margin-top: 0;
    margin-right: 5px;
    color: #0f0f0f;
    font-family: Baskervville, serif;
    text-align: center;
    line-height: 83px;
    float: left
}

.wrapper {
    width: 100%;
    margin: 0 auto
}

#loader-wrapper {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: fixed;
    background: #fff;
    z-index: 999999999999999;
    top: 0;
    left: 0
}

.loader {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

body {
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
    background: #fff;
    top: 0 !important;
    width: 100% !important
}

.landingsection {
    min-height: 100vh;
    background: url("../images/landingbg.jpg") 0 0/cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.landingcontent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 12% 0 12% 10%
}

.cotentindexcol,
.detailtabbtnbox .nav>li>a,
.doctorimgbox,
.faqslidersection {
    padding: 0
}

.landingheadnownew {
    width: 100%;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 5%;
    left: 0
}

.landinghead {
    font-size: 33px;
    color: #fff
}

.landingheadnownew span {
    font-size: 16px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-align: center;
    letter-spacing: .8px;
    line-height: 15px
}

.bigtext {
    font-size: 63px;
    line-height: 72px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px
}

.bannertext span,
.btnbox a,
.contactmenuaddress,
.logosubtext {
    font-family: 'Montserrat', sans-serif
}

.landingcontent .richtext p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif
}

.landingcontent .richtext {
    margin-bottom: 30px
}

.btnbox a {
    display: inline-block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-box-shadow: 0 0 1px transparent;
    box-shadow: 0 0 1px transparent;
    -webkit-transition-property: color;
    -o-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 0
}

.btnbox a.btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease
}

.btnbox a:hover {
    color: #333
}

.btnbox a.btn:active:before,
.btnbox a.btn:focus:before,
.btnbox a.btn:hover:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -o-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66)
}

.socialiconsbox {
    padding: 5px 0;
    display: inline;
    margin-left: 10%;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.socialiconsbox a {
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-align: center;
    margin-right: 20px;
    transition: .5s;
    outline: 0 !important
}

.drsudhanvapage .imgbox img:hover,
.socialiconsbox a:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

/* Old Font Awesome rule - now using SVG icons */

/* Old Font Awesome icon rules - now handled by SVG icon colors below */

.forminput.textarea,
.galleyinner,
.img-responsive,
.pricing_table,
.pricing_table_flex .card .card-header,
.serviceslistbox .topprothumb img,
header {
    width: 100%
}

/* Old Font Awesome icon rules - now handled by SVG icon colors below */

.bannertext {
    position: absolute;
    top: 50%;
    right: 10%;
    text-align: right;
    opacity: 0;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s
}

.bannerbox,
header {
    top: 0;
    left: 0;
    position: absolute
}

.bannerbox.imgshow .bannertext,
.detailsslideitem:hover .detailsslideroverlay,
.related.showtext span {
    opacity: 1
}

.bannertext span {
    font-size: 45px;
    color: #fff
}

.contactmenulinker a,
section.saconsultsection.contactsaconsultsection.videoconsultationsection .richtext p strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700
}

.opacity0 {
    opacity: 0
}

.imgshow:nth-child(odd) img {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: 3s ease-in-out 1s forwards cssAnimation-s;
    animation: 3s ease-in-out 1s forwards cssAnimation-s
}

.imgshow:nth-child(2n) img {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: 3s ease-in-out 1s forwards cssAnimation;
    animation: 3s ease-in-out 1s forwards cssAnimation
}

@-webkit-keyframes cssAnimation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1.2) translateX(-25px);
        transform: scale(1.2) translateX(-25px)
    }
}

@keyframes cssAnimation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1.2) translateX(-25px);
        transform: scale(1.2) translateX(-25px)
    }
}

@-webkit-keyframes cssAnimation-s {
    0% {
        opacity: 1;
        -webkit-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1.2) translateX(25px);
        transform: scale(1.2) translateX(25px)
    }
}

@keyframes cssAnimation-s {
    0% {
        opacity: 1;
        -webkit-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1.2) translateX(25px);
        transform: scale(1.2) translateX(25px)
    }
}

header {
    z-index: 99;
    transition: .5s
}

header.bgwhite {
    -webkit-box-shadow: 0 2px 10px #ccc;
    box-shadow: 0 2px 10px #ccc;
    position: fixed;
    min-height: 80px;
    z-index: 999;
    background: #fff
}

.headerbox {
    padding: 9px 6% 0 7.4%
}

.headerlogo .logotext {
    font-size: 35px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 35px
}

.logosubtext {
    font-size: 16px;
    color: #fff;
    text-align: center;
    letter-spacing: .8px;
    line-height: 9px
}

.googlelanguage {
    min-height: 30px;
    position: relative;
    width: 68%;
    float: right
}

.googlelanguage:after {
    content: url(../images/google.png);
    position: absolute;
    right: 150px;
    top: 38%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

#primary .entry-footer,
.entry-footer .edit-link,
.goog-logo-link,
.goog-te-banner-frame.skiptranslate {
    display: none !important
}

.goog-te-gadget {
    color: transparent !important
}

.procedurebox:nth-child(4) .text p,
.procedurebox:nth-child(6) .text p,
header.bgwhite .contactmenuaddress,
header.bgwhite .contactmenulinker,
header.bgwhite .contactmenulinker a,
header.bgwhite .headerlogo .logotext,
header.bgwhite .logosubtext,
header.bgwhite .menutext,
header.headerwhite .contactmenuaddress,
header.headerwhite .contactmenulinker a,
header.headerwhite .headerlogo .logotext,
header.headerwhite .logosubtext,
header.headerwhite .menutext,
select.goog-te-combo {
    color: #000
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
    height: 27px;
    padding-left: 30px
}

.menubox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -1px
}

.contactmenuaddress {
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    text-align: right
}

.contactmenulinker,
.procedurebox:nth-child(5) .text p {
    color: #fff
}

.contactmenulinker img {
    width: 30px;
    padding: 5px;
    margin-right: 3px
}

.contactmenulinker a {
    font-size: 19px;
    line-height: 30px;
    color: #fff;
    letter-spacing: .5px
}

.headerlogo {
    float: left;
    top: -26px;
    position: relative
}

.headerlogo a {
    display: block;
    margin: 5px 0 0;
    text-align: center
}

header.bgwhite .headerlogo {
    top: -20px
}

.rightheader {
    float: right;
    margin-top: -5px
}

.menutext {
    font-size: 19px;
    line-height: 60px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    display: inline-block
}

.cathoverbox,
.menutogglebox,
.topnav ul {
    display: -webkit-box;
    display: -ms-flexbox
}

.menutogglebox {
    margin-left: 20px;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.menubtntoggle {
    width: 40px;
    height: 60px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-top: -2px
}

.cathoverbox,
.quotesectiontextbox,
.slidertextbox {
    width: 100%;
    height: 100%;
    left: 0
}

.menubtntoggle span {
    position: absolute;
    width: 70%;
    height: 3px;
    top: 0;
    right: 0;
    background: #fff;
    border-radius: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.menubtntoggle span:first-child {
    top: 35%
}

.menubtntoggle span:nth-child(2) {
    top: 49.5%
}

.menubtntoggle span:nth-child(3) {
    top: 65%
}

.translatesection {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    max-width: 800px;
    text-align: center;
    background: #fbf2ec;
    padding: 2%
}

.navbox,
header.headerwhite {
    background: #fff
}

.translatesection h3 {
    font-size: 30px;
    line-height: 39px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px
}

.translatesection a {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 46px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    background: #fff;
    padding: 0 10px;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-box-shadow: 0 0 20px #ccc;
    box-shadow: 0 0 20px #ccc;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%)
}

.slidersection {
    min-height: 100vh
}

.imghidden {
    max-height: 496px
}

.slidertextbox {
    position: absolute;
    top: 0
}

.related span {
    position: initial;
    font-size: 45px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: right;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    line-height: 50px
}

.cathoverbox h2,
.cathoverbox p {
    color: #fcf5eb;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300
}

header.bgwhite .contactmenulinker img {
    filter: invert()
}

.main-paragraph-section .btnbox a.btn:before,
.menubtntoggle.times span,
header.bgwhite .menubtntoggle span {
    background: #000
}

.menubtntoggle.times span:nth-child(2),
.row.categoryblock-row:after,
.row.categoryblock-row:before,
.row.reachusflex:after,
.row.reachusflex:before {
    display: none
}

.menubtntoggle.times span:first-child {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    -ms-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
    top: 50%;
    width: 80%;
    left: 75%
}

.menubtntoggle.times span:nth-child(3) {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-50%, 50%) rotate(45deg);
    -ms-transform: translate(-50%, 50%) rotate(45deg);
    transform: translate(-50%, 50%) rotate(45deg);
    width: 80%;
    top: 50%;
    left: 75%
}

.navbox {
    width: 100%;
    min-height: 50px;
    position: relative;
    z-index: 99999
}

.topnav ul {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    border-bottom: 1px solid #baa586
}

.topnav ul li {
    text-align: center;
    display: inline-block;
    padding: 10px
}

.navinnerbox {
    max-width: 90%;
    margin: auto
}

.topnav ul li a {
    -webkit-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s;
    padding-bottom: 10px;
    font-size: 20px;
    margin-top: 5px;
    font-weight: 300;
    color: #baa586;
    font-family: 'Montserrat', sans-serif
}

.row.categoryblock-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.row.categoryblock-row .col-md-4.col-sm-4.match.p0 {
    width: 20% !important
}

.categorybox {
    min-height: calc(90vw / 3);
    background-size: cover;
    position: relative;
    border: 1.5px solid #a76435;
    border-right: 0;
    background-position: center
}

.row.categoryblock-row .col-md-4.col-sm-4.match.p0:nth-of-type(2) .categorybox {
    background-position: 35%
}

.row.categoryblock-row .col-md-4.col-sm-4.match.p0:last-child .categorybox {
    border-right: 1.5px solid #a76435
}

.before {
    content: "";
    position: absolute
}

.cathoverbox {
    position: absolute;
    top: 0;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #00000040;
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s;
    opacity: 1;
    z-index: 10
}

.aboutmeimgslidebox,
.aboutmeimgslidebox .aboutmeimgslideimg,
.procedurerow {
    display: -webkit-box;
    display: -ms-flexbox
}

.cathoverbox h2 {
    font-size: 35px;
    text-align: center;
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s;
    opacity: 1;
    -webkit-transform: translateY(350%);
    -ms-transform: translateY(350%);
    transform: translateY(350%)
}

.row.categoryblock-row .col-md-4.col-sm-4.match.p0:last-child .cathoverbox h2 {
    -webkit-transform: translateY(195%);
    -ms-transform: translateY(195%);
    transform: translateY(195%)
}

.cathoverbox p {
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    opacity: 0;
    -webkit-transition: 2s .5s;
    -o-transition: 2s .5s;
    transition: 2s .5s;
    -webkit-transform: translateY(570%);
    -ms-transform: translateY(570%);
    transform: translateY(570%)
}

.cathoverbox .iconsbox {
    height: 50px;
    width: 50px;
    margin: 10px auto;
    border: 2px solid #fff;
    border-radius: 4px;
    text-align: center;
    opacity: 0;
    -webkit-transition: 2s 1s;
    -o-transition: 2s 1s;
    transition: 2s 1s;
    -webkit-transform: translateY(700%);
    -ms-transform: translateY(700%);
    transform: translateY(700%)
}

.categorybox:hover .cathoverbox {
    opacity: 1;
    background: #0000009e
}

.categorybox:hover .cathoverbox h2 {
    opacity: 1;
    -webkit-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    transform: translateY(-45%);
    font-weight: 700
}

.row.categoryblock-row .col-md-4.col-sm-4.match.p0:last-child .categorybox:hover .cathoverbox h2 {
    -webkit-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    transform: translateY(-45%)
}

.categorybox:hover .cathoverbox p {
    opacity: 1;
    -webkit-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    transform: translateY(-45%)
}

.categorybox:hover .cathoverbox .iconsbox {
    opacity: 1;
    -webkit-transform: translateY(-35%);
    -ms-transform: translateY(-35%);
    transform: translateY(-35%)
}

.cathoverbox .iconsbox i {
    line-height: 46px;
    color: #fff;
    font-size: 30px
}

.category-quote {
    max-width: 90%;
    margin: 0 auto;
    font-size: 16px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    padding: 2% 0;
    border-bottom: 1px solid #ccc;
    text-align: center
}

.aboutmesection h1 {
    font-size: 37px;
    line-height: 48px;
    color: #0f0f0f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: 3%
}

.aboutmetext p,
.cverticaltabs .richtext p,
.quotetextbox p {
    font-size: 16px;
    line-height: 29px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300
}

.aboutmesection,
.testimonialdetailsection {
    padding: 2% 0
}

.aboutmeimgslidebox {
    max-width: 640px;
    margin: auto;
    display: flex;
    padding: 2% 0
}

.aboutmeimgslidebox .aboutmeimgslideimg {
    width: 140px;
    margin: 5px;
    height: 140px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden
}

.quotesection {
    margin: 3% 0 0;
    position: relative
}

.quotesectiontextbox {
    position: absolute;
    top: -70px
}

.quotetextbox {
    background: #fbf1ea;
    margin-left: 46.5%;
    padding: 5% 3% 3%;
    width: 45%
}

.quotesectiontextbox .btnbox a.btn:hover {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    -webkit-box-shadow: none;
    box-shadow: none
}

.quotetextbox p em {
    font-size: 18px;
    font-weight: 800;
    margin: 20px 0 30px;
    text-align: center;
    display: block
}

.quotesectiontextbox .btnbox {
    margin-top: 30px;
    margin-left: 47%;
    width: 45%;
    text-align: center
}

.blogsection .btnbox a.btn:before,
.quotesectiontextbox .btnbox a.btn:before,
.whitebtn.btnbox a.btn:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1)
}

.blogsection .btnbox a.btn:hover:before,
.quotesectiontextbox .btnbox a.btn:hover:before,
.whitebtn.btnbox a.btn:hover:before {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0)
}

.quotesectiontextbox .btnbox a.btn {
    line-height: 37px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-weight: 500;
    padding: 0 20px
}

.quotesectiontextbox .btnbox a.btn i {
    font-weight: 500;
    font-size: 30px;
    display: inline-block;
    position: relative;
    top: 5px
}

.proceduresection {
    padding: 4% 0 0
}

.proceduresection h2 {
    color: #000;
    font-family: Baskervville, serif;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    margin: 0 0 6%
}

.procedurebox .text,
.procedurebox .text p,
.procedurebox p {
    font-size: 26px;
    color: #000;
    font-family: 'Montserrat', sans-serif
}

.procedurebox {
    position: relative;
    margin: 20px 0;
    -webkit-box-shadow: 0 0 10px #ccc;
    box-shadow: 0 0 10px #ccc
}

.img-square {
    width: 100%;
    height: calc(80vw / 3);
    object-fit: cover
}

.procedurebox .text {
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.procedurebox .text p {
    position: relative;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    z-index: 2
}

.blogtext .richtext a,
.blogtext .richtext p,
.videobox .richtext a,
.videobox .richtext p {
    font-size: 14px;
    line-height: 26px
}

.procedurebox .text:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 20px;
    width: 100%;
    z-index: 1;
    background: #dfc8c3;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    padding: 10px
}

.blogimg img,
.doctorimgbox img {
    -webkit-transition: 1s;
    -o-transition: 1s;
    object-fit: cover
}

.procedurebox:hover .text:before {
    height: 40px
}

.hideblock h1 {
    font-size: 50px;
    color: #000;
    text-align: center;
    line-height: normal;
    margin-bottom: 2%;
    font-family: Baskervville, serif;
    font-weight: 700;
    margin-top: 60px;
}


.procedurerow {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.procedurerow .procedurebox {
    width: 29%;
    margin: 2%;
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px)
}

.procedurerow .procedurebox:nth-child(3n-1) {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.quoteup .category-quote {
    border: 0;
    border-top: 1px solid #ccc
}

.category-quote h5,
.smallheadingsection h5 {
    color: #4f2a14
}

.testimonialsection {
    background: #fbf1ea;
    padding: 2% 0 4%
}

.testimonialsection h2 {
    font-size: 50px;
    color: #000;
    font-family: Baskervville, serif;
    font-weight: 700;
    text-align: center;
    line-height: normal;
    margin-bottom: 3%
}

.doctorimgbox img {
    transition: 1s;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto
}

.testimonialslide .slick-slide {
    height: auto;
    padding: 13px
}

.testimonialblock {
    padding: 0;
    background: #fff
}

.contactsaconsultsection .sacblock1 .richtext p,
.contactsaconsultsection .sacblock1>*,
.industrystandarsliderblock .richtext p,
.pricing-section p,
.richtext.richtextcenterpara p,
.testimonialbox {
    text-align: center
}

.testname {
    font-size: 18px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300
}

.testdesignation,
.testimonilaltext p {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300
}

.testdesignation {
    color: #585858;
    font-style: italic
}

.testimonilaltext {
    position: relative;
    padding: 25px 0 25px 15px;
    margin: 20px 30px 20px 20px;
    height: 260px
}

.mCSB_inside>.mCSB_container,
.testimonilaltext .mCSB_inside>.mCSB_container {
    margin-right: 30px !important
}

.testimonilaltext .mCSB_scrollTools .mCSB_draggerContainer {
    left: 30px
}

.testimonilaltext:before {
    content: url("../images/testimonialquote.png");
    position: absolute;
    top: 6px;
    left: -8px;
    z-index: 1
}

.testimonilaltext p {
    line-height: 28px;
    color: #3b3b3b;
    text-align: center;
    z-index: 1;
    position: relative
}

.testimonialimg {
    margin: auto
}

.blogimg,
.fmenuhead {
    margin: 10px 0
}

.testimonialslide .slick-dots {
    bottom: 20px;
    opacity: 1
}

.testimonialslide .slick-dots li.slick-active button:before {
    background: #a76435;
    opacity: 1
}

.testimonialslide .slick-dots li button {
    background: 0 0;
    padding: 0;
    height: 10px;
    width: 20px;
    opacity: 1
}

.blogsection .btnbox a i,
.whitebtn.btnbox a i {
    padding-left: 20px;
    display: inline-block;
    position: relative
}

.testimonialslide .slick-dots li button:before {
    content: '';
    height: 10px;
    width: 10px;
    border-radius: 50%;
    opacity: 1;
    border: 1px solid #a76435
}

.testimonialslide .slick-prev::before {
    content: '‹';
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #000;
    font-size: 46px
}

.testimonialslide .slick-next:before {
    content: '›';
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #000;
    font-size: 46px
}

.testimonialslide .slick-prev {
    left: 20px
}

.testimonialslide .slick-next {
    right: 20px
}

.testimonialslide .slick-next,
.testimonialslide .slick-prev {
    z-index: 1;
    top: 65%
}

.blogsection {
    padding: 3% 0;
    position: relative
}

.blogsection:before,
.videosection:before {
    content: '';
    height: 50%;
    bottom: 0;
    left: 0;
    background: #fbf1ea;
    width: 100%;
    position: absolute;
    z-index: -1
}

.blogsection h2 {
    font-size: 50px;
    color: #000;
    text-align: center;
    line-height: normal;
    margin-bottom: 2%;
    font-family: Baskervville, serif;
    font-weight: 700
}

.blogtext {
    padding: 20px 5px 2px;
    position: relative
}

.blogrow .col-md-4:nth-child(2n) .blogbox .blogtext {
    margin-top: 19px
}

.blogtext h3 {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    font-family: Poppins;
    font-weight: 600;
    text-align: center
}

.blogtext .richtext p {
    color: #000;
    font-family: Poppins;
    font-weight: 400;
    text-align: center;
    letter-spacing: .8px;
    display: inline
}

.blogtext .richtext a {
    font-style: italic;
    letter-spacing: .8px;
    font-family: Poppins;
    color: #957f70
}

.blogimg {
    position: relative;
    width: 360px;
    height: 255px
}

.blogimg img {
    transition: 1s;
    width: 100%;
    height: 100%
}

.blogtext:after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -68px;
    height: 50px;
    width: 3px;
    background: #000;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s
}

.blogbox:hover .blogimg img,
.faqsliderimgbox img:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.blogbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.blogrow .col-md-4:nth-child(2n) .blogbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.blogrow .col-md-4:nth-child(2n) .blogbox .blogtext:after {
    top: -75px;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s
}

.row.blogrow {
    margin-bottom: 2.5%
}

.blogsection .btnbox a.btn,
.whitebtn.btnbox a.btn {
    line-height: 45px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-weight: 500;
    padding: 0 20px;
    -webkit-box-shadow: 0 0 10px #ccc;
    box-shadow: 0 0 10px #ccc
}

.blogsection .btnbox {
    text-align: center;
    margin: 20px auto
}

.blogsection .btnbox a.btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000
}

.blogsection .btnbox a i {
    font-weight: 500;
    font-size: 30px;
    top: 5px
}

/* SVG Icons - Replaces Font Awesome */
.svg-icon {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.svg-icon-angle-right,
.svg-icon-chevron-right {
    width: 0.5em;
    margin-left: 0.5em;
}

.svg-icon-angle-down,
.svg-icon-chevron-left {
    width: 0.625em;
}

.svg-icon-envelope,
.svg-icon-facebook,
.svg-icon-facebook-square,
.svg-icon-twitter,
.svg-icon-instagram,
.svg-icon-youtube-play {
    width: 1.25em;
    height: 1.25em;
}

/* Social Media Icon Colors in Reach Us Section */
.reachbox ul li:first-of-type a .svg-icon-envelope,
.socialiconsbox a:first-of-type .svg-icon-envelope {
    fill: #d44638 !important;
    width: 34px !important;
    height: 34px !important;
}

.reachbox ul li:nth-of-type(2) a .svg-icon-facebook-square,
.socialiconsbox a:nth-of-type(2) .svg-icon-facebook {
    fill: #1877f2 !important;
    width: 34px !important;
    height: 34px !important;
}

.reachbox ul li:nth-of-type(3) a .svg-icon-twitter,
.socialiconsbox a:nth-of-type(3) .svg-icon-twitter {
    fill: #1da1f2 !important;
    width: 34px !important;
    height: 34px !important;
}

.reachbox ul li:nth-of-type(4) a .svg-icon-instagram,
.socialiconsbox a:nth-of-type(4) .svg-icon-instagram {
    fill: url(#instagram-gradient) !important;
    width: 34px !important;
    height: 34px !important;
}

.reachbox ul li:nth-of-type(5) a .svg-icon-youtube-play,
.socialiconsbox a:nth-of-type(5) .svg-icon-youtube-play {
    fill: #FF0000 !important;
    width: 34px !important;
    height: 34px !important;
}

.btn .svg-icon {
    margin-left: 10px;
    width: 0.8em;
    height: 0.8em;
}

.caccordiontogglebox .svg-icon {
    margin-right: 10px;
}

/* Comments Section Styles - Fix font size with !important to override blog.css */
#comments {
    clear: both;
    padding: 2em 0 0.5em;
}

.comments-title {
    font-size: 28px !important;
    margin-bottom: 1.5em;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
    color: #000;
}

.comment-list,
.comment-list .children {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list li:before {
    display: none;
}

.comment-body {
    margin-left: 65px;
    margin-bottom: 2em;
    font-size: 18px !important;
}

.comment-author {
    font-size: 20px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
    margin-bottom: 0.4em;
    position: relative;
    z-index: 2;
}

.comment-author .fn {
    font-size: 20px !important;
    font-family: 'Montserrat', sans-serif !important;
}

.comment-author .avatar {
    height: 50px;
    left: -65px;
    position: absolute;
    width: 50px;
    border-radius: 50%;
}

.comment-author .says {
    display: none;
}

.comment-meta {
    margin-bottom: 1em;
}

.comment-metadata {
    color: #767676;
    font-size: 15px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
}

.comment-metadata a {
    color: #767676;
    text-decoration: none;
    font-size: 15px !important;
}

.comment-metadata a:hover {
    color: #000;
}

.comment-metadata a.comment-edit-link {
    color: #222;
    margin-left: 1em;
    font-size: 15px !important;
}

.comment-content,
.comment-content p {
    color: #333 !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    margin-bottom: 1em;
}

.comment-reply-link {
    font-weight: 600;
    font-size: 16px !important;
    color: #957f70;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif !important;
}

.comment-reply-link:hover {
    color: #000;
}

.children .comment-author .avatar {
    height: 30px;
    left: -45px;
    width: 30px;
}

.children .comment-body {
    margin-left: 45px;
}

.bypostauthor>.comment-body>.comment-meta>.comment-author .avatar {
    border: 2px solid #957f70;
    padding: 2px;
}

.no-comments,
.comment-awaiting-moderation {
    color: #767676;
    font-size: 18px !important;
    font-style: italic;
    font-family: 'Montserrat', sans-serif !important;
}

.comments-pagination {
    margin: 2em 0 3em;
}

/* Comment Form Styles */
.comment-form label {
    font-size: 18px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    color: #000;
    display: block;
    margin-bottom: 0.5em;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px 15px;
    font-size: 18px !important;
    font-family: 'Montserrat', sans-serif !important;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 1em;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form .form-submit {
    text-align: right;
    margin: 20px 0 0;
}

.comment-form .submit {
    background: #957f70;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    background: #000;
}

.comment-form #wp-comment-cookies-consent {
    margin: 0 10px 0 0;
}

.comment-form .comment-form-cookies-consent label {
    display: inline;
    font-size: 16px !important;
}

.videosection {
    padding: 1% 0 4%;
    position: relative
}

.videosection h2 {
    font-size: 50px;
    color: #000;
    text-align: center;
    line-height: normal;
    margin: 1% 0 3%;
    font-family: Baskervville, serif;
    font-weight: 700
}

.videobox img {
    z-index: 1;
    height: 100%;
    object-fit: cover
}

.vimglink {
    display: block;
    height: 100%
}

.centerit,
.footerlinkblock {
    display: -webkit-box;
    display: -ms-flexbox
}

.videobox a.vimglink:after {
    content: url(../images/playbtn.png);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.videobox video {
    width: 100%;
    height: auto
}

.whitebtn.btnbox {
    text-align: center;
    margin: 0 auto;
    padding-top: 2%
}

.detailssliderbox {
    padding-top: 2%
}

.whitebtn.btnbox a.btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background: #000;
    border: 2px solid #000
}

.whitebtn.btnbox a i {
    font-weight: 500;
    font-size: 24px;
    top: 3px
}

.videobox .richtext {
    padding: 4% 5%
}

.videobox .richtext p {
    color: #000;
    font-family: Poppins;
    font-weight: 300;
    text-align: center;
    display: inline
}

.videobox .richtext a {
    font-style: italic;
    color: #957f70
}

.namebox h1,
.namebox p,
.namedetails .phonenoh1 a {
    color: #000;
    text-align: center
}

.footer1section {
    padding: 6% 0;
    background: url("../images/bgfooter2.jpg") 0 0/cover no-repeat
}

.footer1block {
    background-color: #f6e1d2;
    padding: 4%
}

.centerit {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column
}

.namebox h1 {
    font-size: 33px;
    font-family: "Bask Old Face"
}

.namebox p {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif
}

.namedetails .phonenoh1 a {
    font-size: 35px;
    line-height: 19px;
    font-family: 'Montserrat', sans-serif;
    display: block
}

.namedetails .address {
    font-size: 13px;
    line-height: 19px;
    color: #151515;
    font-family: 'Montserrat', sans-serif;
    display: block;
    text-align: center
}

.namedetails .whitebtn a.btn {
    line-height: 37px;
    -webkit-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
    letter-spacing: 0
}

.fmenuhead ul li:last-child {
    border: none
}

.footerlinkbox:last-child {
    padding-left: 4%
}

.aboutmubaiandindia-section,
.footersection2 {
    padding: 4% 0
}

.reachbox ul,
.row.reachusflex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0
}

.reachbox h2 {
    font-size: 25px;
    letter-spacing: 0;
    line-height: 19px;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-weight: 500;
    margin: 0 0 20px 10px
}

.mob-menu ul li,
.reachbox ul li {
    list-style: none
}

.reachbox ul li a {
    display: block;
    margin: 10px
}

/* Old Font Awesome rule - now using SVG icons */

.reachbox ul li:nth-of-type(4) a i {
    background: -webkit-gradient(linear, left top, left bottom, from(#515bd4), color-stop(#8134af), color-stop(#dd2a7b), color-stop(#feda77), to(#f58529));
    background: -o-linear-gradient(#515bd4, #8134af, #dd2a7b, #feda77, #f58529);
    background: linear-gradient(#515bd4, #8134af, #dd2a7b, #feda77, #f58529);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.hospitallist ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    margin: 0
}

.hospitallist ul li h4 {
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30px;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0 0 5px
}

.hospitallist ul li p {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px
}

.fmenuhead ul li a,
.footerlinkbox h1 a {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif
}

.footerasection4 {
    background: #292828;
    padding: 1.5% 2.1%;
    text-align: center;
    font-size: 13px;
    line-height: 26px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300
}

.footerasection4 a {
    color: #fff
}

.footerasection4 a:hover {
    color: #f6e1d2
}

.footerasection3 {
    padding: 2% 0;
    background: #252323;
    position: relative
}

.fmenuhead ul li {
    list-style: none;
    padding-right: 20px;
    margin: 10px 0;
    display: inline-block;
    border-right: 2px solid #fff
}

.fmenuhead ul li:nth-of-type(7),
.pricing_table tbody tr td:last-child,
.pricing_table thead tr th:last-child {
    border-right: 0
}

.fmenuhead ul li:nth-of-type(13) {
    border-right: 0;
}

.fmenuhead ul li:nth-of-type(19) {
    border-right: 0;
}

.fmenuhead ul li:nth-of-type(26) {
    border-right: 0;
}

.fmenuhead ul li:nth-of-type(31) {
    border-right: 0;
}

.fmenuhead ul li:nth-of-type(38) {
    border-right: 0;
}

.fmenuhead ul li:nth-of-type(44) {
    border-right: 0;
}

.fmenuhead ul li:nth-of-type(44) {
    border-right: 0;
}

.fmenuhead ul li:nth-of-type(50) {
    border-right: 0;
}

.fmenuhead ul li:nth-of-type(57) {
    border-right: 0;
}

.fmenuhead ul li a {
    line-height: 20px;
    color: #fff
}

.footerlinkblock {
    border-top: .5px solid #ffffff8c;
    padding: 3% 0;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.forminputbox,
.serviceslistblock {
    display: -ms-flexbox;
    display: -webkit-box
}

.fmenuhead li.submenustart ul li:first-child,
.fmenuhead ul li:first-child {
    padding-left: 0
}

.footerlinkbox h1 {
    margin-bottom: 10px
}

.footerlinkbox h1 a {
    color: #fff
}

.footerlinkbox ul li {
    list-style: none;
    position: relative
}

.fmenuhead li.submenustart ul li a:before,
.footerlinkbox ul li a:before {
    position: absolute;
    top: 14px;
    content: '';
    left: 0;
    width: 5px;
    height: 1px;
    background: #fff
}

.footerlinkbox ul li a {
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    padding-left: 15px
}

.footerlinkbox {
    width: 20%;
    padding: 5px
}

.listbannertext {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5% 4% 1%;
    background-color: #fbf2ece6;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    -webkit-transform: translateY(-24%);
    -ms-transform: translateY(-24%);
    transform: translateY(-24%)
}

.listbannertext.dandp-bannertext {
    padding: 4% 4% 0;
    transform: none
}

.listbannertext h1,
.pricingtableinner h4 {
    font-size: 45px;
    line-height: 48px;
    color: #4f2a14;
    text-align: center;
    margin-bottom: 20px;
    font-family: Baskervville, serif;
    font-weight: 700;
    text-transform: capitalize
}

.listbannertext h1 span {
    font-size: 16px;
    line-height: 30px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 0;
    display: block;
    font-weight: 300
}

.listbannertext .richtext p,
.pricingtableinner p {
    font-size: 16px;
    line-height: 29px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    text-align: center
}

.listbannertext .richtext ul li,
.pricingtableinner li,
.pricingtableinner ul {
    font-size: 16px;
    line-height: 29px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif
}

.serviceslistsection {
    padding: 1% 0 3%;
    margin-top: 14%
}

.serviceslistblock {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.serviceslistbox {
    width: 33%;
    padding: 2%;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.serviceslistbox:nth-child(3n) {
    border-right: 1px solid transparent
}

.serviceslistbox:first-child,
.serviceslistbox:nth-child(2),
.serviceslistbox:nth-child(3) {
    border-top: 1px solid transparent
}

.serviceslistbox .topprothumb {
    width: 100%;
    margin: 0 0 15px
}

.serviceslistbox h3 {
    font-size: 24px;
    line-height: 35px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 3%;
    text-align: center
}

.sacblock1 h2,
.sacblock1 h4 {
    font-size: 36px;
    line-height: 48px;
    color: #3e3b36
}

.serviceslistbox .richtext {
    margin-bottom: 12%;
    height: 212px
}

.serviceslistbox .richtext p {
    font-size: 15px;
    line-height: 26px;
    color: #413f3f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7
}

.serviceslistbox:hover,
.thingsflex .serviceslistbox:hover {
    background: #fbf5ec
}

.serviceslistbox .whitebtn.btnbox a.btn {
    line-height: 35px
}

.servicelinksbox {
    padding: 3.5%;
    max-width: 1050px;
    margin: auto;
    text-align: center
}

.dr-sudhuu {
    margin: 0 auto;
    max-width: 1009px;
    padding: 2%
}

.smallheadingsection.dr-tit {
    padding: 12px 0 3%
}

.servicelinksbox ul li {
    padding-right: 20px;
    display: inline-block
}

.servicelinksbox ul li:last-child {
    color: #fff0
}

.servicelinksbox ul li a {
    font-size: 15px;
    line-height: 24px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-align: center;
    padding: 10px
}

.saconsultsection {
    border-top: 1px solid #ccc;
    padding: 5% 0
}

.sacblock1 h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-weight: 500
}

.input,
.sacblock1 h4 {
    font-family: 'Montserrat', sans-serif
}

.sacblock1 h4 {
    font-weight: 300;
    margin-bottom: 15px
}

.sacblock1 .richtext p {
    font-size: 22px;
    line-height: 32px;
    color: #413f3f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-weight: 600
}

.forminputbox {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.forminput.textarea .input {
    height: 100px
}

.dropdown .input {
    -webkit-appearance: none
}

.dropdown:after {
    content: 'â–¼';
    position: absolute;
    right: 10px;
    top: 25px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    font-size: 16px;
    opacity: 1
}

select::-ms-expand {
    display: none
}

.input {
    width: 100%;
    height: 53px;
    line-height: 25px;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #dedede;
    outline: 0 !important;
    font-size: 15px;
    color: #413f3f;
    font-weight: 300
}

.input:focus {
    border: 1px solid #000
}

.sacblock2 {
    max-width: 90%;
    margin-left: 10%
}

.formbutton .btn {
    height: 45px;
    background: #4f2a14;
    border-radius: 0;
    padding: 0 30px;
    font-size: 14px;
    line-height: 45px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500
}

.detailssliderdescriptionsection h5,
.slidersettingsbox .slidername,
h5.reachhead {
    font-size: 16px;
    line-height: 30px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase
}

.detailsslideitem {
    padding-right: 10px;
    position: relative
}

.detailsslideitem .detailsslideroverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 10px);
    height: 100%;
    opacity: 0;
    background: #ffffff6e;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s
}

.slidersettingsbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 60px
}

.sliderno {
    font-size: 25px;
    line-height: 30px;
    color: #4a4845;
    font-family: 'Montserrat', sans-serif
}

.detailsslider .slick-next,
.detailsslider .slick-prev {
    top: -30px;
    right: 10px;
    left: auto;
    height: 35px;
    width: 35px;
    text-align: center;
    border: 1px solid #ccc;
    background: #bba88f
}

.detailsslider .slick-prev {
    right: 50px
}

.detailsslider .slick-prev:before {
    content: 'â€¹';
    font-size: 25px;
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.detailsslider .slick-next:before {
    content: 'â€º';
    font-size: 25px;
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.faqsliderbox .slick-next::before,
.faqsliderbox .slick-prev::before,
.testimonialslider .slick-next::before,
.testimonialslider .slick-prev::before {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 50px;
    opacity: 1
}

.detailssliderdescriptionsection {
    padding: 20px 0;
    max-width: 950px;
    margin: auto
}

.detailssliderdescriptionsection .richtext,
.detailssliderdescriptionsection .richtext p {
    font-size: 14px;
    line-height: 23px;
    color: #727272;
    font-family: 'Montserrat', sans-serif;
    text-align: center
}

.detailssliderdescriptionsection h5,
h5.reachhead {
    text-align: center;
    margin: 10px 0
}

.detailtabbtnbox {
    padding: 1% 0
}

.detailtabbtnbox ul li {
    display: inline-block;
    padding: 0 2%
}

.detailtabbtnbox ul li a {
    font-size: 18px;
    line-height: 29px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-weight: 500
}

.detailtabbtnbox ul li a i {
    font-size: 24px;
    padding-left: 9px;
    position: relative;
    top: 2px
}

.whymebox {
    padding: 3% 0 0
}

.whymebox h3 {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 42px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 3%
}

.testimonialdetailsection h1,
.testimonialwriter {
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    text-align: center
}

.richtext ul.indicationlist-ul li,
.whymebox .richtext p {
    font-size: 16px;
    line-height: 29px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: 15px
}

.whymebox .richtext ol,
.whymebox .richtext ul {
    padding: 0 0 0 25px
}

.whymebox .richtext ol li,
.whymebox .richtext ul li {
    font-size: 16px;
    line-height: 29px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: 10px
}

.whymebox2 {
    padding: 0 0 4%
}

.testimonialwriter {
    font-size: 18px;
    line-height: 29px;
    font-weight: 300;
    margin-top: 4%
}

.testimonialslideitem .richtext p {
    font-size: 22px;
    line-height: 29px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-weight: 600;
    text-align: center
}

.testimonialslideitem {
    background: #fff;
    padding: .7% 1%
}

.testimonialslider .slick-next,
.testimonialslider .slick-prev {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.faqsliderbox .slick-prev,
.testimonialslider .slick-prev {
    left: -50px
}

.faqsliderbox .slick-next,
.testimonialslider .slick-next {
    right: -50px
}

.testimonialslider .slick-prev::before {
    content: 'â€¹';
    color: #fff
}

.testimonialslider .slick-next::before {
    content: 'â€º';
    color: #fff
}

.testimonialdetailsection h1 {
    font-size: 16px;
    line-height: 30px;
    margin: 2% 0 1%
}

.testimonialsliderbox {
    background: url("../images/testimonialbg.png") center/cover fixed;
    padding: 5% 0
}

.testimonialslider {
    max-width: 1000px;
    margin: auto
}

.beltdetailssection {
    background: #bba88f;
    padding: 3% 0;
    margin: 2% 0
}

.beltdetailssection p {
    font-size: 26px;
    letter-spacing: 1px;
    line-height: 42px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center
}

.faqsection {
    background: url("../images/faqbg.png") center/cover fixed;
    padding: 5% 0
}

.detailsslider.hideblock,
.detailssliderdescriptionsection .richtext.hideblock,
.faqsection.hideblock,
.hideicons,
.manswerbox,
.morequestion.hideblock,
.newtestblck.hideblock,
.slidersettingsbox.hideblock,
.subss,
body.home footer#footer,
body.home header,
svg.icon.icon-angle-down {
    display: none
}

.morequestion {
    padding: 2% 0 0
}

.morequestion h1 {
    font-size: 30px;
    line-height: 38px;
    color: #080808;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-align: center;
    margin: 2%
}

.manswerbox,
.vtablinkbox h3 {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300
}

p.mquestion {
    font-size: 16px;
    line-height: 48px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif
}

.caccordionbox {
    max-width: 95%;
    margin: 30px 0;
    border: 1px solid #4f2a14;
    padding: 0 20px 0 0;
    position: relative
}

.caccordiontogglebox {
    width: 100%;
    margin: 5px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer
}

.caccordiontogglebox i {
    line-height: 40px;
    font-size: 24px;
    color: #4f2a14;
    height: 40px;
    width: 40px;
    text-align: center
}

.manswerbox {
    padding: 20px;
    font-size: 16px;
    line-height: 30px;
    color: #000;
    letter-spacing: 1px
}

.manswerbox p span {
    font-style: italic;
    font-color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500
}

.srcollcontent {
    height: 420px;
    overflow: auto
}

.whitebg {
    padding: 5% 4%;
    background: #fff
}

.vtablinkbox h3 b,
.vtablinkbox h3 strong {
    font-size: 35px;
    line-height: 48px;
    color: #000;
    font-family: 'Montserrat', sans-serif
}

.vtablinkbox h3 {
    font-size: 35px;
    line-height: 48px;
    color: #000
}

.cverticaltabs h3,
.richtext p {
    font-weight: 300;
    font-family: 'Montserrat', sans-serif
}

.cverticaltabs h3,
.cverticaltabs h2 {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 45px;
    color: #000;
    border-left: 2px solid #000;
    margin-bottom: 20px;
    padding: 0 20px
}

.vtablinkbox .nav-pills>li {
    float: none;
    width: 100%
}

.vtablinkbox .nav-pills>li>a {
    font-size: 14px !important;
    letter-spacing: 1px;
    line-height: 48px !important;
    color: #000;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    text-transform: uppercase
}

.vtablinkbox .nav {
    padding-top: 20px
}

.vtablinkbox .nav>li>a:focus,
.vtablinkbox .nav>li>a:hover {
    text-decoration: none;
    background-color: #fff0
}

.vtablinkbox .nav-pills>li.active>a,
.vtablinkbox .nav-pills>li.active>a:focus,
.vtablinkbox .nav-pills>li.active>a:hover {
    color: #4f2a14;
    background-color: #fff0
}

.richtext p {
    font-size: 16px;
    line-height: 29px;
    color: #2c2c2c;
    text-align: justify
}

.richtext ul {
    margin-left: 35px
}

.richtext ul li {
    font-size: 16px;
    line-height: 23px;
    color: #2c2c2c;
    font-weight: 700;
    text-align: left;
    margin-bottom: 3px
}

.datarow1 {
    padding: 1.5% 0 3%
}

.dandp-bannertext {
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none
}

.dandp-bannertext p {
    font-size: 16px;
    line-height: 29px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-align: left !important;
    margin-bottom: 10px
}

.bestmeblock .bigtext,
.faqslidercontentbox h2,
.faqslidersection h1 {
    font-size: 30px;
    line-height: 42px;
    letter-spacing: 1px
}

.faqslidersection h1 {
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    background: #fbf1ea;
    padding: 1% 0
}

.faqslidercontentbox h2 {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccbca6
}

.standardcontent h5,
.textitalicmix h5 {
    font-size: 16px;
    line-height: 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-weight: 1000
}

.faqslidercontentbox .richtext,
.low-mar {
    margin-top: 0
}

#menu-item-663,
.faqslidercontentbox ul {
    padding: 0 0 0 20px
}

.faqslidercontentbox .solid-line {
    height: 1px;
    margin: 25px 0 20px;
    width: 100%;
    background: #ccbca6
}

.faqslidercontentbox ul li {
    font-size: 16px;
    line-height: 29px;
    color: #2c2c2c;
    font-weight: 300;
    text-align: left;
    margin: 0 0 10px
}

#int-acc p:last-child,
.faqslidercontentbox ul li:last-child,
section.accre .cardinnew ol li:last-child,
section.accre .cardinnew ul li:last-child {
    margin: 0
}

.faqslidercontentbox ul li ul {
    margin: 10px 0 0;
    padding: 0 0 0 20px
}

.faqslidercontentbox ul li ul li {
    line-height: 24px;
    margin: 0 0 5px
}

.faqslidercontentbox .richtext p {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #2c2c2c;
    text-align: left;
    margin: 0
}

.faqsliderbox {
    padding: 5% 0 8%;
    max-width: 1000px;
    margin: auto
}

.faqslidercontentbox,
.faqsliderimgbox {
    background: #fbf1ea;
    border: 1px solid #c6b6ab;
    overflow: hidden
}

.faqsliderimgbox {
    min-height: 485px
}

.faqsliderimgbox img {
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    height: 100%;
    object-fit: cover
}

.faqslidercontentbox {
    padding: 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.faqsliderbox .slick-next,
.faqsliderbox .slick-prev {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto;
    height: auto
}

.faqsliderbox .slick-prev::before {
    content: 'â€¹';
    color: #000
}

.faqsliderbox .slick-next::before {
    content: 'â€º';
    color: #000
}

.faqsliderbox .slick-slide {
    height: auto !important
}

.mCSB_scrollTools .mCSB_draggerContainer {
    background: #cb987a;
    width: 2px;
    left: 20px
}

.mCSB_scrollTools .mCSB_dragger {
    background: #4f2a14;
    height: 24px !important;
    width: 9px;
    border-radius: 0;
    left: -4px
}

.tablistbox .nav-tabs {
    border-bottom: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.tablistbox .nav-tabs li {
    margin: 0;
    padding: 0
}

.tablistbox .nav-tabs li a {
    font-family: Baskervville, serif;
    font-weight: 600
}

.detailtabbtnbox .nav-tabs>li>a:hover {
    border-color: transparent
}

.detailtabbtnbox .nav>li>a:focus,
.detailtabbtnbox .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent
}

.page-template-servicedetails .pagewrapper,
.page-template-servicedetails .wrapper {
    overflow: initial
}

.detailtabbtnbox {
    background: #bba88f;
    position: -webkit-sticky;
    position: sticky;
    top: 95px;
    z-index: 95
}

.get-form,
.tch-text {
    z-index: 999;
    position: fixed
}

.smallheadingsection {
    max-width: 100%;
    font-size: 16px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    padding: 2% 0 3%;
    border-bottom: 1px solid #d6c6ba;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase
}

.bestmeblock,
.comingsooninner {
    padding: 3% 0
}

.bestmeblock .bigtext {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-weight: 600
}

.bestmeblock .bigtext b {
    font-family: 'Montserrat', sans-serif
}

.industrystandardsection {
    background: #fbf1ea;
    padding: 3% 0 1%
}

.industrystandardblock {
    padding: 3% 0;
    border-bottom: 1px solid #d6c6ba
}

.standardcontent h5 {
    color: #000;
    margin-bottom: 25px
}

.standardcontent h5 i,
.textitalicmix h5 i {
    display: block;
    color: #4f2a14
}

.industrystandardblock .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3% 0
}

.industrystandardblock .row:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.industrystandarsliderblock .richtext {
    text-align: center;
    max-width: 900px;
    margin: auto
}

.industrystandarsliderblock {
    padding-top: 3%
}

.industrystandarslideritem {
    padding: 15px
}

.textitalicmix {
    text-align: center;
    padding: 10px
}

.textitalicmix h5 {
    color: #2c2c2c
}

.richtext h1.heading1,
.smilebox h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300
}

.richtext h1.heading1 {
    font-size: 37px;
    line-height: 48px;
    color: #0f0f0f;
    text-align: left
}

.privatepractisesection {
    margin: 0 0 3%;
    padding-bottom: 3%
}

.privatepractisesection .imgbox {
    max-width: 923px;
    margin: auto
}

.volunteersection {
    background: #fbf1ea;
    position: relative;
    padding-bottom: 5%;
    margin: 0 0 30px
}

.volunteersection.pclass {
    padding: 45px 0 65px
}

.volunteersection:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: #fbf1ea;
    z-index: -1;
    display: none
}

.smileindiasection .related h3.smilehead {
    font-size: 58px;
    color: #0f0f0f;
    font-family: "Bask Old Face";
    text-align: center;
    padding-bottom: 60px;
    position: relative
}

.smileindiasection img.curve {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.smilebox h1 {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 42px;
    color: #000
}

.smilegallery .match:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.contactmap {
    margin: 0 0 4%;
    padding: 4% 0 0;
    border-top: 1px solid #ccc
}

.contactmap iframe.maps {
    width: 100%;
    height: 330px;
    margin-bottom: 0
}

.contactmap .col-md-6 {
    border-right: 1px solid #ccc
}

.contactmap .clinicdetails {
    width: 100%;
    padding: 20px 5px
}

.contactmap .clinicdetails h4 {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 25px;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0 0 10px
}

.contactmap .clinicdetails h6,
.contactmap .clinicdetails p {
    font-size: 14px;
    line-height: 23px;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0
}

.contactmap .clinicdetails h6 {
    margin: 0 0 10px
}

.contactmap .clinicdetails p {
    margin: 0
}

.drsudhanvapage .imgbox img {
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s
}

.titletoggle,
menu.mega-menu .mega-menu__sub .single-css a,
menu.mega-menu .mega-menu__sub .submenustart a {
    transition: color .4s;
    font-size: 20px;
    text-transform: uppercase
}

ul.paddboo {
    margin-bottom: 3% !important
}

section.accre h2 {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: normal;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin: 2% 0
}

section.accre h4,
section.accre ul li {
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif
}

section.accre h4 {
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 20px
}

section.accre ul li {
    font-size: 16px;
    line-height: 29px;
    font-weight: 300;
    list-style: none;
    margin-left: 2.5%;
    position: relative
}

ul.subss h6,
ul.subss li a {
    line-height: normal;
    text-transform: none;
    transition: color .25s;
    z-index: 9999;
    font-weight: 300
}

section.accre ul {
    margin-bottom: 6%
}

section.accre ul li:before {
    position: absolute;
    content: "-";
    left: -14px;
    top: -2px
}

.nopadd {
    padding: 0;
    margin: 0
}

.tch-text {
    background: #f4e6dc;
    padding: 12px 21px;
    border-radius: 3px;
    border: .5px solid #b5a08b;
    text-align: center;
    right: -63px;
    top: 41%;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    cursor: pointer;
    width: 165px;
    text-transform: uppercase
}

.formobile,
.get-form,
ul.subss {
    background: #fff
}

.get-form {
    right: 3%;
    top: 17%;
    border: 1px solid #ba9a75;
    padding: 12px;
    width: 364px;
    max-height: 75vh;
    overflow: auto
}

.form-group.styled-input input,
.form-group.styled-input textarea {
    border: 1px solid #ccc;
    color: #000;
    padding: 8px;
    font-size: 13px;
    width: 100%
}

.fmenuhead li.submenustart ul li a,
.formbutton input[type=submit],
.get-form .senditt {
    font-size: 14px;
    color: #fff;
    font-family: 'Montserrat', sans-serif
}

.get-form .senditt {
    height: 35px;
    background: #4f2a14;
    border-radius: 0;
    padding: 0 21px;
    line-height: 35px;
    font-weight: 500;
    border: none
}

.get-form h3 {
    padding: 0 0 5%;
    font-size: 18px;
    color: #4f2a14
}

ul.paddboo li {
    margin-left: 1.5% !important
}

.procedurebox:first-child .text {
    right: 5%;
    left: auto;
    top: 50%
}

.procedurebox:nth-child(2) .text {
    left: 50%;
    top: 82%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.procedurebox:nth-child(3) .text {
    right: 0;
    left: auto;
    -webkit-transform: translateX(-8%);
    -ms-transform: translateX(-8%);
    top: auto;
    transform: translateX(-8%);
    bottom: 13%
}

.procedurebox:nth-child(4) .text {
    right: 20px;
    left: auto;
    -webkit-transform: translateX(-8%);
    -ms-transform: translateX(-8%);
    top: auto;
    transform: translateX(-8%);
    bottom: 12%;
    color: #000
}

.procedurebox:nth-child(4) img {
    height: 100%;
    object-fit: contain
}

.procedurebox:nth-child(5) .text {
    left: 10%;
    top: 82%
}

.procedurebox:nth-child(5) img {
    transform: rotate3d(0, 2, 0, 180deg)
}

.procedurebox:nth-child(6) .text {
    left: auto;
    top: auto;
    bottom: 10%;
    right: 5%
}

.richtext .mCSB_scrollTools .mCSB_draggerContainer {
    position: absolute;
    top: 0;
    left: 35px
}

.formobile {
    display: none;
    width: 80%;
    padding: 13% 11%;
    top: -3%;
    position: fixed;
    height: 100%
}

header.bgwhite menu.formobile {
    top: 9%
}

.titletoggle {
    padding-bottom: 10px;
    font-weight: 300;
    color: #baa586;
    line-height: 1.5
}

.titletoggle a {
    color: #baa586
}

ul.subss li a {
    color: #7b6356;
    font-size: 17px;
    display: inline-block;
    position: relative;
    padding: 7px 19px
}

.titletoggle i.fa.fa-chevron-right {
    font-size: 16px
}

li.titletoggle1.untoggle ul.subss {
    display: block
}

ul.subss {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 11% 10%;
    z-index: 999
}

ul.subss h6 {
    color: #7b6356;
    font-size: 22px;
    display: inline-block;
    position: relative;
    padding: 3px 0
}

.forminput {
    width: 47%;
    margin: 1.5%;
    display: inline-block;
    float: left
}

.forminput.forminput2.textarea,
.forminput2 {
    width: 97%
}

.formbutton input[type=submit] {
    height: 45px;
    background: #4f2a14;
    border-radius: 0;
    padding: 0 30px;
    line-height: 45px;
    font-weight: 500;
    border: 0;
    outline: 0
}

menu.mega-menu .mega-menu__sub .single-css a {
    padding-bottom: 10px;
    margin-top: 5px;
    font-weight: 300;
    color: #baa586
}

.single-css {
    display: inline-block !important;
    width: auto;
    text-align: center !important;
    margin: 0 2% 0 0
}

.footerasection3 .single-css {
    display: inline-block !important;
    width: 17%;
    text-align: center !important;
    margin: 0 0 0 2%;
}

.footerasection3 .fmenuhead ul li.single-css:nth-child(6) {
    border: none !important;
    padding: 0 !important;
}

menu.mega-menu .mega-menu__sub .submenustart a {
    padding-bottom: 0;
    margin-top: 0;
    font-weight: 300;
    color: #baa586
}

menu.mega-menu .mega-menu__sub .submenustart .sub-menu li a {
    font-weight: 300;
    color: #7b6356;
    text-transform: none;
    font-size: 15px;
    display: inline-block;
    transition: color .25s;
    line-height: 1.2;
    padding: 5px 0;
    position: relative;
    z-index: 9999
}

.mega-menu .mega-menu__sub .submenustart {
    display: inline-block;
    float: left;
    width: 20%;
    margin-top: 1.5%
}

.mega-menu .mega-menu__sub .submenustart ul {
    clear: both
}

.mega-menu .mega-menu__sub .submenustart ul.sub-menu {
    padding: 10px 0 0;
    margin-left: 0
}

#menu-item-640 {
    padding: 0 0 0 50px
}

li#menu-item-375 {
    margin-left: 0;
    margin-right: 30px
}

li#menu-item-582 {
    margin-right: 7.5%
}

li#menu-item-580 {
    margin-right: 13%
}

ul#menu-main-menu {
    border-top: 1px solid #cccccc80;
    position: relative;
    padding: 0 0 14px
}

ul#menu-main-menu:before {
    content: "";
    position: absolute;
    width: 100%;
    background: #cccccc80;
    height: 1px;
    left: 0;
    bottom: 0
}

.mega-menu .mega-menu__sub .submenustart:nth-child(4) {
    position: absolute;
    display: none
}

.fmenuhead li.submenustart {
    display: inline-block;
    float: left;
    width: 20%;
    margin-top: 2%;
    border: 0;
    padding: 0
}

.fmenuhead li.submenustart ul li {
    margin: 0;
    border: 0
}

.fmenuhead li.submenustart ul li a {
    width: 100%;
    line-height: 30px;
    font-weight: 300;
    padding-left: 15px;
    position: relative;
    display: block
}

.fmenuhead li.submenustart ul.sub-menu {
    margin-top: 20px;
    margin-left: 0
}

.mega-menu__sub.fmenuhead .nav-main:before {
    content: "";
    position: absolute;
    width: 100%;
    background: #cccccc80;
    height: 1px;
    left: 0;
    bottom: -10px
}

.fmenuhead li.submenustart ul.sub-menu li {
    width: 100%;
    padding: 0
}

li.submenustart.gallerytab.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-560 {
    top: 300px;
    right: 20%;
    position: absolute
}

li.single-css.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-1378 {
    position: absolute;
    width: 20%;
    padding: 0;
    bottom: -540px;
    right: 13px
}

li#menu-item-1378 {
    margin: 0;
    bottom: -454px;
    right: 35px
}

li#menu-item-560 {
    position: absolute;
    right: 16%;
    bottom: -350px;
    margin: 0;
    top: auto
}

li#menu-item-560>a,
li.submenustart.gallerytab.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-560>a {
    pointer-events: none
}

.servicelinksbox ul.subnav li a:before {
    content: "/";
    position: absolute;
    right: -20px;
    top: 20%
}

.masthead__bg-content {
    position: relative;
    padding-bottom: 0
}

.related.showtext {
    position: absolute;
    top: 35%;
    right: 0;
    text-align: right;
    transform: translate(-16%, 0)
}

h2.slideheading2 {
    height: auto !important;
    font-size: 30px;
    line-height: 39px;
    color: #7b6356;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    text-align: center;
    margin-bottom: 25px
}

.slidet-caps {
    padding: 20px;
    background-color: #fbf2ece6;
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
    position: absolute;
    width: 65%;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0)
}

.slidet-caps h2.slideheading2 {
    font-family: Baskervville, serif;
    font-weight: 700
}

a.button.js-anchor-link {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(-10%);
    -webkit-transition: background .4s;
    -o-transition: background .4s;
    transition: background .4s;
    background: #fff;
    display: block;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 14px !important;
    letter-spacing: 1px;
    line-height: 46px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    -webkit-box-shadow: 0 0 10px #ccc;
    box-shadow: 0 0 10px #ccc
}

.masthead__bg-content.slick-current.slick-active:nth-child(odd) img {
    animation: 8s alternate-reverse fadezoom
}

@keyframes fadezoom {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.05)
    }
}

.masthead__bg-content.slick-current.slick-active:nth-child(2n) img {
    animation: 8s alternate-reverse fadein
}

@keyframes fadein {
    0% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

.masthead__bg-content.slick-current.slick-active:first-child img,
.masthead__bg-content.slick-current.slick-active:nth-child(2) img {
    animation: 8s alternate-reverse fadezoom1
}

@keyframes fadezoom1 {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.05)
    }
}

.masthead__bg-content.slick-slide {
    height: 100vh;
    margin: 0 0 45px
}

.img-sp {
    height: 91vh;
    width: 100%;
    overflow: hidden
}

.slick-slide .img-sp img {
    height: 91vh;
    width: 100%;
    object-fit: cover
}

.classforindication {
    padding: 25% 0 0;
    position: relative
}

.classforindication .listingbanner {
    transform: none;
    z-index: 1;
    margin: 0 0 10%
}

.classforindication .bgimghere {
    position: absolute;
    top: 0;
    width: 100%;
    height: 700px;
    left: 0;
    z-index: -1;
    overflow: hidden
}

.classforindication .bgimghere img.img-responsive {
    object-fit: cover
}

.galley-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.galley-col {
    width: 22%;
    margin: 0 1% 30px
}

.galley-row.vidergalleryrow .galley-col {
    width: 31%
}

.galley-col a {
    display: block;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer
}

.galley-col a img {
    width: 100%;
    height: 241px;
    object-fit: cover
}

.galley-col a .descname {
    width: 100%;
    padding: 15px 10px;
    text-align: center;
    border: 1px solid #bba88f;
    background: #fff;
    border-radius: 0 0 5px 5px;
    border-top: 0
}

.galley-col a .descname h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: #bba88f;
    text-align: center
}

.galley-col a .descname p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #4f2a14;
    text-align: center;
    margin: 0
}

.row-flexx {
    margin: 0 auto
}

.row-boxx {
    margin: 15px
}

.row-flexx .slick-next,
.row-flexx .slick-prev {
    width: auto;
    height: auto;
    top: 42%
}

.img-boks img {
    width: 100%;
    border-radius: 8px;
    height: 203px;
    object-fit: cover
}

.img-boks p {
    transition: color .4s;
    text-transform: uppercase;
    padding-bottom: 10px;
    font-size: 14px;
    margin-top: 12px;
    line-height: 20px;
    font-weight: 300;
    color: #baa586;
    text-align: center
}

.hrff {
    background: #ccc;
    height: 1px;
    width: 100%;
    display: grid;
    margin: 3% auto 4%;
    position: relative
}

.whymebox h5 {
    font-size: 16px;
    line-height: 30px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 0 0 15px;
    text-transform: uppercase
}

.datarow1 h2,
.listbannertext.dandp-bannertext h2 {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 25px
}

.datarow1 h3,
.listbannertext.dandp-bannertext h3 {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 25px
}

.comingsooninner h2 {
    font-size: 45px;
    line-height: 60px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 0
}

.container.richtext.richtextcenterpara.topthisup {
    margin-top: -30px
}

.container.richtext.richtextcenterpara.topthisup ul {
    column-count: 2
}

.container.richtext.richtextcenterpara.topthisup ul li {
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300
}

.richtext blockquote p {
    font-size: 32px;
    font-weight: 800;
    margin: 30px 0 40px;
    text-align: center
}

.servicemainbannerimg {
    width: 100%;
    height: 95vh;
    object-fit: cover
}

.contactpagebanner,
.proceduresinlist {
    height: 95vh
}

.contactpagebanner img,
.proceduresinlist img {
    height: 95vh;
    object-fit: cover
}

.practcetexttop {
    width: 100%;
    padding: 2% 0
}

.practcetexttop h4 {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 35px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0;
    text-align: justify
}

.internationalpatient-inner .richtext.toptext h4::first-letter,
.patientstravellingto-section .richtext.toptext h4::first-letter,
.practcetexttop h4::first-letter {
    font-size: 90px;
    display: inline-block;
    margin-top: 0;
    margin-right: 5px;
    color: #0f0f0f;
    font-family: Baskervville, serif;
    text-align: justify;
    line-height: 83px;
    float: left
}

.aboutdoctorhouse {
    width: 100%;
    margin: 35px 0 45px;
    display: flex;
    align-items: center;
    justify-content: center
}

.doctorhouse-text {
    width: 35%;
    padding: 30px 40px;
    border: 1px solid #c6b6ab
}

.pricing-section,
body.page-id-458 .serviceslistbox:nth-of-type(11),
body.page-id-458 .serviceslistbox:nth-of-type(12),
body.page-id-653 .serviceslistbox:nth-of-type(5),
body.page-id-653 .serviceslistbox:nth-of-type(6) {
    border-bottom: 1px solid #ccc
}

.krasivatop {
    padding: 45px 0
}

.doctorhouseimages-slider .doctorhouseimages-slide.slick-slide {
    height: 440px
}

.doctorhouseimages-slider .doctorhouseimages-slide.slick-slide img {
    height: 100%;
    object-fit: cover
}

.aboutdoctorhouse.krasivatop {
    padding: 45px 0 0;
    margin: 0
}

.krasivatop .aboutmeimgslidebox {
    width: 100%;
    max-width: unset
}

.krasivatop .aboutmeimgslidebox .aboutmeimgslideimg {
    width: 25%;
    height: auto
}

.doctorhouse-text p {
    font-size: 16px;
    line-height: 29px;
    text-align: justify;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif
}

.doctorhouseimages-slider {
    width: 65%;
    margin: 0 auto
}

.doctorhouseimages-slider .slick-prev {
    width: 30px;
    height: 30px;
    z-index: 99;
    border-radius: 100%;
    background: #fbf1ea;
    left: -15px
}

.doctorhouseimages-slider .slick-next {
    width: 30px;
    height: 30px;
    z-index: 99;
    border-radius: 100%;
    background: #fbf1ea;
    right: -15px
}

.doctorhouseimages-slider .slick-next::before,
.doctorhouseimages-slider .slick-prev::before {
    font-size: 20px
}

.bottomtext h5 {
    font-size: 18px;
    font-weight: 700;
    font-family: Baskervville, serif;
    font-style: italic;
    line-height: 25px;
    margin: 0 0 20px
}

.internationalpatient-section {
    width: 100%;
    padding: 2% 0 3%;
    margin-top: 8%
}

.fellowshipand-training h3,
.internationalpatient-section h3,
.patientstravellingto-section h3 {
    color: #000;
    font-family: Baskervville, serif;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    margin: 0 0 4%
}

.internationalpatient-inner .richtext.toptext p {
    text-align: center;
    font-size: 16px
}

.internationalpatient-inner .richtext.toptext p span {
    font-weight: 600;
    font-style: italic;
    text-align: center
}

.internationalpatient-inner .richtext.toptext h4 {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 35px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 4% 0 0;
    text-align: justify
}

.patientstravellingto-section .richtext.toptext h4 {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 35px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 4% 0 3%;
    text-align: left
}

.main-paragraph-section {
    width: 100%;
    padding: 0;
    margin: 0 0 5%
}

.main_paragraph_text {
    background: #fbf3ee;
    padding: 35px
}

.main_paragraph_text .richtext p {
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 1px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    text-align: justify
}

.main-paragraph-section .btnbox a.btn {
    line-height: 37px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: 2px solid #000;
    padding: 0 20px
}

.main-paragraph-section .btnbox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 0
}

.main-paragraph-section .btnbox a.btn:hover {
    border: 2px solid #000;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none
}

.patientstravellingto-section {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 3% 0;
    background: #fbf1ea
}

.patientstravellingto-section .caccordionbox {
    width: 100%;
    max-width: 100%;
    padding: 0
}

.patientstravellingto-section .caccordionbox .caccordiontogglebox {
    margin: 0;
    background: #f4e6dc;
    padding: 5px
}

.patientstravellingto-section .caccordionbox p.mquestion {
    font-weight: 700;
    font-size: 18px
}

.international-acc {
    margin: 2% 0 0
}

.aboutmubaiandindia-section .nav-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 0
}

.aboutmubaiandindia-section .nav-tabs a.nav-item {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 5px 5px 0 0;
    display: block;
    color: #4f2a14;
    background: #fbf1ea;
    margin: 0 10px;
    text-decoration: none;
    outline: 0;
    transition: .3s ease-in-out
}

.alphabetorder-flex a,
.disclaimerfooter p a,
.pricing_table_flex .card .card-header button {
    text-decoration: none !important;
    outline: 0 !important
}

.aboutmubaiandindia-section .nav-tabs a.nav-item:hover {
    background: #4f2a14;
    color: #fff;
    transition: .3s ease-in-out
}

.aboutmubaiandindia-section .nav-tabs a.nav-item.active {
    background: #4f2a14;
    color: #fff
}

.aboutmubaiandindiatabs .tab-pane {
    padding: 35px 45px;
    border: 1px solid #ccc
}

.slidershow-flex {
    width: 75%;
    margin: 0 auto 35px
}

.slidershow-flex .slidershow-slide.slick-slide {
    height: 450px
}

.imagebox .imageboxsub img,
.slidershow-flex .slidershow-slide.slick-slide img,
.smilegallery .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.thingsflex {
    padding: 3% 0 4%;
    border-top: 1px solid #ccc
}

.bankdetails-section h4,
.thingsflex h4 {
    font-size: 37px;
    line-height: 48px;
    color: #0f0f0f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: 3%;
    text-align: center
}

.thingsflex .serviceslistbox {
    width: 100%;
    border: 0 !important;
    border-top: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 35px;
    background: #fbf5ec
}

.thingsflex .serviceslistbox .thingsflextext {
    width: 60%
}

.thingsflex .serviceslistbox .thingsfleximage {
    width: 40%
}

.thingsflex .serviceslistbox:nth-of-type(odd) {
    border-left: 0
}

.thingsflex .serviceslistbox:nth-of-type(2n) {
    border-left: 0;
    border-right: 0;
    flex-direction: row-reverse
}

.thingsflex .serviceslistbox:nth-of-type(odd) .thingsflextext {
    padding: 0 35px 0 0;
    text-align: right
}

.thingsflex .serviceslistbox:nth-of-type(2n) .thingsflextext {
    padding: 0 0 0 35px;
    text-align: left
}

.thingsflex .serviceslistbox:last-child {
    border-bottom: 0
}

.thingsflex .serviceslistbox .richtext {
    height: auto;
    margin: 0
}

.thingsflex .serviceslistbox .richtext p {
    overflow: visible;
    -webkit-line-clamp: unset
}

.disclaimerfooter {
    width: 100%;
    padding: 30px 0;
    background: #f6e1d2
}

.disclaimerfooter p {
    text-align: center;
    font-size: 14px;
    line-height: 26px;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300
}

.disclaimerfooter p a {
    color: #4f2a14
}

#int-acc p {
    margin: 0 0 10px
}

#int-acc ul {
    padding: 0 0 0 30px;
    margin: 10px 0
}

#int-acc .manswerbox p,
#int-acc ul li {
    font-family: 'Montserrat', sans-serif;
    color: #4f2a14;
    font-weight: 600;
    letter-spacing: 0
}

section.saconsultsection.contactsaconsultsection {
    margin-top: 10%;
    border-top: 0;
    padding: 0 0 5%
}

.bankdetails-section {
    width: 100%;
    padding: 0 0 4%
}

.bankdetailsinner {
    width: 55%;
    padding: 35px;
    background: #fbf1ea;
    margin: 0 auto
}

.bankdetailsinner h5 {
    font-size: 18px;
    line-height: 28px;
    color: #4f2a14;
    font-family: Poppins;
    font-weight: 600;
    margin: 0 0 20px
}

.pricing-section {
    width: 100%;
    padding: 4% 0;
    margin: 7% 0 4%
}

.pricing-section h4 {
    font-size: 37px;
    line-height: 48px;
    color: #0f0f0f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: 1%;
    text-align: center
}

.pricing_table_flex {
    width: 100%;
    margin: 45px 0 0
}

.pricingtableinner {
    width: 100%;
    padding: 4% 50px;
    background: #fbf3ee
}

.pricing_table_flex .card {
    width: 100%;
    margin: 0 0 10px;
    overflow: hidden
}

.pricing_table_flex .card .card-header button {
    width: 100%;
    line-height: 30px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #4f2a14;
    background: #f4e6dc;
    text-align: left;
    padding: 15px 30px;
    border: 0;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pricing_table_flex .card .card-header button:after {
    content: '+';
    font-family: Arial, sans-serif;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 17px;
    font-size: 20px
}

.pricing_table_flex .card .card-header button.active:after {
    content: 'âˆ’'
}

.pricing_table_flex .card .card-body {
    width: 100%;
    overflow: hidden;
    padding: 35px 30px
}

.pricing_table thead tr th {
    border-bottom: 0;
    border-right: 1px solid #4f2a14;
    padding: 15px 25px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background: #8e7564;
    color: #fff;
    width: 20%;
    text-align: center
}

.pricing_table tbody tr td:first-of-type,
.pricing_table thead tr th:first-of-type {
    width: 60%;
    text-align: left
}

.pricing_table tbody tr td {
    border-bottom: 1px solid #4f2a14;
    border-right: 1px solid #4f2a14;
    padding: 10px 25px;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    background: 0 0;
    color: #4f2a14;
    width: 20%;
    text-align: center
}

section.saconsultsection.contactsaconsultsection.videoconsultationsection {
    padding: 3% 0 2%;
    margin-bottom: 3%;
    border-bottom: 1px solid #ccc
}

section.saconsultsection.contactsaconsultsection.videoconsultationsection .richtext p {
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
    color: #4f2a14;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500
}

section.saconsultsection.contactsaconsultsection.videoconsultationsection .sacblock1 h2 {
    margin: 0 0 20px;
    font-size: 25px;
    line-height: 35px;
    font-family: Baskervville, serif;
    font-weight: 700;
    color: #4f2a14
}

section.saconsultsection.contactsaconsultsection.videoconsultationsection h4 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #4f2a14
}

section.saconsultsection.scheduleformsection {
    border-top: 0;
    padding: 0 0 3%;
    border-bottom: 1px solid #ccc;
    margin: 0 0 3%
}

section.saconsultsection.scheduleformsection .sacblock1,
section.saconsultsection.scheduleformsection .sacblock1 .richtext p {
    text-align: center;
    color: #fff
}

.bookvideocontent {
    background: #fbf1ea;
    padding: 25px 30px
}

.bookvideofrom {
    padding: 25px 15px
}

section.saconsultsection.contactsaconsultsection.videoconsultationsection .bookvideofrom h2 {
    margin: 0 0 5px
}

.bookvideofrom .forminput {
    width: 100%;
    margin: 0 0 20px
}

.bookvideofromcol {
    border: 1px solid #ccc
}

.p-top-0 {
    padding-top: 0 !important
}

.m-top-25 {
    margin-top: 4% !important
}

.m-top-25p {
    margin-top: 25px
}

.m-top-55 {
    margin-top: 55px !important
}

.m-bottom-45 {
    margin-bottom: 45px !important
}

.m-bottom-30 {
    margin-bottom: 30px !important
}

.m-bottom-20 {
    margin-bottom: 20px !important
}

.m-bottom-0 {
    margin-bottom: 0 !important
}

.p-bottom-0 {
    padding-bottom: 0 !important
}

.alphabetorder-flex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 0;
    border-top: 1px solid #4f2a14;
    border-bottom: 1px solid #4f2a14;
    margin: 0 0 35px
}

.alphabetorder-flex a {
    color: #4f2a14;
    display: block;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px
}

.aboutparatop h6,
.fellowshipand-training .bestmeblock .bigtext,
section.accre .cardinnew ol li,
section.accre .cardinnew ul li {
    font-size: 16px;
    line-height: 29px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif
}

.alphabetorder-flex a.active {
    color: #fff;
    background: #4f2a14
}

.imagebox {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0 0
}

.imagebox .imageboxsub {
    width: 45%;
    margin: 0 2%
}

.aboutparatop h6 {
    text-align: center;
    font-weight: 600;
    margin: 0 0 20px
}

.border-box {
    border-top: 1px solid #4f2a14;
    margin: 45px 0 30px;
    padding: 20px 0 0
}

.fellowshipand-training {
    padding: 5% 0 0
}

.fellowshipand-training .bestmeblock .bigtext {
    text-align: left;
    font-weight: 600;
    margin: 0 0 20px
}

.row-border {
    border-bottom: 1px solid #bbb
}

.membership-flex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.membershipsub {
    width: 23%;
    margin: 0 1%;
    position: 20px 20px
}

.membershimg {
    width: 100%;
    text-align: center;
    display: none
}

.membershipsub h4 {
    font-size: 17px;
    line-height: normal;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0
}

.cardinnew {
    background: #f4e6dc47
}

section.accre .cardinnew ul {
    padding: 0 0 0 15px;
    margin: 0 0 15px
}

section.accre .cardinnew ol {
    padding: 0 0 0 35px;
    margin: 0 0 15px
}

section.accre .cardinnew ol li,
section.accre .cardinnew ul li {
    font-weight: 300;
    list-style: none;
    margin: 0 0 10px;
    position: relative
}

section.accre .cardinnew ol,
section.accre .cardinnew ol li {
    list-style-type: decimal-leading-zero
}

section.accre .cardinnew h4 {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 15px;
    font-weight: 600
}

section.accre .cardinnew h5,
section.accre .cardinnew p {
    color: #2c2c2c;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 29px
}

section.accre .cardinnew h5 {
    font-weight: 600
}

section.accre .cardinnew p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    position: relative
}

.listbannertext h6.textfordegree {
    font-size: 16px;
    line-height: 22px;
    color: #4f2a14;
    margin: 10px 0 15px;
    text-align: center;
    font-weight: 600
}

.degreetextpara p {
    margin: 0 0 3px
}

.pclass {
    padding: 35px 0
}

h4.headfont {
    font-size: 16px;
    line-height: 29px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0 0 35px;
    font-style: italic
}

.page-id-653 .serviceslistsection {
    margin-top: 24%
}

.gallery-m-top {
    margin-top: 0 !important
}

.smilegallery .imgbox {
    width: 100%;
    height: 100%
}

.richtext.scrolabnalr p {
    text-align: justify
}

.pricingtableinner ul {
    padding-left: 20px
}

.card-header.active+div {
    display: block;
}

.mobilefaq {
    display: none;
}

.whitebg22 {
    padding: 5% 4%;
    background: #fff;
}

.vtablinkbox h2 {
    font-size: 14px !important;
    letter-spacing: 1px;
    line-height: 20px !important;
    color: #000;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    text-transform: uppercase;
}

.mobilefaq .accordion__body.is-active p {
    font-size: 14px;
    line-height: 22px;
}

#bodyarea {
    background: #f4e6dc;
    padding: 50px 0;
}

.bodyareacontent {
    background: #fff;
    padding: 40px 40px;
}

#typeoflipo {
    padding: 50px 0;
}


/* ======== megamenu.css ======== */
.mega-menu {
    pointer-events: none;
    opacity: 0;
    /* display: none; */
    top: 127px;
    margin: 0;
    padding: 0 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: visibility 0s, opacity 0.4s ease;
    box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.95);
    background-size: 80%;
    background-repeat: no-repeat;
}

@media (min-width: 769px) {
    .mega-menu.open {
        display: block;
        animation-name: fadeInFromNone;
        -webkit-animation-name: fadeInFromNone;
        animation-duration: 0.4s;
        -webkit-animation-duration: 0.4s
    }
}

.mega-menu h3 {
    margin-bottom: 25px
}

.mega-menu input {
    width: 100%
}

.mega-menu .mega-menu__social {
    margin-top: 0px
}

.mega-menu .mega-menu__social a {
    margin-right: 15px
}

.mega-menu .mega-menu__social a:last-of-type {
    margin-right: 0
}

.mega-menu .mega-menu__social a img {
    max-width: 40px
}

.mega-menu .mega-menu__nav {
    padding: 35px;
    padding-left: 37px;
    padding-top: 33px
}

.mega-menu .mega-menu__nav img {
    vertical-align: middle;
    max-height: 55px
}

.mega-menu .mega-menu__nav.scrolled {
    padding: 16px;
    padding-left: 37px
}

.mega-menu .mega-menu__nav.scrolled img {
    max-height: 40px
}

.mega-menu>ul {
    display: flex;
    flex-direction: row;
    z-index: 5;
    justify-content: space-around
}

.mega-menu>ul .column>ul {
    margin-bottom: 25px
}

.mega-menu>ul .column>ul:last-of-type {
    margin-bottom: 0
}

.mega-menu>ul li {
    display: inline-block;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 15px 30px;
    position: relative;
    z-index: 0;
    text-align: center
}

@media (max-width: 1444px) {
    .mega-menu>ul li {
        padding: 15px 20px
    }
}

.mega-menu>ul li a {
    color: #fff;
    display: inherit;
    transition: margin 0.4s ease;
    position: relative
}

.mega-menu>ul li.active {
    background-color: #fff;
    box-shadow: 0px 20px 0 0px #fff, 0px 0 20px 0 rgba(0, 0, 0, 0)
}

.mega-menu>ul li.active::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-variant-caps: normal;
    font-variant-ligatures: normal;
    font-weight: 900;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 50%;
    margin-left: -9px;
    font-size: 18px;
    color: #baa586;
    margin-top: -5px
}

.mega-menu>ul li.active a {
    color: #fff;
    margin-top: -10px
}

.mega-menu .mega-menu__sub {
    z-index: -2;
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 85vh;
    background: none;
    width: 100%;
    left: 0;
    padding: 25px 35px;
    padding-top: 0
}

.mega-menu .mega-menu__sub.open {
    display: block
}

.mega-menu .mega-menu__sub ul+ul {
    margin-top: 25px
}

.mega-menu .mega-menu__sub .mega-menu__hr {
    position: absolute;
    margin: 0;
    left: 20px;
    width: calc(100% - 33px)
}

.mega-menu .mega-menu__sub .mega-menu__hr+.mega-menu__hr {
    margin-top: 67px
}

.mega-menu .mega-menu__sub .columns {
    justify-content: space-between;
    position: relative
}

.mega-menu .mega-menu__sub .columns .column {
    flex-basis: auto;
    flex-grow: auto;
    flex-shrink: auto
}

.mega-menu .mega-menu__sub .column:nth-of-type(1) {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s
}

.mega-menu .mega-menu__sub .column:nth-of-type(2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s
}

.mega-menu .mega-menu__sub .column:nth-of-type(3) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s
}

.mega-menu .mega-menu__sub .column:nth-of-type(4) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s
}

.mega-menu .mega-menu__sub .column:nth-of-type(5) {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s
}

.mega-menu .mega-menu__sub .column:nth-of-type(6) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s
}

.mega-menu .mega-menu__sub .column:nth-of-type(7) {
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s
}

.mega-menu .mega-menu__sub .column:nth-of-type(8) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s
}

.mega-menu .mega-menu__sub .column:nth-of-type(9) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s
}

.mega-menu .mega-menu__sub .column:nth-of-type(10) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s
}

.mega-menu .mega-menu__sub .column:nth-of-type(11) {
    -webkit-animation-delay: 0.55s;
    animation-delay: 0.55s
}

.mega-menu .mega-menu__sub .column:nth-of-type(12) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s
}

.mega-menu .mega-menu__sub .column:nth-of-type(13) {
    -webkit-animation-delay: 0.65s;
    animation-delay: 0.65s
}

.mega-menu .mega-menu__sub .column:nth-of-type(14) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s
}

.mega-menu .mega-menu__sub .column:nth-of-type(15) {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s
}

.mega-menu .mega-menu__sub .column:nth-of-type(16) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s
}

.mega-menu .mega-menu__sub .column:nth-of-type(17) {
    -webkit-animation-delay: 0.85s;
    animation-delay: 0.85s
}

.mega-menu .mega-menu__sub .column:nth-of-type(18) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s
}

.mega-menu .mega-menu__sub .column:nth-of-type(19) {
    -webkit-animation-delay: 0.95s;
    animation-delay: 0.95s
}

.mega-menu .mega-menu__sub .column:nth-of-type(20) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.mega-menu .mega-menu__sub .column:nth-of-type(21) {
    -webkit-animation-delay: 1.05s;
    animation-delay: 1.05s
}

.mega-menu .mega-menu__sub .column:nth-of-type(22) {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s
}

.mega-menu .mega-menu__sub .column:nth-of-type(23) {
    -webkit-animation-delay: 1.15s;
    animation-delay: 1.15s
}

.mega-menu .mega-menu__sub .column:nth-of-type(24) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.mega-menu .mega-menu__sub a {
    color: #fff
}

.mega-menu .mega-menu__sub p {
    margin-bottom: 10px
}

.mega-menu .mega-menu__sub h3 {
    margin-bottom: 0
}

.mega-menu .mega-menu__sub h3 a {
    color: #baa586
}

.mega-menu .mega-menu__sub h3.btn {
    margin-bottom: 15px
}

.mega-menu .mega-menu__sub h3.btn a {
    color: #fff
}

.mega-menu .mega-menu__sub h4 {
    margin-bottom: 0
}

.mega-menu .mega-menu__sub p:last-child {
    margin-bottom: 0
}

.mega-menu .mega-menu__sub ul {
    padding-left: 10px;
    margin-bottom: 0
}

.mega-menu .mega-menu__sub ul.top-links li a {
    color: #c7c7c7;
    transition: color 0.4s ease;
    text-transform: uppercase;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 300;
    color: #baa586
}

.mega-menu .mega-menu__sub ul.top-links li a:hover {
    color: #fff;
    text-decoration: none
}

.mega-menu .mega-menu__sub ul.top-links li a:hover::after {
    color: #fff
}

.mega-menu .mega-menu__sub ul.top-links li a.nolink {
    cursor: default
}

.mega-menu .mega-menu__sub ul.top-links li a.nolink::after {
    content: none
}

.mega-menu .mega-menu__sub ul.top-links li a.nolink:hover {
    color: #baa586
}

.mega-menu .mega-menu__sub ul.top-links li::before {
    content: none
}

/* 
            .mega-menu .mega-menu__sub ul li:first-child a {
                color: #c7c7c7;
                transition: color 0.4s ease;
                text-transform: uppercase;
                padding-bottom: 10px;
                font-size: 20px;
                margin-top: 5px;
                font-weight: 300;
                color: #baa586
            } */

.mega-menu .mega-menu__sub ul li:first-child a:hover {
    text-decoration: none
}

.mega-menu .mega-menu__sub ul li:first-child a:hover::after {
    color: #fff
}

.mega-menu .mega-menu__sub ul li:first-child a.nolink {
    cursor: default
}

.mega-menu .mega-menu__sub ul li:first-child a.nolink::after {
    content: none
}

.mega-menu .mega-menu__sub ul li:first-child a.nolink:hover {
    color: #baa586
}

.mega-menu .mega-menu__sub ul li:first-child::before {
    content: none
}

.mega-menu .mega-menu__sub ul li {
    text-indent: 0;
    padding: 0px 0;
    line-height: 1;
    display: block;
    text-align: left;
    margin-bottom: 0
}

.mega-menu .mega-menu__sub ul li a {
    font-weight: 300;
    color: #7b6356;
    text-transform: none;
    font-size: 15px;
    display: inline-block;
    transition: color 0.25s ease;
    line-height: 1.2;
    padding: 8px 0;
    position: relative;
    z-index: 9999;
}

.mega-menu .mega-menu__sub ul li a:hover {
    color: #baa586
}

.mega-menu .mega-menu__sub img {
    position: relative;
    width: 100%;
    margin-bottom: 0px
}

.mega-menu .mega-menu__medspa-feat-container {
    display: flex;
    flex-direction: row;
    padding: 0 10px
}

.mega-menu .mega-menu__medspa-feat {
    padding: 5px;
    box-shadow: 0px 0px 25px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: row;
    margin-right: 20px;
    border-radius: 4px;
    width: 100%;
    background: #007dbd;
    align-items: center;
    justify-content: center;
    height: 100%
}

.mega-menu .mega-menu__medspa-feat:last-child {
    background: #00cae6;
    margin-right: 0
}

.mega-menu .mega-menu__medspa-feat img {
    width: 50px;
    margin-left: 20px
}

.mega-menu .mega-menu__medspa-feat h2,
.mega-menu .mega-menu__medspa-feat h3,
.mega-menu .mega-menu__medspa-feat a,
.mega-menu .mega-menu__medspa-feat p {
    color: #fff;
    text-align: center;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 0;
    padding: 10px
}

.mega-menu .mega-menu__medspa-feat h2 a,
.mega-menu .mega-menu__medspa-feat h3 a,
.mega-menu .mega-menu__medspa-feat a a,
.mega-menu .mega-menu__medspa-feat p a {
    color: #fff
}

.mega-menu .mega-menu__medspa-feat h2::after,
.mega-menu .mega-menu__medspa-feat h3::after,
.mega-menu .mega-menu__medspa-feat a::after,
.mega-menu .mega-menu__medspa-feat p::after {
    content: none
}

.mega-menu .mega-menu__medspa-feat p {
    font-size: 16px
}

.mega-menu .mega-menu__medspa-feat h2 {
    font-weight: 300;
    font-size: 25px;
    min-width: 200px;
    margin-top: 0;
    line-height: 1.1
}

.mega-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mega-menu.open .mega-menu__sub {
    display: block;
}

.menucol {
    display: flex;
}

/* ======== font-replacement.css ======== */
/**
 * Font Replacement CSS
 * Theme: Dr. Sudhanva New v2.0
 * 
 * This file replaces all Gotham font references with Montserrat
 * Load this AFTER variables.css to override font-family declarations
 */

/* ========================================
   GOTHAM TO MONTSERRAT REPLACEMENTS
   ======================================== */

/* Replace Gothambook with Montserrat (regular weight) */
body,
.contactmenuaddress,
.logosubtext,
.bannertext span,
.btnbox a,
.landingcontent .richtext p,
.blogdetails .paraText .richtext p,
.blogdetails .paraText .richtext h1,
.blogdetails .paraText .richtext h2,
.blogdetails .paraText .richtext h3,
.blogdetails .paraText .richtext h4,
.blogdetails .paraText .richtext h5,
.allwebsitebloglist .Custome_Blog_list a.bloglink h3 {
    font-family: 'Montserrat', sans-serif !important;
}

/* Replace Gothammedium with Montserrat (medium weight) */
.landingheadnownew span,
.menutext {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
}

/* Replace Gothambold with Montserrat (bold weight) */
.bigtext,
.contactmenulinker a,
.headerlogo .logotext {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
}

/* Replace Gothamthin with Montserrat (light weight) */
.thin-text {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300;
}

/* Additional elements that may use Gotham fonts */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Ensure Poppins is used for primary elements */
.primary-font {
    font-family: 'Poppins', sans-serif;
}

/* Ensure Baskervville is used for serif elements */
.serif-font,
.landinghead,
.headerlogo .logotext,
.blog_bold_flex h4,
.blogtextheading h1 {
    font-family: 'Baskervville', serif;
}

/* ========================================
   FONT WEIGHT UTILITIES
   Using Bootstrap-like naming
   ======================================== */

.fw-light {
    font-weight: 300;
}

.fw-normal {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

/* ========================================
   FONT FAMILY UTILITIES
   ======================================== */

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.font-baskervville {
    font-family: 'Baskervville', serif;
}

/* ======== responsive.css ======== */
/* ==== Media Queries ===== */


@media screen and (min-width:1400px) {
    li#menu-item-375 {
        margin-left: 0;
        margin-right: 45px;
    }

    li#menu-item-582 {
        margin-right: 11.4%;
    }

    li#menu-item-581 {
        margin-right: 3.2%;
    }

    li#menu-item-580 {
        margin-right: 13%;
    }

    li.submenustart.gallerytab.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-560 {
        top: 300px;
        right: 20%;
        position: absolute;
    }

    li#menu-item-560 {
        position: absolute;
        right: 16.5%;
        bottom: -380px;
    }

    li#menu-item-1378 {
        margin: 0;
        bottom: -454px;
        right: 43px;
    }
}


@media screen and (min-width: 1600px) {
    li#menu-item-1378 {
        margin: 0;
        width: 19%;
        right: 30px;
        bottom: -411px;
    }
}

@media (max-width:1280px) {

    li#menu-item-1378 {
        margin: 0;
        bottom: -462px;
        right: 29px;
    }

    ul.menu-top li a {
        margin-right: 15px;
    }

    .search-container input {
        width: 142px;
    }

    .address-div-del a.address-btn {
        margin-left: 0%;
        font-size: 12px;
        padding: 5px 6px;
    }

    .address-div-del,
    .address-div-mo {
        width: 48%;
        float: left;
    }

    ul.account-tab li {
        padding: 8px 14px;
    }

    ul.account-tab li a {
        font-size: 14px;
    }

    li#menu-item-375 {
        margin-left: 0;
        margin-right: 10px;
    }

    li#menu-item-582 {
        margin-right: 75px;
    }

    li#menu-item-581 {
        margin-right: 2%;
    }

    #menu-item-640 {
        padding: 0 0 0 65px;
    }

    li#menu-item-580 {
        margin-right: 10.5%;
        /*margin-right:1.6%*/
    }



    li.submenustart.gallerytab.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-560 {
        /*top: 585%;*/
        right: 20%;
        position: absolute;
    }

    li#menu-item-560 {
        position: absolute;
        right: 14.5%;
    }
}

@media (max-width:1024px) {
    footer .search-container1 {
        width: auto;
    }

    .tab-pane .product-slider .slick-slide img {
        width: 100% !important;
        height: auto !important;
    }

    .priceDiv .nice-select {
        padding: 5px;
        font-size: 12px;
        width: auto;
        margin-right: 5px;
        padding-right: 25px;
    }

    a.add-to-btn {
        padding: 5px;
        font-size: 12px;
        margin-right: 5px;
        margin-top: 5px;
    }

    .zoomWrapper {
        width: auto !important;
    }

    ul.account-tab li {
        padding: 1%;
    }

    .address-div {
        width: 88%;
        margin: 0 6%;
    }

    .contact-top span,
    .contact-top span a {
        font-size: 14px;
    }

    .zoomWindowContainer div {
        width: 100% !important;
        height: 100% !important;
    }

    ul.categories-menu li:hover a {
        font-size: 16px;
    }

    .landingsection {
        background-position: 70%;
    }

    .bigtext {
        font-size: 55px;
        line-height: 65px;
    }

    .landingcontent {
        padding: 12% 0% 12% 0%;
    }

    .landingcontent .richtext p {
        font-size: 16px;
        line-height: 30px;
    }

    .socialiconsbox {
        margin: 0 0 0;
    }

    .landingheadnownew {
        top: 10%;
    }

    h4.headfont {
        font-size: 25px;
        letter-spacing: 1px;
        line-height: 35px;
        margin: 0 0 15px;
    }

    .page-id-653 .serviceslistsection {
        margin-top: 30%;
    }

}

@media (min-width: 768px) and (max-width: 991px) {

    span.menu-sub-title {
        font-size: 14px;
    }

    .logo {
        width: 123px;
        left: -44px;
        top: 25px;

    }

    .logo img {
        width: 100%;
    }

    ul.menu-top li a {
        margin-right: 9px;
        font-size: 13px;
    }

    .search-container input {
        width: 100px;
    }

    ul.menu-top li a {
        margin-right: 8px;
    }

    .search-container input {
        width: 85px;
    }

    ul.menu-top li a {
        margin-right: 9px !important;
    }

    .menu-top-right {
        text-align: left;
    }

    ul.menu-right li {
        margin: 0px 10px;
    }

    .search-container input {
        width: 86px;
    }

    .search-container input {
        width: 95px !important;
    }

    span.product-name {
        padding-left: 22px;
        display: inline-block;
    }

    .side-menu-main {
        padding: 27px 15px;
    }

    .product_desc h2,
    .product_desc span {
        font-size: 14px;
        line-height: 18px;
    }

    .brand-logo {
        width: 140px;
    }

    .zoomWindowContainer div {
        width: 100% !important;
        height: 100% !important;
    }

    button.search-icon {
        padding: 6px 9px;
        font-size: 14px;
    }

    .search-container1 input {
        width: 55%;
    }

    .contact-bottom p {
        width: auto;
    }

    .social-icon a i {
        font-size: 14px;
    }

    /* banner */
    .banner-main {
        position: relative;
        height: 300px;
    }

    .banner-main img {
        width: 100% !important;
    }

    .my-cart table {
        width: 1000px;
    }

    .footer-logo img {
        width: 100%;
    }

    ul.footer-menu {
        padding-left: 30px;
    }

    .footer-tittle.ql {
        padding-left: 30px;
    }

    .product-slider .slick-slide img {
        display: block;
        width: 83% !important;
        height: auto !important;
    }

    .than-main {
        background-size: contain;
    }

    .svg-container {
        margin: 20px 0 0 0;
    }
}

@media screen and (max-width:991px) {
    .landingsection {
        background-position: 40%;
    }

    .landingcontent {
        text-align: center;
        padding: 0 0 5%;
    }

    .landingcontent .richtext p {
        text-align: center;
    }

    .socialiconsbox {
        margin: 0 auto;
        display: block;
        text-align: center;
    }
}

@media (max-width:767px) {

    /*----- Header -----*/
    h2,
    .h2 {
        font-size: 18px;
    }

    .search-bar-open {
        display: block !important;
    }

    .search-container input {
        width: 260px;
    }

    .mobile-menu {
        display: none !important;
    }

    .mobile-menu ul {
        width: 100%;
    }

    .mobile-menu ul li a {
        margin: 0;
        line-height: 68px;
        font-size: 20px;
    }

    .mtb-left .dropdown .dropbtn {
        color: #fff;
    }

    .mtb-left span.login-user {
        color: #000;
        outline: none;
    }

    .open-menu li {
        display: block;
        float: initial !important;
    }

    .dropdown:hover .dropdown-content {
        z-index: 99;
        top: 26px;
    }

    .dropdown:hover .dropbtn {
        outline: none;
    }

    .open-menu {
        position: absolute;
        background: #ccc;
        z-index: 999999;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        margin: 0px;
        text-align: center;
        display: flex !important;
        align-items: center;
        bottom: 0;
        right: 0;
        position: fixed;
        z-index: 999;
    }

    /* .hamburger {display:block;} */
    .hamburger {
        display: none;
    }

    ul.menu-top li.active a {
        padding-bottom: 2px;
    }

    ul.menu-right li:nth-child(2) {
        display: none !important;
    }

    ul.menu-right li:nth-child(3) {
        display: none !important;
    }

    .logo {
        width: 120px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, 0);
    }

    .logo img {
        width: 100%;
    }

    .search-container .search_bar {
        display: none;
        border: 1px solid #d6d6d6;
    }

    ul.menu-right {
        position: absolute;
        right: 0;
        top: 22px;
        z-index: 99;
    }

    ul.menu-right li {
        float: right;
        margin: 0;
    }

    .search-container {
        position: relative;
    }

    button.search-icon {
        position: absolute;
        top: -40px;
        right: 0;
        outline: none;
    }

    /* ---- mobile top bar --- */
    .mobile-top-bar {
        display: block;
        padding: 5px 0;
        background: #040047;
    }

    /* ---- side menu / filter menu --- */
    .side-menu-main.mobile-view {
        display: block !important;
        width: 80%;
        z-index: 99999 !important;
    }

    #listing-page .mobile-view {
        display: none !important;
    }

    #listing-page .listiing-side-menu {
        left: 0 !important;
    }

    .side-menu-main.mobile-view .close-menu {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 20px;
        display: inline-block;
        background: #ff0303;
        padding: 10px;
        color: #fff;
    }

    .side-menu-main {
        display: block;
        position: fixed;
        /* z-index: 999999; */
        z-index: 99;
        top: 0;
        left: -150%;
        padding: 20px 30px;
        height: 100%;
        transition: 0.5s ease;
        overflow: auto;
    }

    .side-menu-head .menu-sub-title {
        font-size: 14px;
    }

    .baner-slide-main {
        padding: 0px !important;
    }

    .filter-open {
        display: block;
    }

    /* ---- Footer ---- */
    #footer .call-here,
    .mail-here {
        width: 100%;
        text-align: center;
        display: block;
    }

    #footer .call-here a {
        display: block;
    }

    #footer .footer-logo,
    .social-icon,
    .footer-tittle,
    .contact-bottom p {
        text-align: center !important;
        margin: 0;
    }

    #footer .contact-bottom p {
        width: auto;
    }

    #footer .social-icon {
        margin-bottom: 15px;
    }

    #footer button.search-icon {
        position: static;
    }

    #footer .copyright-row {
        text-align: center;
    }

    #footer .paymrnt-img {
        float: none;
        display: block;
        text-align: center;
        margin: 10px auto;
    }

    .tab-pane .slick-slide img {
        width: 100% !important;
    }

    #footer .search-container1,
    .search-container1 input {
        width: 100%;
    }

    #footer .search-container1 {
        margin: 10px 0;
    }

    .detail-sec .detail-sec-inner img {
        width: 190px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .breadcum-banenr {
        height: auto;
        background-size: cover !important;
        width: 100%;
        margin: 0;
    }

    .breadcum-banenr h3 {
        margin: 30px 0;
        font-size: 20px;
        line-height: 40px;
        letter-spacing: 2px;
        padding: 0 8px;
    }

    span.stock-change {
        font-size: 12px;
    }

    .receipe-price h3,
    .recipe-name h3 {
        font-size: 18px
    }

    h3.discount-price,
    h3.reated-prod {
        font-size: 16px;
    }

    .priceDiv .nice-select,
    a.add-to-btn {
        width: 70%;
        margin-bottom: 10px;
        margin: 5px auto;
    }

    /* ------ cart page ------ */
    span.title-ite,
    span.item-price-op,
    span.copun-text {
        font-size: 14px;
    }

    .coupan-item input {
        margin: 10px 0px;
        width: 100%;
        height: 41px;
    }

    .svg-container {
        z-index: 9;
    }

    .prvious-btn,
    .next-btn {
        font-size: 14px;
        padding: 4px 10px;
    }

    .prvious-btn-con {
        padding: 6px;
        margin: 0;
        font-size: 14px;
        margin: 10px -10px 5px 0 !important;
    }

    .cloginBlock .form .prvious-btn-con {
        margin-right: 0px !important;
    }

    ul.account-tab li a {
        font-size: 12px;
    }

    #gallery_01 .slick-next {
        right: 8px;
    }

    #gallery_01 .slick-prev {
        left: -4px;
    }

    #gallery_01 .slick-prev:before,
    #gallery_01 .slick-next:before {
        font-size: 25px;
    }

    #gallery_01 {
        padding: 0 25px;
    }

    /* checkout_shipping-address */

    .navCheckout ul li.active a.shipping {
        background-position: -94px -90px;
    }

    .navCheckout ul li a.billing {
        background-position: -172px -10px;
    }

    .navCheckout ul li.active a.billing,
    .navCheckout ul li a.billing:hover {
        background-position: -172px -90px;
    }

    .navCheckout ul li a.orders,
    .navCheckout {
        background-position: -253px -7px;
    }

    .navCheckout ul li.active a.orders,
    .navCheckout ul li a.orders:hover {
        background-position: -253px -87px;
    }

    .navCheckout ul li a.pay {
        background-position: -333px -12px;
    }

    .navCheckout ul li.active a.pay,
    .navCheckout ul li a.pay:hover {
        background-position: -333px -92px;
    }

    .navCheckout ul li a {
        width: 60px;
        height: 60px;
    }

    .navCheckout ul li {
        margin-right: 25px;
    }


    .address-div-mo {
        width: 90%;
        margin-bottom: 10px;
        margin: 0% 5% 3%;
    }

    /* banner */

    .banner-main {
        height: auto;
    }

    /*.slick-slide img {width: 100%;}*/
    .search-container1 input {
        width: 70%;
    }

    .search-container1 button {
        padding: 8px 3px;
        font-size: 12px;
    }

    .cart-notification-container {
        width: 60%;
    }

    .recipe-details-div .btn-grp {
        text-align: center;
    }

    .bigtext {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 10px;
    }

    .landingcontent .richtext {
        margin-bottom: 0px;
    }

    .landingcontent .richtext p {
        font-size: 14px;
        line-height: 20px;
    }

    .socialiconsbox {
        padding: 0;
        width: 50%;
        margin: 0 0 0 36%;
    }

    .landingsection .container {
        width: 100%;
    }

    .landingcontent {
        text-align: left;
        padding: 0;
        width: 50%;
        margin: 12% 0 10px 46%;
    }

    .landingcontent .richtext p {
        text-align: left;
    }

    .landinghead {
        font-size: 25px;
    }

    .landingheadnownew span {
        font-size: 12px;
    }



    h4.headfont {
        font-size: 20px;
        letter-spacing: 1px;
        line-height: 30px;
        margin: 0 0 15px;
    }

    .fellowshipand-training h1 {
        line-height: 40px;
    }

}

@media only screen and (max-width:600px) {

    .svg-container {
        margin: 0;
    }

    .than-main .login-btn1 {
        padding: 8px 7px;
        margin-top: 18px;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .than-main {
        height: auto;
        padding: 45px 0;
    }

    ul.account-tab {
        padding: 0;
        width: 97%;
    }

    ul.account-tab li a i {
        margin: 0px;
    }

    .page-id-653 .serviceslistsection {
        margin-top: 67%;
    }
}


@media (max-width:480px) {

    ul#Product_tab li.nav-item.active a,
    ul#Product_tab li.nav-item a {
        font-size: 14px;
        padding: 10px 6px;
    }

    ul.account-tab li {
        width: 100%;
        padding: 0px;
    }

    ul.account-tab li a {
        display: block;
        padding: 8px;
    }

    .ui-widget.ui-widget-content {
        border: 1px solid #c5c5c5;
        width: 100% !important;
        left: 0% !important;
        padding: 10px;
    }



}

@media only screen and (max-width:395px) {
    .navCheckout ul li {
        margin-right: -1px;
    }

    .address-div-del {
        width: 100%;
        height: 170px;
    }

    .address-div-del a.address-btn {
        margin: 0;
    }

    .page-id-653 .serviceslistsection {
        margin-top: 85%;
    }
}

@media only screen and (max-width:360px) {
    .recipe-name h3 {
        font-size: 16px;
    }
}

@media (max-width:320px) {}

/* ======== responsive2.css ======== */
/* ==== Media Queries ===== */

@media screen and (min-width:1921px) {
    .servicemainbannerimg {
        width: 100%;
        height: 95vh;
        object-fit: cover;
    }
}

@media screen and (min-width:1710px) and (max-width:1920px) {
    .servicemainbannerimg {
        width: 100%;
        height: 95vh;
        object-fit: cover;
    }
}

@media screen and (min-width:1500px) and (max-width:1700px) {
    .servicemainbannerimg {
        width: 100%;
        height: 95vh;
        object-fit: cover;
    }
}

@media (min-width:1400px) and (max-width:1450px) {

    /*   .headerlogo {
        margin-top: 38px;
    }*/
    .tch-text {
        right: -68px;
    }

    .tch-text {
        background: #f4e6dc;
        padding: 20px 21px;
    }

    a {
        line-height: normal;
    }

    .privatepractisesection {
        margin: 0% 0px 3% 0px;
        padding-bottom: 3%;
    }

    .headerlogo {
        top: -20px;
    }

    .servicemainbannerimg {
        width: 100%;
        height: 95vh;
        object-fit: cover;
    }
}

@media screen and (max-width:1280px) {

    .quotetextbox {
        background: #fbf1ea;
        margin-left: 39.5%;
        padding: 5% 3% 3% 3%;
        width: 55%;
    }

    .cathoverbox h1 {
        font-size: 30px;
    }
}

@media (max-width:1024px) {

    .headerlogo {
        top: 0;
    }

    header.bgwhite .headerlogo {
        top: 0px;
    }

    .detailtabbtnbox {
        top: 106px;
    }

    .headerlogo .logotext {
        font-size: 20px;
        line-height: 30px;
    }

    .logosubtext {
        font-size: 14px;
    }

    .contactmenulinker a {
        font-size: 15px;
        line-height: 30px;
    }

    .contactmenuaddress {
        font-size: 12px;
    }

    .headerbox {
        padding: 9px 3% 0 3%;
    }

    .quotetextbox {
        padding: 2% 3% 3% 3%;
        margin-left: 34.5%;
        width: 60%;
    }

    .quotesectiontextbox {
        top: -60px;
    }

    .fmenuhead ul li {
        padding: 0px 2%;
    }

    .mega-menu .mega-menu__sub ul li:first-child a {
        font-size: 18px;
    }

    .detailtabbtnbox ul li {
        padding: 0px 0.2%;
    }

    .faqsliderbox .slick-next {
        right: -27px;
    }

    .faqsliderbox .slick-prev {
        left: -27px;
    }

    /*  .caccordionbox {
        width: 90%;
    }*/

    .servicemainbannerimg {
        width: 100%;
        height: 373px;
        object-fit: cover;
    }

    menu.mega-menu .mega-menu__sub .submenustart a,
    menu.mega-menu .mega-menu__sub .single-css a,
    .mega-menu .mega-menu__sub ul li:first-child a {
        font-size: 16px;
    }

    /*    menu.mega-menu .mega-menu__sub .submenustart .sub-menu li a{
        font-size:14px;
    }*/

    menu.mega-menu .mega-menu__sub .submenustart .sub-menu li a {
        font-size: 12px;
        padding: 5px 10px 5px 0;
    }

    li#menu-item-582 {
        margin-right: 58px;
    }

    li#menu-item-560 {
        position: absolute;
        right: 13.5%;
    }

    li#menu-item-1378 {
        margin: 0;
        bottom: -400px;
        right: 15px;
    }

    .related span {
        position: initial;
        font-size: 35px;
    }

    h2.slideheading2 {
        height: auto !important;
        font-size: 25px;
        line-height: 30px;
    }

    .cathoverbox h1 {
        font-size: 25px;
    }

    .aboutmesection h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .aboutmetext p,
    .quotetextbox p {
        font-size: 14px;
        line-height: 25px;
    }

    .aboutmetext p span {
        font-size: 75px;
        line-height: 80px;
    }

    .quotetextbox p em {
        font-size: 16px;
        font-weight: 800;
        margin: 10px 0 15px;
    }

    .proceduresection h1,
    .fellowshipand-training h1,
    .testimonialsection h1,
    .blogsection h1,
    .videosection h1,
    .listbannertext h1,
    .internationalpatient-section h1,
    .patientstravellingto-section h1,
    .blogtextheading h4,
    .blog_bold_flex h4 {
        font-size: 40px;
    }

    .procedurebox .text p {
        font-size: 20px;
    }

    .doctorimg,
    .doctorimg img {
        height: 100%;
    }

    .blogimg {
        width: 100%;
    }

    .blogtext h3 {
        font-size: 16px;
        line-height: 25px;
    }

    .sacblock1 h6,
    .sacblock1 h6 a {
        font-size: 20px;
        line-height: 41px;
    }

    .sacblock1 h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .namebox h1 {
        font-size: 30px;
    }

    .namedetails .phonenoh1 a {
        font-size: 30px;
    }

    .namedetails .address {
        font-size: 13px;
        line-height: 25px;
    }

    li.single-css.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-1378 {
        position: absolute;
        bottom: -465px;
        right: 45px;
    }

    .serviceslistbox h1 {
        font-size: 20px;
        line-height: 35px;
    }

    .listbannertext .richtext p,
    .richtext p,
    .whymebox .richtext p,
    .cverticaltabs .richtext p {
        font-size: 14px;
        line-height: 25px;
    }

    .whymebox {
        padding: 0 30px;
    }

    .whymebox h3 {
        font-size: 25px;
        letter-spacing: 1px;
        line-height: 35px;
    }

    .richtext ul li {
        font-size: 14px;
        line-height: 23px;
    }

    .bestmeblock .bigtext {
        font-size: 25px;
        line-height: 35px;
    }

    .textitalicmix h5 {
        font-size: 14px;
        line-height: 23px;
    }

    .richtext h1.heading1 {
        font-size: 30px;
        line-height: 40px;
    }

    .smileindiasection .related h1.smilehead {
        font-size: 40px;
        padding-bottom: 50px;
    }

    .smilebox h1 {
        font-size: 25px;
        letter-spacing: 1px;
        line-height: 35px;
        margin: 0 0 15px;
    }

    section.accre h2 {
        font-size: 25px;
    }

    section.accre h4 {
        font-size: 15px;
        line-height: 25px;
        margin: 0 0 15px;
    }

    section.accre ul li {
        font-size: 14px;
        line-height: 24px;
    }

    .practcetexttop h4,
    .internationalpatient-inner .richtext.toptext h4,
    .patientstravellingto-section .richtext.toptext h4 {
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 30px;
    }

    .doctorhouse-text {
        width: 35%;
        padding: 25px 30px;
    }

    .doctorhouse-text p {
        font-size: 14px;
        line-height: 24px;
    }

    .main_paragraph_text .richtext p {
        font-size: 16px;
        line-height: 25px;
    }

    .manswerbox {
        padding: 20px;
        font-size: 14px;
        line-height: 30px;
    }

    .serviceslistbox .richtext p {
        font-size: 14px;
        line-height: 26px;
    }

    .bankdetails-section h4 {
        font-size: 30px;
        line-height: 40px;
    }

    .bankdetailsinner h5 {
        font-size: 16px;
        line-height: 25px;
    }

    .allwebsitebloglist .Custome_Blog_list .blog-title {
        padding: 20px 20px;
    }

    .allwebsitebloglist .Custome_Blog_list a.bloglink h1 {
        font-size: 18px;
        line-height: 30px;
    }

    .blogbannerimg,
    .bloglist_banner {
        width: 100%;
        height: auto;
        position: relative;
    }

    .blogbannerimg img,
    .bloglist_banner img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .allwebsitebloglist .Custome_Blog_list .blog-img {
        height: 300px;
    }

    .pricing-section h4 {
        font-size: 30px;
    }

    .pricing-section p {
        text-align: center;
        font-size: 14px;
    }

    .pricing_table_flex .card .card-header button {
        width: 100%;
        line-height: 20px;
        font-weight: 700;
        font-size: 14px;
    }

    .pricing_table thead tr th {
        font-size: 14px;
        line-height: 20px;
    }

    section.saconsultsection.contactsaconsultsection.videoconsultationsection .richtext p {
        font-size: 16px;
        line-height: 25px;
    }

    section.saconsultsection.contactsaconsultsection.videoconsultationsection h4 {
        font-size: 18px;
        font-weight: 700;
        text-align: center;
    }

    section.saconsultsection.scheduleformsection .sacblock1 .richtext p {
        font-size: 20px;
    }

    h4.headfont {
        font-size: 14px;
        line-height: 25px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    ul.nav.nav-tabs {

        width: 1000px;
    }

    div#tablistbox {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .servicedetailbody,
    .servicedetailbody .wrapper,
    .servicedetailbody .pagewrapper {
        overflow: auto;
    }

    .contactmenuaddress {
        font-size: 12px;
    }

    .contactmenu {
        display: none;
    }

    .quotesectiontextbox {
        position: relative;
        top: 0;
        width: 100%;
        left: auto;
        right: 0;
        height: auto;
    }

    .quotetextbox {
        padding: 5%;
        margin-left: 0;
        width: 100%;
    }

    .quotesectiontextbox .btnbox a.btn {
        border: 1px solid;
    }

    .quotesectiontextbox .btnbox {
        margin-top: 30px;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .img-square {
        width: 100%;
        height: auto;
    }

    .procedurebox .text p {
        font-size: 20px;
    }

    .namebox h1 {
        font-size: 28px;
        line-height: normal
    }

    .namebox p {
        line-height: normal
    }

    .namedetails .phonenoh1 a {
        font-size: 30px;
    }

    .namedetails .whitebtn a.btn {
        line-height: 30px;
    }

    .fmenuhead ul li a {
        font-size: 16px;
    }

    .fmenuhead ul li {
        padding: 0px 1%;
    }

    .serviceslistbox h1 {
        font-size: 20px;
    }

    .sacblock1 h2 {
        font-size: 32px;
    }

    .sacblock1 h6,
    .sacblock1 h6 a {
        font-size: 20px;
        line-height: normal;
    }

    .sacblock1 .richtext p {
        font-size: 19px;
        line-height: 25px;
    }

    .saconsultsection {
        padding: 5% 0px 4%;
    }

    .dr-sudhuu {
        margin: 0px auto;
        max-width: 90%;
    }

    .listbannertext h1 {
        font-size: 32px;
        line-height: normal;
    }

    .listbannertext h1 {
        margin-bottom: 10px;
    }

    .standardcontent h5 {
        margin-bottom: 0;
    }

    .listbannertext.dandp-bannertext {
        transform: translateY(0);
    }

    .listbannertext {
        max-width: 90%;
    }

    .faqslidersection {
        margin-top: 0;
    }

    .vtablinkbox h3 b {
        font-size: 31px;
        line-height: normal;
    }

    .vtablinkbox h3 {
        font-size: 28px;
    }

    .cverticaltabs h3 {
        font-size: 29px;
    }

    /* .morequestion {
        padding: 2% 5% 0% 6%;
    }*/
    p.mquestion {
        line-height: normal;
        padding: 2% 0;
    }

    .testimonialslider {
        max-width: 85%;
        margin: 0 auto;
        text-align: center !important;
    }

    .testimonialslideitem .richtext p {
        font-size: 20px;
    }

    .beltdetailssection p {
        font-size: 23px;
        letter-spacing: 1px;
        line-height: 32px;
    }

    .faqslidercontentbox h2 {
        font-size: 27px;
    }

    .home .masthead .masthead__title {
        display: block;
    }

    .googlelanguage:after {
        display: none;
    }

    .proceduresection h1,
    .testimonialsection h1,
    .blogsection h1,
    .videosection h1 {
        font-size: 45px;
    }

    .vtablinkbox .nav-pills>li>a {
        font-size: 12px;
        letter-spacing: 0px;
        line-height: normal;

        margin-bottom: 11%;
    }

    .get-form {

        right: 5%;

        top: 21%;
    }

    .serviceslistbox {
        width: 47%;
        padding: 2% 3%;
        border: 1px solid #ccc !important;
        margin: 5px;
    }

    .serviceslistbox:nth-child(3n),
    .serviceslistbox:last-Child {
        border: 1px solid #ccc;
    }

    .footerasection3 {
        display: none;
    }

    .sacblock2 {
        max-width: 100%;
        margin: 0 auto;
    }

    .whitebtn.btnbox {
        padding-bottom: 10px;
    }

    section.accre {
        padding: 0 3%;
    }

    ul.nav.nav-tabs {

        width: 1000px;
    }

    div#tablistbox {
        overflow-x: scroll;
        overflow-y: hidden;
    }
}

@media screen and (max-width:991px) {

    #menu-item-640 {
        padding: 0 0 0 20px;
    }

    li#menu-item-582 {
        margin-right: 25px;
    }

    li#menu-item-1378 {
        margin: 0;
        bottom: -413px;
        right: 117px;
    }

    menu.mega-menu .mega-menu__sub .submenustart a,
    menu.mega-menu .mega-menu__sub .single-css a,
    .mega-menu .mega-menu__sub ul li:first-child a {
        font-size: 14px;
    }

    menu.mega-menu .mega-menu__sub .submenustart .sub-menu li a {
        font-size: 12px;
    }

    li#menu-item-580 {
        margin-right: 2.5%;
    }

    li#menu-item-375 {
        margin-left: 0;
        margin-right: 10px;
    }

    ul.nav.nav-tabs {
        width: 100%;
    }

    .detailtabbtnbox ul li a {
        font-size: 15px;
        line-height: 25px;
    }

    .faqsliderbox {
        max-width: unset;
        width: 100%;
    }

    .servicemainbannerimg {
        width: 100%;
        height: 279px;
        object-fit: cover;
    }

    .slidet-caps {
        width: 85%;
        bottom: 0%;
    }

    .categoryblock {
        margin: 3% 0 0 0;
    }

    .masthead__bg-content.slick-slide {
        height: 50vh;
    }

    .img-sp {
        height: auto;
    }

    .slick-slide .img-sp img {
        height: auto;
    }

    .cathoverbox h1 {
        font-size: 20px;
    }

    .proceduresection h1,
    .testimonialsection h1,
    .blogsection h1,
    .videosection h1 {
        font-size: 40px;
    }

    .procedurerow {
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset;
    }

    .img-square {
        height: 100%;
    }

    .proceduresinlist {
        height: 100%;
    }

    .proceduresinlist img {
        height: auto;
        object-fit: cover;
    }

    .faqslidersection h1 {
        font-size: 25px;
        letter-spacing: 1px;
        line-height: 35px;
        padding: 10px 40px;
    }

    .faqslidercontentbox ul li {
        font-size: 14px;
        line-height: 25px;
    }

    .faqslidercontentbox .richtext p {
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 27px;
    }

    .listbannertext.dandp-bannertext h5,
    .datarow1 h5 {
        font-size: 30px;
        font-weight: bold;
        margin: 0 0 15px;
    }

    .vtablinkbox h3 b,
    .vtablinkbox h3 strong {
        font-size: 28px;
        line-height: 30px;
    }

    .morequestion h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .cverticaltabs .srcollcontent {
        height: 300px !important;
    }

    .caccordiontogglebox {
        margin: 0;
    }

    p.mquestion {
        line-height: normal;
        padding: 5px 0;
    }

    .manswerbox {
        padding: 20px;
        font-size: 14px;
        line-height: 25px;
    }

    .internationalpatient-section {
        margin: 0;
    }

    .aboutmubaiandindiatabs .tab-pane {
        padding: 30px 25px;
    }

    .slidershow-flex {
        width: 90%;
    }

    .blog_bold_flex {
        width: 90%;
        left: 5%;
    }

    body.page-id-1376 .proceduresinlist {
        height: auto;
    }

    body.page-id-1376 .proceduresinlist img {
        height: 50vh;
    }

    .pricing-section {
        margin: 0 0 4%;
    }

    .pricingtableinner {
        width: 100%;
        padding: 25px 20px;
    }

    .pricing_table thead tr th {
        padding: 15px 0;
    }

    .pricing_table thead tr th:nth-of-type(1) {
        padding: 15px 25px;
    }

    .contactpagebanner {
        height: auto;
    }

    .contactpagebanner img {
        height: auto;
    }

    section.saconsultsection.contactsaconsultsection.videoconsultationsection {
        margin-top: 0;
    }

    section.saconsultsection.contactsaconsultsection.videoconsultationsection .sacblock1 h2,
    section.saconsultsection.scheduleformsection .sacblock1 h2 {
        font-size: 25px;
    }
}

@media (max-width:767px) {

    ul.nav.nav-tabs {

        width: 1000px;
    }

    div#tablistbox {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .contactmenu {
        display: none;
    }

    .footerasection3 {
        display: none;
    }

    .quotesectiontextbox {
        position: relative;
        top: 0;
        width: 100%;
        left: auto;
        right: 0;
        height: auto;
    }

    .quotetextbox {
        padding: 5%;
        margin-left: 0;
        width: 100%;
    }

    .masthead__bg-content.slick-slide {
        height: 95vh;
    }

    .img-spm .img-sp img {
        height: 95vh;
    }

    .tch-text {
        padding: 12px 10px;
    }

    .cathoverbox h1 {
        font-size: 18px;
    }
}

@media (max-width:640px) {

    ul.nav.nav-tabs {

        width: 1000px;
    }

    .srcollcontent {
        height: 350px;
    }

    div#tablistbox {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    menu.mega-menu.for_desktop {
        display: none;
    }

    /* .menutogglebox{
        display: none;
    } */

}

@media (max-width:640px) {

    ul.nav.nav-tabs {

        width: 1000px;
    }

    .srcollcontent {
        height: 350px;
    }


    .mobilefaq {
        display: block;
    }

    .whitebg {
        display: none;
    }


    .modal-content {
        width: 80%;
    }

    .modal-up .close {
        right: 9%;
        top: 7%;
    }

    .row.categoryblock-row .col-md-4.col-sm-4.match.p0:last-child .cathoverbox h2 {
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(195%);
        transform: translateY(0%);
    }

    .cathoverbox {
        justify-content: end;
    }

    .cathoverbox h2 {
        font-size: 24px;
        text-align: center;
        -webkit-transition: 2s;
        -o-transition: 2s;
        transition: 2s;
        opacity: 1;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }

    .whatsapp-icon {
        width: 40px;
        bottom: 8%;
    }

    .reachbox ul {
        justify-content: center;
        display: flex;
    }

    .centerit {
        height: auto !important;
    }

    .nopadd {
        height: auto !important;
    }

    .row.reachusflex {
        display: block;
    }

    div#tablistbox {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .contactmenu {
        display: none;
    }

    .headerlogo .logotext {
        font-size: 30px;
    }

    .logosubtext {
        font-size: 12px;
    }

    .related span {
        font-size: 40px;
        line-height: normal;
    }

    .home .masthead .masthead__title h1,
    .home .masthead .masthead__title h2,
    .home .masthead .masthead__title h3 {
        font-size: 27px;
        line-height: 32px;
    }

    .categorybox {
        min-height: 100%;
    }

    .aboutmesection {
        padding: 4%;
    }

    .quotesectiontextbox {
        top: 0;
    }

    .quotesectiontextbox {
        position: relative;
    }

    .quotetextbox {
        padding: 4%;
        margin-left: 0;
        width: 100%;
    }

    .quotesectiontextbox .btnbox a.btn {
        border: 1px solid;
    }

    .quotesectiontextbox .btnbox {
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }

    .img-square {
        width: 100%;
        height: auto;
    }

    .procedurerow .procedurebox {
        width: 80%;
        margin: 2%;
        transform: translateY(0px);
    }

    /* section#proceduresection {
        margin-top: -42%;
    } */
    .slick-slide img {
        width: auto;
    }

    .namebox h1 {
        font-size: 30px;
        line-height: normal;
    }

    .namedetails .phonenoh1 a,
    .namebox p {
        line-height: normal;
    }

    .whitebtn.btnbox {
        padding-bottom: 14px;
    }

    .reachbox {
        text-align: center;
        margin-bottom: 3%;
    }

    .hospitallist {
        padding: 0 2%;
    }

    .hospitallist ul {
        column-count: 1;
        text-align: center;
    }

    .headerlogo {
        top: 0px;
    }

    header.bgwhite .headerlogo {
        top: 0px;
    }

    .menutext {
        display: none;
    }

    .get-form {
        right: 6%;
    }

    .serviceslistbox {
        width: 100%;
        padding: 2% 3%;
        border: 1px solid #ccc !important;
        margin: 5px;
    }

    .serviceslistbox:nth-child(3n),
    .serviceslistbox:last-Child {
        border: 1px solid #ccc;
    }

    .sacblock2 {
        max-width: 100%;
        margin-left: 0;
    }

    .listbannertext {
        width: 95%;
    }

    .listbannertext {
        transform: translateY(0%);
    }

    .landingcontent {
        padding: 0;
        width: 100%;
        text-align: center;
        margin: 15% 0 0 0;
    }

    /*.bigtext {
        font-size: 46px;
        text-align: center;
    }*/

    .socialiconsbox {
        width: 100%;
        margin: 0;
    }

    .landingcontent .richtext p {
        text-align: center;
    }

    .serviceslistbox .richtext {
        margin-bottom: 0%;
    }

    .serviceslistsection {
        padding: 7% 0 3% 0;
        margin-top: 0;
    }

    .whymebox {
        padding: 3%;
    }

    .datarow1 {
        padding: 3%;
    }

    .listbannertext.dandp-bannertext {
        transform: translateY(0);
    }

    .faqslidersection {
        margin-top: 0;
    }

    .faqslidersection {
        padding: 3%;
    }

    .faqslidercontentbox h2 {
        font-size: 28px;
        line-height: normal;
    }

    .detailtabbtnbox {
        position: unset;
    }

    .beltdetailssection p {
        font-size: 20px;
        line-height: normal;
    }

    .vtablinkbox .nav-pills>li>a {
        height: 15px;
        /* width: 15px; */
        /* background: #4f2a14; */
        font-size: 0;
        line-height: 0;
    }

    .vtablinkbox .nav-pills>li {
        float: none;
        /* width: auto; */
        display: inline-flex;
        margin: 8px 15px;
    }

    .vtablinkbox .nav {
        padding: 20px 0 30px;
        text-align: center;
    }

    .vtablinkbox h3 b {
        font-size: 32px;
    }

    .vtablinkbox h3 {
        font-size: 32px;
        line-height: normal;
    }

    .cverticaltabs h3 {
        font-size: 25px;
    }

    .morequestion {
        padding: 2% 3% 0% 3%;
    }

    p.mquestion {
        line-height: normal;
    }

    .caccordionbox {
        width: 100%;
    }

    /*.caccordiontogglebox {
        position: absolute;
  
         height: 40px; 
        width: 40px;
        margin: 8px;
        text-align: center;
    }*/
    .caccordiontogglebox i {
        line-height: normal;
        font-size: 21px;
    }

    .mCSB_scrollTools .mCSB_draggerContainer {
        position: absolute;
        top: 0;
        left: 34px;
    }

    .caccordionbox {
        padding: 10px 20px 10px 50px;
    }

    .whymebox h3 {
        font-size: 25px;
        line-height: normal;
    }

    .testimonialslideitem .richtext p {
        font-size: 20px;
        line-height: normal;
    }

    .videobox .richtext {
        padding: 4% 5% 0;
    }

    .videosection {
        padding: 1% 0px 1%;
    }

    .sacblock1 h2 {
        font-size: 32px;
        line-height: normal;
    }

    .sacblock1 h4 {
        font-size: 30px;
        line-height: normal;
        margin-bottom: 0;
    }

    .sacblock1 .richtext p {
        font-size: 18px;
        line-height: normal;
    }

    .sacblock1 {
        padding: 0 2%;
    }

    .listbannertext h1 {
        font-size: 32px;
        line-height: normal;

        margin-bottom: 5px;
    }

    .bestmeblock .bigtext {
        font-size: 25px;
        letter-spacing: 1px;
        line-height: normal;
    }

    .forminput {
        width: 100%;
    }

    .industrystandardblock .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 3% 0px;
        flex-wrap: wrap;
        flex-direction: inherit;
        justify-content: center;
    }

    .industrystandardsection {
        background: #fbf1ea;
        padding: 3% 11px 1% 11px;
    }

    section.accre .container {
        padding: 0 6%;
    }

    section.accre h4 {
        margin-bottom: 7px;
    }

    header.bgwhite .formobile {
        padding: 1% 11%;
    }

    .contactmap iframe.maps {
        margin-bottom: 0;
    }

    header.bgwhite .googlelanguage {
        display: none;
    }

    header.bgwhite {
        min-height: 70px;
    }

    /* .vtablinkbox .nav-pills>li.active>a,
    .vtablinkbox .nav-pills>li.active>a:hover,
    .vtablinkbox .nav-pills>li.active>a:focus {
        background-color: #f9c0a3;
    } */


    .drsudhanvapage .imgbox img {
        width: auto;
    }

    .smilegallery .match:nth-child(3) {
        justify-content: flex-end;
    }

    header.bgwhite ul.subss {
        padding: 3% 10%;
    }
}



@media (max-width:540px) {

    ul.nav.nav-tabs {

        width: 1000px;
    }


    .mobilefaq {
        display: block;
    }

    .faqstabcontent {
        display: none;
    }


    .modal-content {
        width: 80%;
    }

    .modal-up .close {
        right: 9%;
        top: 7%;
    }


    .whatsapp-icon {
        width: 40px;
        bottom: 8%;
    }

    div#tablistbox {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .related span {
        font-size: 30px;
        line-height: normal;
    }

    .related span {
        top: 38%;
    }

    .home .masthead .masthead__title h1,
    .home .masthead .masthead__title h2,
    .home .masthead .masthead__title h3 {
        font-size: 24px;
        line-height: normal;
    }

    .masthead .masthead__title .masthead__bg {
        padding: 10px;
    }

    .home .masthead .masthead__bg {
        padding-bottom: 26px;
    }

    .aboutmesection h1 {
        font-size: 27px;
        line-height: normal;
    }

    .proceduresection h1 {
        font-size: 40px;
        font-weight: 600;
        margin-top: 20px;
    }

    .testimonialsection h1,
    .blogsection h1,
    .videosection h1 {
        font-size: 40px;
    }

    .slick-slide img {
        width: 100%;
    }

    .detailsslider .slick-next {
        top: 45%;
        right: -11px;
    }

    .detailsslider .slick-prev {
        top: 45%;
        left: -11px;
        z-index: 999;
    }

    .faqslidersection h1 {
        font-size: 25px;
        letter-spacing: 1px;
        line-height: normal;
        padding: 1%;
    }

    .faqslidercontentbox h2 {
        font-size: 20px;
    }

    .vtablinkbox h3 {
        font-size: 25px;
        line-height: normal;
    }

    .vtablinkbox h3 b {
        font-size: 25px;
        line-height: normal;
    }

    .cverticaltabs h3 {
        font-size: 20px;
        line-height: 30px;
        margin: 0;
    }

    .cverticaltabs .richtext p:last-child {
        margin: 0 0 0;
    }

    .morequestion h1 {
        font-size: 20px;
        line-height: 30px;
        margin: 15px 0 25px;
    }

    .sacblock1 h2 {
        font-size: 28px;
    }

    .sacblock1 h4 {
        font-size: 25px;
    }

    .sacblock1 h6,
    .sacblock1 h6 a {
        font-size: 21px;
        line-height: 40px;
    }

    .manswerbox {
        padding: 15px 0 0;
        font-size: 12px;
        line-height: 24px;
    }

    .listbannertext h1 {
        font-size: 28px;
    }

    .listbannertext .richtext p {
        font-size: 16px;
        /* line-height: normal; */
    }

    .standardcontent h5 {
        margin-bottom: 0;
    }

    /*.richtext p {
        font-size: 16px;
        line-height: 23px;
    }*/

    .richtext h1.heading1 {
        font-size: 28px;
        line-height: normal;
    }

    .aboutmeimgslidebox {
        max-width: 100%;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .aboutmeimgslidebox .aboutmeimgslideimg {
        width: auto;
        margin: 5px;
        height: auto;
    }

    .privatepractisesection {
        margin: 0 0px 3% 0px;
        padding-bottom: 3%;
    }

    .smileindiasection .related h1.smilehead {
        font-size: 40px;
    }

    .smilebox h1 {
        font-size: 25px;
        letter-spacing: 1px;
        line-height: normal;
    }

    .get-form {
        right: 10px;
        max-width: calc(100% - 21px);
    }

    .bigtext {
        font-size: 35px;
    }

    .slick-slide img {
        width: auto;
    }

    .doctorimgbox img {
        height: auto;
    }

    .detailsslider .slick-slide img {
        width: 100%;
    }

    ul.nav.nav-tabs {

        width: 1000px;
    }

    div#tablistbox {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .formobile {
        width: 91%;
    }

    .landingcontent {
        padding: 0 45px 20px;
        margin: 0;
    }

    .landingcontent .richtext p br {
        display: none;
    }

    .btnbox a {
        font-size: 12px;
        padding: 10px;
    }

    .masthead__bg-content.slick-slide {
        height: auto;
    }

    .img-spm .img-sp img {
        height: auto;
    }

    .masthead .masthead__title .masthead__bg {
        padding: 0;
    }

    .headerlogo .logotext {
        font-size: 18px;
        color: #000;
    }

    .logosubtext {
        font-size: 10px;
        letter-spacing: 0;
        color: #000;
    }

    .menubtntoggle span {
        background: black;
    }

    ul.subss {
        margin: 0;
    }

    .formobile {
        width: 75%;
        padding: 13% 5%;
    }

    .titletoggle {
        font-size: 16px;
    }

    .headerbox {
        padding: 15px;
        background: #fff;
    }

    .pagewrapper {
        margin: 120px 0 0;
    }

    .related.showtext {
        width: 100%;
        text-align: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .related span {
        transform: none;
    }

    .related span {
        font-size: 20px;
        line-height: normal;
    }

    .slidet-caps {
        width: 100%;
        position: static;
        transform: none;
    }

    .related span p {
        text-align: center;
    }

    h2.slideheading2 {
        height: auto !important;
        font-size: 18px;
        line-height: 25px;
    }

    a.button.js-anchor-link {
        font-size: 12px !important;
        line-height: 36px;
        padding: 5px;
    }

    .row.categoryblock-row .col-md-4.col-sm-4.match.p0 {
        width: 50% !important;
    }

    .categorybox {
        height: 40vh;
        margin: 0%;
    }

    .category-quote {
        font-size: 14px;
        line-height: 22px;
    }

    .category-quote h5 {
        line-height: 30px;
    }

    .aboutmesection h1 {
        font-size: 20px;
        line-height: 30px;
    }

    .aboutmetext p,
    .quotetextbox p,
    .richtext p {
        font-size: 12px;
        line-height: 22px;
        text-align: justify;
    }

    .quotetextbox p em {
        font-size: 14px;
        font-weight: 800;
        margin: 10px 0 15px;
    }

    .quotesectiontextbox .btnbox {
        margin: 15px auto 0;
    }

    .blogrow .col-md-4:nth-child(even) .blogbox {
        flex-direction: unset;
        flex-wrap: wrap;
        margin: 35px 0;
    }

    .blogrow .col-md-4:nth-child(even) .blogbox .blogtext {
        margin: 0;
    }

    .blogrow .col-md-4:nth-child(even) .blogbox .blogtext:after {
        top: auto;
    }

    .videobox {
        margin: 15px 0;
    }

    .listbannertext .richtext p {
        font-size: 12px;
        line-height: 24px;
    }

    .serviceslistbox {
        padding: 30px 25px;
    }

    .serviceslistbox h1 {
        font-size: 18px;
        line-height: 25px;
    }

    .serviceslistbox .richtext p,
    .listbannertext .richtext p,
    .richtext p,
    .whymebox .richtext p,
    .cverticaltabs .richtext p {
        font-size: 12px;
        line-height: 22px;
    }

    .serviceslistbox .richtext {
        height: auto;
        margin: 0 0 25px;
    }

    .serviceslistbox .richtext p {
        margin: 0;
    }

    .serviceslistbox .whitebtn.btnbox {
        padding: 0;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .listbannertext h1,
    .blogtextheading h4 {
        font-size: 20px;
    }

    .blogtextheading h4 {
        line-height: 30px;
        margin: 0;
    }

    .listbannertext h1 span {
        font-size: 14px;
        line-height: 25px;
    }

    .container.richtext.richtextcenterpara.topthisup {
        margin-top: 30px;
    }

    h5.reachhead,
    .detailssliderdescriptionsection h5 {
        font-size: 14px;
        line-height: 25px;
    }

    .whymebox h5 {
        font-size: 14px;
        line-height: 25px;
    }

    .whymebox h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .whymebox .richtext p span {
        font-size: 60px;
        line-height: 60px;
    }

    .beltdetailssection p {
        font-size: 16px;
        line-height: 26px;
        text-align: justify;
    }

    .whymebox2 .richtext p {
        margin: 0 0 10px;
    }

    .tch-text {
        top: auto;
        bottom: 0;
        transform: none;
        right: 20px;
    }

    .img-boks h4 {
        font-size: 12px;
    }

    .row-flexx .slick-next {
        right: -5px;
        z-index: 99;
    }

    .row-flexx .slick-prev {
        left: -5px;
        z-index: 99;
    }

    .faqslidersection h1 {
        font-size: 16px;
        line-height: 25px;
        padding: 15px 25px;
    }

    .faqsliderimgbox {
        min-height: unset;
    }

    .faqsliderimgbox img {
        height: auto;
    }

    .faqslidercontentbox ul {
        margin: 0 0 0;
    }

    .faqslidercontentbox ul li {
        font-size: 12px;
        line-height: 22px;
        margin: 0 0 5px;
    }

    .faqslidercontentbox .richtext p {
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 24px;
    }

    .listbannertext.dandp-bannertext h5,
    .datarow1 h5 {
        font-size: 20px;
        font-weight: bold;
        margin: 0 0 5px;
    }

    .listbannertext.dandp-bannertext {
        padding: 20px 25px;
    }

    .listbannertext.dandp-bannertext p {
        text-align: justify !important;
    }

    .whitebtn.btnbox a.btn {
        line-height: 35px;
    }

    .vtablinkbox h3,
    .vtablinkbox h3 b,
    .vtablinkbox h3 strong {
        font-size: 26px;
        line-height: 30px;
    }

    .cverticaltabs .srcollcontent {
        height: 260px;
    }

    .cverticaltabs .richtext p strong {
        font-size: 60px;
        line-height: 60px;
    }

    p.mquestion {
        font-size: 14px;
        text-align: left;
    }

    .caccordionbox {
        padding: 10px 10px 10px 30px;
    }

    .caccordiontogglebox i {
        line-height: normal;
        font-size: 18px;
        height: 25px;
        width: 25px;
        position: absolute;
        left: 5px;
    }

    .servicelinksbox ul {
        margin: 15px 0;
        text-align: left;
    }


    .servicelinksbox ul li {
        padding-right: 15px;
    }

    .servicelinksbox ul li a {
        font-size: 12px;
        line-height: 24px;
    }

    .sacblock1 h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .sacblock1 h6,
    .sacblock1 h6 a {
        font-size: 20px;
        line-height: 30px;
    }

    .sacblock1 .richtext p {
        font-size: 16px;
        line-height: 25px;
    }

    .namebox h1 {
        font-size: 20px;
        line-height: 30px;
    }

    .namebox p {
        font-size: 12px;
        line-height: 24px;
    }

    .namedetails .phonenoh1 a {
        font-size: 20px;
        line-height: 35px;
    }

    .hospitallist ul li h4 {
        font-size: 14px;
        letter-spacing: 0px;
        line-height: 22px;
    }

    .hospitallist ul li p {
        font-size: 12px;
    }

    .reachbox ul {
        justify-content: center;
        display: flex;
    }

    .centerit {
        height: auto !important;
    }

    .nopadd {
        height: auto !important;
    }

    .row.reachusflex {
        display: block;
    }

    .disclaimerfooter {
        width: 100%;
        padding: 20px 0;
    }

    .disclaimerfooter p {
        text-align: center;
        font-size: 12px;
        line-height: 22px;
    }

    .footerasection4 {
        padding: 20px 25px;
        font-size: 12px;
        line-height: 22px;
        margin: 0 0 40px;
    }

    .richtext.richtextcenterpara p {
        text-align: justify;
    }

    .smallheadingsection {
        font-size: 14px;
        line-height: 24px;
    }

    .bestmeblock .bigtext {
        font-size: 20px;
        letter-spacing: 1px;
        line-height: 30px;
    }

    .standardcontent {
        padding: 20px 20px 0;
    }

    .standardcontent h5 {
        font-size: 14px;
        line-height: 24px;
    }

    .textitalicmix h5 {
        font-size: 12px;
        line-height: 23px;
    }

    .smileindiasection .related h1.smilehead {
        font-size: 30px;
    }

    .smilebox h1 {
        font-size: 20px;
        letter-spacing: 1px;
        line-height: 30px;
    }

    .row.smilegallery .imgbox {
        width: 100%;
        max-width: unset;
        margin: 0 0 20px;
    }

    .row.smilegallery .imgbox img {
        width: 100%;
    }

    section.accre h2 {
        font-size: 20px;
        text-align: center;
    }

    section.accre h4 {
        font-size: 14px;
        line-height: 22px;
    }

    section.accre ul li {
        font-size: 12px;
        line-height: 23px;
    }

    body.page-id-574 .proceduresinlist,
    body.page-id-576 .proceduresinlist {
        height: 40vh;
    }

    .practcetexttop h4,
    .internationalpatient-inner .richtext.toptext h4,
    .patientstravellingto-section .richtext.toptext h4 {
        font-size: 14px;
        letter-spacing: 0px;
        line-height: 25px;
    }

    .doctorhouse-text {
        width: 100%;
        order: 2;
        padding: 20px;
    }

    .aboutdoctorhouse {
        flex-wrap: wrap;
    }

    .doctorhouseimages-slider {
        width: 100%;
    }

    .doctorhouseimages-slider .doctorhouseimages-slide.slick-slide {
        height: auto;
    }

    .doctorhouseimages-slider .doctorhouseimages-slide.slick-slide img {
        height: auto;
    }

    .doctorhouse-text p {
        font-size: 12px;
        line-height: 22px;
    }

    .aboutdoctorhouse.krasivatop {
        padding: 0;
    }

    .krasivatop .aboutmeimgslidebox .aboutmeimgslideimg {
        width: 45%;
        height: auto;
    }

    .bottomtext h5 {
        font-size: 14px;
    }

    .internationalpatient-inner .richtext.toptext p {
        text-align: center;
        font-size: 14px;
    }

    .main_paragraph_text {
        padding: 30px 20px;
    }

    .main_paragraph_text .richtext p {
        font-size: 14px;
        line-height: 25px;
    }

    .patientstravellingto-section .caccordionbox .caccordiontogglebox {
        padding: 5px 5px 5px 30px;
    }

    .international-acc .manswerbox {
        padding: 10px 20px;
    }

    .patientstravellingto-section .caccordionbox p.mquestion {
        font-weight: 700;
        font-size: 14px;
    }

    .aboutmubaiandindia-section .nav-tabs a.nav-item {
        font-size: 12px;
        line-height: 20px;
        font-weight: 600;
        padding: 5px 10px;
    }

    .aboutmubaiandindiatabs .tab-pane {
        padding: 30px 15px;
    }

    .slidershow-flex .slidershow-slide.slick-slide {
        height: auto;
    }

    .slidershow-flex .slidershow-slide.slick-slide img {
        height: auto;
    }

    .slidershow-flex {
        margin: 0 auto 15px;
    }

    .thingsflex .serviceslistbox {
        padding: 20px;
    }

    .thingsflex .serviceslistbox .thingsflextext,
    .thingsflex .serviceslistbox:nth-of-type(odd) .thingsflextext,
    .thingsflex .serviceslistbox:nth-of-type(even) .thingsflextext {
        width: 100%;
        padding: 20px 0 0;
        text-align: center;
        order: 2;
    }

    .thingsflex .serviceslistbox .thingsfleximage {
        width: 100%;
    }

    .thingsflex .serviceslistbox:nth-of-type(even) {
        flex-direction: unset;
    }

    .bankdetailsinner {
        width: 100%;
        padding: 25px;
    }

    .bankdetailsinner h5 {
        font-size: 14px;
        line-height: 23px;
        margin: 0 0 15px;
    }

    .bankdetailsinner .richtext p {
        margin: 0 0 5px;
    }

    .bankdetails-section h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .wraps {
        margin: 120px 0 0;
    }

    .allwebsitebloglist .Custome_Blog_list a.bloglink {
        width: 95%;
        margin: 0 2.5% 5%;
        display: block;
    }

    .allwebsitebloglist .Custome_Blog_list .blog-img {
        height: 200px;
    }

    .allwebsitebloglist .Custome_Blog_list .blog-title {
        padding: 15px;
    }

    .allwebsitebloglist .Custome_Blog_list a.bloglink h1 {
        font-size: 14px;
        line-height: 25px;
    }

    #secondary {
        padding: 20px 25px;
        display: none !important;
    }

    .post-template-default .wrap {
        margin: 120px 0 0;
    }

    .blog_bold_flex {
        width: 95%;
        margin: 0 auto;
        position: static;
    }

    .blog_bold_flex h4 {
        font-size: 20px;
        line-height: 30px;
        margin: 0;
    }

    .blogdetails .paraText .richtext p {
        font-size: 12px;
        line-height: 23px;
    }

    .pricing-section h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .pricing-section p {
        line-height: 22px;
        font-size: 12px;
        margin: 15px 0 0;
    }

    .pricing_table_flex .card .card-body {
        padding: 20px 0;
    }

    .pricing_table thead tr th,
    .pricing_table tbody tr td {
        font-size: 12px;
        line-height: 20px;
        padding: 10px 5px;
    }


    .pricing_table thead tr th:nth-of-type(1),
    .pricing_table tbody tr td:nth-of-type(1) {
        padding: 10px;
    }

    section.saconsultsection.contactsaconsultsection.videoconsultationsection .sacblock1 h2,
    section.saconsultsection.scheduleformsection .sacblock1 h2 {
        font-size: 20px;
        line-height: 30px;
    }

    section.saconsultsection.contactsaconsultsection.videoconsultationsection .richtext p {
        font-size: 12px;
        line-height: 22px;
    }

    section.saconsultsection.contactsaconsultsection.videoconsultationsection {
        padding: 35px 0;
        margin: 0 0 35px;
    }

    section.saconsultsection.scheduleformsection {
        padding: 0 0 35px;
        margin: 0 0 35px;
    }

    .contactmap {
        margin: 35px 0 0;
        padding: 0;
    }

    section.saconsultsection.contactsaconsultsection.videoconsultationsection h4 {
        font-size: 16px;
        font-weight: 700;
    }

    section.saconsultsection.scheduleformsection .sacblock1 .richtext p {
        font-size: 16px;
    }

    .contactmap .clinicdetails {
        padding: 15px 0;
        margin: 0 0 35px;
    }

    .contactmap .clinicdetails h4 {
        font-size: 14px;
        line-height: 24px;
    }

    body.page-id-14 .pagewrapper {
        margin: 0;
    }

    .masthead__bg-content.slick-slide:nth-of-type(1) .related span p,
    .masthead__bg-content.slick-slide:nth-of-type(2) .related span p,
    .masthead__bg-content.slick-slide:nth-of-type(5) .related span p {
        color: #000;
    }

    .blogrow .col-md-4 .blogbox .blogtext {
        border-top: 1px solid #ccc;
        padding: 20px 0;
    }

    .blogrow .col-md-4:nth-child(1) .blogbox .blogtext {
        border-top: 0;
    }

    .blogtext:after {
        display: none;
    }

    header.bgwhite menu.formobile {
        top: 82px;
        margin: 0;
        padding: 35px;
    }

    h4.headfont {
        font-size: 12px;
        line-height: 22px;
    }
}

@media (max-width:425px) {

    /*  .formobile{
        width: 91%;
    }*/
    .bigtext {
        font-size: 30px;
        line-height: normal;
    }

    /*.categorybox {
        height: 65vh;
        margin: 3%;
    }*/
    .categorybox {
        min-height: auto;
    }

    .testimonialslide .slick-dots {
        bottom: 5px;
    }

    /*  .namebox h1 {
        font-size: 25px;
    }*/

    /* section#proceduresection {
        margin-top: 16%;
    }*/
    .slick-slide img {
        width: auto;
    }

    /*.detailsslider .slick-slide img{
        width: 100%;
    }*/
    /*    section.accre h2 {
        font-size: 25px;
    }
    section.accre h4 {
        font-size: 16px;
    }
    section.accre ul li {
        font-size: 16px;
        line-height: normal;
    }*/
    /*  .sacblock1 h2 {
        font-size: 25px;
        line-height: normal;
    }
    .sacblock1 h6, .sacblock1 h6 a {
        font-size: 20px;
        line-height: normal;
    }*/
    /*.footerasection4 {
        background: #292828;
        padding: 3.5% 2.1%;
        text-align: center;
        font-size: 13px;
        line-height: 18px;
    }*/
    ul.nav.nav-tabs {

        width: 1000px;
    }

    div#tablistbox {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .testimonialslide .slick-dots {
        bottom: 5px;
        margin-top: 14px;
    }

    .proceduresection h1,
    .testimonialsection h1,
    .blogsection h1,
    .videosection h1,
    .internationalpatient-section h1,
    .patientstravellingto-section h1,
    .fellowshipand-training h1 {
        font-size: 30px;
        margin-top: 30px;
    }

    .testname {
        font-size: 16px;
        margin: 20px 0 0;
        line-height: 25px;
    }

    .fellowshipand-training .bestmeblock .bigtext {
        font-size: 14px;
        line-height: 25px;
    }

    .bestmeblock {
        padding: 35px 0 45px;
    }

    .testdesignation {
        font-size: 12px;
    }

    .testimonilaltext {
        margin: 0px 30px 0px 30px;
    }

    .testimonilaltext p {
        font-size: 12px;
        line-height: 23px;
    }

    .blogtext h3 {
        font-size: 14px;
        line-height: 25px;
    }

    .blogtext .richtext p {
        font-size: 12px;
        line-height: 21px;
    }

    .cverticaltabs .mCSB_inside>.mCSB_container {
        margin-right: 20px !important;
    }

    .gallery-m-top {
        margin-top: 5% !important;
    }
}

@media (max-width:395px) {

    .blogrow .col-md-4 .blogbox .blogtext:after {
        display: none;
    }

    .formobile {
        width: 91%;
    }

    .menubtntoggle {
        width: 35px;
    }

    /*.headerlogo .logotext {
        font-size: 23px;
    }
    .logosubtext {
        font-size: 10px;
    }*/
    header.bgwhite {
        min-height: 60px;
    }

    .sliderno {
        font-size: 16px;
        line-height: normal;
    }

    ul.nav.nav-tabs {

        width: 1000px;
    }

    div#tablistbox {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    /*    .faqslidercontentbox .richtext p {
        font-size: 16px;
        line-height: 22px;
    }*/

    /*    .faqslidercontentbox h2 {
        font-size: 18px;
    }*/
    /*    .testimonilaltext p {
        font-size: 15px;
        line-height: 23px;
    }*/
    .testimonialslide .slick-dots {
        bottom: 5px;
        margin-top: 14px;
    }

    /* section#proceduresection {
        margin-top: 43%;
    }*/
    /*    .textitalicmix h5 {
        font-size: 14px;
    }
    .smilebox h1 {
        font-size: 20px;
    }
    .smileindiasection .related h1.smilehead {
        font-size: 30px;
    }*/
    .smileindiasection img.curve {
        width: 50px;
        top: 50%;
    }

    section.accre .container {
        padding: 0 9%;
    }

    .bestmeblock .bigtext {
        font-size: 21px;

    }

    .home .masthead .masthead__title h1,
    .home .masthead .masthead__title h2,
    .home .masthead .masthead__title h3 {
        font-size: 21px;
    }

    .home .masthead .masthead__title .button {
        font-size: 12px !important;
    }

    /*    .aboutmesection h1 {
        font-size: 24px;
        line-height: normal;
    }*/
    /*    .quotetextbox p {
        font-size: 16px;
        line-height: 24px;
    }*/
    .procedurebox .text p {
        font-size: 18px;

    }

    /*    header.bgwhite menu.formobile {
        top: 7%;
    }*/

    a.button.js-anchor-link {
        width: 60%;
        left: 20%;
        transform: none;
        text-align: center;
    }
}

@media (max-width:360px) {
    .formobile {
        width: 91%;
    }

    .menubtntoggle {
        width: 35px;
    }

    /* .logosubtext {
        font-size: 9px;
    }
    .headerlogo .logotext {
        font-size: 20px;
    }*/
}

@media (max-width:325px) {
    .formobile {
        width: 91%;
    }

    .titletoggle {
        font-size: 16px;
    }

    .landinghead {
        font-size: 20px;
    }

}