/* ===== Hero Slider — fully namespaced, no external deps ===== */
.hs-slider,
.hs-slider * {
    box-sizing: border-box;
}

.hs-slider {
    position: relative;
    isolation: isolate;      /* own stacking context, keeps z-index fights out */
    width: 100%;
    height: 100vh;
    height: 84dvh;
    min-height: 480px;
    overflow: hidden;
    background: #000;
    margin: 0;
    padding: 0;
}

.hs-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 1;
}

.hs-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* background layers */
.hs-slide__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hs-slide__image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: hsKenBurns 16s ease-in-out infinite alternate;
}

.hs-slide.is-active .hs-slide__image {
    animation-play-state: running;
}
.hs-slide:not(.is-active) .hs-slide__image {
    animation-play-state: paused;
}

@keyframes hsKenBurns {
    0%   { transform: scale(1); }
    100% { transform: scale(1.12); }
}

.hs-slide__video {
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hs-slide__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* content */
.hs-slide__content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.hs-inner {
    color: #fff;
    max-width: 640px;
}

.hs-title {
    margin: 0 0 20px;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
}

.hs-text {
    margin: 0 0 30px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    opacity: 0;
    transform: translateY(30px);
}

.hs-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.hs-slide.is-active .hs-title,
.hs-slide.is-active .hs-text,
.hs-slide.is-active .hs-btns {
    animation: hsFadeUp 0.8s ease forwards;
}
.hs-slide.is-active .hs-title { animation-delay: .2s; }
.hs-slide.is-active .hs-text  { animation-delay: .4s; }
.hs-slide.is-active .hs-btns  { animation-delay: .6s; }

@keyframes hsFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hs-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
    line-height: 1.4;
}
.hs-btn--solid {
    background: #ff5a5f;
    color: #fff;
}
.hs-btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.hs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,.25);
    text-decoration: none;
}

.hs-btn--solid {
    background: linear-gradient(286deg, #fa2a2a, #ff18588a);
    border: none;
    border-radius: 10px;
    color: #fff;
}

.hs-btn--solid:hover {
    background: linear-gradient(286deg, #fa2a2a, #ff18588a);
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255,107,0,.45);
}

.hs-btn--outline {
    background: rgba(0,0,0,.25);
    border: 2px solid rgba(255,255,255,.35);
    color: #fff;
    transition: all .35s ease;
}

.hs-btn--outline:hover {
    background: #111827b3;
    border-color: #ffffff;
    color: #efefef;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,.35);
}
 

/* arrows */
.hs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .3s ease;
}
.hs-nav:hover { background: rgba(255,255,255,0.3); }
.hs-nav--prev { left: 24px; }
.hs-nav--next { right: 24px; }

/* dots */
.hs-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.hs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
}
.hs-dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

/* mobile */
@media (max-width: 767px) {
    .hs-title { font-size: 28px; }
    .hs-text  { font-size: 15px; }
    .hs-nav   { display: none; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hs-slide__image { animation: none; }
    .hs-title, .hs-text, .hs-btns { animation: none !important; opacity: 1; transform: none; }
}

/* YouTube background embed */
.hs-slide__yt {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none; /* stop clicks from hitting YouTube controls/links */
}

.hs-slide__yt iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;      /* 16:9 ratio: height = width * 9/16 */
    min-height: 100vh;
    min-width: 177.78vh;  /* 16:9 ratio: width = height * 16/9 */
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

.hs-btn-wrap {
    position: relative;
    display: inline-block;
    margin-left: calc(28px - 16px); /* icon overhang minus existing flex gap */
}

.hs-clock-icon {
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.25));
}

.hs-clock-hand-min,
.hs-clock-hand-hr {
    transform-origin: 32px 32px;
}

.hs-clock-hand-min {
    animation: hsTickMinute 6s steps(60) infinite;
}

.hs-clock-hand-hr {
    animation: hsTickHour 72s linear infinite;
}

@keyframes hsTickMinute {
    to { transform: rotate(360deg); }
}
@keyframes hsTickHour {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .hs-clock-hand-min,
    .hs-clock-hand-hr { animation: none; }
}

.hs-btn--icon {
    padding-left: 40px; /* leaves room so text doesn't sit under the icon */
}

@media (max-width: 767px) {
    .hs-btn__icon { width: 40px; height: 40px; left: -18px; }
    .hs-btn--icon { padding-left: 26px; }
    .hs-btn-wrap { margin-left: calc(18px - 16px); } /* matches the smaller mobile icon offset */
}



/* About Us Css */
.hc-about-section {
    padding: 50px 0;
    background: #fafafa;
}

.abt-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px 0;
}

.abt-content {
    padding-right: 30px;
}

.abt-label {
    display: inline-block;
    padding: 5px 16px;
    background: linear-gradient(135deg, #ff6b00, #ff8c1a);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 16px;
}

.abt-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 16px;
}

.abt-title::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #fc005beb;
    border-radius: 4px;
}

.abt-text {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

/* Button */
.abt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(286deg, #fa2a2a, #c61c4b);
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.3px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #fdfcfc;
    transition: all 0.25s ease;
}

.abt-btn:hover {
    background: linear-gradient(286deg, #fa2a2a, #ff18588a);
    /*border-color: #c92a37;*/
    color: #fff;
    box-shadow: 0 15px 35px rgba(255,107,0,.45);
}

.abt-btn i {
    font-size: 12px;
}

/* Image / video column */
.abt-media {
    position: relative;
}

.abt-video-box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    border: 4px solid #fff;
}

.abt-video-wrapper {
    position: relative;
    pointer-events: none;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.abt-video-wrapper iframe,
.abt-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    opacity: 0;
    animation: abtFadeIn 0.4s ease forwards;
    animation-delay: 0.6s;
}

.abt-image-grid {
    display: flex;
    gap: 15px;
}

.abt-grid-image {
    margin: 0;
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
    transition: transform 0.3s ease;
}

.abt-grid-image:hover {
    transform: translateY(-5px);
}

.abt-grid-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

@keyframes abtFadeIn {
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 991px) {
    .abt-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .abt-image-grid {
        flex-wrap: wrap;
    }
    .abt-grid-image {
        flex: 1 1 calc(50% - 8px);
    }
}
/* End of About Us Css */

/* Start of Service Css */
 .svc-section{
    --ink:#0F172A;
    --panel:#141E30;
    --panel-2:#1B2740;
    --line:#2A3852;
    --signal:#38BDF8;
    --amber:#F5A524;
    --paper:#F8FAFC;
    --muted:#93A2BE;
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:radial-gradient(circle at 15% 0%, #17223B 0%, var(--ink) 55%);
    color:var(--paper);
    font-family:'Inter',system-ui,-apple-system,sans-serif;
}
.svc-grid-bg{
    position:absolute;inset:0;
    background-image:
        linear-gradient(to right, rgba(56,189,248,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(56,189,248,0.05) 1px, transparent 1px);
    background-size:64px 64px;
    -webkit-mask-image:radial-gradient(ellipse at 50% 20%, black 0%, transparent 70%);
    mask-image:radial-gradient(ellipse at 50% 20%, black 0%, transparent 70%);
    pointer-events:none;
}
.svc-section .auto-container{position:relative;z-index:1;}

.svc-header{text-align:center;max-width:760px;margin:0 auto 56px;}
.svc-eyebrow{
    display:inline-flex;align-items:center;gap:8px;
    font-family:'JetBrains Mono',monospace;
    font-size:12.5px;letter-spacing:0.14em;text-transform:uppercase;
    color:var(--signal);
    padding:6px 14px;border:1px solid rgba(56,189,248,0.3);
    border-radius:999px;background:rgba(56,189,248,0.06);
    margin-bottom:22px;
}
.svc-dot{
    width:6px;height:6px;border-radius:50%;background:var(--signal);
    box-shadow:0 0 0 0 rgba(56,189,248,0.6);
    animation:svcPulse 2s infinite;
}
@keyframes svcPulse{
    0%{box-shadow:0 0 0 0 rgba(56,189,248,0.55);}
    70%{box-shadow:0 0 0 8px rgba(56,189,248,0);}
    100%{box-shadow:0 0 0 0 rgba(56,189,248,0);}
}
.svc-title{
    font-family:'Sora','Inter',sans-serif;
    font-weight:700;
    font-size:clamp(32px,4vw,46px);
    letter-spacing:-0.02em;
    margin:0 0 18px;
    color:var(--paper);
}
.svc-text{
    color:var(--muted);
    font-size:16px;line-height:1.75;
    margin:0 0 34px;
}

.svc-call-bar{
    display:inline-flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:center;
    padding:14px 22px;
    border:1px solid var(--line);
    border-radius:12px;
    background:linear-gradient(180deg, rgba(27,39,64,0.9), rgba(20,30,48,0.9));
    box-shadow:inset 0 1px 0 rgba(255,255,255,0.04);
}
.svc-call-label{
    font-size:12px;text-transform:uppercase;letter-spacing:0.12em;
    color:var(--muted);
}
.svc-call-number{
    font-family:'JetBrains Mono',monospace;
    font-size:18px;font-weight:600;
    color:var(--paper);
    text-decoration:none;
    display:inline-flex;align-items:center;
    transition:color 0.2s ease;
}
.svc-call-number:hover{color:var(--amber);}
.svc-cursor{
    width:2px;height:16px;background:var(--amber);
    margin-left:6px;
    animation:svcBlink 1.1s steps(1) infinite;
}
.svc-call-sep{color:var(--line);}
@keyframes svcBlink{50%{opacity:0;}}

.svc-row{margin-top:20px;row-gap:32px;}

.svc-card{
    position:relative;
    display:flex;flex-direction:column;
    height:100%;
    padding:38px 30px 30px;
    border-radius:14px;
    background:linear-gradient(165deg, var(--panel-2) 0%, var(--panel) 100%);
    border:1px solid var(--line);
    text-decoration:none;
    overflow:hidden;
    transition:transform 0.35s cubic-bezier(.2,.7,.3,1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.svc-card:hover{
    transform:translateY(-6px);
    border-color:rgba(56,189,248,0.45);
    box-shadow:0 24px 48px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(56,189,248,0.08);
}

.svc-bracket{
    position:absolute;width:18px;height:18px;
    border-color:var(--signal);border-style:solid;
    opacity:0;transition:opacity 0.3s ease, transform 0.3s ease;
}
.svc-bracket-tl{top:10px;left:10px;border-width:2px 0 0 2px;transform:translate(6px,6px);}
.svc-bracket-tr{top:10px;right:10px;border-width:2px 2px 0 0;transform:translate(-6px,6px);}
.svc-bracket-bl{bottom:10px;left:10px;border-width:0 0 2px 2px;transform:translate(6px,-6px);}
.svc-bracket-br{bottom:10px;right:10px;border-width:0 2px 2px 0;transform:translate(-6px,-6px);}
.svc-card:hover .svc-bracket{opacity:1;transform:translate(0,0);}

.svc-index{
    position:absolute;top:22px;right:26px;
    font-family:'JetBrains Mono',monospace;
    font-size:12px;color:var(--muted);
    letter-spacing:0.05em;
}

.svc-icon-wrap{
    position:relative;
    width:64px;height:64px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:22px;
}
.svc-icon-ring{
    position:absolute;inset:0;
    border-radius:50%;
    border:1px solid rgba(56,189,248,0.35);
    transition:transform 0.4s ease, border-color 0.4s ease;
}
.svc-card:hover .svc-icon-ring{
    transform:scale(1.18);
    border-color:var(--paper);
}
.svc-icon{width:30px;height:30px;object-fit:contain;position:relative;z-index:1;filter:brightness(0) invert(1);}

.svc-card-title{
    font-family:'Sora','Inter',sans-serif;
    font-size:19px;font-weight:600;
    color:var(--paper);
    margin:0 0 10px;
}
.svc-card-text{
    color:var(--muted);
    font-size:14.5px;line-height:1.7;
    margin-bottom:22px;
    flex-grow:1;
}
.svc-read-more{
    display:inline-flex;align-items:center;gap:6px;
    font-size:13.5px;font-weight:600;
    text-transform:uppercase;letter-spacing:0.06em;
    color:var(--signal);
}
.svc-read-more svg{transition:transform 0.25s ease;}
.svc-card:hover .svc-read-more{color:var(--paper);}
.svc-card:hover .svc-read-more svg{transform:translateX(4px);}

.svc-footer{text-align:center;margin-top:56px;}
.svc-btn{
    display:inline-flex;align-items:center;gap:10px;
    padding:15px 32px;
    border-radius:999px;
    background:#ffffff;
    color:var(--ink);
    font-weight:700;font-size:14.5px;
    text-transform:uppercase;letter-spacing:0.05em;
    text-decoration:none;
    transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow:0 12px 30px -12px rgba(245,165,36,0.55);
}
.svc-btn:hover{
    transform:translateY(-3px);
    background:#b9cbe4;
    color:var(--ink);
    box-shadow:0 18px 36px -14px rgb(207 223 231);
}

/* Scroll reveal */
.reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity 0.7s ease, transform 0.7s ease;
    transition-delay:var(--delay, 0ms);
}
.reveal.is-visible{opacity:1;transform:translateY(0);}

@media (prefers-reduced-motion: reduce){
    .reveal{opacity:1;transform:none;transition:none;}
    .svc-card, .svc-btn, .svc-bracket, .svc-icon-ring{transition:none;}
    .svc-dot, .svc-cursor{animation:none;}
}

@media (max-width:991px){
    .svc-section{padding:80px 0;}
}
        
/* End of Service Css */

/* Start of Package Css */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@500;600&display=swap');

.svc-plans {
    --bg: #eef0f3;
    --panel: #ffffff;
    --line: rgba(15,23,42,0.08); 
    --text: #181c22;
    --muted: #6b7280;
    --blue-a: #0061ff;
    --blue-b: #3f8cff;
    --blue-grad: linear-gradient(135deg, var(--blue-a), var(--blue-b));
    --blue-deep: #0047b3;
    position: relative;
    background: var(--bg);
    padding: 100px 0 90px;
    overflow: hidden;
    isolation: isolate;
}

/* faint diagnostic scanline texture */
.svc-plans::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: repeating-linear-gradient(
        115deg,
        rgba(15,23,42,0.035) 0px,
        rgba(15,23,42,0.035) 1px,
        transparent 1px,
        transparent 64px
    );
    pointer-events: none;
}

.svc-plans .auto-container { position: relative; z-index: 1; }

.svc-plans__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.svc-plans__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 18px;
}

.svc-plans__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-grad);
    box-shadow: 0 0 0 0 rgba(0,97,255,0.5);
    animation: svcPulse 2.2s ease-out infinite;
}

@keyframes svcPulse {
    0%   { box-shadow: 0 0 0 0 rgba(0,97,255,0.45); }
    70%  { box-shadow: 0 0 0 9px rgba(0,97,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,97,255,0); }
}

.svc-plans__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.15;
    color: var(--text);
    margin: 0 0 18px;
}

.svc-plans__desc {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--muted);
}

.svc-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .svc-plans__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .svc-plans__grid { grid-template-columns: 1fr; }
}

.svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 38px 28px 30px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    animation: svcCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    box-shadow: 0 18px 40px -30px rgba(15,23,42,0.35);
}

.svc-card:nth-child(1) { animation-delay: 0.05s; }
.svc-card:nth-child(2) { animation-delay: 0.16s; }
.svc-card:nth-child(3) { animation-delay: 0.27s; }
.svc-card:nth-child(4) { animation-delay: 0.38s; }
.svc-card:nth-child(5) { animation-delay: 0.49s; }
.svc-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes svcCardIn {
    from { opacity: 0; transform: translateY(22px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* top accent bar — same premium treatment on every card */
.svc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue-grad);
    transform: scaleX(0.4);
    transition: transform 0.35s ease;
}

.svc-card:hover::before { transform: scaleX(1); }

.svc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,97,255,0.3);
    box-shadow: 0 28px 50px -26px rgba(0,97,255,0.32);
}

.svc-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(265deg, #2a7eff, #017fc3);
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 18px;
    box-shadow: 0 12px 22px -8px rgba(0,97,255,0.5);
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-card__icon { transform: scale(1.08) rotate(-4deg); }

.svc-card__tier {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 12px;
}

.svc-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.35;
    color: var(--text);
    min-height: 48px;
    margin-bottom: 14px;
    text-align: center;
}

.svc-card__price-row {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.svc-card__price-box {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    padding: 10px 26px;
    border: 1.5px dashed rgba(0,97,255,0.4);
    border-radius: 10px;
    animation: svcGlow 2.6s ease-in-out infinite;
}

.svc-card__price {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: 32px;
    color: var(--blue-deep);
    transition: transform 0.25s ease;
}

.svc-card:hover .svc-card__price { transform: scale(1.05); }

/* signature: breathing-glow rectangle behind every price — consistent across all cards */
@keyframes svcGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,97,255,0.16); border-color: rgba(0,97,255,0.4); }
    50%      { box-shadow: 0 0 0 7px rgba(0,97,255,0); border-color: rgba(0,97,255,0.65); }
}

.svc-card__divider {
    width: 100%;
    height: 1px;
    background: var(--line);
    margin-bottom: 18px;
}

.svc-card__desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    text-align: center;
    flex-grow: 1;
    margin-bottom: 26px;
}

.svc-card__cta {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(265deg, #2a7eff, #017fc3);
    border-radius: 8px;
    padding: 13px 20px;
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-card__cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

.svc-card__cta:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 12px 24px -10px rgba(0,97,255,0.55);
}

.svc-card__cta:hover::before {
    left: 125%;
}

.svc-plans__all {
    text-align: center;
    margin-top: 52px;
}

.svc-plans__all-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 13px 26px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
    background-color: #073d60;
}

.svc-plans__all-link:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .svc-plans__eyebrow::before,
    .svc-card__price-box,
    .svc-card {
        animation: none;
    }
    .svc-card__cta::before {
        transition: none;
        display: none;
    }
}
/* End of Packages Css */


/* Start of Why Choose Us Css */

/* ==========================================================================
   Why Choose Us — full redesign
   ========================================================================== */

.why-choose-us-hc {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
    overflow: hidden;
}

.why-choose-us-hc::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-choose-us-hc .auto-container {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Content column ---- */

.why-choose-us-hc .content-column .hc-inner-column {
    padding-right: 40px;
}

.hc-sec-title {
    position: relative;
    margin-bottom: 35px;
    z-index: 1;
    margin-top: -3px;
}

.hc-text{
    font-size: 13.5px;
    line-height: 1.8;
    color: #5a6577;
}

.why-choose-us-hc .sec-title__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0066ff;
    background: rgba(0, 102, 255, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.why-choose-us-hc .hc-sec-title.style-two h2 {
    font-size: 40px;
    font-weight: 700;
    color: #12203c;
    letter-spacing: -0.5px;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 18px;
}

.why-choose-us-hc .hc-sec-title.style-two h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #0066ff, #00c2ff);
}

.why-choose-us-hc .hc-sec-title.style-two .text {
    font-size: 16.5px;
    line-height: 1.8;
    color: #5a6577;
    max-width: 560px;
}

/* ---- Benefit cards ---- */

.why-choose-us-hc .feature-outer {
    margin-top: 34px;
}

.why-choose-us-hc .benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.why-choose-us-hc .benefit-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(18, 32, 60, 0.05);
    box-shadow: 0 2px 8px rgba(18, 32, 60, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-choose-us-hc .benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.16);
}

.why-choose-us-hc .benefit-card__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #0066ff, #00c2ff);
}

.why-choose-us-hc .benefit-card__title {
    font-size: 13px;
    font-weight: 500;
    color: #263553;
    line-height: 1.3;
}

.why-choose-us-hc .feature-outer__disclaimer {
    margin: 20px 0 0;
    font-size: 12.5px;
    font-style: italic;
    color: #8a94a6;
}

/* ---- CTA row ---- */

.why-choose-us-hc .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.why-choose-us-hc .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.why-choose-us-hc .btn-cta--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #0066ff, #00c2ff);
    box-shadow: 0 10px 24px rgba(0, 102, 255, 0.28);
}

.why-choose-us-hc .btn-cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 102, 255, 0.36);
    color: #ffffff;
}

.why-choose-us-hc .btn-cta--ghost {
    color: #12203c;
    background: transparent;
    border: 1.5px solid rgba(18, 32, 60, 0.15);
}

.why-choose-us-hc .btn-cta--ghost:hover {
    border-color: #0066ff;
    color: #0066ff;
}

/* ---- Stat row ---- */

.why-choose-us-hc .stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 28px 0 0;
    margin: 34px 0 0;
    border-top: 1px solid rgba(18, 32, 60, 0.08);
}

.why-choose-us-hc .stat-row__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-choose-us-hc .stat-row__num {
    font-size: 24px;
    font-weight: 700;
    color: #12203c;
}

.why-choose-us-hc .stat-row__label {
    font-size: 12.5px;
    color: #8a94a6;
}

/* ---- Image column ---- */

.why-choose-us-hc .image-column .inner-column {
    position: relative;
    height: 100%;
}

.why-choose-us-hc .image-column figure.image {
    position: relative;
    height: 100%;
    min-height: 420px;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(18, 32, 60, 0.18);
}

.why-choose-us-hc .image-column figure.image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.3) 100%);
}

.why-choose-us-hc .image-column figure.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-choose-us-hc .image-column figure.image:hover img {
    transform: scale(1.06);
}

.why-choose-us-hc .image__badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #12203c;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(18, 32, 60, 0.15);
}

.why-choose-us-hc .image__badge i {
    color: #0066ff;
}

/* ---- Responsive ---- */

@media (max-width: 991px) {
    .why-choose-us-hc .content-column .inner-column {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .why-choose-us-hc .benefit-grid,
    .why-choose-us-hc .stat-row {
        grid-template-columns: 1fr 1fr;
    }
    .why-choose-us-hc .image-column figure.image {
        min-height: 320px;
    }
}

@media (max-width: 576px) {
    .why-choose-us-hc {
        padding: 60px 0;
    }
    .why-choose-us-hc .hc-sec-title.style-two h2 {
        font-size: 28px;
    }
    .why-choose-us-hc .benefit-grid,
    .why-choose-us-hc .stat-row {
        grid-template-columns: 1fr;
    }
    .why-choose-us-hc .cta-row {
        flex-direction: column;
    }
    .why-choose-us-hc .btn-cta {
        width: 100%;
        justify-content: center;
    }
}
/* End of Why Choose Us Css */


/* End of Extra Css */
/* End of Extra Css */
/* Premium Support CTA — fully namespaced to avoid theme conflicts */
.prm-cta {
  --prm-bg: #0b1220;
  --prm-surface: rgba(255,255,255,0.04);
  --prm-border: rgba(255,255,255,0.08);
  --prm-accent: #3b82f6;
  --prm-accent-2: #8b5cf6;
  --prm-text: #f1f5f9;
  --prm-muted: #94a3b8;
  --prm-glow: rgba(59,130,246,0.25);
  --prm-radius: 20px;

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--prm-bg);
  border: 1px solid var(--prm-border);
  /*border-radius: var(--prm-radius);*/
  padding: 10px 48px;
  max-width: 100%;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 0 120px -40px var(--prm-glow);
}

/* Animated grid layer */
.prm-cta__grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: prm-grid-drift 22s linear infinite;
  -webkit-mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, #000 40%, transparent 85%);
  mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, #000 40%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

@keyframes prm-grid-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 40px); }
}

/* Ambient background glows */
.prm-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--prm-accent) 0%, transparent 70%);
  opacity: 0.08;
  pointer-events: none;
  filter: blur(80px);
  animation: prm-glow-drift-a 9s ease-in-out infinite;
  z-index: 0;
}
.prm-cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--prm-accent-2) 0%, transparent 70%);
  opacity: 0.06;
  pointer-events: none;
  filter: blur(80px);
  animation: prm-glow-drift-b 11s ease-in-out infinite;
  z-index: 0;
}

@keyframes prm-glow-drift-a {
  0%, 100% { opacity: 0.08; transform: translate(0, 0) scale(1); }
  50%      { opacity: 0.14; transform: translate(-20px, 20px) scale(1.08); }
}
@keyframes prm-glow-drift-b {
  0%, 100% { opacity: 0.06; transform: translate(0, 0) scale(1); }
  50%      { opacity: 0.11; transform: translate(20px, -15px) scale(1.08); }
}

.prm-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;          /* ← wider gap between content & button */
  padding: 0 60px;    /* ← inward margin on left & right */
  position: relative;
  z-index: 1;
}

/* Content side */
.prm-cta__content {
  flex: 1 1 0;
  min-width: 0;
}

.prm-cta__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--prm-surface);
  border: 1px solid var(--prm-border);
  border-radius: 999px;
  padding: 6px 0px 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--prm-muted);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.prm-cta__pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.prm-cta__pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.4;
  animation: prm-pulse 2s ease-out infinite;
}

.prm-cta__pulse_danger {
  width: 8px;
  height: 8px;
  background: #de102b;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.prm-cta__pulse_danger::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #de102b;
  opacity: 0.4;
  animation: prm-pulse 2s ease-out infinite;
}
@keyframes prm-pulse {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.4); opacity: 0; }
}

.prm-cta__headline {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--prm-text);
  margin: 0 0 0px 0;
  letter-spacing: -0.02em;
}
.prm-cta__headline em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prm-cta__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--prm-muted);
  margin: 0;
  max-width: 100%;
}

/* Action side */
.prm-cta__action {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.prm-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow:
    0 4px 20px -4px rgba(37,99,235,0.5),
    0 0 0 1px rgba(255,255,255,0.1) inset;
}
.prm-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.prm-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -4px rgb(255 255 255 / 60%), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  color: #fff;
}
.prm-cta__btn:hover::before { opacity: 1; }
.prm-cta__btn:active { transform: translateY(0); }

.prm-cta__btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.9;
}

.prm-cta__note {
  font-size: 12px;
  font-weight: 500;
  color: var(--prm-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 800px) {
  .prm-cta { padding: 40px 28px; }
  .prm-cta__inner { flex-direction: column; text-align: center; gap: 32px; padding: 0;}
  .prm-cta__headline { font-size: 26px; }
  .prm-cta__body { max-width: none; font-size: 16px; }
  .prm-cta__action { width: 100%; }
  .prm-cta__btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .prm-cta__pulse::before { animation: none; }
  .prm-cta__grid { animation: none; }
  .prm-cta::before,
  .prm-cta::after { animation: none; }
}
/* End of Extra Css */






.side-tabs {
    position: fixed;
    left: 0;
    top: 260px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-tab {
    display: flex;
    align-items: center;
    height: 44px;
    width: 44px;
    border-radius: 0 22px 22px 0;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 2px 3px 10px rgba(15, 30, 45, 0.15);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s ease;
}

.side-tab:hover {
    width: 210px;
    box-shadow: 4px 6px 18px rgba(15, 30, 45, 0.28);
}

.side-tab__icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.side-tab__label {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    margin-left: 2px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease 0.08s, transform 0.25s ease 0.08s;
}

.side-tab:hover .side-tab__label {
    opacity: 1;
    transform: translateX(0);
}

.side-tab--feedback  { background: #073d60; }
.side-tab--estimate  { background: linear-gradient(286deg, #fa2a2a, #dc4670); }
.side-tab--remoteSupport  { background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%); }
.side-tab--customSystem  { background: #2f9dff; }

@media (max-width: 576px) {
    .side-tabs { top: auto; bottom: 16px; }
    .side-tab:hover { width: 44px; }       /* no hover on touch */
    .side-tab__label { display: none; }
}





/* Start Blog Css */

.lbg-section {
  --lbg-ink: #14171f;
  --lbg-ivory: #f7f5f0;
  --lbg-gold: #b9924b;
  --lbg-gold-soft: rgba(185, 146, 75, 0.14);
  --lbg-slate: #5b6270;
  --lbg-hairline: #e4e0d8;

  all: initial;
  display: block;
  position: relative;
  padding: 65px 0 85px;
  background: #f1f2f6;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  background-image: repeating-linear-gradient(115deg, rgba(15, 23, 42, 0.035) 0px, rgba(15, 23, 42, 0.035) 1px, transparent 1px, transparent 64px);
}

.lbg-section *,
.lbg-section *::before,
.lbg-section *::after {
  box-sizing: border-box;
}

.lbg-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--lbg-gold-soft), transparent 70%);
  pointer-events: none;
}

.lbg-container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.lbg-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--lbg-hairline);
}

.lbg-title {
  position: relative;
}

.lbg-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lbg-gold);
  margin-bottom: 10px;
}

.lbg-title h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.15;
  color: var(--lbg-ink);
  letter-spacing: -0.01em;
  margin: 0;
  position: relative;
  display: inline-block;
}

.lbg-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  height: 2px;
  width: 100%;
  background: #fc005beb;
  transform-origin: left center;
  transform: scaleX(0);
  animation: lbg-draw-line 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards;
}

.lbg-viewall a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lbg-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--lbg-ink);
  transition: color 0.35s ease, border-color 0.35s ease, letter-spacing 0.35s ease;
}

.lbg-viewall a::after {
  content: "→";
  font-size: 15px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.lbg-viewall a:hover {
  color: #fc005beb;
  border-color: #fc005beb;
  letter-spacing: 0.12em;
}

.lbg-viewall a:hover::after {
  transform: translateX(5px);
}

/* ---------- Grid ---------- */

.lbg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.lbg-card {
  opacity: 0;
  animation: lbg-rise-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lbg-card:nth-child(1) { animation-delay: 0.05s; }
.lbg-card:nth-child(2) { animation-delay: 0.18s; }
.lbg-card:nth-child(3) { animation-delay: 0.31s; }
.lbg-card:nth-child(4) { animation-delay: 0.44s; }
.lbg-card:nth-child(5) { animation-delay: 0.57s; }
.lbg-card:nth-child(6) { animation-delay: 0.70s; }

/* ---------- Card ---------- */

.lbg-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--lbg-hairline);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.5s ease;
}

.lbg-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 30px 60px -20px rgba(20, 23, 31, 0.22);
}

.lbg-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--lbg-ink);
}

.lbg-cover-link {
  display: block;
  height: 100%;
  width: 100%;
}

.lbg-media {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: grayscale(15%);
}

.lbg-card:hover .lbg-media {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.lbg-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 31, 0) 55%, rgba(20, 23, 31, 0.55) 100%);
  opacity: 0.9;
  transition: opacity 0.5s ease;
}

.lbg-card:hover .lbg-cover::after {
  opacity: 0.55;
}

/* ---------- Body ---------- */

.lbg-body {
  position: relative;
  padding: 30px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lbg-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fc005beb;
  margin-bottom: 14px;
}

.lbg-heading {
  margin: 0 0 14px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.35;
}

.lbg-heading a {
  color: var(--lbg-ink);
  text-decoration: none;
  background-image: linear-gradient(var(--lbg-ink), var(--lbg-ink));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.lbg-heading a:hover {
  background-size: 100% 1px;
  color: #073d60;
}

.lbg-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lbg-slate);
  margin-bottom: 22px;
}

.lbg-readmore {
  margin-top: auto;
}

.lbg-readmore a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lbg-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lbg-readmore a::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), color 0.35s ease;
}

.lbg-readmore a:hover {
  color: #fc005beb;
}

.lbg-readmore a:hover::after {
  transform: translateX(6px);
  color: #fc005beb;
}

/* ---------- Keyframes ---------- */

@keyframes lbg-draw-line {
  to { transform: scaleX(1); }
}

@keyframes lbg-rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Accessibility ---------- */

@media (prefers-reduced-motion: reduce) {
  .lbg-card,
  .lbg-title h2::after,
  .lbg-media {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.lbg-section a:focus-visible {
  outline: 2px solid var(--lbg-gold);
  outline-offset: 3px;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
  .lbg-section { padding: 80px 0 70px; }
  .lbg-grid { grid-template-columns: repeat(2, 1fr); }
  .lbg-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 575px) {
  .lbg-grid { grid-template-columns: 1fr; }
  .lbg-body { padding: 24px 22px 26px; }
}
/* End Blog Css */


/* Start Testimonial Css */

/* =========================================================
   Testimonials — namespaced under `tsg-` (Testimonial Section
   Grid). Elevated pass: working CSS-rendered stars, gold-foil
   type treatment, layered "contact" shadows, subtle paper
   grain — the material cues of a premium print piece rather
   than a template card grid.
   ========================================================= */

  /* ==========================================================================
   Testimonial Section — Premium UI
   Palette:  bg #FFFFFF · card #FAF9FB · ink #1C1D21 · accent #FC005BEB · muted #6B6F76
   Type:     Display — "Fraunces" (serif, quotes) · Body — "Inter"
   ========================================================================== */

.testimony {
    --bg: #ffffff;
    --card: #faf9fb;
    --ink: #1c1d21;
    --gold: #fc005beb;
    --gold-soft: rgba(252, 0, 91, 0.08);
    --muted: #6b6f76;
    --line: rgba(0, 0, 0, 0.08);

    position: relative;
    background: var(--bg);
    padding: 96px 0;
    overflow: hidden;
}

.testimony::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(252, 0, 91, 0.05), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(252, 0, 91, 0.04), transparent 40%);
    pointer-events: none;
}

.testimony .auto-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Header ---------- */

.testimony__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}

.testimony__eyebrow {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.testimony__title {
    font-family: "Fraunces", "Georgia", serif;
    font-weight: 500;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    color: var(--ink);
    margin: 0;
}

.testimony__rule {
    width: 56px;
    height: 2px;
    background: var(--gold);
    margin: 22px auto 0;
    border-radius: 2px;
}

/* ---------- Carousel / Cards ---------- */

.testimony__carousel {
    margin: 0 -14px;
}

.testimony__carousel .owl-stage-outer {
    padding: 8px 14px 28px;
}

.testimony__card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 40px 32px 28px;
    margin: 0 14px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.testimony__card:hover {
    transform: translateY(-6px);
    border-color: rgba(252, 0, 91, 0.3);
    box-shadow: 0 24px 48px -24px rgba(28, 29, 33, 0.18);
}

.testimony__quote-mark {
    font-family: "Fraunces", serif;
    font-size: 64px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.55;
    margin-bottom: 4px;
    display: block;
}

.testimony__text {
    font-family: "Fraunces", "Georgia", serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 20px;
    flex-grow: 1;
}

.testimony__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gold);
    text-decoration: none;
    width: fit-content;
    margin-bottom: 24px;
    transition: gap 0.25s ease, opacity 0.25s ease;
}

.testimony__more:hover {
    gap: 10px;
    opacity: 0.75;
}

.testimony__more svg {
    transition: transform 0.25s ease;
}

/* ---------- Footer: avatar / name / stars ---------- */

.testimony__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.testimony__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--gold-soft);
}

.testimony__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimony__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimony__name {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.testimony__stars {
    display: block;
    line-height: 1;
}

/* Your rating plugin (e.g. jQuery Bar Rating) will render its own markup
   inside this input — restyle the generated stars to use the accent color
   if your plugin theme doesn't already match. Example for barrating's
   default "fontawesome-stars" theme:
   .testimony__stars .br-theme-fontawesome-stars .br-widget a.br-selected,
   .testimony__stars .br-theme-fontawesome-stars .br-widget a.br-active {
       color: var(--gold);
   }
*/

/* ---------- Footer CTA ---------- */

.testimony__footer-action {
    text-align: center;
    margin-top: 48px;
}

.testimony__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: var(--gold);
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.testimony__cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    color: #ffffff;
}

/* ---------- Accessibility ---------- */

.testimony__more:focus-visible,
.testimony__cta:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .testimony__card,
    .testimony__more,
    .testimony__cta {
        transition: none !important;
    }
}

/* ---------- Responsive ---------- */

@media (max-width: 767px) {
    .testimony {
        padding: 64px 0;
    }

    .testimony__card {
        padding: 32px 24px 24px;
        min-height: unset;
    }

    .testimony__quote-mark {
        font-size: 48px;
    }
}
 
/* End Testimonial Css */


/*======================
Book Appointment Ribbon
======================*/
.csb-ribbon{
    position:absolute;
    top:36px;
    right:-51px;
    z-index:5;
    width:230px;
    padding:9px 0;
    text-align:center;
    text-decoration:none;
    text-transform:uppercase;
    color:#fff;
    font-size:11.5px;
    font-weight:700;
    letter-spacing:.03em;
    line-height:1.35;
    background:linear-gradient(135deg, var(--csb-hero-red), #ff8aa0);
    box-shadow:0 8px 20px -8px rgba(255,84,112,.55);
    transform:rotate(45deg);
    transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
    animation:csbRibbonGlow 2.6s ease-in-out infinite;
}
.csb-ribbon em{ font-style:normal; display:block; font-weight:800; font-size:12.5px; }
.csb-ribbon:hover{
    transform:rotate(45deg) scale(1.05);
    filter:brightness(1.06);
    box-shadow:0 10px 26px -6px rgba(255,84,112,.7);
    color:#fff;
}

@keyframes csbRibbonGlow{
    0%,100%{ box-shadow:0 8px 20px -8px rgba(255,84,112,.45); }
    50%{ box-shadow:0 8px 26px -4px rgba(255,84,112,.8); }
}

/* mobile: flatten into a normal pill banner, ribbons don't fit narrow viewports */
@media (max-width: 860px){
    .csb-ribbon{
        position:static;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        gap:4px;
        width:auto;
        margin:0 0 18px;
        padding:9px 20px;
        border-radius:999px;
        transform:none;
        animation:none;
    }
    .csb-ribbon:hover{ transform:translateY(-1px); }
    .csb-ribbon em{ display:inline; }
}

@media (prefers-reduced-motion: reduce){
    .csb-ribbon{ animation:none; }
}

/* Start Custome System Css */
:root {
    --ink: #eaf2f7;
    --ink-soft: #a3b3bd;
    --panel: #0e1417;
    --panel-edge: #22303a;
    --accent: #2f9dff;
    --accent-deep: #1c7ee0;
    --accent-glow: rgba(47, 157, 255, 0.35);
    --live: #2f9dff;
  }


  .bld-cta {
    width: 100%;
    /*max-width: 880px;*/
    background: #1c2530f5;
    border: 1px solid var(--panel-edge);
    /*border-radius: 20px;*/
    box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 20px 44px -20px rgba(47,157,255,0.28);
    overflow: hidden;
    position: relative;
    isolation: isolate;
  }

  .bld-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #8ecfff 50%, var(--accent));
    z-index: 2;
  }

  /* Animated grid layer */
  .bld-cta::after {
    content: "";
    position: absolute;
    inset: -50%;
    background-image:
      linear-gradient(rgba(47, 157, 255, 0.10) 1px, transparent 1px),
      linear-gradient(90deg, rgba(47, 157, 255, 0.10) 1px, transparent 1px);
    background-size: 42px 42px;
    animation: bld-grid-drift 20s linear infinite;
    -webkit-mask-image: radial-gradient(ellipse 70% 90% at 30% 50%, #000 40%, transparent 85%);
    mask-image: radial-gradient(ellipse 70% 90% at 30% 50%, #000 40%, transparent 85%);
    z-index: 0;
  }

  @keyframes bld-grid-drift {
    from { transform: translate(0, 0); }
    to   { transform: translate(42px, 42px); }
  }

  /* Soft pulsing glow to add depth over the grid */
  .bld-cta__glow {
    position: absolute;
    top: 50%;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    transform: translateY(-50%);
    animation: bld-glow-pulse 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
  }

  @keyframes bld-glow-pulse {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
  }

  .bld-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 25px 100px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  .bld-cta__content { flex: 1 1 420px; min-width: 260px; }

  .bld-cta__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--live);
    background: rgba(47,157,255,0.16);
    padding: 5px 12px 5px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
  }

  .bld-cta__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--live);
    box-shadow: 0 0 0 0 rgba(47,157,255,0.6);
    animation: bld-pulse 1.8s infinite;
  }

  @keyframes bld-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(47,157,255,0.6); }
    70%  { box-shadow: 0 0 0 9px rgba(47,157,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(47,157,255,0); }
  }

  .bld-cta__headline {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.28;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  .bld-cta__headline em {
    font-style: normal;
    color: #7cc4ff;
  }

  .bld-cta__body {
    margin: 0;
    font-size: 12px;
    line-height: 0.1;
    color: var(--ink-soft);
  }

  .bld-cta__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
  }

  .bld-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 12px 26px -8px rgba(47,157,255,0.55);
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  }

  .bld-cta__btn svg { width: 20px; height: 20px; flex-shrink: 0; }

  .bld-cta__btn:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
    box-shadow: 0 16px 32px -8px var(--accent-glow);
    color: #ffffff;
  }

  .bld-cta__btn:focus-visible {
    outline: 3px solid var(--accent-deep);
    outline-offset: 3px;
  }

  .bld-cta__note {
    font-size: 12.5px;
    color: var(--ink-soft);
    opacity: 0.85;
  }

  @media (max-width: 620px) {
    .bld-cta__inner {
      flex-direction: column;
      align-items: flex-start;
      padding: 28px 24px;
    }
    .bld-cta__action { align-items: flex-start; width: 100%; }
    .bld-cta__btn { width: 100%; justify-content: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    .bld-cta__pulse { animation: none; }
    .bld-cta::after { animation: none; }
    .bld-cta__glow { animation: none; }
  }
/* End Custome System Css */



/* ===========================================
        Start Create Form Custome System Css 
===========================================*/


/*======================
Top progress bar
======================*/
#csb-progress{
    position:fixed;
    left:0;
    top:0;
    height:4px;
    width:0;
    z-index:9999;
    background:linear-gradient(90deg,#2f6fed,#7fa8ff,#ff5470);
    box-shadow:0 0 20px rgba(47,111,237,.45);
    transition:width .2s ease;
}
 
/* =========================================================
   Scope
   ========================================================= */
.csb-scope{
    --csb-ink:#141821;
    --csb-ink-soft:#666c7c;
    --csb-ink-faint:#9aa0b1;
    --csb-border:#e2e4ea;
    --csb-border-soft:#edeef2;
    --csb-surface:#ffffff;
    --csb-surface-alt:#f7f8fa;
    --csb-accent:#2f6fed;
    --csb-accent-dark:#1f4fc4;
    --csb-accent-soft:#eaf1ff;
    --csb-danger:#dc2626;
    --csb-danger-soft:#fdeaea;
    --csb-success:#15803d;
    --csb-warn:#b45309;
    --csb-radius-lg:18px;
    --csb-radius-md:12px;
    --csb-radius-sm:10px;
    --csb-field-h:48px;
    --csb-shadow:0 1px 2px rgba(16,24,40,.04), 0 10px 28px -14px rgba(16,24,40,.14);
 
    /* hero-only palette */
    --csb-hero-bg-1:#0a0e17;
    --csb-hero-bg-2:#111826;
    --csb-hero-bg-3:#0a0d14;
    --csb-hero-blue:#4f86ff;
    --csb-hero-red:#ff5470;
 
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
    color:var(--csb-ink);
}
.csb-scope *{ box-sizing:border-box; }
 
.csb-bleed{ width:100%; padding:0 clamp(20px, 4vw, 64px); }
 
/* =========================================================
   Hero
   ========================================================= */
.csb-hero{
    position:relative;
    overflow:hidden;
    width:100%;
    margin:0 0 28px;
    border-radius:28px;
    padding:30px 40px 30px;
    background:
        radial-gradient(circle at 15% 15%, rgba(79,134,255,.20) 0%, transparent 42%),
        radial-gradient(circle at 88% 90%, rgba(255,84,112,.16) 0%, transparent 40%),
        linear-gradient(135deg,var(--csb-hero-bg-1),var(--csb-hero-bg-2),var(--csb-hero-bg-3));
}

.csb-hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(79,134,255,.10);
    left:-140px;
    top:-140px;
    filter:blur(90px);
    pointer-events:none;
}
.csb-hero::after{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(255,84,112,.08);
    right:-130px;
    bottom:-130px;
    filter:blur(100px);
    pointer-events:none;
}

/* base grid, always faintly visible */
.csb-hero-grid-base{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(143,179,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143,179,255,.05) 1px, transparent 1px);
    background-size:44px 44px;
    pointer-events:none;
}

/* interactive grid — brighter in a soft circle around the cursor */
.csb-hero-grid{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(143,179,255,.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143,179,255,.28) 1px, transparent 1px);
    background-size:44px 44px;
    -webkit-mask-image: radial-gradient(circle 460px at var(--csb-mx,50%) var(--csb-my,32%), #000 0%, #000 25%, transparent 75%);
    mask-image: radial-gradient(circle 460px at var(--csb-mx,50%) var(--csb-my,32%), #000 0%, #000 25%, transparent 75%);
    pointer-events:none;
}

/* soft color glow that follows the cursor */
.csb-hero-cursor-glow{
    position:absolute;
    inset:0;
    background: radial-gradient(circle 380px at var(--csb-mx,50%) var(--csb-my,32%), rgba(79,134,255,.16), transparent 70%);
    pointer-events:none;
    transition:opacity .2s ease;
}

.csb-hero-inner{
    position:relative;
    z-index:2;
    max-width:1180px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:56px;
}

.csb-hero-copy{ max-width:560px; text-align:left; flex:1 1 420px; }

.csb-eyebrow{
    display:inline-block;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#8fb3ff;
    background:rgba(79,134,255,.14);
    border:1px solid rgba(79,134,255,.25);
    padding:6px 14px;
    border-radius:999px;
    margin-bottom:18px;
    animation:csbTitleFade .8s ease;
}

.csb-hero h1{
    color:#fff;
    font-size:42px;
    font-weight:800;
    letter-spacing:-.02em;
    margin:0 0 14px;
    line-height:1.12;
    animation:csbTitleFade .8s ease;
}

.csb-hero p{
    color:#aab2c5;
    font-size:14px;
    line-height:1.7;
    margin:0;
    max-width:540px;
    animation:csbTitleFade 1.1s ease;
}

/* feature list under the copy (High Performance / Premium Components / etc.) */
.csb-hero-features{
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    gap:14px 24px;
    margin:26px 0 0;
    padding:0;
    animation:csbTitleFade 1.3s ease;
}
.csb-hero-features li{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight:500;
    color:#c7cede;
}
.csb-hero-feature-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    width:30px;
    height:30px;
    border-radius:50%;
    font-size:13px;
    color:#8fb3ff;
    background:rgba(79,134,255,.14);
    border:1px solid rgba(79,134,255,.25);
}

/* =========================================================
   Hero media (replaces the old SVG rig illustration)
   ========================================================= */
.csb-hero-media{
    position:relative;
    z-index:2;
    flex:0 1 460px;
    opacity:0;
    transform:translateX(14px);
    animation: csbRigRise .9s ease forwards .2s;
}
@keyframes csbRigRise{ to{ opacity:1; transform:translateX(0); } }

.csb-hero-rig-photo{
    display:block;
    width:100%;
    height:auto;
    border-radius:18px;
    border:1px solid rgba(143,179,255,.14);
    box-shadow:
        0 30px 70px -24px rgba(0,0,0,.65),
        0 0 0 1px rgba(255,255,255,.02) inset;
}

/* soft ambient glow behind the photo, matches the cursor-glow blue */
.csb-hero-media-glow{
    position:absolute;
    inset:-12%;
    z-index:-1;
    background: radial-gradient(circle at 60% 40%, rgba(79,134,255,.28), transparent 70%);
    filter:blur(34px);
    pointer-events:none;
    animation:csbGlowPulse 4s ease-in-out infinite;
}
@keyframes csbGlowPulse{
    0%,100%{ opacity:.7; }
    50%{ opacity:1; }
}

/* optional flagged-component badge overlaid on the photo — keeps the
   "mismatched power supply" callout from the copy tied to a visual cue */
.csb-hero-media-badge{
    position:absolute;
    bottom:14px;
    left:14px;
    z-index:3;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    font-weight:600;
    color:#ffd3da;
    background:rgba(20,10,14,.72);
    border:1px solid rgba(255,84,112,.35);
    padding:7px 12px;
    border-radius:999px;
    backdrop-filter:blur(6px);
}
.csb-hero-media-badge::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--csb-hero-red);
    box-shadow:0 0 0 0 rgba(255,84,112,.6);
    animation:csbBadgePulse 2s ease-in-out infinite;
}
@keyframes csbBadgePulse{
    0%{ box-shadow:0 0 0 0 rgba(255,84,112,.55); }
    70%{ box-shadow:0 0 0 8px rgba(255,84,112,0); }
    100%{ box-shadow:0 0 0 0 rgba(255,84,112,0); }
}

@media (max-width: 860px){
    .csb-hero-inner{ flex-direction:column; text-align:center; }
    .csb-hero-copy{ text-align:center; max-width:100%; }
    .csb-hero-features{ justify-content:center; }
    .csb-hero p{ margin-left:auto; margin-right:auto; }
    .csb-hero-media{ width:100%; flex-basis:auto; }
}

@media (prefers-reduced-motion: reduce){
    .csb-eyebrow, .csb-hero h1, .csb-hero p, .csb-hero-features,
    .csb-hero-media, .csb-hero-media-glow, .csb-hero-media-badge::before{ animation:none !important; }
}

@keyframes csbTitleFade{
    from{ opacity:0; transform:translateY(16px); }
    to{ opacity:1; transform:none; }
}

/* collage grid: one large image + a row of smaller ones underneath */
.csb-hero-collage{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    grid-template-rows:auto auto;
    gap:10px;
}

.csb-collage-item{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:14px;
    border:1px solid rgba(143,179,255,.14);
    box-shadow:0 16px 40px -18px rgba(0,0,0,.6);
}

.csb-collage-main{
    grid-column:1 / -1;
    aspect-ratio:16 / 9;
    object-fit: fill;
}

.csb-collage-sm{
    aspect-ratio:1 / 1;
    transition:transform .25s ease;
}
.csb-collage-sm:hover{
    transform:translateY(-3px);
}

/* badge now sits over the collage as a whole */
.csb-hero-media-badge{
    position:absolute;
    top:14px;
    left:14px;
    bottom:auto;
}

@media (max-width: 860px){
    .csb-hero-collage{ grid-template-columns:repeat(3, 1fr); }
}

@media (max-width: 560px){
    .csb-hero-collage{ grid-template-columns:1fr 1fr; }
    .csb-collage-main{ grid-column:1 / -1; }
}
 
/*======================
Flash message
======================*/
.csb-flash{
    margin:0 0 20px;
    background:#eafaf0;
    color:var(--csb-success);
    border:1px solid #bfe8cf;
    border-radius:var(--csb-radius-sm);
    padding:12px 16px;
    font-size:14px;
    font-weight:600;
}
 
/*======================
Step rail
======================*/
.csb-rail{
    width:100%;
    margin:0 0 90px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--csb-surface);
    border:1px solid var(--csb-border-soft);
    border-radius:10px;
    box-shadow:var(--csb-shadow);
    padding:6px;
}
.csb-rail a{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-decoration:none;
    color:var(--csb-ink-soft);
    font-size:13.5px;
    font-weight:700;
    padding:10px 12px;
    border-radius:999px;
    transition:all .15s ease;
}
.csb-rail a:hover{ background:var(--csb-surface-alt); color:var(--csb-ink); }
.csb-rail-num{
    width:22px; height:22px; border-radius:50%;
    background:var(--csb-surface-alt); color:var(--csb-ink-soft);
    font-size:11.5px; font-weight:700;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.csb-rail a:hover .csb-rail-num{ background:var(--csb-accent); color:#fff; }
.csb-rail-sep{ width:1px; height:20px; background:var(--csb-border-soft); flex-shrink:0; }
 
/*======================
Shell layout
======================*/
.csb-shell{
    width:100%;
    display:grid;
    grid-template-columns:1fr 380px;
    gap:32px;
    align-items:start;
}
.csb-col-main{ display:flex; flex-direction:column; gap:20px; min-width:0; }
 
/*======================
Card
======================*/
.csb-card{
    background:var(--csb-surface);
    border:1px solid var(--csb-border-soft);
    border-radius:var(--csb-radius-lg);
    box-shadow:var(--csb-shadow);
    padding:32px;
    scroll-margin-top:20px;
    opacity:0;
    animation:csbFadeUp .5s ease forwards;
}
.csb-card:nth-of-type(1){ animation-delay:.05s; }
.csb-card:nth-of-type(2){ animation-delay:.12s; }
.csb-card:nth-of-type(3){ animation-delay:.19s; }
.csb-card:nth-of-type(4){ animation-delay:.26s; }
 
@keyframes csbFadeUp{
    from{ opacity:0; transform:translateY(24px); }
    to{ opacity:1; transform:none; }
}
 
.csb-card-head{ display:flex; align-items:center; gap:10px; margin-bottom:4px; }
.csb-step-badge{
    width:28px; height:28px; border-radius:50%;
    background:var(--csb-ink); color:#fff;
    font-size:12.5px; font-weight:700;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.csb-card-label{
    font-size:11px; font-weight:700; letter-spacing:.08em;
    text-transform:uppercase; color:var(--csb-ink-faint);
}
.csb-card h2{ font-size:20px; font-weight:700; margin:2px 0 4px; letter-spacing:-.01em; }
.csb-card h3{ font-size:16px; font-weight:700; margin:2px 0 4px; }
.csb-desc{ font-size:13.5px; color:var(--csb-ink-soft); margin:0 0 24px; line-height:1.55; }
 
/*======================
Fields
======================*/
.csb-grid{ display:grid; gap:20px; margin-bottom:20px; }
.csb-grid:last-child{ margin-bottom:0; }
.csb-grid-2{ grid-template-columns:repeat(2, 1fr); }
.csb-grid-3{ grid-template-columns:repeat(3, 1fr); }
 
.csb-field{ display:flex; flex-direction:column; gap:8px; min-width:0; }
.csb-field label{ font-size:13.5px; font-weight:600; color:var(--csb-ink); }
.csb-required{ color:var(--csb-danger); margin-left:2px; }
.csb-optional-tag{ color:var(--csb-ink-faint); font-weight:400; }
.csb-hint{ font-size:12px; color:var(--csb-ink-faint); }
 
.csb-input, .csb-select{
    width:100%; height:var(--csb-field-h);
    border:1.5px solid var(--csb-border); border-radius:var(--csb-radius-sm);
    padding:0 14px; font-size:14.5px; color:var(--csb-ink); background:var(--csb-surface);
    transition:border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.csb-textarea{
    width:100%; min-height:var(--csb-field-h);
    border:1.5px solid var(--csb-border); border-radius:var(--csb-radius-sm);
    padding:12px 14px; font-size:14.5px; color:var(--csb-ink); background:var(--csb-surface);
    font-family:inherit; resize:vertical; line-height:1.5;
    transition:border-color .15s ease, box-shadow .15s ease;
}
.csb-select{
    appearance:none;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666c7c' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat:no-repeat; background-position:right 14px center; padding-right:38px;
}
.csb-input:focus, .csb-select:focus, .csb-textarea:focus{
    outline:none; border-color:var(--csb-accent); box-shadow:0 0 0 4px var(--csb-accent-soft);
    transform:translateY(-1px);
}
.csb-input.csb-invalid, .csb-select.csb-invalid{ border-color:var(--csb-danger); }
.csb-error{ font-size:12px; color:var(--csb-danger); margin-top:1px; }
 
/*======================
Computer type cards
======================*/
.csb-segmented{ display:grid; grid-template-columns:repeat(4, 1fr); gap:10px; }
.csb-segment-opt{ position:relative; }
.csb-segment-opt input{ position:absolute; opacity:0; inset:0; cursor:pointer; margin:0; }
.csb-segment-card{
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
    height:104px; border:1.5px solid var(--csb-border); border-radius:var(--csb-radius-md);
    text-align:center; font-size:14px; font-weight:700; color:var(--csb-ink-soft);
    transition:all .15s ease; cursor:pointer; user-select:none; background:var(--csb-surface-alt);
}
.csb-segment-icon{ font-size:22px; line-height:1; }
.csb-segment-icon-img{ width:32px; height:32px; object-fit:contain; }
.csb-segment-opt input:checked + .csb-segment-card{
    border-color:var(--csb-accent); background:var(--csb-accent-soft); color:var(--csb-accent-dark);
    box-shadow:0 0 0 1px var(--csb-accent) inset;
}
.csb-segment-opt input:focus-visible + .csb-segment-card{ box-shadow:0 0 0 4px var(--csb-accent-soft); }
 
.csb-subgroup{ margin-top:20px; }
.csb-subgroup[hidden]{ display:none; }
 
/*======================
Quantity stepper
======================*/
.csb-stepper{
    display:flex; align-items:stretch; height:var(--csb-field-h);
    border:1.5px solid var(--csb-border); border-radius:var(--csb-radius-sm);
    overflow:hidden; max-width:220px;
}
.csb-stepper-btn{
    width:44px; flex-shrink:0; background:var(--csb-surface-alt); border:none; color:var(--csb-ink);
    font-size:18px; font-weight:700; cursor:pointer; transition:background .12s ease;
}
.csb-stepper-btn:hover{ background:var(--csb-border-soft); }
.csb-stepper input{
    flex:1; min-width:0; border:none;
    border-left:1.5px solid var(--csb-border); border-right:1.5px solid var(--csb-border);
    text-align:center; font-size:15px; font-weight:700; color:var(--csb-ink); background:var(--csb-surface);
}
.csb-stepper input:focus{ outline:none; }
.csb-stepper input::-webkit-outer-spin-button, .csb-stepper input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.csb-stepper input[type=number]{ -moz-appearance:textfield; }
 
/*======================
Question index chip
======================*/
.csb-q-index{
    display:inline-flex; align-items:center; justify-content:center; width:21px; height:21px;
    border-radius:6px; background:var(--csb-surface-alt); color:#8c2bf8;
    font-size:11px; font-weight:700; margin-right:8px; vertical-align:middle;
}
.csb-questions{ display:grid; grid-template-columns:repeat(2, 1fr); gap:20px; }
.csb-questions .csb-field{ margin:0; position:relative; }
.csb-questions .csb-field::after{
    content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px;
    background:linear-gradient(90deg,var(--csb-accent),#8fb3ff); transition:width .35s ease;
}
.csb-questions .csb-field:hover::after{ width:100%; }
 
/*======================
Submit
======================*/
.csb-submit-row{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.csb-note{ font-size:12.5px; color:var(--csb-ink-faint); max-width:440px; line-height:1.5; }
.csb-btn{
    position:relative; overflow:hidden;
    background:linear-gradient(180deg, var(--csb-accent), var(--csb-accent-dark)); color:#fff; border:none;
    height:50px; padding:0 30px; font-size:15px; font-weight:700; border-radius:var(--csb-radius-md); cursor:pointer;
    box-shadow:0 8px 18px -8px rgba(47,111,237,.55); transition:transform .12s ease, box-shadow .12s ease;
    white-space:nowrap;
}
.csb-btn:hover{ transform:translateY(-1px); box-shadow:0 12px 22px -8px rgba(47,111,237,.6); }
.csb-btn:active{ transform:translateY(0) scale(.98); }
.csb-btn.loading{ pointer-events:none; opacity:.8; }
.csb-btn.loading::after{
    content:""; display:inline-block; margin-left:12px; width:16px; height:16px; border-radius:50%;
    border:2px solid rgba(255,255,255,.4); border-top-color:#fff; animation:csbSpin .8s linear infinite;
    vertical-align:middle;
}
@keyframes csbSpin{ 100%{ transform:rotate(360deg); } }
 
/*======================
Compatibility sidebar
======================*/
.csb-side{ position:sticky; top:165px; }
.csb-panel-dark{
    position:relative;
    overflow:hidden;
    background:linear-gradient(165deg, #0c1322 0%, #101a2e 55%, #083088 100%);
    color:#e7e9ee; border-radius:var(--csb-radius-lg); padding:26px;
    box-shadow:var(--csb-shadow);
    animation:csbFloat 6s ease-in-out infinite;
}
.csb-panel-dark .csb-card-label{ color:#5dfc48; }
.csb-panel-dark h3{ color:#fff; margin:10px 0 6px; font-size:22px; }
.csb-panel-dark .csb-desc{ color:#9a9fb0; margin-bottom:18px; }
 
@keyframes csbFloat{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-5px); }
}
 
.csb-compat-empty{
    font-size:13px; color:#9a9fb0; background:#1a1d29; border:1px dashed #2c3040;
    border-radius:var(--csb-radius-md); padding:16px; text-align:center;
}
 
.csb-compat-summary{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.csb-compat-chip{
    background:#1a1d29; border:1px solid #2c3040; color:#c3c6d4; font-size:11.5px; font-weight:600;
    border-radius:999px; padding:5px 10px; cursor:pointer; display:inline-flex; align-items:center; gap:5px;
    transition:all .15s ease;
}
.csb-compat-chip:hover{ background:#232838; transform:translateY(-1px); }
.csb-compat-chip.is-active{ background:var(--csb-accent); border-color:var(--csb-accent); color:#fff; }
.csb-compat-chip--incompatible.is-active{ background:var(--csb-danger); border-color:var(--csb-danger); }
.csb-compat-chip--suggest.is-active{ background:var(--csb-warn); border-color:var(--csb-warn); }
.csb-compat-chip--compatible.is-active{ background:var(--csb-success); border-color:var(--csb-success); }
.csb-compat-count{ background:rgba(255,255,255,.12); border-radius:999px; padding:1px 6px; font-size:10.5px; }
 
.csb-compat-search{ margin-bottom:14px; }
.csb-compat-search input{
    width:100%; height:40px; background:#1a1d29; border:1px solid #2c3040; border-radius:var(--csb-radius-sm);
    padding:0 12px; font-size:13px; color:#e7e9ee;
}
.csb-compat-search input:focus{ outline:none; border-color:var(--csb-accent); }
.csb-compat-search input::placeholder{ color:#6b7086; }
 
.csb-compat-list{ display:flex; flex-direction:column; gap:8px; }
.csb-compat-list.is-scrollable{ max-height:420px; overflow-y:auto; padding-right:4px; }
.csb-compat-list.is-scrollable::-webkit-scrollbar{ width:6px; }
.csb-compat-list.is-scrollable::-webkit-scrollbar-thumb{ background:#2c3040; border-radius:99px; }
 
.csb-compat-row{
    position:relative;
    background:#1a1d29; border:1px solid #2c3040; border-left:3px solid #3a3f52;
    border-radius:var(--csb-radius-sm); padding:10px 12px;
    transition:transform .2s ease, border-color .2s ease;
}
.csb-compat-row:hover{ transform:translateX(4px); }
 
/* status via data-attribute (preferred hook) ... */
.csb-compat-row[data-status="compatible"]{ border-left-color:var(--csb-success); background:#132218; }
.csb-compat-row[data-status="incompatible"]{ border-left-color:var(--csb-danger); background:#241419; }
.csb-compat-row[data-status="suggest"]{ border-left-color:var(--csb-warn); background:#241d10; }
 
/* ...and via status class, kept for compatibility with any existing JS that
   toggles these classes instead of the data-attribute */
.csb-status-compatible{ border-left-color:var(--csb-success) !important; background:#132218; animation:csbStatusFade .4s ease; }
.csb-status-incompatible{ border-left-color:var(--csb-danger) !important; background:#241419; animation:csbStatusFade .4s ease; }
.csb-status-suggest{ border-left-color:var(--csb-warn) !important; background:#241d10; animation:csbStatusFade .4s ease; }
 
@keyframes csbStatusFade{
    from{ opacity:0; transform:translateY(8px); }
    to{ opacity:1; transform:none; }
}
 
.csb-compat-pair{ font-size:12.5px; font-weight:600; color:#e7e9ee; margin-bottom:3px; line-height:1.4; }
.csb-compat-status{ font-size:11px; font-weight:600; color:#8b90a3; text-transform:uppercase; letter-spacing:.03em; }
.csb-compat-msg{ display:block; font-size:12px; color:#c3c6d4; margin-top:3px; line-height:1.5; }
 
.csb-compat-no-results{ font-size:13px; color:#9a9fb0; text-align:center; padding:16px 0; }
 
.is-dense .csb-compat-row{ padding:8px 10px; }
.is-dense .csb-compat-pair{ font-size:11.5px; }
 
/*======================
Selection & scrollbars
======================*/
.csb-scope ::selection{ background:#cfe0ff; color:#12141c; }
.csb-scope ::-webkit-scrollbar{ width:9px; height:9px; }
.csb-scope ::-webkit-scrollbar-track{ background:#edf2f7; }
.csb-scope ::-webkit-scrollbar-thumb{ background:#c6cdd8; border-radius:20px; }
.csb-scope ::-webkit-scrollbar-thumb:hover{ background:#b4bcc8; }
 
/*======================
Responsive
======================*/
@media (min-width: 1600px){
    .csb-bleed{ padding:0 clamp(64px, 8vw, 160px); }
    .csb-shell{ grid-template-columns:1fr 420px; gap:40px; max-width:100%; }
    .csb-hero h1{ font-size:50px; }
}
 
@media (max-width: 960px){
    .csb-shell{ grid-template-columns:1fr; }
    .csb-side{ position:static; }
    .csb-grid-2, .csb-grid-3, .csb-questions{ grid-template-columns:1fr; }
    .csb-segmented{ grid-template-columns:1fr; }
    .csb-segment-card{ height:64px; flex-direction:row; }
    .csb-card{ padding:22px; }
    .csb-rail{ flex-wrap:wrap; border-radius:var(--csb-radius-md); }
    .csb-rail-sep{ display:none; }
 
    .csb-hero{ padding:64px 24px 56px; border-radius:20px; }
    .csb-hero-inner{ flex-direction:column; gap:36px; text-align:center; }
    .csb-hero-copy{ text-align:center; max-width:100%; }
    .csb-hero p{ margin-left:auto; margin-right:auto; }
    .csb-hero h1{ font-size:28px; }
    .csb-hero-rig{ width:190px; transform:translateY(14px); }
    @keyframes csbRigRise{ to{ opacity:1; transform:translateY(0); } }
}
 
/*======================
Reduced motion
======================*/
@media (prefers-reduced-motion: reduce){
    .csb-scope *{ animation:none !important; transition:none !important; }
    html{ scroll-behavior:auto !important; }
}

/* End Create Form Custome System Css */




/* ===== Awards & Certificates — Professional Style ===== */
.awards-section-pro {
    background: #f7f8fa;
    padding: 110px 0;
}

.awards-section-pro .sec-title__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b08d3e;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 10px;
}

.awards-section-pro .sec-title__eyebrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #b08d3e;
}

.awards-section-pro .sec-title h2 {
    font-weight: 700;
    color: #0f1c2e;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.awards-section-pro .sec-title .text {
    color: #6b7686;
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto;
}

/* Card */
.award-card-pro {
    background: #ffffff;
    border: 1px solid #e7e9ed;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.award-card-pro:hover {
    border-color: #d9c48f;
    box-shadow: 0 16px 32px rgba(15, 28, 46, 0.08);
    transform: translateY(-4px);
}

/* Media */
.award-card-pro__media {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #0f1c2e;
}

.award-card-pro__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.award-card-pro:hover .award-card-pro__media img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

/* Body */
.award-card-pro__body {
    padding: 32px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.award-card-pro__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b08d3e;
    margin-bottom: 12px;
}

.award-card-pro__body h5 {
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.award-card-pro__body h5 a {
    color: #0f1c2e;
    transition: color 0.25s ease;
}

.award-card-pro__body h5 a:hover {
    color: #b08d3e;
}

.award-card-pro__text {
    color: #6b7686;
    font-size: 14.5px;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 22px;
}

.award-card-pro__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0f1c2e;
    padding-bottom: 4px;
    border-bottom: 1px solid #0f1c2e;
    width: fit-content;
    transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.award-card-pro__link:hover {
    color: #b08d3e;
    border-color: #b08d3e;
    gap: 10px;
}

/* Responsive */
@media (max-width: 767px) {
    .awards-section-pro { padding: 70px 0; }
    .award-card-pro__body { padding: 26px 22px 24px; }
}
/* =====End of  Awards & Certificates — Premium Style ===== */




/* =====Start of Partner CSS ===== */
/* =====Start of Partner CSS ===== */
 .partners-scroll-section {
    padding: 60px 0;
    overflow: hidden;
}

.partners-scroll-outer {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-scroll-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: partners-scroll-anim 80s linear infinite;
}

.partners-scroll-outer:hover .partners-scroll-track {
    animation-play-state: paused;
}

.partner-slide {
    flex: 0 0 auto;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-image-box {
    margin: 0;
}

.partner-image-box img {
    height: auto;
    width: 160px;
    /*filter: grayscale(100%);*/
    opacity: 0.7;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.partner-image-box a:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
}

@keyframes partners-scroll-anim {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Slow it down a bit on smaller screens for readability */
@media (max-width: 768px) {
    .partners-scroll-track {
        animation-duration: 20s;
    }
    .partner-image-box img {
        width: 120px;
    }
}
/* =====End of Partner CSS ===== */






/* ==========================================================
   PREMIUM HEADER CSS
   Animated Border + Light Beam + Glow
========================================================== */

    .bld-cta__btn--custom-build {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;

        padding: 6px 12px;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
        white-space: nowrap;

        color: #fff !important;

        background: linear-gradient(
            135deg,
            #2563eb 0%,
            #4f46e5 50%,
            #7c3aed 100%
        );

        border: 1px solid rgba(255,255,255,.45);
        border-radius: 6px;

        overflow: hidden;
        isolation: isolate;

        box-shadow:
            0 4px 12px rgba(37,99,235,.30),
            0 0 0 1px rgba(99,102,241,.15);

        transition:
            transform .3s ease,
            box-shadow .3s ease;
    }


    /* ==========================================================
       ANIMATED LIGHT BORDER
       ========================================================== */

    .bld-cta__btn--custom-build::before {
        content: "";

        position: absolute;
        inset: -2px;

        border-radius: 8px;

        padding: 2px;

        background: conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 45deg,

            rgba(255,255,255,.15) 60deg,
            rgba(255,255,255,1) 90deg,
            rgba(96,165,250,1) 115deg,

            transparent 145deg,
            transparent 220deg,

            rgba(255,255,255,.15) 240deg,
            rgba(167,139,250,1) 275deg,
            rgba(255,255,255,1) 300deg,

            transparent 330deg
        );

        animation: premiumBorderRotate 2.8s linear infinite;

        /*
         * Cut out the center so only the border remains
         */
        -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);

        -webkit-mask-composite: xor;
        mask-composite: exclude;

        pointer-events: none;
        z-index: 3;
    }


    /* ==========================================================
       MOVING SHINE INSIDE BUTTON
       ========================================================== */

    .bld-cta__btn--custom-build::after {
        content: "";

        position: absolute;
        top: 0;
        left: -80%;

        width: 45%;
        height: 100%;

        background: linear-gradient(
            100deg,
            transparent,
            rgba(255,255,255,.25),
            rgba(255,255,255,.55),
            transparent
        );

        transform: skewX(-20deg);

        animation: premiumButtonShine 3.8s ease-in-out infinite;

        pointer-events: none;
        z-index: 2;
    }


    /* ==========================================================
       HOVER
       ========================================================== */

    .bld-cta__btn--custom-build:hover {

        transform: translateY(-2px) scale(1.02);

        box-shadow:
            0 6px 18px rgba(37,99,235,.45),
            0 0 20px rgba(99,102,241,.40),
            0 0 35px rgba(124,58,237,.18);
    }


    /* ==========================================================
       ICON
       ========================================================== */

    .bld-cta__btn--custom-build svg {

        position: relative;
        z-index: 5;

        width: 16px;
        height: 16px;

        transition:
            transform .3s ease,
            filter .3s ease;
    }

    .bld-cta__btn--custom-build:hover svg {

        transform: scale(1.1);

        filter:
            drop-shadow(0 0 4px rgba(255,255,255,.8));
    }


    /* ==========================================================
       BORDER ROTATION
       ========================================================== */

    @keyframes premiumBorderRotate {

        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }


    /* ==========================================================
       BUTTON SHINE
       ========================================================== */

    @keyframes premiumButtonShine {

        0% {
            left: -80%;
        }

        45%,
        100% {
            left: 150%;
        }
    }


    /* ==========================================================
       ACTIVE
       ========================================================== */

    .bld-cta__btn--custom-build:active {

        transform: scale(.97);

    }


    /* ==========================================================
       REDUCED MOTION
       ========================================================== */

    @media (prefers-reduced-motion: reduce) {

        .bld-cta__btn--custom-build::before,
        .bld-cta__btn--custom-build::after {

            animation: none;
        }

    }

    /* --- Header layout (previously inline) --- */
    .header-top .auto-container {
        max-width: 80% !important;
    }
    .header-top .top-left {
        width: 50%;
    }
    .header-top .top-left .text {
        padding-right: 90px;
    }
    .header-top .bld-cta__action {
        padding-left: 81px;
    }
    .header-top .top-right {
        width: 37%;
    }

    .header-style-two .main-menu .navigation > li > a {
        font-family: system-ui;
    }

    /* --- CTA buttons --- */
    .bld-cta__btn--compact {
        padding: 5px 10px;
        font-size: 12px;
    }
    .bld-cta__btn--custom-build {
        background: linear-gradient(135deg, rgb(37, 99, 235) 0%, rgb(124, 58, 237) 100%);
    }
    .bld-cta__btn--track-repair {
        padding: 5px 10px;
        /* NOTE: original value was `rgb(250 1 25)` / `rgb(148 81 236)`, which is
           not valid CSS (missing commas). Corrected below — adjust the colors
           if a different shade was intended. */
        background: linear-gradient(135deg, rgb(250, 1, 25) 0%, rgb(148, 81, 236) 100%);
    }

    /* --- Blog dropdown --- */
    .blog-read-more {
        color: red;
    }
    .blog-thumb-img {
        width: 50px;
    }

    /* ==========================================================
       RESPONSIVE FIXES
       The rules above use fixed percentage widths and fixed
       pixel padding (50%/37% split, 90px / 81px padding). Those
       hold up fine on desktop but on narrow viewports they force
       the rating text, phone number, and location dropdown to
       overlap or overflow. The rules below progressively relax
       them at standard breakpoints.
       ========================================================== */

    /* Tablet: let the top bar wrap instead of enforcing a strict split */
    @media (max-width: 991px) {
        .header-top .auto-container {
            max-width: 100% !important;
        }
        .header-top .top-left,
        .header-top .top-right {
            width: 100%;
        }
        .header-top .top-left .text {
            padding-right: 20px;
        }
        .header-top .bld-cta__action {
            padding-left: 0;
            margin-top: 8px;
        }
    }

    /* Mobile: stack everything in the top bar vertically */
    @media (max-width: 767px) {
        .header-top .auto-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .header-top .top-left,
        .header-top .top-right {
            width: 100%;
        }
        .header-top .top-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .header-top .top-left .text {
            padding-right: 0;
            font-size: 13px;
            line-height: 1.4;
        }
        .header-top .bld-cta__action {
            padding-left: 0;
            margin: 8px 0;
            width: 100%;
        }
        .bld-cta__btn--compact {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            width: auto;
            white-space: nowrap;
        }
        .header-top .top-right {
            margin-top: 8px;
        }
        .header-top .info-list {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 14px;
        }

        /* Logo + header-upper row */
        .header-upper .auto-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .logo-outer {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }
        .logo-outer .logo img {
            max-width: 140px;
            height: auto;
        }
        .logo-outer .theme-btn.btn-style-one {
            padding: 6px 10px;
            font-size: 12px;
        }

        /* The second "Track My Repair" button (with SVG) lives inside
           nav-inner next to the hamburger toggle and duplicates the one
           in logo-outer once the menu collapses. Hide it below the nav
           breakpoint so only one remains visible on mobile — remove this
           rule if both buttons are meant to show. */
        .nav-outer .outer-box .bld-cta__btn--track-repair {
            display: none;
        }
    }

    /* Very small phones */
    @media (max-width: 480px) {
        .header-top .top-left .text {
            font-size: 12px;
        }
        .bld-cta__btn--compact {
            font-size: 11px;
            padding: 4px 8px;
        }
        .logo-outer .logo img {
            max-width: 110px;
        }
    }

/* ==========================================================
   End of PREMIUM HEADER CSS
   Animated Border + Light Beam + Glow
========================================================== */



/* =========================================
   Premium Scroll To Top
========================================= */

.hc-scroll-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    border-radius: 50%;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #2563eb, #7c3aed);

    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.28),
        0 0 0 1px rgba(255,255,255,0.15);

    z-index: 9999;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        opacity 0.3s ease;
}

/* Animated outer ring */
.scroll-top-ring {
    position: absolute;
    inset: -3px;

    border-radius: 50%;

    background: conic-gradient(
        from 0deg,
        #2563eb,
        #7c3aed,
        #06b6d4,
        #2563eb
    );

    z-index: -1;

    animation: scrollRingRotate 3s linear infinite;
}

/* Inner background */
.hc-scroll-to-top::before {
    content: "";

    position: absolute;
    inset: 2px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    z-index: -1;
}

/* Arrow */
.scroll-top-icon {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 19px;

    transition: transform 0.3s ease;
}

/* Arrow animation */
.scroll-top-icon i {
    animation: arrowFloat 1.8s ease-in-out infinite;
}

/* Hover */
.hc-scroll-to-top:hover {
    transform: translateY(-7px) scale(1.08);

    box-shadow:
        0 14px 35px rgba(37, 99, 235, 0.4),
        0 0 25px rgba(124, 58, 237, 0.35);
}

.hc-scroll-to-top:hover .scroll-top-icon {
    transform: translateY(-2px);
}

/* Tooltip */
.scroll-top-tooltip {
    position: absolute;

    right: 65px;
    top: 50%;

    transform: translateY(-50%) translateX(8px);

    padding: 7px 12px;

    background: #111827;
    color: #fff;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    border-radius: 6px;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
}

.scroll-top-tooltip::after {
    content: "";

    position: absolute;

    right: -5px;
    top: 50%;

    width: 10px;
    height: 10px;

    background: #111827;

    transform: translateY(-50%) rotate(45deg);
}

.hc-scroll-to-top:hover .scroll-top-tooltip {
    opacity: 1;
    visibility: visible;

    transform: translateY(-50%) translateX(0);
}


/* =========================================
   Animations
========================================= */

@keyframes scrollRingRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes arrowFloat {
    0%,
    100% {
        transform: translateY(2px);
    }

    50% {
        transform: translateY(-4px);
    }
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 575px) {

    .hc-scroll-to-top {
        width: 46px;
        height: 46px;

        right: 15px;
        bottom: 15px;
    }

    .scroll-top-tooltip {
        display: none;
    }

    .scroll-top-icon {
        font-size: 17px;
    }
}

/* =========================================
   End of Premium Scroll To Top
========================================= */



/*Additional About Us*/
.mission-section .text-box{
    text-align: justify;
}

.mission-section{
    padding: 50px 0 10px !important; 
}



/*Breadcrum and banner*/
.page-title {
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-title h1{
    color: #067dbcf5 !important;
}

.page-title::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6); /* adjust color/opacity here */
    z-index: 1;
}

.page-title .auto-container {
    position: relative;
    z-index: 2;
}

.page-title .bread-crumb li a
{
    color: #061c34 !important;
}
.page-title .bread-crumb li{
    color: #061c34 !important;
    font-weight: 600;
}
/*!
 * Bootstrap v4.1.1 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:inherit}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014 \00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.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-lg-auto,.col-md,.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-md-auto,.col-sm,.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-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#212529}.table-dark td,.table-dark th,.table-dark thead th{border-color:#32383e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:not([size]):not([multiple]){height:calc(2.25rem + 2px)}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm,.input-group-lg>.form-control-plaintext.form-control,.input-group-lg>.input-group-append>.form-control-plaintext.btn,.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,.input-group-sm>.form-control-plaintext.form-control,.input-group-sm>.input-group-append>.form-control-plaintext.btn,.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-sm>select.form-control:not([size]):not([multiple]),select.form-control-sm:not([size]):not([multiple]){height:calc(1.8125rem + 2px)}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-lg>select.form-control:not([size]):not([multiple]),select.form-control-lg:not([size]):not([multiple]){height:calc(2.875rem + 2px)}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(40,167,69,.8);border-radius:.2rem}.custom-select.is-valid,.form-control.is-valid,.was-validated .custom-select:valid,.was-validated .form-control:valid{border-color:#28a745}.custom-select.is-valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{background-color:#71dd8a}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label::before,.was-validated .custom-file-input:valid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(220,53,69,.8);border-radius:.2rem}.custom-select.is-invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.was-validated .form-control:invalid{border-color:#dc3545}.custom-select.is-invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{background-color:#efa2a9}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label::before,.was-validated .custom-file-input:invalid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:focus,.btn:hover{text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}.btn:not(:disabled):not(.disabled).active,.btn:not(:disabled):not(.disabled):active{background-image:none}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-primary{color:#007bff;background-color:transparent;background-image:none;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;background-color:transparent;background-image:none;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;background-color:transparent;background-image:none;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;background-color:transparent;background-image:none;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;background-color:transparent;background-image:none;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;background-color:transparent;background-image:none;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;background-color:transparent;background-image:none;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;background-color:transparent;background-image:none;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;background-color:transparent}.btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}.btn-link.focus,.btn-link:focus{text-decoration:underline;border-color:transparent;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media screen and (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-right{right:0;left:auto}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:0 1 auto;flex:0 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.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-left:-1px}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical .btn,.btn-group-vertical .btn-group{width:100%}.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-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file:focus,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control{margin-left:-1px}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:active~.custom-control-label::before{color:#fff;background-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 5px rgba(128,189,255,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.8125rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:focus~.custom-file-label::after{border-color:#80bdff}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:2.25rem;padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;padding-left:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-appearance:none;appearance:none}.custom-range::-webkit-slider-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-appearance:none;appearance:none}.custom-range::-moz-range-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;appearance:none}.custom-range::-ms-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:first-child .card-header,.card-group>.card:first-child .card-img-top{border-top-right-radius:0}.card-group>.card:first-child .card-footer,.card-group>.card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:last-child .card-header,.card-group>.card:last-child .card-img-top{border-top-left-radius:0}.card-group>.card:last-child .card-footer,.card-group>.card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:only-child{border-radius:.25rem}.card-group>.card:only-child .card-header,.card-group>.card:only-child .card-img-top{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-group>.card:only-child .card-footer,.card-group>.card:only-child .card-img-bottom{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top{border-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion .card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion .card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion .card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion .card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}.badge-primary[href]:focus,.badge-primary[href]:hover{color:#fff;text-decoration:none;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}.badge-secondary[href]:focus,.badge-secondary[href]:hover{color:#fff;text-decoration:none;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}.badge-success[href]:focus,.badge-success[href]:hover{color:#fff;text-decoration:none;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}.badge-info[href]:focus,.badge-info[href]:hover{color:#fff;text-decoration:none;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}.badge-warning[href]:focus,.badge-warning[href]:hover{color:#212529;text-decoration:none;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}.badge-danger[href]:focus,.badge-danger[href]:hover{color:#fff;text-decoration:none;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}.badge-light[href]:focus,.badge-light[href]:hover{color:#212529;text-decoration:none;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}.badge-dark[href]:focus,.badge-dark[href]:hover{color:#fff;text-decoration:none;background-color:#1d2124}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media screen and (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{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);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item:focus,.list-group-item:hover{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:focus,.close:hover{color:#000;text-decoration:none;opacity:.75}.close:not(:disabled):not(.disabled){cursor:pointer}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);transform:translate(0,-25%)}@media screen and (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - (.5rem * 2))}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - (1.75rem * 2))}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top] .arrow,.bs-popover-top .arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-top .arrow::before{border-width:.5rem .5rem 0}.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-top .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right] .arrow,.bs-popover-right .arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-right .arrow::before{border-width:.5rem .5rem .5rem 0}.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-right .arrow::after{left:1px;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom] .arrow,.bs-popover-bottom .arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-bottom .arrow::before{border-width:0 .5rem .5rem .5rem}.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-bottom .arrow::after{top:1px;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left] .arrow,.bs-popover-left .arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-left .arrow::before{border-width:.5rem 0 .5rem .5rem}.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-left .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;-ms-flex-align:center;align-items:center;width:100%;transition:-webkit-transform .6s ease;transition:transform .6s ease;transition:transform .6s ease,-webkit-transform .6s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}@media screen and (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.active.carousel-item-right,.carousel-item-next{-webkit-transform:translateX(100%);transform:translateX(100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-right,.carousel-item-next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translateX(-100%);transform:translateX(-100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.carousel-fade .carousel-item{opacity:0;transition-duration:.6s;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{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}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-circle{border-radius:50%!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.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-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0062cc!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#545b62!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#1e7e34!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#117a8b!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#d39e00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#bd2130!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#dae0e5!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#1d2124!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{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 #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
/*# sourceMappingURL=bootstrap.min.css.map */
.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adobe:before {
  content: "\f778"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edit:before {
  content: "\f044"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-haykal:before {
  content: "\f666"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-nintendo-switch:before {
  content: "\f418"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-water:before {
  content: "\f773"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/fa-brands-400.eot");
  src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands'; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fa-regular-400.eot");
  src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), url("../fonts/fa-regular-400.ttf") format("truetype"), url("../fonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/fa-solid-900.eot");
  src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }

	/*
  	Flaticon icon font: Flaticon
  	Creation date: 03/04/2019 05:31
  	*/

@font-face {
  font-family: "Flaticon";
  src: url("../fonts/Flaticon.eot");
  src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
       url("../fonts/Flaticon.woff2") format("woff2"),
       url("../fonts/Flaticon.woff") format("woff"),
       url("../fonts/Flaticon.ttf") format("truetype"),
       url("../fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
  }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
  font-family: Flaticon;
  font-style: normal;
}

.flaticon-notebook:before { content: "\f100"; }
.flaticon-edit:before { content: "\f101"; }
.flaticon-placeholder:before { content: "\f102"; }
.flaticon-paper-plane:before { content: "\f103"; }
.flaticon-user:before { content: "\f104"; }
.flaticon-unlink:before { content: "\f105"; }
.flaticon-success:before { content: "\f106"; }
.flaticon-search:before { content: "\f107"; }
.flaticon-drop:before { content: "\f108"; }
.flaticon-christmas-tree:before { content: "\f109"; }
.flaticon-plus:before { content: "\f10a"; }
.flaticon-rocket-ship:before { content: "\f10b"; }
.flaticon-battery:before { content: "\f10c"; }
.flaticon-target:before { content: "\f10d"; }
.flaticon-classroom:before { content: "\f10e"; }
.flaticon-first-aid-kit:before { content: "\f10f"; }
.flaticon-tablet:before { content: "\f110"; }
.flaticon-dustbin:before { content: "\f111"; }
.flaticon-telegram-logo:before { content: "\f112"; }
.flaticon-business:before { content: "\f113"; }
.flaticon-4-square-shapes:before { content: "\f114"; }
.flaticon-speech-bubble-and-three-dots:before { content: "\f115"; }
.flaticon-man:before { content: "\f116"; }
.flaticon-music:before { content: "\f117"; }
.flaticon-tree-of-love:before { content: "\f118"; }
.flaticon-play-button:before { content: "\f119"; }
.flaticon-long-arrow-pointing-to-the-right:before { content: "\f11a"; }
.flaticon-royal-crown-of-elegant-vintage-design:before { content: "\f11b"; }
.flaticon-desktop-computer-with-magnifying-lens-focusing-on-data:before { content: "\f11c"; }
.flaticon-test-tube-flask-and-drop-of-blood:before { content: "\f11d"; }
.flaticon-arrows:before { content: "\f11e"; }
.flaticon-stocks-graphic-on-laptop-monitor:before { content: "\f11f"; }
.flaticon-attachment:before { content: "\f120"; }
.flaticon-transport:before { content: "\f121"; }
.flaticon-recycle-triangle-of-three-arrows-outlines:before { content: "\f122"; }
.flaticon-arrows-1:before { content: "\f123"; }
.flaticon-snowflake:before { content: "\f124"; }
.flaticon-clock:before { content: "\f125"; }
.flaticon-find-in-folder:before { content: "\f126"; }
.flaticon-smartphone:before { content: "\f127"; }
.flaticon-arrow-pointing-to-right:before { content: "\f128"; }
.flaticon-gas-pump:before { content: "\f129"; }
.flaticon-house-silhouette:before { content: "\f12a"; }
.flaticon-cancel-music:before { content: "\f12b"; }
.flaticon-arrows-2:before { content: "\f12c"; }
.flaticon-floor:before { content: "\f12d"; }
.flaticon-exercise:before { content: "\f12e"; }
.flaticon-love-planet:before { content: "\f12f"; }
.flaticon-workers:before { content: "\f130"; }
.flaticon-open-magazine:before { content: "\f131"; }
.flaticon-confirm-schedule:before { content: "\f132"; }
.flaticon-star:before { content: "\f133"; }
.flaticon-order:before { content: "\f134"; }
.flaticon-key:before { content: "\f135"; }
.flaticon-medical:before { content: "\f136"; }
.flaticon-bank:before { content: "\f137"; }
.flaticon-smartphone-1:before { content: "\f138"; }
.flaticon-plug:before { content: "\f139"; }
.flaticon-arrows-3:before { content: "\f13a"; }
.flaticon-arrows-4:before { content: "\f13b"; }
.flaticon-money-bag:before { content: "\f13c"; }
.flaticon-next:before { content: "\f13d"; }
.flaticon-back:before { content: "\f13e"; }
.flaticon-reload:before { content: "\f13f"; }
.flaticon-headphones:before { content: "\f140"; }
.flaticon-signs:before { content: "\f141"; }
.flaticon-diamond:before { content: "\f142"; }
.flaticon-chat:before { content: "\f143"; }
.flaticon-phone:before { content: "\f144"; }
.flaticon-down-chevron:before { content: "\f145"; }
.flaticon-up-chevron:before { content: "\f146"; }
.flaticon-stairs:before { content: "\f147"; }
.flaticon-music-player:before { content: "\f148"; }
.flaticon-play-button-1:before { content: "\f149"; }
.flaticon-speaker:before { content: "\f14a"; }
.flaticon-menu:before { content: "\f14b"; }
.flaticon-calculator:before { content: "\f14c"; }
.flaticon-share:before { content: "\f14d"; }
.flaticon-map:before { content: "\f14e"; }
.flaticon-hourglass:before { content: "\f14f"; }
.flaticon-layers:before { content: "\f150"; }
.flaticon-settings:before { content: "\f151"; }
.flaticon-clock-1:before { content: "\f152"; }
.flaticon-file:before { content: "\f153"; }
.flaticon-list:before { content: "\f154"; }
.flaticon-home:before { content: "\f155"; }
.flaticon-star-1:before { content: "\f156"; }
.flaticon-bar-chart:before { content: "\f157"; }
.flaticon-handshake:before { content: "\f158"; }
.flaticon-time:before { content: "\f159"; }
.flaticon-worldwide:before { content: "\f15a"; }
.flaticon-board:before { content: "\f15b"; }
.flaticon-twitter:before { content: "\f15c"; }
.flaticon-smartphone-2:before { content: "\f15d"; }
.flaticon-mobile:before { content: "\f15e"; }
.flaticon-maps-and-flags:before { content: "\f15f"; }
.flaticon-add:before { content: "\f160"; }
.flaticon-substract:before { content: "\f161"; }
.flaticon-phone-call:before { content: "\f162"; }
.flaticon-mail:before { content: "\f163"; }
.flaticon-folder:before { content: "\f164"; }
.flaticon-shopping-cart:before { content: "\f165"; }
.flaticon-monitor:before { content: "\f166"; }
.flaticon-menu-1:before { content: "\f167"; }
.flaticon-cancel:before { content: "\f168"; }
.flaticon-up-arrow-inside-circle:before { content: "\f169"; }
.flaticon-circular-down-arrow-button:before { content: "\f16a"; }
.flaticon-24-hours:before { content: "\f16b"; }
.flaticon-t-shirt-outline:before { content: "\f16c"; }
.flaticon-folder-outline:before { content: "\f16d"; }
.flaticon-quote:before { content: "\f16e"; }
.flaticon-play-button-2:before { content: "\f16f"; }
.flaticon-right-quotation-sign:before { content: "\f170"; }
.flaticon-up-arrow:before { content: "\f171"; }
.flaticon-open-mail-interface-symbol:before { content: "\f172"; }
.flaticon-menu-button:before { content: "\f173"; }
.flaticon-smartphone-3:before { content: "\f174"; }
.flaticon-add-1:before { content: "\f175"; }
.flaticon-play-button-3:before { content: "\f176"; }
.flaticon-play-button-4:before { content: "\f177"; }
.flaticon-support:before { content: "\f178"; }
.flaticon-close:before { content: "\f179"; }
.flaticon-heart:before { content: "\f17a"; }
.flaticon-renewable:before { content: "\f17b"; }
.flaticon-shopping-cart-1:before { content: "\f17c"; }
.flaticon-bar-chart-1:before { content: "\f17d"; }
.flaticon-profit:before { content: "\f17e"; }
.flaticon-settings-1:before { content: "\f17f"; }
.flaticon-tick-inside-a-circle:before { content: "\f180"; }
.flaticon-confirm:before { content: "\f181"; }
.flaticon-edit-1:before { content: "\f182"; }
.flaticon-share-1:before { content: "\f183"; }
.flaticon-setting:before { content: "\f184"; }
.flaticon-stars:before { content: "\f185"; }
.flaticon-check:before { content: "\f186"; }
.flaticon-moon:before { content: "\f187"; }
.flaticon-star-2:before { content: "\f188"; }
.flaticon-decreasing:before { content: "\f189"; }
.flaticon-graph:before { content: "\f18a"; }
.flaticon-multi-tab:before { content: "\f18b"; }
.flaticon-graph-1:before { content: "\f18c"; }
.flaticon-graph-2:before { content: "\f18d"; }
.flaticon-tick:before { content: "\f18e"; }
.flaticon-pin:before { content: "\f18f"; }
.flaticon-small-calendar:before { content: "\f190"; }
.flaticon-alarm-clock:before { content: "\f191"; }
.flaticon-shopping-cart-2:before { content: "\f192"; }
.flaticon-close-1:before { content: "\f193"; }
.flaticon-settings-2:before { content: "\f194"; }
.flaticon-telephone:before { content: "\f195"; }
.flaticon-clock-2:before { content: "\f196"; }
.flaticon-home-1:before { content: "\f197"; }
.flaticon-search-1:before { content: "\f198"; }
.flaticon-abc-block:before { content: "\f199"; }
.flaticon-notification:before { content: "\f19a"; }
.flaticon-attachment-1:before { content: "\f19b"; }
.flaticon-down-arrow:before { content: "\f19c"; }
.flaticon-tv:before { content: "\f19d"; }
.flaticon-phone-receiver:before { content: "\f19e"; }
.flaticon-next-1:before { content: "\f19f"; }
.flaticon-back-1:before { content: "\f1a0"; }
.flaticon-phone-call-1:before { content: "\f1a1"; }
.flaticon-left-arrow-inside-a-circle:before { content: "\f1a2"; }
.flaticon-right-arrow-inside-a-circle:before { content: "\f1a3"; }
.flaticon-server:before { content: "\f1a4"; }
.flaticon-server-1:before { content: "\f1a5"; }
.flaticon-server-2:before { content: "\f1a6"; }
.flaticon-server-3:before { content: "\f1a7"; }
.flaticon-server-4:before { content: "\f1a8"; }
.flaticon-bug:before { content: "\f1a9"; }
.flaticon-support-1:before { content: "\f1aa"; }
.flaticon-customer-support:before { content: "\f1ab"; }
.flaticon-support-2:before { content: "\f1ac"; }
.flaticon-support-3:before { content: "\f1ad"; }
.flaticon-customer-service:before { content: "\f1ae"; }
.flaticon-conversation:before { content: "\f1af"; }
.flaticon-maintenance:before { content: "\f1b0"; }
.flaticon-pc:before { content: "\f1b1"; }
.flaticon-pc-1:before { content: "\f1b2"; }
.flaticon-computer:before { content: "\f1b3"; }
.flaticon-left-quote:before { content: "\f1b4"; }
.flaticon-left-quote-1:before { content: "\f1b5"; }
.flaticon-location-pin:before { content: "\f1b6"; }
x /*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */
    /* Layout helpers
    ----------------------------------*/
.ui-helper-hidden {
    display: none;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}

.ui-helper-clearfix:after {
    clear: both;
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
    z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
    cursor: default !important;
    pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -.25em;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}

.ui-widget-icon-block {
    left: 50%;
    margin-left: -8px;
    display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    padding: .5em .5em .5em .7em;
    font-size: 100%;
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto;
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
}

.ui-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: 0;
}

.ui-menu .ui-menu {
    position: absolute;
}

.ui-menu .ui-menu-item {
    margin: 0;
    cursor: pointer;
    /* support: IE10, see #8844 */
    list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 3px 1em 3px .4em;
}

.ui-menu .ui-menu-divider {
    margin: 5px 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
    margin: -1px;
}

/* icon support */
.ui-menu-icons {
    position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
    padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: .2em;
    margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
    left: auto;
    right: 0;
}

.ui-button {
    padding: .4em 1em;
    display: inline-block;
    position: relative;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    /* Support: IE <= 11 */
    overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
    text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
    width: 2em;
    box-sizing: border-box;
    text-indent: -9999px;
    white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
    text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
    padding: 0;
    width: 2.1em;
    height: 2.1em;
    text-indent: -9999px;
    white-space: nowrap;

}

input.ui-button.ui-icon-notext .ui-icon {
    width: auto;
    height: auto;
    text-indent: 0;
    white-space: normal;
    padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.ui-controlgroup {
    vertical-align: middle;
    display: inline-block;
}

.ui-controlgroup > .ui-controlgroup-item {
    float: left;
    margin-left: 0;
    margin-right: 0;
}

.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
    z-index: 9999;
}

.ui-controlgroup-vertical > .ui-controlgroup-item {
    display: block;
    float: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
    box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
    padding: .4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
    font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
    border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
    border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
    border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
    border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

    /* Support: IE8 only, Android < 4.4 only */
    width: 75%;
    width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
    border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
    box-shadow: inset 1px 1px 1px #ccc;
    border-radius: .12em;
    border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
    width: 16px;
    height: 16px;
    border-radius: 1em;
    overflow: visible;
    border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
    background-image: none;
    width: 8px;
    height: 8px;
    border-width: 4px;
    border-style: solid;
}

.ui-checkboxradio-disabled {
    pointer-events: none;
}

.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none;
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
    top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px;
}

.ui-datepicker .ui-datepicker-next {
    right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 45%;
}

.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em;
}

.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    font-weight: bold;
    border: 0;
}

.ui-datepicker td {
    border: 0;
    padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: right;
    text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em .6em;
    width: auto;
    overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
    width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
    float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
    direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
    float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    left: .5em;
    top: .3em;
}

.ui-dialog {
    position: absolute;
    top: 0;
    left: 0;
    padding: .2em;
    outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em;
    position: relative;
}

.ui-dialog .ui-dialog-title {
    float: left;
    margin: .1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: .3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0 0;
    padding: 1px;
    height: 20px;
}

.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: none;
    overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
    text-align: left;
    border-width: 1px 0 0 0;
    background-image: none;
    margin-top: .5em;
    padding: .3em 1em .5em .4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
    margin: .5em .4em .5em 0;
    cursor: pointer;
}

.ui-dialog .ui-resizable-n {
    height: 2px;
    top: 0;
}

.ui-dialog .ui-resizable-e {
    width: 2px;
    right: 0;
}

.ui-dialog .ui-resizable-s {
    height: 2px;
    bottom: 0;
}

.ui-dialog .ui-resizable-w {
    width: 2px;
    left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
    width: 7px;
    height: 7px;
}

.ui-dialog .ui-resizable-se {
    right: 0;
    bottom: 0;
}

.ui-dialog .ui-resizable-sw {
    left: 0;
    bottom: 0;
}

.ui-dialog .ui-resizable-ne {
    right: 0;
    top: 0;
}

.ui-dialog .ui-resizable-nw {
    left: 0;
    top: 0;
}

.ui-draggable .ui-dialog-titlebar {
    cursor: move;
}

.ui-draggable-handle {
    -ms-touch-action: none;
    touch-action: none;
}

.ui-resizable {
    position: relative;
}

.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}

.ui-progressbar {
    height: 2em;
    text-align: left;
    overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
    margin: -1px;
    height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
    background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
    height: 100%;
    filter: alpha(opacity=25); /* support: IE8 */
    opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none;
}

.ui-selectable {
    -ms-touch-action: none;
    touch-action: none;
}

.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted black;
}

.ui-selectmenu-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.ui-selectmenu-menu .ui-menu {
    overflow: auto;
    overflow-x: hidden;
    padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.5;
    padding: 2px 0.4em;
    margin: 0.5em 0 0 0;
    height: auto;
    border: 0;
}

.ui-selectmenu-open {
    display: block;
}

.ui-selectmenu-text {
    display: block;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
    text-align: left;
    white-space: nowrap;
    width: 14em;
}

.ui-selectmenu-icon.ui-icon {
    float: right;
    margin-top: 0;
}

.ui-slider {
    position: relative;
    text-align: left;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none;
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}

.ui-slider-horizontal {
    height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.3em;
    margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.ui-slider-vertical {
    width: .8em;
    height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
    left: -.3em;
    margin-left: 0;
    margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
    bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
    top: 0;
}

.ui-sortable-handle {
    -ms-touch-action: none;
    touch-action: none;
}

.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle;
}

.ui-spinner-input {
    border: none;
    background: none;
    color: inherit;
    padding: .222em 0;
    margin: .2em 0;
    vertical-align: middle;
    margin-left: .4em;
    margin-right: 2em;
}

.ui-spinner-button {
    width: 1.6em;
    height: 50%;
    font-size: .5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none;
}

.ui-spinner-up {
    top: 0;
}

.ui-spinner-down {
    bottom: 0;
}

.ui-tabs {
    position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
    padding: .2em;
}

.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: .2em .2em 0;
}

.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px .2em 0 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: .5em 1em;
    text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: -1px;
    padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
    cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em 1.4em;
    background: none;
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
}

body .ui-tooltip {
    border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
}

.ui-widget .ui-widget {
    font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
}

.ui-widget.ui-widget-content {
    border: 1px solid #e0e0e0;
}

.ui-widget-content {
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #333333;
}

.ui-widget-content a {
    color: #333333;
}

.ui-widget-header {
    border: 1px solid #dddddd;
    background: #e9e9e9;
    color: #333333;
    font-weight: bold;
}

.ui-widget-header a {
    color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
    /* We use html here because we need a greater specificity to make sure disabled
    works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: normal;
    color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
    color: #454545;
    text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    border: 1px solid #cccccc;
    background: #ededed;
    font-weight: normal;
    color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
    color: #2b2b2b;
    text-decoration: none;
}

.ui-visual-focus {
    box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    background: #1b1c1e;
    font-weight: normal;
    color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
    border: #003eff;
    background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #ffffff;
    text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e;
    background: #fffa90;
    color: #777620;
}

.ui-state-checked {
    border: 1px solid #dad55e;
    background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
    border: 1px solid #f1a899;
    background: #fddfdf;
    color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
    color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
    color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70); /* support: IE8 */
    font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35); /* support: IE8 */
    background-image: none;
}

.ui-state-disabled .ui-icon {
    filter: Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
    width: 16px;
    height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
    background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
    background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
    background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
    /*	background-image: url("images/ui-icons_ffffff_256x240.png");*/
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
    background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
    /*	background-image: url("images/ui-icons_777777_256x240.png");*/
}

/* positioning */
.ui-icon-blank {
    background-position: 16px 16px;
}

.ui-icon-caret-1-n {
    background-position: 0 0;
}

.ui-icon-caret-1-ne {
    background-position: -16px 0;
}

.ui-icon-caret-1-e {
    background-position: -32px 0;
}

.ui-icon-caret-1-se {
    background-position: -48px 0;
}

.ui-icon-caret-1-s {
    background-position: -65px 0;
}

.ui-icon-caret-1-sw {
    background-position: -80px 0;
}

.ui-icon-caret-1-w {
    background-position: -96px 0;
}

.ui-icon-caret-1-nw {
    background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
    background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
    background-position: -144px 0;
}

.ui-icon-triangle-1-n {
    background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
    background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
    background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
    background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
    background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
    background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
    background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
    background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
    background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
    background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
    background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
    background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
    background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
    background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
    background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
    background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
    background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
    background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
    background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
    background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
    background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
    background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
    background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
    background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
    background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
    background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
    background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
    background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
    background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
    background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
    background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
    background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
    background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
    background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
    background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
    background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
    background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
    background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px;
}

.ui-icon-arrow-4 {
    background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
    background-position: -16px -80px;
}

.ui-icon-extlink {
    background-position: -32px -80px;
}

.ui-icon-newwin {
    background-position: -48px -80px;
}

.ui-icon-refresh {
    background-position: -64px -80px;
}

.ui-icon-shuffle {
    background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
    background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
    background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
    background-position: 0 -96px;
}

.ui-icon-folder-open {
    background-position: -16px -96px;
}

.ui-icon-document {
    background-position: -32px -96px;
}

.ui-icon-document-b {
    background-position: -48px -96px;
}

.ui-icon-note {
    background-position: -64px -96px;
}

.ui-icon-mail-closed {
    background-position: -80px -96px;
}

.ui-icon-mail-open {
    background-position: -96px -96px;
}

.ui-icon-suitcase {
    background-position: -112px -96px;
}

.ui-icon-comment {
    background-position: -128px -96px;
}

.ui-icon-person {
    background-position: -144px -96px;
}

.ui-icon-print {
    background-position: -160px -96px;
}

.ui-icon-trash {
    background-position: -176px -96px;
}

.ui-icon-locked {
    background-position: -192px -96px;
}

.ui-icon-unlocked {
    background-position: -208px -96px;
}

.ui-icon-bookmark {
    background-position: -224px -96px;
}

.ui-icon-tag {
    background-position: -240px -96px;
}

.ui-icon-home {
    background-position: 0 -112px;
}

.ui-icon-flag {
    background-position: -16px -112px;
}

.ui-icon-calendar {
    background-position: -32px -112px;
}

.ui-icon-cart {
    background-position: -48px -112px;
}

.ui-icon-pencil {
    background-position: -64px -112px;
}

.ui-icon-clock {
    background-position: -80px -112px;
}

.ui-icon-disk {
    background-position: -96px -112px;
}

.ui-icon-calculator {
    background-position: -112px -112px;
}

.ui-icon-zoomin {
    background-position: -128px -112px;
}

.ui-icon-zoomout {
    background-position: -144px -112px;
}

.ui-icon-search {
    background-position: -160px -112px;
}

.ui-icon-wrench {
    background-position: -176px -112px;
}

.ui-icon-gear {
    background-position: -192px -112px;
}

.ui-icon-heart {
    background-position: -208px -112px;
}

.ui-icon-star {
    background-position: -224px -112px;
}

.ui-icon-link {
    background-position: -240px -112px;
}

.ui-icon-cancel {
    background-position: 0 -128px;
}

.ui-icon-plus {
    background-position: -16px -128px;
}

.ui-icon-plusthick {
    background-position: -32px -128px;
}

.ui-icon-minus {
    background-position: -48px -128px;
}

.ui-icon-minusthick {
    background-position: -64px -128px;
}

.ui-icon-close {
    background-position: -80px -128px;
}

.ui-icon-closethick {
    background-position: -96px -128px;
}

.ui-icon-key {
    background-position: -112px -128px;
}

.ui-icon-lightbulb {
    background-position: -128px -128px;
}

.ui-icon-scissors {
    background-position: -144px -128px;
}

.ui-icon-clipboard {
    background-position: -160px -128px;
}

.ui-icon-copy {
    background-position: -176px -128px;
}

.ui-icon-contact {
    background-position: -192px -128px;
}

.ui-icon-image {
    background-position: -208px -128px;
}

.ui-icon-video {
    background-position: -224px -128px;
}

.ui-icon-script {
    background-position: -240px -128px;
}

.ui-icon-alert {
    background-position: 0 -144px;
}

.ui-icon-info {
    background-position: -16px -144px;
}

.ui-icon-notice {
    background-position: -32px -144px;
}

.ui-icon-help {
    background-position: -48px -144px;
}

.ui-icon-check {
    background-position: -64px -144px;
}

.ui-icon-bullet {
    background-position: -80px -144px;
}

.ui-icon-radio-on {
    background-position: -96px -144px;
}

.ui-icon-radio-off {
    background-position: -112px -144px;
}

.ui-icon-pin-w {
    background-position: -128px -144px;
}

.ui-icon-pin-s {
    background-position: -144px -144px;
}

.ui-icon-play {
    background-position: 0 -160px;
}

.ui-icon-pause {
    background-position: -16px -160px;
}

.ui-icon-seek-next {
    background-position: -32px -160px;
}

.ui-icon-seek-prev {
    background-position: -48px -160px;
}

.ui-icon-seek-end {
    background-position: -64px -160px;
}

.ui-icon-seek-start {
    background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
    background-position: -80px -160px;
}

.ui-icon-stop {
    background-position: -96px -160px;
}

.ui-icon-eject {
    background-position: -112px -160px;
}

.ui-icon-volume-off {
    background-position: -128px -160px;
}

.ui-icon-volume-on {
    background-position: -144px -160px;
}

.ui-icon-power {
    background-position: 0 -176px;
}

.ui-icon-signal-diag {
    background-position: -16px -176px;
}

.ui-icon-signal {
    background-position: -32px -176px;
}

.ui-icon-battery-0 {
    background-position: -48px -176px;
}

.ui-icon-battery-1 {
    background-position: -64px -176px;
}

.ui-icon-battery-2 {
    background-position: -80px -176px;
}

.ui-icon-battery-3 {
    background-position: -96px -176px;
}

.ui-icon-circle-plus {
    background-position: 0 -192px;
}

.ui-icon-circle-minus {
    background-position: -16px -192px;
}

.ui-icon-circle-close {
    background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
    background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
    background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
    background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
    background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
    background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
    background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
    background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
    background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
    background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
    background-position: -192px -192px;
}

.ui-icon-circle-check {
    background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
    background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
    background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
    background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
    background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
    background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
    background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
    background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
    background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
    background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
    background-position: -80px -224px;
}


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
    background: #aaaaaa;
    opacity: .3;
    filter: Alpha(Opacity=30); /* support: IE8 */
}

.ui-widget-shadow {
    -webkit-box-shadow: 0px 0px 5px #666666;
    box-shadow: 0px 0px 5px #666666;
}
/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y; }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
      -ms-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}100%{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}100%{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}100%{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}100%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}100%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}100%{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}100%{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}100%{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}100%{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}body.swal2-toast-shown .swal2-container{background-color:transparent}body.swal2-toast-shown .swal2-container.swal2-shown{background-color:transparent}body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}body.swal2-toast-shown .swal2-container.swal2-top-left,body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}body.swal2-toast-shown .swal2-container.swal2-center-left,body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-left,body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}body.swal2-toast-column .swal2-toast{flex-direction:column;align-items:stretch}body.swal2-toast-column .swal2-toast .swal2-actions{flex:1;align-self:stretch;height:2.2em;margin-top:.3125em}body.swal2-toast-column .swal2-toast .swal2-loading{justify-content:center}body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.swal2-popup.swal2-toast{flex-direction:row;align-items:center;width:auto;padding:.625em;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.swal2-popup.swal2-toast .swal2-header{flex-direction:row}.swal2-popup.swal2-toast .swal2-title{flex-grow:1;justify-content:flex-start;margin:0 .6em;font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{position:initial;width:.8em;height:.8em;line-height:.8}.swal2-popup.swal2-toast .swal2-content{justify-content:flex-start;font-size:1em}.swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.swal2-popup.swal2-toast .swal2-styled:focus{box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotateZ(2deg);transform:translateY(-.625em) rotateZ(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotateZ(-2deg);transform:translateY(0) rotateZ(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotateZ(2deg);transform:translateY(.3125em) rotateZ(2deg);opacity:.7}100%{-webkit-transform:translateY(0) rotateZ(0);transform:translateY(0) rotateZ(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotateZ(2deg);transform:translateY(-.625em) rotateZ(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotateZ(-2deg);transform:translateY(0) rotateZ(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotateZ(2deg);transform:translateY(.3125em) rotateZ(2deg);opacity:.7}100%{-webkit-transform:translateY(0) rotateZ(0);transform:translateY(0) rotateZ(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}100%{-webkit-transform:rotateZ(1deg);transform:rotateZ(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}100%{-webkit-transform:rotateZ(1deg);transform:rotateZ(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:transparent}body.swal2-no-backdrop .swal2-shown>.swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}body.swal2-no-backdrop .swal2-shown.swal2-top-left,body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}body.swal2-no-backdrop .swal2-shown.swal2-top-end,body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}body.swal2-no-backdrop .swal2-shown.swal2-center-left,body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}body.swal2-no-backdrop .swal2-shown.swal2-center-end,body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.swal2-container{display:flex;position:fixed;top:0;right:0;bottom:0;left:0;flex-direction:row;align-items:center;justify-content:center;padding:10px;background-color:transparent;z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.swal2-container.swal2-top{align-items:flex-start}.swal2-container.swal2-top-left,.swal2-container.swal2-top-start{align-items:flex-start;justify-content:flex-start}.swal2-container.swal2-top-end,.swal2-container.swal2-top-right{align-items:flex-start;justify-content:flex-end}.swal2-container.swal2-center{align-items:center}.swal2-container.swal2-center-left,.swal2-container.swal2-center-start{align-items:center;justify-content:flex-start}.swal2-container.swal2-center-end,.swal2-container.swal2-center-right{align-items:center;justify-content:flex-end}.swal2-container.swal2-bottom{align-items:flex-end}.swal2-container.swal2-bottom-left,.swal2-container.swal2-bottom-start{align-items:flex-end;justify-content:flex-start}.swal2-container.swal2-bottom-end,.swal2-container.swal2-bottom-right{align-items:flex-end;justify-content:flex-end}.swal2-container.swal2-grow-fullscreen>.swal2-modal{display:flex!important;flex:1;align-self:stretch;justify-content:center}.swal2-container.swal2-grow-row>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container.swal2-grow-column{flex:1;flex-direction:column}.swal2-container.swal2-grow-column.swal2-bottom,.swal2-container.swal2-grow-column.swal2-center,.swal2-container.swal2-grow-column.swal2-top{align-items:center}.swal2-container.swal2-grow-column.swal2-bottom-left,.swal2-container.swal2-grow-column.swal2-bottom-start,.swal2-container.swal2-grow-column.swal2-center-left,.swal2-container.swal2-grow-column.swal2-center-start,.swal2-container.swal2-grow-column.swal2-top-left,.swal2-container.swal2-grow-column.swal2-top-start{align-items:flex-start}.swal2-container.swal2-grow-column.swal2-bottom-end,.swal2-container.swal2-grow-column.swal2-bottom-right,.swal2-container.swal2-grow-column.swal2-center-end,.swal2-container.swal2-grow-column.swal2-center-right,.swal2-container.swal2-grow-column.swal2-top-end,.swal2-container.swal2-grow-column.swal2-top-right{align-items:flex-end}.swal2-container.swal2-grow-column>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-container .swal2-modal{margin:0!important}}.swal2-container.swal2-fade{transition:background-color .1s}.swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.swal2-popup{display:none;position:relative;flex-direction:column;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;box-sizing:border-box}.swal2-popup:focus{outline:0}.swal2-popup.swal2-loading{overflow-y:hidden}.swal2-popup .swal2-header{display:flex;flex-direction:column;align-items:center}.swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.swal2-popup .swal2-actions{flex-wrap:wrap;align-items:center;justify-content:center;margin:1.25em auto 0;z-index:1}.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border:.25em solid transparent;border-radius:100%;border-color:transparent;background-color:transparent!important;color:transparent;cursor:default;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after{display:inline-block;width:15px;height:15px;margin-left:5px;border:3px solid #999;border-radius:50%;border-right-color:transparent;box-shadow:1px 1px 1px #fff;content:'';-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;box-shadow:none}.swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.swal2-popup .swal2-styled:focus{outline:0;box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.swal2-popup .swal2-styled::-moz-focus-inner{border:0}.swal2-popup .swal2-footer{justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.swal2-popup .swal2-close{position:absolute;top:0;right:0;justify-content:center;width:1.2em;height:1.2em;padding:0;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.swal2-popup .swal2-close:hover{-webkit-transform:none;transform:none;color:#f27474}.swal2-popup>.swal2-checkbox,.swal2-popup>.swal2-file,.swal2-popup>.swal2-input,.swal2-popup>.swal2-radio,.swal2-popup>.swal2-select,.swal2-popup>.swal2-textarea{display:none}.swal2-popup .swal2-content{justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.swal2-popup #swal2-content{text-align:center}.swal2-popup .swal2-checkbox,.swal2-popup .swal2-file,.swal2-popup .swal2-input,.swal2-popup .swal2-radio,.swal2-popup .swal2-select,.swal2-popup .swal2-textarea{margin:1em auto}.swal2-popup .swal2-file,.swal2-popup .swal2-input,.swal2-popup .swal2-textarea{width:100%;transition:border-color .3s,box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-sizing:border-box}.swal2-popup .swal2-file.swal2-inputerror,.swal2-popup .swal2-input.swal2-inputerror,.swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;box-shadow:0 0 2px #f27474!important}.swal2-popup .swal2-file:focus,.swal2-popup .swal2-input:focus,.swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;box-shadow:0 0 3px #c4e6f5}.swal2-popup .swal2-file::-webkit-input-placeholder,.swal2-popup .swal2-input::-webkit-input-placeholder,.swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.swal2-popup .swal2-file:-ms-input-placeholder,.swal2-popup .swal2-input:-ms-input-placeholder,.swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.swal2-popup .swal2-file::-ms-input-placeholder,.swal2-popup .swal2-input::-ms-input-placeholder,.swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.swal2-popup .swal2-file::placeholder,.swal2-popup .swal2-input::placeholder,.swal2-popup .swal2-textarea::placeholder{color:#ccc}.swal2-popup .swal2-range input{width:80%}.swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.swal2-popup .swal2-range input,.swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.swal2-popup .swal2-input[type=number]{max-width:10em}.swal2-popup .swal2-file{font-size:1.125em}.swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.swal2-popup .swal2-checkbox,.swal2-popup .swal2-radio{align-items:center;justify-content:center}.swal2-popup .swal2-checkbox label,.swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.swal2-popup .swal2-checkbox input,.swal2-popup .swal2-radio input{margin:0 .4em}.swal2-popup .swal2-validation-message{display:none;align-items:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.swal2-popup .swal2-validation-message::before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:'!';zoom:normal}@supports (-ms-accelerator:true){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@-moz-document url-prefix(){.swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.swal2-icon{position:relative;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid transparent;border-radius:50%;line-height:5em;cursor:default;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.swal2-icon-text{font-size:3.75em}.swal2-icon.swal2-error{border-color:#f27474}.swal2-icon.swal2-error .swal2-x-mark{position:relative;flex-grow:1}.swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee}.swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.swal2-icon.swal2-success{border-color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;box-sizing:content-box}.swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.swal2-progresssteps{align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.swal2-progresssteps li{display:inline-block;position:relative}.swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle{background:#add8e6}.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}[class^=swal2]{-webkit-tap-highlight-color:transparent}.swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.swal2-rtl .swal2-close{right:auto;left:0}.swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:initial!important}}
/* Styles for signature plugin v1.2.0. */
.kbw-signature {
	display: inline-block;
	border: 1px solid #a0a0a0;
	-ms-touch-action: none;
}
.kbw-signature-disabled {
	opacity: 0.35;
}

@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes jello {
    11.1% {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes jello {
    11.1% {
        -webkit-transform: none;
        transform: none
    }

    22.2% {

        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}


.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;

    transform-origin: center
}

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}


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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInStable {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    33.333% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    66.666666% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes zoomInStable {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    33.333% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    66.666666% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.zoomInStable {
    -webkit-animation-name: zoomInStable;
    animation-name: zoomInStable;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    100% {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

@keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }
}

@-webkit-keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }
}

@-moz-keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }

}

@-o-keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }
}

@-ms-keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }

}

@charset "UTF-8";body.fancybox-active{overflow:hidden}body.fancybox-iosfix{position:fixed;left:0;right:0}.fancybox-is-hidden{position:absolute;top:-9999px;left:-9999px;visibility:hidden}.fancybox-container{position:fixed;top:0;left:0;width:100%;height:100%;z-index:99992;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{position:absolute;top:0;right:0;bottom:0;left:0}.fancybox-outer{overflow-y:auto;-webkit-overflow-scrolling:touch}.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:.87;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption-wrap,.fancybox-infobar,.fancybox-toolbar{position:absolute;direction:ltr;z-index:99997;opacity:0;visibility:hidden;transition:opacity .25s,visibility 0s linear .25s;box-sizing:border-box}.fancybox-show-caption .fancybox-caption-wrap,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;visibility:visible;transition:opacity .25s,visibility 0s}.fancybox-infobar{top:0;left:0;font-size:13px;padding:0 10px;height:44px;min-width:44px;line-height:44px;color:#ccc;text-align:center;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-font-smoothing:subpixel-antialiased;mix-blend-mode:exclusion}.fancybox-toolbar{top:0;right:0;margin:0;padding:0}.fancybox-stage{overflow:hidden;direction:ltr;z-index:99994;-webkit-transform:translateZ(0)}.fancybox-is-closing .fancybox-stage{overflow:visible}.fancybox-slide{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;overflow:auto;outline:none;white-space:normal;box-sizing:border-box;text-align:center;z-index:99994;-webkit-overflow-scrolling:touch;display:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform}.fancybox-slide:before{content:"";display:inline-block;vertical-align:middle;height:100%;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:visible}.fancybox-slide--image:before{display:none}.fancybox-slide--video .fancybox-content,.fancybox-slide--video iframe{background:#000}.fancybox-slide--map .fancybox-content,.fancybox-slide--map iframe{background:#e5e3df}.fancybox-slide--next{z-index:99995}.fancybox-slide>*{display:inline-block;position:relative;padding:24px;margin:44px 0;border-width:0;vertical-align:middle;text-align:left;background-color:#fff;overflow:auto;box-sizing:border-box}.fancybox-slide>base,.fancybox-slide>link,.fancybox-slide>meta,.fancybox-slide>script,.fancybox-slide>style,.fancybox-slide>title{display:none}.fancybox-slide .fancybox-image-wrap{position:absolute;top:0;left:0;margin:0;padding:0;border:0;z-index:99995;background:transparent;cursor:default;overflow:visible;-webkit-transform-origin:top left;transform-origin:top left;background-size:100% 100%;background-repeat:no-repeat;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform}.fancybox-can-zoomOut .fancybox-image-wrap{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-image-wrap{cursor:zoom-in}.fancybox-can-drag .fancybox-image-wrap{cursor:-webkit-grab;cursor:grab}.fancybox-is-dragging .fancybox-image-wrap{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-image,.fancybox-spaceball{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;border:0;max-width:none;max-height:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content{padding:0;width:80%;height:80%;max-width:calc(100% - 100px);max-height:calc(100% - 88px);overflow:visible;background:#fff}.fancybox-iframe{display:block;padding:0;border:0;height:100%}.fancybox-error,.fancybox-iframe{margin:0;width:100%;background:#fff}.fancybox-error{padding:40px;max-width:380px;cursor:default}.fancybox-error p{margin:0;padding:0;color:#444;font-size:16px;line-height:20px}.fancybox-button{box-sizing:border-box;display:inline-block;vertical-align:top;width:44px;height:44px;margin:0;padding:10px;border:0;border-radius:0;background:rgba(30,30,30,.6);transition:color .3s ease;cursor:pointer;outline:none}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:focus,.fancybox-button:hover{color:#fff}.fancybox-button[disabled]{color:#ccc;cursor:default;opacity:.6}.fancybox-button svg{display:block;position:relative;overflow:visible;shape-rendering:geometricPrecision}.fancybox-button svg path{fill:currentColor;stroke:currentColor;stroke-linejoin:round;stroke-width:3}.fancybox-button--share svg path{stroke-width:1}.fancybox-button--pause svg path:nth-child(1),.fancybox-button--play svg path:nth-child(2){display:none}.fancybox-button--zoom svg path{fill:transparent}.fancybox-navigation{display:none}.fancybox-show-nav .fancybox-navigation{display:block}.fancybox-navigation button{position:absolute;top:50%;margin:-50px 0 0;z-index:99997;background:transparent;width:60px;height:100px;padding:17px}.fancybox-navigation button:before{content:"";position:absolute;top:30px;right:10px;width:40px;height:40px;background:rgba(30,30,30,.6)}.fancybox-navigation .fancybox-button--arrow_left{left:0}.fancybox-navigation .fancybox-button--arrow_right{right:0}.fancybox-close-small{position:absolute;top:0;right:0;width:40px;height:40px;padding:0;margin:0;border:0;border-radius:0;background:transparent;z-index:10;cursor:pointer}.fancybox-close-small:after{content:"×";position:absolute;top:5px;right:5px;width:30px;height:30px;font:22px/30px Arial,Helvetica Neue,Helvetica,sans-serif;color:#888;font-weight:300;text-align:center;border-radius:50%;border-width:0;background-color:transparent;transition:background-color .25s;box-sizing:border-box;z-index:2}.fancybox-close-small:focus{outline:none}.fancybox-close-small:focus:after{outline:1px dotted #888}.fancybox-close-small:hover:after{color:#555;background:#eee}.fancybox-slide--iframe .fancybox-close-small,.fancybox-slide--image .fancybox-close-small{top:0;right:-40px}.fancybox-slide--iframe .fancybox-close-small:after,.fancybox-slide--image .fancybox-close-small:after{font-size:35px;color:#aaa}.fancybox-slide--iframe .fancybox-close-small:hover:after,.fancybox-slide--image .fancybox-close-small:hover:after{color:#fff;background:transparent}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small{display:none}.fancybox-caption-wrap{bottom:0;left:0;right:0;padding:60px 2vw 0;background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.2) 40%,rgba(0,0,0,.6) 80%,rgba(0,0,0,.8));pointer-events:none}.fancybox-caption{padding:30px 0;border-top:1px solid hsla(0,0%,100%,.4);font-size:14px;color:#fff;line-height:20px;-webkit-text-size-adjust:none}.fancybox-caption a,.fancybox-caption button,.fancybox-caption select{pointer-events:all;position:relative}.fancybox-caption a{color:#fff;text-decoration:underline}.fancybox-slide>.fancybox-loading{border:6px solid hsla(0,0%,39%,.4);border-top:6px solid hsla(0,0%,100%,.6);border-radius:100%;height:50px;width:50px;-webkit-animation:a .8s infinite linear;animation:a .8s infinite linear;background:transparent;position:absolute;top:50%;left:50%;margin-top:-30px;margin-left:-30px;z-index:99999}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);opacity:0}.fancybox-fx-slide.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}.fancybox-fx-slide.fancybox-slide--current{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}.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{-webkit-transform:scale3d(1.5,1.5,1.5);transform:scale3d(1.5,1.5,1.5);opacity:0}.fancybox-fx-zoom-in-out.fancybox-slide--next{-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);opacity:0}.fancybox-fx-zoom-in-out.fancybox-slide--current{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:1}.fancybox-fx-rotate.fancybox-slide--previous{-webkit-transform:rotate(-1turn);transform:rotate(-1turn);opacity:0}.fancybox-fx-rotate.fancybox-slide--next{-webkit-transform:rotate(1turn);transform:rotate(1turn);opacity:0}.fancybox-fx-rotate.fancybox-slide--current{-webkit-transform:rotate(0deg);transform:rotate(0deg);opacity:1}.fancybox-fx-circular.fancybox-slide--previous{-webkit-transform:scale3d(0,0,0) translate3d(-100%,0,0);transform:scale3d(0,0,0) translate3d(-100%,0,0);opacity:0}.fancybox-fx-circular.fancybox-slide--next{-webkit-transform:scale3d(0,0,0) translate3d(100%,0,0);transform:scale3d(0,0,0) translate3d(100%,0,0);opacity:0}.fancybox-fx-circular.fancybox-slide--current{-webkit-transform:scaleX(1) translateZ(0);transform:scaleX(1) translateZ(0);opacity:1}.fancybox-fx-tube.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0) scale(.1) skew(-10deg);transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0) scale(.1) skew(10deg);transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}.fancybox-share{padding:30px;border-radius:3px;background:#f4f4f4;max-width:90%;text-align:center}.fancybox-share h1{color:#222;margin:0 0 20px;font-size:35px;font-weight:700}.fancybox-share p{margin:0;padding:0}p.fancybox-share__links{margin-right:-10px}.fancybox-share__button{display:inline-block;text-decoration:none;margin:0 10px 10px 0;padding:0 15px;min-width:130px;border:0;border-radius:3px;background:#fff;white-space:nowrap;font-size:14px;font-weight:700;line-height:40px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff;transition:all .2s}.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{position:relative;top:-1px;width:25px;height:25px;margin-right:7px;vertical-align:middle}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{box-sizing:border-box;width:100%;margin:10px 0 0;padding:10px 15px;background:transparent;color:#5d5b5b;font-size:14px;outline:none;border:0;border-bottom:2px solid #d7d7d7}.fancybox-thumbs{display:none;position:absolute;top:0;bottom:0;right:0;width:212px;margin:0;padding:2px 2px 4px;background:#fff;-webkit-tap-highlight-color:transparent;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;box-sizing:border-box;z-index:99995}.fancybox-thumbs-x{overflow-y:hidden;overflow-x:auto}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs>ul{list-style:none;position:absolute;position:relative;width:100%;height:100%;margin:0;padding:0;overflow-x:hidden;overflow-y:auto;font-size:0;white-space:nowrap}.fancybox-thumbs-x>ul{overflow:hidden}.fancybox-thumbs-y>ul::-webkit-scrollbar{width:7px}.fancybox-thumbs-y>ul::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y>ul::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs>ul>li{float:left;overflow:hidden;padding:0;margin:2px;width:100px;height:75px;max-width:calc(50% - 4px);max-height:calc(100% - 8px);position:relative;cursor:pointer;outline:none;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box}li.fancybox-thumbs-loading{background:rgba(0,0,0,.1)}.fancybox-thumbs>ul>li>img{position:absolute;top:0;left:0;max-width:none;max-height:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-thumbs>ul>li:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border:4px solid #4ea7f9;z-index:99991;opacity:0;transition:all .2s cubic-bezier(.25,.46,.45,.94)}.fancybox-thumbs>ul>li.fancybox-thumbs-active:before{opacity:1}@media (max-width:800px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs>ul>li{max-width:calc(100% - 10px)}}
/*!
 * FullCalendar v3.10.1
 * Docs & License: https://fullcalendar.io/
 * (c) 2019 Adam Shaw
 */.fc button,.fc table,body .fc{font-size:1em}.fc .fc-axis,.fc button,.fc-day-grid-event .fc-content,.fc-list-item-marker,.fc-list-item-time,.fc-time-grid-event .fc-time,.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc-event,.fc-event:hover,.fc-state-hover,.fc.fc-bootstrap3 a,.ui-widget .fc-event,a.fc-more{text-decoration:none}.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}.fc th,.fc-basic-view .fc-day-top .fc-week-number,.fc-basic-view td.fc-week-number,.fc-icon,.fc-toolbar{text-align:center}.fc-highlight{background:#bce8f1;opacity:.3}.fc-bgevent{background:#8fdf82;opacity:.3}.fc-nonbusiness{background:#d7d7d7}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;box-shadow:none}.fc-event.fc-draggable,.fc-event[href],.fc-popover .fc-header .fc-close,a[data-goto]{cursor:pointer}.fc-button-group{display:inline-block}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-bg table,.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc-bg{bottom:0}.fc table{width:100%;box-sizing:border-box;table-layout:fixed;border-collapse:collapse;border-spacing:0}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}a[data-goto]:hover{text-decoration:underline}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc .fc-row .fc-content-skeleton table,.fc .fc-row .fc-content-skeleton td,.fc .fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{-webkit-overflow-scrolling:touch}.fc-day-grid-event .fc-content,.fc-icon,.fc-row.fc-rigid,.fc-time-grid-event{overflow:hidden}.fc-scroller>.fc-day-grid,.fc-scroller>.fc-time-grid{position:relative;width:100%}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad}.fc-event,.fc-event-dot{background-color:#3a87ad}.fc-event,.fc-event:hover{color:#fff}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:4;display:none}.fc-event.fc-allow-mouse-resize .fc-resizer,.fc-event.fc-selected .fc-resizer{display:block}.fc-event.fc-selected .fc-resizer:before{content:"";position:absolute;z-index:9999;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px}.fc-event.fc-selected{z-index:9999!important;box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event.fc-selected.fc-dragging{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-h-event.fc-selected:before{content:"";position:absolute;z-index:3;top:-10px;bottom:-10px;left:0;right:0}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-ltr .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-end-resizer{cursor:w-resize;left:-1px}.fc-ltr .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-start-resizer{cursor:e-resize;right:-1px}.fc-h-event.fc-allow-mouse-resize .fc-resizer{width:7px;top:-1px;bottom:-1px}.fc-h-event.fc-selected .fc-resizer{border-radius:4px;border-width:1px;width:6px;height:6px;border-style:solid;border-color:inherit;background:#fff;top:50%;margin-top:-4px}.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,.fc-rtl .fc-h-event.fc-selected .fc-end-resizer{margin-left:-4px}.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,.fc-rtl .fc-h-event.fc-selected .fc-start-resizer{margin-right:-4px}.fc-day-grid-event{margin:1px 2px 0;padding:0 1px}tr:first-child>td>.fc-day-grid-event{margin-top:2px}.fc-day-grid-event.fc-selected:after{content:"";position:absolute;z-index:1;top:-1px;right:-1px;bottom:-1px;left:-1px;background:#000;opacity:.25}.fc-day-grid-event .fc-time{font-weight:700}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer{margin-left:-2px}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer{margin-right:-2px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width:220px}.fc-more-popover .fc-event-container{padding:10px}.fc-bootstrap3 .fc-popover .panel-body,.fc-bootstrap4 .fc-popover .card-body{padding:0}.fc-now-indicator{position:absolute;border:0 solid red}.fc-bootstrap3 .fc-today.alert,.fc-bootstrap4 .fc-today.alert{border-radius:0}.fc-unselectable{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-list-view,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff;border-width:1px;border-style:solid}.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-popover .fc-header{background:#eee}.fc-unthemed td.fc-today{background:#fcf8e3}.fc-unthemed .fc-disabled-day{background:#d7d7d7;opacity:.3}.fc-icon{display:inline-block;height:1em;line-height:1em;font-size:1em;font-family:"Courier New",Courier,monospace;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative}.fc-icon-left-single-arrow:after{content:"\2039";font-weight:700;font-size:200%;top:-7%}.fc-icon-right-single-arrow:after{content:"\203A";font-weight:700;font-size:200%;top:-7%}.fc-icon-left-double-arrow:after{content:"\AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\D7";font-size:200%;top:6%}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666;font-size:.9em;margin-top:2px}.fc-unthemed .fc-list-item:hover td{background-color:#f5f5f5}.ui-widget .fc-disabled-day{background-image:none}.fc-bootstrap3 .fc-time-grid .fc-slats table,.fc-bootstrap4 .fc-time-grid .fc-slats table,.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-bootstrap3 hr.fc-divider,.fc-bootstrap4 hr.fc-divider{border-color:inherit}.ui-widget .fc-event{color:#fff;font-weight:400}.ui-widget td.fc-axis{font-weight:400}.fc.fc-bootstrap3 a[data-goto]:hover{text-decoration:underline}.fc.fc-bootstrap4 a{text-decoration:none}.fc.fc-bootstrap4 a[data-goto]:hover{text-decoration:underline}.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]){color:#fff}.fc-bootstrap4 .fc-popover.card{position:absolute}.fc-toolbar.fc-header-toolbar{margin-bottom:1em}.fc-toolbar.fc-footer-toolbar{margin-top:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-day-top.fc-other-month{opacity:.3}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:2px}.fc-basic-view th.fc-day-number,.fc-basic-view th.fc-week-number{padding:0 2px}.fc-ltr .fc-basic-view .fc-day-top .fc-day-number{float:right}.fc-rtl .fc-basic-view .fc-day-top .fc-day-number{float:left}.fc-ltr .fc-basic-view .fc-day-top .fc-week-number{float:left;border-radius:0 0 3px}.fc-rtl .fc-basic-view .fc-day-top .fc-week-number{float:right;border-radius:0 0 0 3px}.fc-basic-view .fc-day-top .fc-week-number{min-width:1.5em;background-color:#f2f2f2;color:grey}.fc-basic-view td.fc-week-number>*{display:inline-block;min-width:1.25em}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3;position:relative}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event.fc-selected{overflow:visible}.fc-time-grid-event.fc-selected .fc-bg{display:none}.fc-time-grid-event .fc-content{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\A0-\A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after{content:"="}.fc-time-grid-event.fc-selected .fc-resizer{border-radius:5px;border-width:1px;width:8px;height:8px;border-style:solid;border-color:inherit;background:#fff;left:50%;margin-left:-5px;bottom:-5px}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent}.fc-event-dot{display:inline-block;width:10px;height:10px;border-radius:5px}.fc-rtl .fc-list-view{direction:rtl}.fc-list-view{border-width:1px;border-style:solid}.fc .fc-list-table{table-layout:auto}.fc-list-table td{border-width:1px 0 0;padding:8px 14px}.fc-list-table tr:first-child td{border-top-width:0}.fc-list-heading{border-bottom-width:1px}.fc-list-heading td{font-weight:700}.fc-ltr .fc-list-heading-main{float:left}.fc-ltr .fc-list-heading-alt,.fc-rtl .fc-list-heading-main{float:right}.fc-rtl .fc-list-heading-alt{float:left}.fc-list-item.fc-has-url{cursor:pointer}.fc-list-item-marker,.fc-list-item-time{width:1px}.fc-ltr .fc-list-item-marker{padding-right:0}.fc-rtl .fc-list-item-marker{padding-left:0}.fc-list-item-title a{text-decoration:none;color:inherit}.fc-list-item-title a[href]:hover{text-decoration:underline}.fc-list-empty-wrap2{position:absolute;top:0;left:0;right:0;bottom:0}.fc-list-empty-wrap1{width:100%;height:100%;display:table}.fc-list-empty{display:table-cell;vertical-align:middle;text-align:center}.fc-unthemed .fc-list-empty{background-color:#eee}
div.zabuto_calendar{margin:0;padding:0}div.zabuto_calendar .table{width:100%;margin:0;padding:0}div.zabuto_calendar .table th,div.zabuto_calendar .table td{padding:4px 2px;text-align:center}div.zabuto_calendar .table tr th,div.zabuto_calendar .table tr td{background-color:#fff}div.zabuto_calendar .table tr:last-child{border-bottom:1px solid #ddd}div.zabuto_calendar .table tr.calendar-month-header td{background-color:#fafafa;font-weight:bold}div.zabuto_calendar .table tr.calendar-month-header td span{cursor:pointer;display:inline-block;padding-bottom:10px}div.zabuto_calendar .table tr.calendar-month-header td{padding-top:12px;padding-bottom:4px}div.zabuto_calendar .table-bordered tr.calendar-month-header td{border-left:0;border-right:0}div.zabuto_calendar .table-bordered tr.calendar-month-header td:first-child{border-left:1px solid #ddd}div.zabuto_calendar div.calendar-month-navigation{cursor:pointer;margin:0;padding:0;padding-top:5px}div.zabuto_calendar .table tr.calendar-dow-header th{background-color:#f0f0f0}div.zabuto_calendar tr.calendar-dow-header th,div.zabuto_calendar tr.calendar-dow td{width:14%}div.zabuto_calendar .table tr td div.day{margin:0;padding-top:7px;padding-bottom:7px}div.zabuto_calendar .table tr td.event div.day,div.zabuto_calendar ul.legend li.event{background-color:#fff0c3}div.zabuto_calendar .table tr td.dow-clickable,div.zabuto_calendar .table tr td.event-clickable{cursor:pointer}div.zabuto_calendar .badge-today,div.zabuto_calendar div.legend span.badge-today{background-color:#357ebd;color:#fff;text-shadow:none}div.zabuto_calendar .badge-event,div.zabuto_calendar div.legend span.badge-event{background-color:#ff9b08;color:#fff;text-shadow:none}div.zabuto_calendar .badge-event{font-size:.95em;padding-left:8px;padding-right:8px;padding-bottom:4px}div.zabuto_calendar div.legend{margin-top:5px;text-align:right}div.zabuto_calendar div.legend span{color:#999;font-size:10px;font-weight:normal}div.zabuto_calendar div.legend span.legend-text:after,div.zabuto_calendar div.legend span.legend-block:after,div.zabuto_calendar div.legend span.legend-list:after,div.zabuto_calendar div.legend span.legend-spacer:after{content:' '}div.zabuto_calendar div.legend span.legend-spacer{padding-left:25px}div.zabuto_calendar ul.legend>span{padding-left:2px}div.zabuto_calendar ul.legend{display:inline-block;list-style:none outside none;margin:0;padding:0}div.zabuto_calendar ul.legend li{display:inline-block;height:11px;width:11px;margin-left:5px}div.zabuto_calendar ul.legend,div.zabuto_calendar ul.legend li:first-child{margin-left:7px}div.zabuto_calendar ul.legend li:last-child{margin-right:5px}div.zabuto_calendar div.legend span.badge{font-size:.9em;border-radius:5px 5px 5px 5px;padding-left:5px;padding-right:5px;padding-top:2px;padding-bottom:3px}@media(max-width:979px){div.zabuto_calendar .table th,div.zabuto_calendar .table td{padding:2px 1px}}
/***

====================================================================
	Reset
====================================================================

 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
}

/***

====================================================================
	Global Settings
====================================================================

 ***/

body {

    font-size: 14px;
    color: #787878;
    line-height: 24px;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #49c7ed;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-weight: normal;
    margin: 0px;
    background: none;
    line-height: 1.2em;
    font-family: 'Poppins', sans-serif;
}

textarea {
    overflow: hidden;
}

button {
    outline: none !important;
    cursor: pointer;
}

p, .text {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #555555;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.large-container {
    position: static;
    max-width: 1570px;
    padding: 0px 15px;
    margin: 0 auto;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
    z-index: 9;
}

ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.theme-btn {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.theme-btn i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}

.centered {
    text-align: center !important;
}

/*Btn Style One*/
.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    background-color: #e43838;
    letter-spacing: .2em;
    font-family: "Open Sans", sans-serif;
}

.btn-style-one:hover {
    background-color: #093057;
    color: #ffffff;
}

/*Btn Style Two*/
.btn-style-two {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 500;
    border-radius: 3px;
    background-color: #395d9c;
}

.btn-style-two:hover {
    background-color: #eb4343;
    color: #ffffff;
}

/*Btn Style Three*/
.btn-style-three {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    color: #e43838;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid #e43838;
    letter-spacing: .2em;
    font-family: "Open Sans", sans-serif;
}

.btn-style-three:hover {
    background-color: #e43838;
    color: #ffffff;
}

/*=== List Style One ===*/

.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    font-size: 17px;
    line-height: 24px;
    color: #242424;
    font-weight: 500;
    padding-left: 35px;
    margin-bottom: 10px;
    font-family: "Lato", sans-serif;
}

.list-style-one li a {
    color: #242424;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.list-style-one li:before {
    position: absolute;
    left: 0;
    top: 5px;
    height: 14px;
    width: 14px;
    background-image: url(../images/icons/icon-check.png);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
}

/*=== List Style Two ===*/

.list-style-two {
    position: relative;
}

.list-style-two li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #797979;
    font-weight: 400;
    padding-left: 35px;
    margin-bottom: 14px;
}

.list-style-two li a {
    color: #797979;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.list-style-two li:before {
    position: absolute;
    left: 0;
    top: 4px;
    height: 17px;
    width: 17px;
    background-image: url(../images/icons/icon-check-2.png);
    content: "";
}

.list-style-one li a:hover {
    color: #44bce2;
}

.theme_color {
    color: #49c7ed;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.svg);
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.dropdown-toggle::after {
    display: none;
}

.social-icon-one {
    position: relative;
}

.social-icon-one li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.social-icon-one li a {
    position: relative;
    display: block;
    height: 36px;
    width: 36px;
    font-size: 16px;
    line-height: 34px;
    color: #ffffff;
    text-align: center;
    border: 1px solid #858585;
    border-radius: 20px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social-icon-one li a:hover {
    color: #eb4343;
    border-color: #eb4343;
}

/***

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    color: #ffffff;
    font-size: 24px;
    line-height: 60px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: #1b1a1c;
    display: none;
    border-radius: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.scroll-to-top:hover {
    background: #49c7ed;
}

.tabs-box {
    position: relative;
}

.tabs-box .tab {
    display: none;
}

.tabs-box .tab.active-tab {
    display: block;
}

/***

====================================================================
	Main Header
====================================================================

***/

.main-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
}

.main-header .header-top {
    position: relative;
}

.main-header .top-left {
    position: relative;
    padding: 20px 0;
}

.main-header .top-left .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-family: "Poppins", sans-serif;
}

.main-header .top-left .text span {
    float: left;
    font-size: 22px;
    opacity: .50;
    color: #ffffff;
    margin-right: 10px;
}

.main-header .top-right {
    position: relative;
    padding: 20px 0;
}

.main-header .top-right .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-family: "Poppins", sans-serif;
}

.main-header .top-right .text a {
    display: inline-block;
    float: right;
    font-size: 24px;
    line-height: 30px;
    color: #fa2a2a;
    font-weight: 600;
    margin-left: 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .top-right .text a:hover {
    color: #ffffff;
}

/*=== Header Lower ===*/

.main-header .header-lower {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99999;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .header-lower .inner-container {
    position: relative;
    background: rgb(35, 103, 157);
    background: -moz-linear-gradient(left, rgba(35, 103, 157, 1) 0%, rgba(17, 60, 115, 1) 70%);
    background: -webkit-linear-gradient(left, rgba(35, 103, 157, 1) 0%, rgba(17, 60, 115, 1) 70%);
    background: linear-gradient(to right, rgba(35, 103, 157, 1) 0%, rgba(17, 60, 115, 1) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#23679d', endColorstr='#113c73', GradientType=1);
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.20);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .header-lower .logo-outer {
    position: relative;
    float: left;
    padding: 17.5px 25px;
    padding-right: 0;
    background-color: #e5effc;
}

.main-header .header-lower .logo-outer:before {
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
    width: 65px;
    margin-left: -30px;
    background-color: #e5effc;
    content: "";
    -webkit-transform: skew(-35deg);
    -moz-transform: skew(-35deg);
    -ms-transform: skew(-35deg);
    -o-transform: skew(-35deg);
    transform: skew(-35deg);
}

.main-header .header-lower .logo {
    position: relative;

}

.logo {
    width: 280px;
    height: auto;
}

.main-header .header-lower .nav-outer {
    position: relative;
    float: right;
    padding-right: 30px;
}

.main-menu {
    position: relative;
    float: left;
    font-family: "Poppins", sans-serif;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
}

.main-menu .navigation > li {
    position: relative;
    float: left;
    padding: 27.5px 0px;
    margin-left: 40px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    opacity: 1;
    color: #ffffff;
    padding: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a {
    color: #eb4343 !important;
}

.main-menu .navigation > li > ul {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 250px;
    z-index: 100;
    display: none;
    background: #f6f6f6;
    padding: 10px 0px;
    border-top: 3px solid #eb4343;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation > li > ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation > li > ul > li {
    position: relative;
    padding: 0px 20px;
    width: 100%;
}

.main-menu .navigation > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    line-height: 24px;
    font-weight: 500;
    font-size: 15px;
    color: #242424;
    text-align: left;
    text-transform: capitalize;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0px;
    border-bottom: 2px solid #eb4343;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

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

.main-menu .navigation > li > ul > li:last-child > a:after {
    display: none;
}

.main-menu .navigation > li > ul > li:hover > a {
    color: #eb4343;
}

.main-menu .navigation > li > ul > li:hover > a:after {
    width: 100%;
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 250px;
    z-index: 100;
    display: none;
    background: #f6f6f6;
    padding: 10px 0px;
    border-top: 3px solid #eb4343;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    padding: 0px 20px;
    width: 100%;
}

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

.main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    line-height: 24px;
    font-weight: 500;
    font-size: 15px;
    color: #242424;
    text-align: left;
    text-transform: capitalize;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li > a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0px;
    border-bottom: 2px solid #eb4343;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

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

.main-menu .navigation > li > ul > li > ul > li:last-child > a:after {
    display: none;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a {
    color: #eb4343;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a:after {
    width: 100%;
}

.main-menu .navigation > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 0%;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .header-lower .outer-box {
    position: relative;
    float: right;
    padding-left: 20px;
    margin-left: 20px;
}

.main-header .header-lower .outer-box:before {
    position: absolute;
    left: 0;
    top: 35px;
    height: 15px;
    background-color: #ffffff;
    width: 1px;
    content: "";
}

/*search box btn*/

.main-header .search-box-outer {
    position: relative;
    float: left;
    padding: 27.5px 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .search-box-btn {
    position: relative;
    height: 30px;
    cursor: pointer;
    background: none;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .search-box-btn:hover {
    color: #e54343;
}

.dropdown-toggle::after {
    display: none;
}

.main-header .search-box-outer .dropdown-menu {
    top: 56px !important;
    left: auto !important;
    right: 0;
    padding: 0px;
    width: 280px;
    border-radius: 0px;
    transform: none !important;
    border-top: 3px solid #eb4343;
}

.main-header .search-panel .form-container {
    padding: 25px 20px;
}

.main-header .search-panel .form-group {
    position: relative;
    margin: 0px;
}

.main-header .search-panel input[type="text"],
.main-header .search-panel input[type="search"],
.main-header .search-panel input[type="password"],
.main-header .search-panel select {
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 7px 40px 7px 15px;
    height: 40px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
}

.main-header .search-panel input:focus,
.main-header .search-panel select:focus {
    border-color: #25262c;
}

.main-header .search-panel .search-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #555555;
    font-size: 12px;
    background: none;
    cursor: pointer;
}

/***

====================================================================
		Sticky Header
====================================================================

***/

.main-header.fixed-header .header-lower,
.header-style-three.fixed-header .header-lower,
.header-style-two.fixed-header .header-upper {
    position: fixed;
    top: 0;
    bottom: auto;
}

.header-style-three.fixed-header .header-upper {
    background-color: rgba(13, 32, 61, 0.90);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.main-header.fixed-header .header-lower .inner-container {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
    /*color: #e54343;*/
}

/***

====================================================================
		Header Style Two
====================================================================

***/

.header-style-two {
    position: relative;
    display: block;
    padding-bottom: 100px;
}

.header-style-two .header-upper {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    background: rgb(250, 246, 243);
    background: -moz-linear-gradient(top, rgba(250, 246, 243, 1) 0%, rgba(231, 231, 231, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(250, 246, 243, 1) 0%, rgba(231, 231, 231, 1) 100%);
    background: linear-gradient(to bottom, rgba(250, 246, 243, 1) 0%, rgba(231, 231, 231, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faf6f3', endColorstr='#e7e7e7', GradientType=0);
}

.header-style-two .header-top {
    position: relative;
    z-index: 999999;
    background: rgb(35, 103, 157);
    background: -moz-linear-gradient(left, rgba(35, 103, 157, 1) 0%, rgba(17, 60, 115, 1) 70%);
    background: -webkit-linear-gradient(left, rgba(35, 103, 157, 1) 0%, rgba(17, 60, 115, 1) 70%);
    background: linear-gradient(to right, rgba(35, 103, 157, 1) 0%, rgba(17, 60, 115, 1) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#23679d', endColorstr='#113c73', GradientType=1);
}

.header-style-two .top-left {
    position: relative;
    float: left;
    padding: 10px 0;
}

.header-style-two .top-left .text {
    float: left;
    font-size: 15px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
}

.header-style-two .top-left .text .icon {
    float: left;
    line-height: 30px;
    margin-right: 10px;
}

.header-style-two .top-left .text span {
    font-weight: 600;
    font-size: 19px;
}

.header-style-two .header-top .info-list {
    position: relative;
    float: left;
    font-family: "Open Sans", sans-serif;
}

.header-style-two .header-top .info-list li {
    position: relative;
    float: left;
    font-size: 15px;
    line-height: 30px;
    color: #d4c0cd;
    font-weight: 400;
    padding: 10px 0;
    margin-right: 20px;
    padding-right: 20px;
}

.header-style-two .header-top .info-list li i {
    margin-right: 10px;
}

.header-style-two .header-top .info-list li:before {
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 15px;
    line-height: 30px;
    color: #d4c0cd;
    font-weight: 400;
    content: "|";
}

/*.header-style-two .header-top .info-list > li:last-child:before{
	display: none;
}*/

.header-style-two .header-top .info-list > li > a {
    color: #d4c0cd;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header-style-two .header-top .info-list > li > a:hover {
    color: #ffffff;
}

/* Top Right*/
.header-style-two .top-right {
    position: relative;
    float: right;
    padding: 0;
}

/*=== Language ===*/

.main-header .top-right .language {
    float: right;
    padding: 10px 0;
    font-family: "Poppins", sans-serif;
}

.main-header .language {
    position: relative;
    float: left;
}

.main-header .language .dropdown-menu {
    top: 100% !important;
    left: auto !important;
    right: 0px !important;
    transform: none !important;
    width: 170px;
    border-radius: 0px;
    background-color: #0e2753;
    border: none;
    padding: 0px;
    margin-top: 0px;
    border-top: 2px solid #e43838;
}

.main-header .language > a {
    width: auto !important;
    height: auto !important;
    font-size: 15px;
    line-height: 30px;
    color: #d4c0cd;
    background: none !important;
    display: inline-block;
    border: 0px;
    font-weight: 400;
}

.main-header .language > a .icon {
    margin-left: 3px;
    font-size: 12px;
}

.main-header .language a:hover {
    background: none;
}

.main-header .language .dropdown-menu > li {
    padding-right: 0px !important;
    margin: 0px !important;
    padding: 0;
    float: none;
    display: block !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.main-header .language .dropdown-menu > li:before {
    content: none;
}

.main-header .language .dropdown-menu > li:last-child {
    border-bottom: none;
}

.main-header .language .dropdown-menu > li > a {
    padding: 6px 20px !important;
    width: auto;
    height: auto;
    display: block;
    color: #ffffff;
    text-align: left;
    border-radius: 0px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .language .dropdown-menu > li > a:hover {
    color: #ffffff !important;
    background-color: #eb4343;
}

.header-style-two .header-upper .logo-outer {
    float: left;
    padding: 25px 0;
}

.header-style-two .nav-outer {
    position: relative;
    float: right;
}

.header-style-two .main-menu {
    position: relative;
    float: left;
}

.header-style-two .main-menu .navigation > li {
    padding: 35px 0;
    margin-right: 0;
    margin-left: 30px;
}

.header-style-two .main-menu .navigation > li:last-child {
    margin-right: 0;
}

.header-style-two .main-menu .navigation > li:before {
    display: none;
}

.header-style-two .main-menu .navigation > li > a {
    color: #242424;
    font-size: 17px;
    font-family: "Poppins", sans-serif;
}

.header-style-two .outer-box {
    position: relative;
    float: right;
    padding: 30px 0;
    margin-left: 20px;
}

.header-style-two .outer-box .theme-btn {
    padding: 10px 24px;
    line-height: 20px;
    font-size: 13px;
}

/***

====================================================================
		Header Style Three
====================================================================

***/

.header-style-three {
    position: relative;
    display: block;
    padding-bottom: 70px;
}

.header-style-three .header-upper {
    position: relative;
    width: 100%;
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(227, 229, 231, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(227, 229, 231, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(227, 229, 231, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e3e5e7', GradientType=0);
}

.header-style-three .logo-outer {
    position: relative;
    float: left;
    padding: 30px 0;
}

.header-style-three .logo-outer .logo {
    position: relative;
}

.header-style-three .logo-outer .logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.header-style-three .upper-right {
    position: relative;
    float: right;
}

.header-style-three .upper-right .info-box {
    position: relative;
    float: left;
    margin-left: 40px;
    padding: 20px 0;
}

.header-style-three .address-box .text {
    font-size: 16px;
    line-height: 1.2em;
    color: #797979;
    font-weight: 400;
    padding: 16px 0;
}

.header-style-three .upper-right .phone-box {
    padding: 29px 0;
}

.header-style-three .phone-box span {
    display: block;
    font-size: 16px;
    color: #242424;
    font-weight: 400;
}

.header-style-three .phone-box h3 {
    font-size: 24px;
    color: #fa2a2a;
    font-weight: 600;
}

.header-style-three .upper-right .btn-box {
    position: relative;
    padding: 31px 0;
}

.header-style-three .btn-box a {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0;
    text-transform: unset;
    border-radius: 50px;
    padding: 10px 35px;
}

.header-style-three .header-lower {
    position: absolute;
    left: 0;
    bottom: 0;
}

.header-style-three .header-lower .inner-container {
    background: rgb(12, 154, 193);
    background: -moz-linear-gradient(top, rgba(12, 154, 193, 1) 40%, rgba(12, 131, 193, 1) 60%);
    background: -webkit-linear-gradient(top, rgba(12, 154, 193, 1) 40%, rgba(12, 131, 193, 1) 60%);
    background: linear-gradient(to bottom, rgba(12, 154, 193, 1) 40%, rgba(12, 131, 193, 1) 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c9ac1', endColorstr='#0c83c1', GradientType=0);
    box-shadow: none;
}

.header-style-three .header-lower .nav-outer {
    float: left;
    padding-right: 0;
}

.header-style-three .main-menu .navigation > li {
    margin-left: 0;
    margin-right: 70px;
    padding: 20px 0;
}

.header-style-three .main-menu .navigation > li:last-child {
    margin-right: 0;
}

.header-style-three .main-menu .navigation > li > a {
}

.header-style-three .search-box-outer {
    padding: 20px 0;
}

.header-style-three .header-lower .outer-box:before {
    top: 25px;
    height: 20px;
    opacity: .50;
    background-color: #ffffff;
}

.header-style-three .header-lower .outer-box {
    float: left;
}

.header-style-three .search-box-btn {
    font-weight: 400;
}

/***

====================================================================
		Mobile Menu Style
====================================================================

***/
.nav-outer .mobile-nav-toggler {
    position: relative;
    display: none;
}

.nav-outer .mobile-nav-toggler .icon {
    display: block;
    font-size: 30px;
    line-height: 40px;
    cursor: pointer;
    color: #ffffff;
    padding: 14px 0px;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 20px 20px;
    text-align: left;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.90);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 3px;
    top: 3px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-size: 14px;
    color: #202020;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.mobile-menu .close-btn:hover {
    opacity: 0.50;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li,
.mo_feedback li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li > ul > li:last-child,
.mo_feedback li > ul > li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li > ul > li:first-child,
.mo_feedback li > ul > li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li > a,
.mo_feedback li > a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 15px;
    color: #404040;
    text-transform: capitalize;
}

.mobile-menu .navigation li.current > a,
.mobile-menu .navigation li > a:hover,
.mo_feedback li > a:hover {
    color: #eb4343;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: #404040;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
    display: none;
}

/***

====================================================================
		Page Title
====================================================================

***/

.page-title {
    position: relative;
    padding: 210px 0px 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #1f5f96;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.page-title .auto-container {
    position: relative;
}

.page-title h1 {
    position: relative;
    font-size: 50px;
    color: #ffffff;
    line-height: 1em;
    font-weight: 600;
    margin-bottom: 18px;
}

.page-title .bread-crumb li {
    position: relative;
    font-size: 14px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 400;
    margin-right: 8px;
    padding-right: 10px;
    cursor: default;
    display: inline-block;
}

.page-title .bread-crumb li a {
    color: #7fb8f5;
    font-size: 14px;
    line-height: 25px;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.page-title .bread-crumb li.active a,
.page-title .bread-crumb li a:hover {
    color: #7fb8f5;
}

.page-title .bread-crumb li:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    right: -5px;
    font-weight: 900;
    top: 0px;
    color: #ffffff;
    content: "\f105";
}

.page-title .bread-crumb li:last-child::after {
    display: none;
}

.page-title .bread-crumb li:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.page-title .image-box {
    position: absolute;
    right: 45px;
    bottom: -200px;
}

.page-title .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.page-title .image-box .image img {
    max-width: 100%;
    height: auto;
}

/***

====================================================================
		Section Title
====================================================================

***/

.sec-title {
    position: relative;
    margin-bottom: 60px;
    z-index: 1;
    margin-top: -3px;
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #181e44;
    font-weight: 400;
    font-style: italic;
    font-family: "Playfair Display", sans-serif;
    margin-bottom: 10px;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 35px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    margin-top: -3px;
}

.sec-title .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #797979;
    font-weight: 400;
    margin-top: 24px;
}

.sec-title.style-two h2 {
    padding-bottom: 20px;
}

.sec-title.style-two h2:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 55px;
    background-color: #e43838;
    content: "";
}

.sec-title.text-center h2:before {
    right: 0;
    margin: 0 auto;
}

/***

====================================================================
		Banner Section
====================================================================

***/

.banner-section {
    position: relative;
    background-repeat: no-repeat;
    background-color: #082a53;
    background-position: center;
    background-size: cover;
    padding: 285px 0 0;
    z-index: 1;
}

.banner-section .auto-container {
    position: relative;
}

.banner-section .content-box {
    position: relative;
    float: left;
    max-width: 700px;
    width: 100%;
    padding-left: 15px;
    padding-bottom: 90px;
}

.banner-section .content-box h2 {
    position: relative;
    font-size: 48px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-section .content-box h2 span {
    position: relative;
    display: block;
    font-style: italic;
    font-size: 35px;
    line-height: 1.3em;
    font-family: 'Playfair Display', serif;
}

.banner-section .content-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 29px;
    color: #ffffff;
    font-weight: 400;
    opacity: .80;
    margin-bottom: 22px;
}

.banner-section .content-box .bold-text {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 600;
    font-style: italic;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 45px;
}

.banner-section .content-box .info-box {
    position: relative;
    display: inline-block;
    padding: 17px 55px;
    padding-left: 100px;
    font-size: 25px;
    line-height: 39px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.11);
    background: rgb(255, 210, 102);
    background: -moz-linear-gradient(top, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd266', endColorstr='#f8a513', GradientType=0);
}

.banner-section .content-box .info-box .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 76px;
    width: 76px;
    line-height: 76px;
    font-size: 38px;
    text-align: center;
    border-radius: 50%;
    background-color: #0c223e;
    color: #ffffff;
}

.banner-section .content-box .info-box strong {
    font-size: 32px;
    font-weight: 700;
    margin-left: 10px;
}

.banner-section .content-box .info-box strong a {
    color: #000000;
}


.banner-section .content-box .style-font {
    font-size: 28px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Dancing Script', cursive;
}

.banner-section .image-box {
    position: absolute;
    right: 35px;
    top: -145px;
    z-index: 1;
}

.banner-section .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.banner-section .image-box .image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.banner-section .banner-base {
    position: relative;
    display: block;
    padding: 40px 0 20px;
    background-color: #eaf7ff;
    box-shadow: 0 0 46px rgba(0, 0, 0, 0.20);
}

.banner-section .banner-base .images-box {
    position: relative;
}

.banner-section .banner-base .image {
    position: relative;
    float: left;
    margin-right: 50px;
    margin-bottom: 0;
}

/***

====================================================================
		Banner Section Two
====================================================================

***/

.banner-section-two {
    position: relative;
}

.banner-section-two .slide-item {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #082a53;
    z-index: 1;
}

.banner-section-two .slide-item:after,
.banner-section-two .slide-item:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/icons/gradient-1.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    content: "";
}

.banner-section-two .slide-item:after {
    position: absolute;
    left: 0;
    top: 0;
    background-image: none;
    background-color: rgba(0, 0, 0, .20);
}

.banner-section-two .auto-container {
    position: relative;
}

.banner-section-two .content-box {
    position: relative;
    height: 720px;
    display: table;
    vertical-align: middle;
}

.banner-section-two .content-box .inner {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    z-index: 9;
    max-width: 700px;
    width: 100%;
    padding-left: 0;
}

.banner-section-two .content-box h2 {
    position: relative;
    font-size: 48px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-section-two .content-box h2 span {
    position: relative;
    display: block;
    font-style: italic;
    font-size: 35px;
    line-height: 1.3em;
    font-family: 'Playfair Display', serif;
}

.banner-section-two .active .content-box h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
}


.banner-section-two .content-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 29px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 22px;
    opacity: 0;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-section-two .active .content-box .text {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.banner-section-two .content-box .bold-text {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 600;
    font-style: italic;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 45px;
    opacity: 0;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-section-two .active .content-box .bold-text {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 750ms;
    -moz-transition-delay: 750ms;
    -ms-transition-delay: 750ms;
    -o-transition-delay: 750ms;
    transition-delay: 750ms;
}

.sp_btn {
    position: relative;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sp_btn a {

    background-color: #e43838;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-size: 22px;
    padding: 20px 30px 20px 100px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #854629;
    position: relative;
}

.sp_btn a:before {
    content: "";
    background-image: url(../images/iconfinder_document-09_1622827.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 110px;
    width: 110px;
    padding: 15px;
    display: block;
    position: absolute;
    left: -18px;
    top: -30px;
}

.sp_btn a:after {
    content: "";
    background-image: url(../images/iconfinder_Calender_Month_65514.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 50px;
    width: 50px;
    padding: 15px;
    display: block;
    position: absolute;
    left: -17px;
    top: 25px;
}

.sp_btn {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
    margin-top: 15px;
}

.sp_btn a:hover {

    background-color: #093057;
}

.main-footer .sp_btn a:before {
    content: "";
    background-image: url(../images/iconfinder_document-09_1622827.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 80px;
    width: 80px;
    padding: 15px;
    display: block;
    position: absolute;
    left: -18px;
    top: -12px;
}

.main-footer .sp_btn a {
    background-color: #e43838;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-size: 16px;
    padding: 15px 15px 15px 70px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #854629;
    position: relative;
}

.main-footer .sp_btn a::after {
    height: 38px;
    width: 45px;
}

.main-footer .sp_btn a:hover {

    background-color: #093057;
}

/***

====================================================================
		Banner Section Three
====================================================================

***/

.banner-section-three {
    position: relative;
    padding: 0;
    z-index: 1;
}

.banner-section-three .banner-carousel {
    position: relative;
}

.banner-section-three .slide-item {
    position: relative;
    background-color: #0c9ac1;
    overflow: hidden;
}

.banner-section-three .auto-container {
    position: relative;
}

.banner-section-three .slide-item .outer-box {
    position: relative;
    display: table;
    width: 100%;
    vertical-align: middle;
    min-height: 630px;
}

.banner-section-three .content-box {
    position: relative;
    z-index: 9;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.banner-section-three .content-box .inner {
    position: relative;
    float: right;
    width: 100%;
    max-width: 590px;
}

.banner-section-three .content-box h2 {
    position: relative;
    font-size: 48px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 35px;
    opacity: 0;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-section-three .content-box h2 span {
    position: relative;
    display: block;
    font-style: italic;
    font-size: 35px;
    line-height: 1.3em;
    font-family: 'Playfair Display', serif;
}

.banner-section-three .active .content-box h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.banner-section-three .content-box .text {
    opacity: 0;
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 29px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 25px;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-section-three .active .content-box .text {
    opacity: 1;
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.banner-section-three .content-box .bold-text {
    display: block;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 600;
    font-style: italic;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 50px;
    opacity: 0;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-section-three .active .content-box .bold-text {
    opacity: 1;
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.banner-section-three .content-box .info-box {
    display: inline-block;
    padding: 17px 55px;
    padding-left: 100px;
    font-size: 25px;
    line-height: 39px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.02em;
    opacity: 0;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.11);
    background: rgb(255, 210, 102);
    background: -moz-linear-gradient(top, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd266', endColorstr='#f8a513', GradientType=0);
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.banner-section-three .content-box .info-box .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 76px;
    width: 76px;
    line-height: 76px;
    font-size: 38px;
    text-align: center;
    border-radius: 50%;
    background-color: #0c223e;
    color: #ffffff;
}

.banner-section-three .content-box .info-box strong {
    font-size: 32px;
    font-weight: 700;
    margin-left: 10px;
}

.banner-section-three .content-box .info-box strong a {
    color: #000000;
    letter-spacing: 0;
}

.banner-section-three .active .content-box .info-box {
    opacity: 1;
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.banner-section-three .image-box {
    position: absolute;
    left: 0;
    bottom: 0;
}

.banner-section-three .image-box .image {
    margin-left: -210px;
    margin-bottom: 0;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
}

.banner-section-three .image-box .image img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.banner-section-three .active .image-box .image {
    opacity: 1;
    -webkit-transition-delay: 1250ms;
    -moz-transition-delay: 1250ms;
    -ms-transition-delay: 1250ms;
    -o-transition-delay: 1250ms;
    transition-delay: 1250ms;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.banner-section-three .image-box.style-two .image {
    margin-left: 70px;
    margin-bottom: -30px;
}

.banner-carousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -25px;
    z-index: 99;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-carousel:hover .owl-nav {
    opacity: 1;
}

.banner-carousel .owl-prev,
.banner-carousel .owl-next {
    position: absolute;
    top: 0;
    left: 50px;
    height: 50px;
    width: 50px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.20);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-carousel .owl-next {
    left: auto;
    right: 50px;
}

.banner-carousel .owl-prev:hover,
.banner-carousel .owl-next:hover {
    background-color: #ffffff;
    color: #222222;
}

/***

====================================================================
		About Section
====================================================================

***/

.about-section {
    position: relative;
    padding: 100px 0 40px;
}

.about-section.alternate:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 1170px;
    margin: 0 auto;
    border-bottom: 1px solid #cacaca;
    content: "";
}

.about-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .content-column .inner-column {
    position: relative;
    padding-right: 10px;
}

.about-section .content-column h2 {
    top: -10px;
    font-size: 35px;
    line-height: 51px;
    color: #073d60;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-section .content-column .text {
    font-size: 16px;
    line-height: 26px;
    color: #797979;
    font-weight: 400;
    margin-bottom: 30px;
}

.about-section .content-column .light-text {
    font-size: 20px;
    line-height: 30px;
    color: #0e2a4e;
    font-weight: 300;
    font-family: "Open Sans", sans-serif;
}

.about-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .image-column .inner-column {
    position: relative;
    padding-left: 30px;
}

.about-section .image-column .image-1,
.about-section .image-column .image-2,
.about-section .image-column .image-3 {
    position: relative;
    margin-bottom: 10px;
}

.about-section .image-column .image-1 img {
    width: 100%;
}

.about-section .image-column .image-2 {
    float: left;
    margin-top: -30px;
    border-top: 10px solid #ffffff;
    border-right: 10px solid #ffffff;
}

@supports (-ms-ime-align:auto) {
    .about-section .image-column .image-3 img {
        width: 208px !important;
    }
}


/***

====================================================================
		Services Section
====================================================================

***/

.services-section {
    position: relative;
    padding: 100px 0 50px;
}

.services-section .btns-column {
    position: relative;
    margin-bottom: 50px;
}

.services-section .btns-column .buttons-list:before {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    content: "";
    height: 100%;
    background-color: #113c73;
}

.services-section .btns-column .buttons-list {
    position: relative;
    display: block;
    padding: 15px 25px 12px;
}

.services-section .btns-column .buttons-list li {
    position: relative;
}

.services-section .btns-column .buttons-list li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #e5e5e5;
    font-weight: 400;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(75, 93, 117, .60);
    cursor: pointer;
    display: block;
    font-family: "Open Sans", sans-serif;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.services-section .btns-column .buttons-list li:last-child a {
    border-bottom: 0;
}

.services-section .btns-column .buttons-list li:hover a,
.services-section .btns-column .buttons-list li.active a {
    color: #f73131;
}

.services-tabs .services-column {
    position: relative;
    margin-bottom: 20px;
}

.service-block {
    position: relative;
    margin-bottom: 30px;
}

.service-block .inner-box {
    position: relative;
    text-align: center;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .inner-box:hover {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.service-block .image-box {
    position: relative;
}

.service-block .image-box .image {
    position: relative;
    margin-bottom: 0px;
    overflow: hidden;
    background-color: #000000;
}

.service-block .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .inner-box:hover .image-box .image img {
    opacity: 0.50;
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.service-block .lower-content {
    position: relative;
    padding: 26px 20px;
    border: 1px solid #e5e5e5;
    height: 400px;
}

.service-block h5 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-block h5 a {
    color: #073d60;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .inner-box:hover h5 a {
    color: #e95050;
}

.service-block .text {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 24px;
    color: #797979;
    margin-bottom: 15px;
}

.service-block .link-box {
    position: relative;
}

.service-block .link-box a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 18px;
    color: #eb4343;
    font-weight: 600;
    border-bottom: 1px solid #efabae;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .inner-box:hover .link-box a {
    color: #181e44;
}

.services-section.alternate {
    padding: 100px 0 50px;
}

.services-section.alternate .sec-title {
    margin-bottom: 50px;
}

.services-section.alternate .service-block {
    margin-bottom: 50px;
}

/***

====================================================================
		Services Section Two
====================================================================

***/

.services-section-two {
    position: relative;
    background-color: #ebf2f5;
    padding: 100px 0;
}

.services-section-two .service-block {
    margin-bottom: 0;
}

.services-section-two .service-block .inner-box {
    box-shadow: none;
}

.services-carousel .owl-nav {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.services-carousel .owl-next,
.services-carousel .owl-prev {
    position: relative;
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #d9d9d9;
    color: #949494;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.services-carousel .owl-next:hover,
.services-carousel .owl-prev:hover {
    color: #eb4343;
    border-color: #eb4343;
}

.services-section-two.style-two .sec-title {
    margin-bottom: 45px;
}

.services-section-two.style-two .sec-title .text {
    margin-top: 4px;
}

/***

====================================================================
		Services Section Three
====================================================================

***/

.services-section-three {
    position: relative;
    background-color: #ebf1f4;
    padding: 100px 0;
}

.services-section-three .sec-title {
    margin-bottom: 50px;
    max-width: 1040px;
    padding-right: 100px;
}

.services-section-three .sec-title h2 {
    padding-bottom: 0;
    display: inline-block;
    padding-right: 60px;
}

.services-section-three .sec-title h2:before {
    left: auto;
    right: 0;
    bottom: 8px;
    height: 2px;
    width: 40px;
}

.services-section-three .sec-title .text {
    margin-top: 14px;
}

.services-section-three .carousel-outer {
    position: relative;
    margin: 0 -10px;
}

.services-section-three .services-carousel-two {
    position: relative;
}

.service-block-two {
    position: relative;
    padding: 10px;
}

.service-block-two .inner-box {
    position: relative;
    background-color: #ffffff;
    text-align: center;
    min-height: 315px;
    padding: 35px 25px 50px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.10);
}

.service-block-two .icon-box {
    position: relative;
    margin-bottom: 16px;
    display: block;
}

.service-block-two .icon-box .icon {
    font-size: 64px;
    line-height: 1em;
    color: #073d60;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-two h4 {
    font-size: 20px;
    color: #073d60;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 10px;
}

.service-block-two h4 a {
    color: #073d60;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-two .inner-box:hover .icon-box .icon,
.service-block-two .inner-box:hover h4 a {
    color: #e43838;
}

.service-block-two .text {
    font-size: 16px;
    line-height: 26px;
    color: #898989;
}

.services-carousel-two .owl-nav {
    position: absolute;
    right: 0;
    top: -110px;
}

.services-carousel-two .owl-next,
.services-carousel-two .owl-prev {
    position: relative;
    float: left;
    height: 44px;
    width: 44px;
    font-size: 12px;
    color: #222222;
    font-weight: 600;
    border: 2px solid #d4d4d4;
    line-height: 44px;
    text-align: center;
    transition: all 300ms ease;
    margin-left: -2px;
}

.services-carousel-two .owl-next:hover,
.services-carousel-two .owl-prev:hover {
    background-color: #e43838;
    border-color: #e43838;
    color: #ffffff;
}

/***

====================================================================
		Services Detail
====================================================================

***/

.service-detail {
    position: relative;
    padding-left: 30px;
}

.getstarted .service-detail {
    padding-left: 0;
}

.service-detail .upper-box .image-box {
    position: relative;
}

.service-detail .upper-box .row {
    margin: 0 -5px;
}

.service-detail .upper-box .column {
    padding: 0 5px;
}

.service-detail .image-box .image {
    position: relative;
    margin-bottom: 10px;
}

.service-detail .image-box .image img {
    display: block;
    width: 100%;
}

.service-detail .lower-content {
    position: relative;
    padding-top: 45px;
}

.service-detail h2 {
    position: relative;
    display: block;
    font-size: 26px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #181e44;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #181e44;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: "Open Sans", sans-serif;
}

.service-detail p {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 28px;
    color: #797979;
    font-weight: 400;
    margin-bottom: 28px;
}

.service-detail p:last-child {
    margin-bottom: 0;
}

.service-detail .two-column {
    position: relative;
    margin-top: 50px;
}

.service-detail .two-column .text-column {
    position: relative;
    margin-bottom: 50px;
}

.service-detail .two-column .text-column .inner {
    position: relative;
    padding-right: 50px;
}

.service-detail .two-column .image-column {
    position: relative;
    margin-bottom: 50px;
}

.service-detail .two-column .image-box {
    margin-bottom: 0px;
    margin-top: 10px;
}

.service-detail .two-column .image-box .image {
    margin-bottom: 0;
}

.service-detail .two-column .image-box .image img {
    display: block;
    width: auto;
}

.list-style-three {
    position: relative;
}

.list-style-three li {
    position: relative;
    display: block;
    padding-left: 15px;
    font-size: 16px;
    line-height: 24px;
    color: #e43838;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.list-style-three li a {
    color: #e43838;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.list-style-three li a:hover {
    color: #297593;
}

.list-style-three li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 24px;
    color: #e43838;
    font-weight: 400;
    content: "-";
}

.service-detail .free-consultation {
    position: relative;
}

.service-detail .free-consultation .content-column {
    position: relative;
}

.service-detail .free-consultation .content-column .inner {
    position: relative;
}

.service-detail .free-consultation .content-column h2 {
    margin-bottom: 25px;
}

.service-detail .list-style-one li {
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    color: #999999;
    line-height: 26px;
    margin-bottom: 12px;
    font-size: 16px;
}

.service-detail .free-consultation .brochure-column {
    position: relative;
}

.service-detail .free-consultation .brochure-column .inner {
    padding-right: 30px;
}

.service-detail .services {
    position: relative;
    margin-bottom: 60px;
}

.service-block-three {
    position: relative;
}

.service-block-three .inner {
    position: relative;
    border: 1px solid #e5e5e5;
    background-color: #fafafa;
    margin: 0 -1px;
    text-align: center;
    padding: 30px 24px 35px;
}

.service-block-three:nth-child(2) .inner {
    background-color: #ffffff;
}

.service-block-three .icon-box {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.service-block-three .icon-box .icon {
    display: block;
    font-size: 64px;
    line-height: 1em;
    color: #e43838;

}

.service-block-three h5 {
    display: block;
    font-size: 18px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-block-three h5 a {
    color: #073d60;
}

.service-block-three p {
    font-size: 16px;
    line-height: 24px;
    color: #797979;
    font-family: "Lato", sans-serif;
    margin-bottom: 0;
}

/*brochure Box*/

.brochure-box {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #1f698c;
    background-image: url(../images/icons/brochure-bg.jpg);
    padding: 40px 35px 55px;
    padding-right: 40px;
}

.brochure-box .title {
    display: block;
    font-size: 22px;
    color: #ffffff;
    line-height: 1.3em;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    font-style: italic;
    margin-bottom: 22px;
}

.brochure-box h4 {
    position: relative;
    display: block;
    font-size: 27px;
    line-height: 34px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 40px;
    font-family: "Poppins", sans-serif;
}

.brochure-box .theme-btn {
    padding: 10px 40px;
}

/***

====================================================================
		Services Sidebar
====================================================================

***/

.services-sidebar {
    position: relative;
}

.services-sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
    z-index: 1;
}

.sidebar-title h3 {
    position: relative;
    padding-right: 27px;
    font-size: 22px;
    color: #073d60;
    font-weight: 600;
    line-height: 1.2em;
    display: inline-block;
    text-transform: capitalize;
}

.sidebar-title h3:before {
    position: absolute;
    right: 0;
    bottom: 5px;
    height: 2px;
    width: 20px;
    background-color: #e43838;
    content: "";
}

/* Services Category*/

.category-list {
    position: relative;
    background-color: #113c73;
    padding: 15px 25px 20px;
}

.category-list li {
    position: relative;
}

.category-list li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #e5e5e5;
    font-weight: 400;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(75, 93, 117, .60);
    cursor: pointer;
    font-family: "Open Sans", sans-serif;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.category-list li.active a,
.category-list li a:hover {
    color: #f73131;
}

/*.category-list li:last-child a{
	border-bottom: 0;
}*/

.services-sidebar .contact-widget .info-list {
    position: relative;
}

.services-sidebar .contact-widget .info-list li {
    position: relative;
    font-size: 16px;
    line-height: 22px;
    color: #797979;
    font-weight: 400;
    margin-bottom: 8px;
}

.services-sidebar .contact-widget .info-list li a {
    color: #797979;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.services-sidebar .contact-widget .info-list li a:hover {
    color: #e43838;
}

.services-sidebar .download-widget {
    position: relative;
}

.services-sidebar .download-widget a {
    width: 100%;
    padding: 15px 20px;
    line-height: 26px;
    font-size: 18px;
    letter-spacing: 0;
    text-transform: capitalize;
    text-align: left;
}

.services-sidebar .download-widget a .icon {
    float: right;
    margin-top: 3px;
}

.icon-download {
    height: 20px;
    width: 22px;
    background-image: url(../images/icons/icon-download.png);
}

/***

====================================================================
			Fun Fact Section
====================================================================

***/

.fun-fact-section {
    position: relative;
    background-color: #14355f;
    padding: 120px 0 60px;
}

.fun-fact-section .layer-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.fun-fact-section .layer-image:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #14355f;
    opacity: .30;
    content: "";
}

.fun-fact-section .outer-box {
    position: relative;
    float: right;
    max-width: 700px;
    width: 100%;
}

.fun-fact-section .outer-box .text {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 44px;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 70px;
}

.fun-fact-section .count-outer {
    position: relative;
    max-width: 600px;
}

.fun-fact-section .count-outer:before {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100px;
    width: 1px;
    margin-left: -15px;
    background-color: #c3c8ce;
    content: "";
    opacity: .35;
}

.counter-column {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.counter-column .count-box {
    position: relative;
}

.fun-fact-section .count-box {
    position: relative;
    font-size: 58px;
    color: #ffffff;
    line-height: 60px;
    font-weight: 300;
    font-family: "Open Sans", sans-serif;
}

.fun-fact-section .count-box .count-text {
    position: relative;
    display: inline-block;
    font-size: 58px;
    color: #ffffff;
    line-height: 60px;
    font-weight: 300;
    margin-bottom: 15px;
}

.fun-fact-section .counter-title {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    color: #b1b5bf;
    font-style: italic;
    font-family: "Open Sans", sans-serif;
}

/***

====================================================================
		Consultation Section
====================================================================

***/

.consultation-section {
    position: relative;
    padding: 100px 0 25px;
}

.consultation-section.alternate {
    padding-bottom: 50px;
}

.consultation-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.consultation-section .content-column .inner-column {
    position: relative;
    padding-right: 15px;
}

.consultation-section .content-column .title {
    font-size: 30px;
    line-height: 1.2em;
    color: #e43838;
    font-weight: 600;
    margin-bottom: 10px;
}

.consultation-section .content-column h2 {
    font-size: 35px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    margin-bottom: 15px;
}

.consultation-section .content-column .message {
    font-size: 20px;
    line-height: 30px;
    color: #242424;
    font-weight: 400;
    font-style: italic;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 23px;
}

.consultation-section .content-column .text {
    font-size: 16px;
    line-height: 28px;
    color: #797979;
    font-weight: 400;
    margin-bottom: 33px;
}

.consultation-section .content-column .small-text {
    font-size: 16px;
    line-height: 26px;
    color: #242424;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.consultation-section .content-column .info-box {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.consultation-section .content-column .info-box a {
    color: #e43838;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.consultation-section .content-column .info-box a:hover {
    text-decoration: underline;
}

.consultation-section .form-column {
    position: relative;
    margin-bottom: 50px;
}

.consultation-section .form-column .inner-column {
    position: relative;
    padding-left: 50px;
}

.quote-form {
    position: relative;
    background-color: #ebf1f4;
    border: 1px solid #dcdcdc;
    overflow-x: hidden;
}

.quote-form .title-box {
    position: relative;
    padding: 20px 15px 15px;
    background-color: #07436a;
    text-align: center;
}

.quote-form .title-box span {
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 400;
    opacity: .50;
}

.quote-form .title-box h4 {
    font-size: 26px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 600;
}

.quote-form .title-box:after {
    position: absolute;
    left: 50%;
    top: 100%;
    border-left: 210px solid transparent;
    border-right: 210px solid transparent;
    border-top: 25px solid #07436a;
    margin: 0 auto;
    content: "";
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.quote-form .form-box {
    position: relative;
    padding: 65px 20px 30px;
}

.quote-form .form-box .row {
    margin: 0 -9px;
}

.quote-form .form-group {
    position: relative;
    padding: 0 9px;
    margin-bottom: 20px;
}

.quote-form .ui-selectmenu-button.ui-button,
.quote-form .form-group input[type="text"],
.quote-form .form-group input[type="email"],
.quote-form .form-group input[type="tel"],
.quote-form .form-group input[type="url"],
.quote-form .form-group textarea,
.quote-form .form-group select {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 20px;
    color: #797979;
    font-weight: 400;
    padding: 9px 18px;
    width: 100%;
    height: 40px;
    border: 1px solid #d6d6d6;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.quote-form .form-group textarea {
    height: 130px;
    resize: none;
}

.quote-form .form-group input[type="submit"],
.quote-form button {
    position: relative;
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    margin-top: 10px;
}

.quote-form .form-group input[type="submit"]:hover,
.quote-form button:hover {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.40);
}

.quote-form .form-group input:focus,
.quote-form .form-group textarea:focus,
.quote-form .form-group select:focus {
    border-color: #152545;
}

.quote-form .ui-button .ui-icon {
    background: none;
    position: relative;
    top: 8px;
    text-indent: 0px;
    color: #43c3ea;
}

.quote-form .ui-button .ui-icon:before {
    font-family: 'Font Awesome 5 Free';
    content: "\f0d7";
    font-weight: 900;
    position: absolute;
    right: 0px;
    top: -7px;
    width: 10px;
    height: 20px;
    display: block;
    color: #7f7f7f;
    line-height: 20px;
    font-size: 18px;
    text-align: center;
    z-index: 5;
}

.ui-menu .ui-menu-item .ui-menu-item-wrapper {
    padding: 8px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.ui-menu .ui-menu-item:last-child .ui-menu-item-wrapper {
    border-bottom: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active, .ui-button:active,
.ui-button.ui-state-active:hover {
    background-color: #e43838;
    border-color: #e43838;
}

/***

====================================================================
		Why Choose Us
====================================================================

***/

.why-choose-us {
    position: relative;
    background-color: #e8eff3;
}

.why-choose-us .content-column {
    position: relative;
}

.why-choose-us .content-column .inner-column {
    position: relative;
    padding: 100px 0 50px;
}

.why-choose-us .content-column .sec-title {
    margin-bottom: 35px;
}

.why-choose-us .content-column .list-style-one li {
    float: left;
    width: 50%;
}

.why-choose-us .content-column .feature-outer {
    position: relative;
    max-width: 600px;
}

.why-choose-us .image-column {
    position: relative;
}

.why-choose-us .image-column .inner-column {
    position: relative;
    margin-right: -75px;
    margin-left: -35px;
}

.why-choose-us .image-column .image {
    position: relative;
    margin-bottom: 0;
}

.why-choose-us .image-column .image img {
    display: block;
    max-width: 100%;
    height: auto;
}

/***

====================================================================
			Pricing Section
====================================================================

***/

.pricing-section {
    position: relative;
    padding: 100px 0 70px;
}

.pricing-section .sec-title {
    margin-bottom: 40px;
}

.pricing-section .sec-title .text {
    margin-top: 15px;
}

.pricing-table {
    position: relative;
    margin-bottom: 30px;
}

.pricing-table .inner-box {
    position: relative;
    text-align: center;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 0 32px rgba(0, 0, 0, .14);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-table .table-header {
    position: relative;
    padding: 39px 15px;
    background-color: #49bdf7;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-table.tagged .table-header {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.11);
    background: rgb(255, 210, 102);
    background: -moz-linear-gradient(top, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd266', endColorstr='#f8a513', GradientType=0);
}

/*.pricing-table:nth-child(3) .table-header{*/
/*	background-color: #073d60;*/
/*}*/

.pricing-table .title {
    position: relative;
    display: block;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 18px;
}

.pricing-table.tagged .title {
    color: #073d60;
}

.pricing-table .price {
    position: relative;
    font-size: 35px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.pricing-table.tagged .price {
    color: #073d60;
}

.pricing-table .price span {
    position: relative;
    padding-left: 21px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.pricing-table .price span:before {
    position: absolute;
    left: 0px;
    top: 5px;
    line-height: 1em;
    font-size: 35px;
    color: #ffffff;
    font-weight: 600;
    content: "/";
}

.pricing-table.tagged .price span:before {
    color: #073d60;
}

.pricing-table .table-content {
    position: relative;
    padding: 35px 15px 65px;
}

.pricing-table .table-content ul {
    position: relative;
    padding-bottom: 30px;
    min-height: 150px;
}

.pricing-table .table-content ul li {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #797979;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 6px;
}

.pricing-table .table-footer {
    position: relative;
}

.pricing-table .table-footer a {
    padding: 10px 42px;
    line-height: 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .20em;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
}

.pricing-section.alternate .sec-title {
    margin-bottom: 60px;
}

.pricing-section.alternate .sec-title .text {
    margin-top: 24px;
}

/***

====================================================================
		Testimonial Section
====================================================================

***/

.testimonial-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 170px 0 120px;
    background-color: #0e2753;
}

.testimonial-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #0e2753;
    content: "";
    opacity: .90;
}

.testimonial-section .testimonial-carousel {
    position: relative;
    max-width: 100%;
}

.testimonial-block {
    position: relative;
    max-width: 1100px;
}

.testimonial-block .inner-box {
    position: relative;
    padding-left: 250px;
}

.testimonial-block .inner-box:before {
    position: absolute;
    left: 190px;
    top: 0;
    height: 120px;
    width: 1px;
    background-color: #35496c;
    content: "";
}

.testimonial-block .text {
    position: relative;
    font-size: 22px;
    line-height: 33px;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    font-family: "Playfair Display";
    margin-bottom: 24px;
}

.testimonial-block .info-box {
    position: relative;
}

.testimonial-block .info-box .name {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 1.2em;
    color: #40b6f1;
    font-weight: 400;
}

.testimonial-block .info-box .designation {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 25px;
    color: #ffffff;
    opacity: .70;
    font-weight: 400;
    font-family: "Lato", sans-serif;
}

.testimonial-block .thumb {
    position: absolute;
    left: 50px;
    top: 10px;
    height: 92px;
    width: 92px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-section .owl-nav {
    position: absolute;
    right: 70px;
    top: -70px;
    display: block;
}

.testimonial-section .owl-next,
.testimonial-section .owl-prev {
    position: relative;
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #d4d5d5;
    color: #949494;
    font-weight: 600;
    border-radius: 50%;
    margin-left: 30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonial-section .owl-next:hover,
.testimonial-section .owl-prev:hover {
    color: #eb4343;
    border-color: #eb4343;
}

.testimonial-section .owl-prev {
    margin-left: 0;
}

/***

====================================================================
		Testimonial Section Two
====================================================================

***/

.testimonial-section-two {
    position: relative;
    background-color: #efefef;
    padding: 100px 0;
}

.testimonial-section-two .sec-title {
    margin-bottom: 50px;
}

.testimonial-block-two {
    position: relative;
    padding-top: 47px;
}

.testimonial-block-two .inner-box {
    position: relative;
    background-color: #ffffff;
    padding: 75px 30px 75px;
    text-align: center;
}

.testimonial-block-two .thumb {
    position: absolute;
    top: -47px;
    left: 0;
    right: 0;
    height: 95px;
    width: 95px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-block-two .info-box {
    position: relative;
    margin-bottom: 22px;
}

.testimonial-block-two .info-box .name {
    font-size: 16px;
    line-height: 24px;
    color: #242424;
    font-weight: 600;
}

.testimonial-block-two .info-box .info {
    display: block;
    font-style: italic;
    font-size: 14px;
    line-height: 22px;
    color: #a0a0a0;
}

.testimonial-block-two .text {
    font-size: 15px;
    line-height: 26px;
    color: #797979;
    font-family: "Open Sans", sans-serif
}

.testimonial-block-two .quote-icon {
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-size: 46px;
    line-height: 1em;
    color: #49bdf7;
}

/***

====================================================================
		Testimonial Page Section
====================================================================

***/

.testimonial-page-section {
    position: relative;
    padding: 100px 0 0px;
    background-color: #f3f6f8;
}

.testimonial-page-section .sec-title {
    margin-bottom: 50px;
}

.testimonial-block-three {
    position: relative;
    padding: 170px 0 120px;
    background-color: #e8eff3;
}

.testimonial-single .testimonial-block-three,
.testimonial-single .testimonial-block-three:nth-child(2n+1) {
    background: #fff;
}

.testimonial-block-three .inner-box {
    position: relative;
    padding-left: 255px;
}

.testimonial-block-three .inner-box:before {
    position: absolute;
    left: 190px;
    top: 0;
    height: 120px;
    width: 1px;
    background-color: #d0d0d0;
    content: "";
}

.testimonial-block-three .text {
    position: relative;
    font-size: 22px;
    line-height: 33px;
    color: #797979;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    font-family: "Playfair Display";
    margin-bottom: 24px;
}

.testimonial-block-three .info-box {
    position: relative;
}

.testimonial-block-three .info-box .name {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 1.2em;
    color: #40b6f1;
    font-weight: 400;
}

.testimonial-block-three .info-box .designation {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 22px;
    font-style: italic;
    color: #5a6470;
    font-weight: 400;
    font-family: "Lato", sans-serif;
}

.testimonial-block-three .thumb {
    position: absolute;
    left: 50px;
    top: 15px;
    height: 92px;
    width: 92px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-block-three:nth-child(odd) {
    background-color: #f3f6f8;
}

/***

====================================================================
		Mission Section
====================================================================

***/

.mission-section {
    position: relative;
    padding: 100px 0 40px;
    background-color: #ebf1f4;
}

.mission-section.alternate {
    background-color: #ffffff;
}

.mission-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.mission-section .image-column .inner-column {
    position: relative;
    padding-right: 35px;
}

.mission-section .image-column .image {
    position: relative;
    margin-bottom: 0;
}

.mission-section .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
}

.mission-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.mission-section .content-column .inner-column {
    position: relative;
    padding-left: 20px;
    margin-top: -5px;
}

.mission-section h2 {
    font-size: 35px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    margin-bottom: 25px;
}

.mission-section .text-box {
    position: relative;
    margin-bottom: 20px;
}

.mission-section .text-box p {
    font-size: 16px;
    line-height: 28px;
    color: #797979;
    margin-bottom: 28px;
}

.mission-section .text-box p:last-child {
    margin-bottom: 0;
}

.mission-section .list-style-one li {
    font-size: 16px;
    line-height: 26px;
    color: #797979;
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.mission-section .list-style-one li:before {
    top: 6px;
}

/***

====================================================================
		Team Section
====================================================================

***/

.team-section {
    position: relative;
    padding: 95px 0 40px;
}

.team-section .sec-title.style-two {
    margin-bottom: 50px;
    max-width: 1040px;
    padding-right: 100px;
}

.team-section .sec-title.style-two h2 {
    padding-bottom: 0;
    display: inline-block;
    padding-right: 60px;
}

.team-section .sec-title.style-two h2:before {
    left: auto;
    right: 0;
    bottom: 8px;
    height: 2px;
    width: 40px;
}

.team-section .sec-title.style-two .text {
    margin-top: 4px;
    font-size: 19px;
    color: #797979;
}

.team-block {
    position: relative;
    margin-bottom: 60px;
    z-index: 1;
}

.team-block .inner-box {
    position: relative;
}

.team-block .image-box {
    position: relative;
}

.team-block .image-box .image {
    position: relative;
    margin-bottom: 0;
    background-color: #ffffff;
}

.team-block .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.team-block .image-box .image:hover img {
    opacity: .80;
}

.team-block .caption-box {
    position: relative;
    padding: 21px 15px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.20);
}

.team-block .caption-box .name {
    font-size: 20px;
    line-height: 24px;
    color: #073d60;
    font-weight: 600;
}

.team-block .caption-box .name a {
    color: #073d60;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.team-block .inner-box:hover .caption-box .name a {
    color: #e43838;
}

.team-block .caption-box .designation {
    font-size: 16px;
    line-height: 24px;
    color: #797979;
    font-family: "Open Sans", sans-serif;
}

/***

====================================================================
		News Section
====================================================================

***/

.news-section {
    position: relative;
    background-color: #f4f6f8;
    padding: 100px 0 70px;
}

.news-section .upper-box {
    position: relative;
}

.news-section .upper-box .sec-title {
    position: relative;
    float: left;
    margin-bottom: 50px;
}

.news-section .upper-box .sec-title h2 {
    color: #292929;
}

.news-section .upper-box .link-box {
    position: relative;
    float: right;
}

.news-section .upper-box .link-box a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #eb4343;
    font-weight: 600;
    border-bottom: 1px solid #ed7d7e;
}

.news-block {
    position: relative;
    margin-bottom: 30px;
}

.news-block .inner-box {
    position: relative;
}

.news-block .image-box {
    position: relative;
}

.news-block .image-box .image {
    position: relative;
    margin-bottom: 0;
    background-color: #000000;
    overflow: hidden;
}

.news-block .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .inner-box:hover .image-box .image img {
    opacity: .70;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.news-block .lower-content {
    position: relative;
    display: block;
    padding: 25px 0 0;
}

.news-block .lower-content .date {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 30px;
    color: #b3b3b3;
    font-weight: 400;
    margin-bottom: 0px;
    font-family: "Lato", sans-serif;
}

.news-block .lower-content h5 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 32px;
    color: #242424;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-block .lower-content h5 a {
    color: #242424;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .lower-content h5 a:hover {
    color: #eb4343;
}

.news-block .lower-content .text {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 28px;
    color: #7d7d7d;
    font-weight: 400;
    margin-bottom: 22px;
}

.news-block .lower-content .link-box {
    position: relative;
    display: block;
}

.news-block .lower-content .link-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    color: #eb4343;
    font-weight: 600;
    letter-spacing: .02em;
    border-bottom: 1px solid #ed7d7e;
    font-family: "Poppins", sans-serif;
}

.news-list {
    position: relative;
}

.news-list .inner-box {
    position: relative;
    padding: 40px 30px;
    background-color: #fbfcfc;
    -webkit-box-shadow: 0 0 21px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 21px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 21px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 21px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 21px rgba(0, 0, 0, 0.05);
}

.news-list .list-item {
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 10px;
}

.news-list .list-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.news-list .list-item h5 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #242424;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-list .list-item h5 a {
    color: #242424;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-list .list-item h5 a:hover {
    color: #eb4343;
}

.news-list .list-item .date {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 20px;
    color: #9a9a9a;
    font-weight: 400;
}

.news-section.alternate {
    background-color: #ffffff;
}

/***

====================================================================
		Our Blog
====================================================================

***/

.our-blog {
    position: relative;
}

.news-block-two {
    position: relative;
    margin-bottom: 80px;
}

.news-block-two .inner-box {
    position: relative;
}

.news-block-two .image-box {
    position: relative;
}

.news-block-two .image-box .image {
    position: relative;
    margin-bottom: 0px;
    overflow: hidden;

}

.news-block-two .image-box img {
    display: block;
    margin: 0 auto;
    height: auto;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block-two .inner-box:hover .image-box a img {
    opacity: 0.50;
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.news-block-two .posted-date {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 70px;
    width: 77px;
    background-color: #e43838;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    line-height: 1em;
    padding-top: 5px;
    border-radius: 10px;
}

.news-block-two .posted-date span {
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-top: 5px;
}

.news-block-two .lower-content {
    position: relative;
    padding: 35px 0 0;
}

.news-block-two .lower-content h3 {
    position: relative;
    display: block;
    font-size: 28px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 13px;
}

.news-block-two .lower-content h3 a {
    color: #073d60;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block-two .lower-content h3 a:hover {
    color: #e43838;
}

.news-block-two .post-meta {
    position: relative;
    margin-bottom: 24px;
}

.news-block-two .post-meta li {
    position: relative;
    float: left;
    margin-right: 25px;
    font-size: 15px;
    line-height: 30px;
    color: #b8b8b8;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.news-block-two .post-meta li span {
    color: #3a81af;
    line-height: 30px;
    font-size: 15px;
    margin-right: 8px;
}

.news-block-two .text {
    font-size: 16px;
    line-height: 28px;
    color: #797979;
    font-weight: 400;
    margin-bottom: 24px;
}

.news-block-two .btn-box {
    position: relative;
}

.news-block-two .btn-box a {
    line-height: 20px;
    padding: 10px 20px;
}

/***

====================================================================
	Blog Single
====================================================================

***/


.blog-single {
    position: relative;
}

.blog-single .news-block-two {
    margin-bottom: 0;
}

.blog-single .lower-content p {
    position: relative;
    color: #797979;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 35px;
}

.blog-single .lower-content h4 {
    position: relative;
    color: #073d60;
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
}

.blog-single .lower-content p a {
    color: #e43838;
    text-decoration: underline;
}

.blog-single .lower-content .two-column p {
    line-height: 26px;
}

/***

====================================================================
	Styled Pagination
====================================================================

***/

.styled-pagination {
    position: relative;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.styled-pagination li:last-child {
    margin-right: 0;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    line-height: 40px;
    height: 44px;
    font-size: 18px;
    min-width: 44px;
    color: #242424;
    font-weight: 700;
    text-align: center;
    background: #ffffff;
    border: 2px solid #d4d4d4;
    text-transform: capitalize;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    font-family: 'Open Sans', sans-serif;
}

.styled-pagination li a:hover,
.styled-pagination li a.active {
    color: #ffffff;
    background-color: #e43838;
    border-color: #e43838;
}

/***

====================================================================
		Info Section
====================================================================

***/

.info-section {
    position: relative;
    background-color: #eaf7ff;
    padding: 20px 0;
    box-shadow: 0 0 46px rgba(0, 0, 0, 0.20);
}

.info-section .outer-box {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-section .outer-box .image {
    position: relative;
    display: inline-block;
    margin: 0 55px 10px;
}

.info-section .outer-box .image img {
    display: block;
    max-width: 100%;
}

.info-section.style-two {
    background-color: #ebf1f4;
    box-shadow: none;
    padding: 75px 0 60px;
}

.info-section.style-two:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    max-width: 1170px;
    margin: 0 auto;
    border-top: 1px solid #cdcdcd;
    content: "";
}

/***

====================================================================
		Clients Section
====================================================================

***/

.clients-section {
    position: relative;
    padding: 60px 0;
}

.clients-section .sec-title {
    margin-bottom: 70px;
}

.clients-section .sec-title:before {
    position: absolute;
    left: 0;
    top: 30px;
    height: 1px;
    width: 100%;
    background-color: #dfdfdf;
    content: "";
}

.clients-section .sec-title h2 {
    display: inline-block;
    font-size: 32px;
    padding-right: 35px;
    color: #181e44;
    background-color: #ffffff;
}

.clients-section .sponsors-outer {
    position: relative;
    text-align: center;
}

.clients-section .sponsors-outer .text {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 1.3em;
    color: #75717b;
    font-weight: 500;
    margin-bottom: 50px;
}

.clients-section .slide-item {
    position: relative;
}

.clients-section .image-box {
    position: relative;
    margin: 0;
    text-align: center;
}

.clients-section .image-box img {
    display: inline-block;
    max-width: 100%;
    width: auto;
    height: auto;
    opacity: .50;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.clients-section .image-box:hover img {
    opacity: 1;
}

.clients-section .sponsors-carousel .owl-dots,
.clients-section .sponsors-carousel .owl-nav {
    display: none;
}

/***

====================================================================
		Contact Page Section
====================================================================

***/

.contact-page-section {
    position: relative;
    padding: 100px 0 50px;
}

.contact-page-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.contact-page-section .image-column .image-box {
    position: relative;
    padding-left: 10px;
}

.contact-page-section .image-column .image {
    position: relative;
    margin-bottom: 0;
}

.contact-page-section .image-column .image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.contact-page-section .form-column {
    position: relative;
    margin-bottom: 50px;
}

.contact-page-section .form-column .inner-column {
    position: relative;
    padding-right: 100px;
    margin-top: -7px;
}

.contact-page-section .form-column .sec-title {
    margin-bottom: 30px;
}

.contact-page-section .form-column .sec-title h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.contact-page-section .form-column .sec-title .title {
    margin-bottom: 0;
    font-size: 20px;
    color: #797979;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
}

.contact-form {
    position: relative;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="password"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group textarea,
.contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    color: #797979;
    line-height: 25px;
    padding: 14px 26px;
    height: 55px;
    font-size: 16px;
    border-radius: 2px;
    background: transparent;
    border: 1px solid #e1e1e1;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="password"]:focus,
.contact-form .form-group input[type="tel"]:focus,
.contact-form .form-group input[type="email"]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #df6512;
}

.contact-form .form-group textarea {
    height: 230px;
    resize: none;
    margin-bottom: 30px;
}

.contact-form .form-group button,
.contact-form .form-group input[type="submit"] {
    padding: 10px 40px;
    line-height: 30px;
    text-transform: uppercase;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: #ff0000 !important;
}

.contact-form label.error {
    display: block;
    line-height: 24px;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: uppercase;
    font-size: 12px;
    color: #ff0000;
    font-weight: 500;
}

/***

==================================================================
		Contact Map Section
==================================================================

***/

.contact-map-section {
    position: relative;
    padding-bottom: 100px;
}

.contact-map-section .map-outer {
    position: relative;
    height: 430px;
    box-shadow: 0 0 70px rgba(0, 0, 0, .18);
}

.contact-map-section .map-canvas {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.map-data {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;
    padding: 10px;
}

.map-data h6 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #121212;
}

/***

====================================================================
		Call To Action
====================================================================

***/

.call-to-action {
    position: relative;
    background-color: #fcc045;
    padding: 30px 0 35px;
}

.call-to-action .auto-container {
    max-width: 1100px;
}

.call-to-action:before {
    position: absolute;
    top: 10px;
    width: 100%;
    bottom: 10px;
    border-top: 2px dashed #cc9118;
    border-bottom: 2px dashed #cc9118;
    content: "";
}

.call-to-action .content-column {
    position: relative;
    float: left;
}

.call-to-action .content-column .title {
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #242424;
    font-weight: 600;
    font-style: italic;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 10px;
}

.call-to-action .content-column h3 {
    display: block;
    font-size: 28px;
    line-height: 1.2em;
    color: #242424;
    font-weight: 600;
}

.call-to-action .btn-column {
    position: relative;
    float: right;
    padding-top: 15px;
}

.call-to-action .btn-column a {
    padding: 10px 43px;
}

/***

==================================================================
		Main Footer
==================================================================

***/

.main-footer {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #082a53;
}

.main-footer .widgets-section {
    padding-top: 80px;
    padding-bottom: 10px;
}

.main-footer .footer-widget {
    position: relative;
    margin-bottom: 40px;
}

.main-footer .widget-title {
    position: relative;
    display: block;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 28px;
}

.main-footer .widget-content {
    position: relative;
}

/*== About Widget ==*/

.main-footer .about-widget {
    position: relative;
}

.main-footer .logo {
    position: relative;
    margin-top: -17px;
    margin-bottom: 0px;
}

.main-footer .logo img {
    max-width: 100%;
    height: auto;
}

.main-footer .text {
    font-size: 15px;
    line-height: 26px;
    color: #b9c0c8;
}

/*== Links Widget ==*/
.main-footer .links-widget {
    position: relative;
    padding-left: 50px;
}

/*== Services Widget ==*/

.main-footer .services-widget {
    position: relative;
}

.main-footer .services-widget .widget-content {
    position: relative;
}

.main-footer .list {
    position: relative;
}

.main-footer .list li {
    position: relative;
    display: block;
    margin-bottom: 18px;
}

.main-footer .list li a {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 18px;
    color: #ffffff;
    font-weight: 400;
    opacity: .60;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .list li a:hover {
    opacity: 1;
    text-decoration: underline;
}

/*== Info Widget ==*/

.main-footer .info-widget {
    position: relative;
}

.main-footer .info-list {
    position: relative;
    margin-bottom: 24px;
}

.main-footer .info-list li {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 26px;
    color: #b9c0c8;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
}

.main-footer .info-list li.number {
    margin-bottom: 12px;
    opacity: .80;
}

.main-footer .info-list li strong {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 26px;
    color: #b9c0c8;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.main-footer .info-list li a {
    color: #b9c0c8;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .info-list li a:hover {
    color: #ffffff;
}

.footer-bottom {
    position: relative;
}

.footer-bottom .outer-box {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding: 25px 0;
}

.footer-bottom .copyright-text {
    position: relative;
    float: left;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: rgba(255, 255, 255, .30);
    font-weight: 400;
    font-family: "Lato", sans-serif;
}

.footer-bottom .copyright-text a {
    color: rgba(255, 255, 255, .30);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.footer-bottom .copyright-text a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom .privacy {
    position: relative;
    float: right;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: rgba(255, 255, 255, .30);
    font-weight: 400;
}

.footer-bottom .privacy a {
    color: rgba(255, 255, 255, .30);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.footer-bottom .privacy a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/***

====================================================================
	Sidebar Page Container
====================================================================

***/

.sidebar-page-container {
    position: relative;
    padding: 100px 0px 50px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side {
    margin-bottom: 50px;
}

.our-blog.padding-right,
.blog-sidebar.padding-right,
.blog-single.padding-right {
    padding-right: 30px;
}

.sidebar-widget {
    position: relative;
    margin-bottom: 40px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

/*Sidebar Title*/

.sidebar-title {
    position: relative;
    margin-bottom: 20px;
}

.sidebar-title h4 {
    font-size: 24px;
    color: #073d60;
    font-weight: 600;
    line-height: 1.2em;
    display: inline-block;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

/*Search Box Widget*/

.sidebar .search-box .form-group {
    position: relative;
    margin: 0px;
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"] {
    position: relative;
    line-height: 30px;
    padding: 10px 50px 10px 20px;
    border: 1px solid #d3d3d3;
    background: none;
    display: block;
    font-size: 14px;
    color: #909090;
    width: 100%;
    height: 52px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group button {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 52px;
    width: 52px;
    display: block;
    font-size: 17px;
    color: #4c4c4c;
    background-color: #e3ebf0;
    font-weight: 600;
    border: 1px solid #d3d3d3;
}

/*Blog Category*/

.cat-list {
    position: relative;
}

.cat-list li {
    position: relative;
}

.cat-list li a {
    position: relative;
    color: #797979;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 8px;
    margin-bottom: 8px;
    display: block;
    border-bottom: 1px solid #e6e6e6;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.cat-list li:last-child a {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.cat-list li a:after {
    position: absolute;
    content: '\f105';
    right: 0px;
    top: 0px;
    color: #c8c8c8;
    font-size: 12px;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
}

.cat-list li a:hover {
    color: #eb4343;
}

/*Post Widget*/

.sidebar .popular-posts .post {
    position: relative;
    font-size: 15px;
    color: #242424;
    min-height: 88px;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e1e1;
}

.sidebar .popular-posts .post:last-child {
    margin-bottom: 0px;
}

.sidebar .popular-posts .post .text {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #242424;
    line-height: 22px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}

.sidebar .popular-posts .post .text a {
    color: #242424;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.sidebar .popular-posts .post a:hover {
    text-decoration: underline;
}

.sidebar .popular-posts .post-info {
    font-size: 15px;
    color: #9a9a9a;
    font-weight: 400;
}

/*Popular Tags*/

.sidebar .popular-tags a {
    position: relative;
    display: inline-block;
    line-height: 18px;
    padding: 10px 24px;
    margin-right: 8px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
    background: none;
    color: #a6a6a6;
    font-weight: 500;
    border: 1px solid #e4e4e4;
    text-transform: capitalize;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    font-family: 'Opne Sans', sans-serif;
}

.sidebar .popular-tags a:hover {
    border-color: #073d60;
    background-color: #073d60;
    color: #ffffff;
}

/***

====================================================================
	Comments Area
====================================================================

 ***/

.sidebar-page-container .comments-area {
    position: relative;
    margin-top: 50px;
    margin-bottom: 55px;
}

.sidebar-page-container .group-title {
    position: relative;
    margin-bottom: 25px;
}

.sidebar-page-container .group-title h2 {
    position: relative;
    font-size: 22px;
    color: #073d60;
    font-weight: 600;
    padding-bottom: 0px;
}

.sidebar-page-container .comments-area .inner-box {
    position: relative;
    border: 1px solid #eeeeee;
}

.sidebar-page-container .comments-area .comment-box {
    position: relative;
    padding: 25px 25px 20px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    border-bottom: 1px solid #ebe8e8;
}

.sidebar-page-container .comments-area .comment-box:nth-child(2n + 0) {
    background-color: #fcfcfc;
}

.sidebar-page-container .comments-area .comment-box:last-child {
    border-bottom: 0px;
}

.sidebar-page-container .comments-area .comment {
    position: relative;
    font-size: 14px;
    min-height: 98px;
    padding: 0px 0px 0px 100px;
}

.sidebar-page-container .comments-area .comment.reply-comment {
    margin-left: 100px;
    margin-top: 45px;
}

.sidebar-page-container .comments-area .comment .comment-inner {
    position: relative;
}

.sidebar-page-container .comments-area .comment .comment-reply {
    position: absolute;
    right: 0px;
    top: 0px;
    color: #9cc900;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    text-transform: capitalize;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sidebar-page-container .comments-area .comment .comment-reply span {
    font-size: 14px;
    margin-right: 4px;
}

.sidebar-page-container .comments-area .comment-box .author-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 70px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-page-container .comments-area .comment-box .author-thumb img {
    width: 75px;
    display: block;
}

.sidebar-page-container .comments-area .comment-info {
    color: #3e5773;
    line-height: 24px;
    font-size: 13px;
}

.sidebar-page-container .comments-area .comment-box strong {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    line-height: 26px;
    line-height: 16px;
    text-transform: capitalize;
}

.sidebar-page-container .comments-area .comment-box .text {
    color: #898989;
    font-size: 16px;
    margin-top: 5px;
    line-height: 26px;
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

.sidebar-page-container .comments-area .comment-time {
    position: relative;
    font-size: 13px;
    color: #f47a3c;
}

.sidebar-page-container .comments-area .comment-box .theme-btn {
    padding: 6px 27px;
}

.sidebar-page-container .comments-area .comment-box .post-info {
    position: relative;
}

.sidebar-page-container .comments-area .comment-box .post-info li {
    position: relative;
    padding-right: 10px;
    line-height: 1em;
    margin-right: 10px;
    color: #aeaeae;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    border-right: 1px solid #bebebe;
    font-family: "Open Sans", sans-serif;
}

.sidebar-page-container .comments-area .comment-box .post-info li a {
    color: #eb4343;
}

.sidebar-page-container .comments-area .comment-box .post-info li:last-child {
    border: 0px;
}

/***

====================================================================
	Comment Form
====================================================================

 ***/

.comment-form {
    position: relative;
}

.comment-form .group-title h2 {
    font-size: 22px;
}

.comment-form .form-inner {
    position: relative;
    padding: 50px 35px 30px;
    background-color: #f7f7f7;
    border: 1px solid #eeeeee;
}

.comment-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 33px;
    padding: 10px 20px;
    height: 45px;
    color: #737373;
    font-size: 15px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group textarea:focus {
    border-color: #eb4343;
}

.comment-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 20px 20px;
    color: #737373;
    height: 170px;
    font-size: 15px;
    resize: none;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.comment-form button {
    margin-top: 25px;
}

/***** yajal css ******/
.main-footer .logo {
    margin-bottom: 25px;
}

.main-footer ul.location {
    color: #b9c0c8;
}

.main-footer ul.location li {
    margin: 5px 0;
    border: 0;
}

.main-footer ul.location li strong {
    font-size: 20px;
    line-height: 1.2em;
    color: #ffffff
}

.main-footer::before {
    background: rgba(17, 17, 17, 0.5) none repeat scroll 0 0;
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
    background-color: rgba(20, 53, 95, 0.9);
}

.main-footer .info-list li {
    color: #b9c0c8;
    font-family: "Poppins", sans-serif;
}

.main-footer .widget-title,
.main-footer .list li a {
    color: #b9c0c8;
    opacity: 1;
    margin-bottom: 8px;
}

.added_row {
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    margin-bottom: 25px
}

.lower_foot .widget {
    margin-bottom: 25px;
}

.main-footer .list li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
}

.main-footer .widget-title {
    margin-bottom: 20px;
    color: #ffffff
}

.f_read {
    margin: 10px 0;
}

.f_read a {
    color: #eb4343
}

.text-gray {
    color: #b9c0c8;
}

.abtinfo p {
    color: #b9c0c8;
    font-size: 14px;
    line-height: 20px;
    font-family: "Poppins", sans-serif;
}

.status .child {
    color: #fff;
    line-height: normal;
    text-align: center;
    width: 170px;
    height: 178px;
    padding: 60px 25px 0;
    color: #fff;
    background: url(../images/office_status.png) 0 0 no-repeat;
}

.status .child h4 {
    color: #fff;
    font-size: 14px;
}

.status .child span {
    font-size: 20px;
    font-weight: bold;
    margin-top: 8px;
    display: block;
}

.banner-section-two .content-box h2 {
    font-size: 40px;
    line-height: 65px
}

.banner-section-two .content-box .inner {
    max-width: 640px;
}

/*****location*****/

.banner-section-two .content-box {
    height: 625px;
}

.news-block-two .post-meta li {
    color: #787878
}

.posted-jobs-blk-list-blk table {
    width: 100%;
}

.posted-jobs-blk-list-blk table tr td, .posted-jobs-blk-list-blk table tr th {
    border: 1px #e3e3e3 solid;
    padding: 1%;
    width: 1px;
}

.posted-jobs-blk i.fa.fa-times {
    padding-bottom: 5px;
    vertical-align: middle;
}

.follower-tab.dashboard-bg-color {
    margin-top: 15px;
    padding: 1%;
}

.follower-tab .nav-tabs:before {
    display: none;
}

.follower-tab .nav-tabs > li {
    float: left;
    font-size: 14px;
}

.follower-tab-blk {
    text-align: center;
    margin-bottom: 20px;
}

.follower-tab-blk h1 {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
}

.follower-tab-blk h3 {
    font-size: 13px;
    margin-top: 6px;
    margin-bottom: 3px;
}

.follower-tab-blk span {
    font-size: 13px;
}

.sidebar-title {
    padding-top: 35px;
}

.message-form {
    margin-top: 50px;
}

.contact-form .form-group textarea {
    height: 205px;
}

.contact-page-section .contact-heading {
    text-transform: uppercase;
    margin: 0;
    color: #eb4343;
}

.contact-page-section .contact-block {
    margin-bottom: 20px;
}

.contact-page-section .contact-block a {
    color: #555555;
}

.contact-block h2 {
    font-size: 20px;
    display: block;
    width: 100%
}

/* ================================= */
/*===== Location Page =====*/
/* ================================= */
.locations {
    position: relative;
    padding: 95px 0 40px;
}

.section-heading {
    color: #000000;
}

.my-store-dtl .section-left {
    margin-bottom: 15px;
}

.my-store-contact .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 16px;
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
}

.my-store-contact:hover .contact-icon {
    background-color: #082a53;
    color: #FFF;
}

.my-store-contact .contact-heading {
    font-size: 17px;
    line-height: 28px;
    text-transform: uppercase;
    margin: 0 0 13px;
    color: #eb4343;
}

.my-store-contact-dtl a {
    color: #555555;
}

.my-store-contact-dtl {
    display: inline-block;
}

.make-appointment-btn {
    margin: 26px 0 15px 0;
}

.my-store-dtl .btn-default {
    width: 321px;
}

.my-store-dtl .btn-default i {
    margin-right: 10px;
}

.contact-icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: solid 1px rgba(0, 0, 0, 0.1);
    color: #eb4343;
    font-size: 15px;
    line-height: 3.3;
    margin-top: 10px;
    text-align: center;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.contact-block:hover .contact-icon {
    background-color: #eb4343;
    color: #FFF;
}

.contact-icon:hover {
    background-color: #eb4343;
    color: #FFF;
}

.walk-ins {
    color: #082a53
}

#sync1 .item {
    margin: 5px;
    color: #fff;
    text-align: center;
}

#sync2 .item {
    margin: 5px;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

#sync2 .item h1 {
    font-size: 18px;
}

#sync2 .current .item {

}

.owl-theme .owl-nav {
    /*default owl-theme theme reset .disabled:hover links */
}

.owl-theme .owl-nav [class*="owl-"] {
    transition: all 0.3s ease;
}

.owl-theme .owl-nav [class*="owl-"].disabled:hover {
    background-color: #d6d6d6;
}

#sync1.owl-theme {
    position: relative;
}

#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
    width: 22px;
    height: 40px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
}

#sync1.owl-theme .owl-prev {
    left: 10px;
}

#sync1.owl-theme .owl-next {
    right: 10px;
}

.owl-carousel .owl-stage {
    margin: 0 auto;
}

.my-store-tab {
    margin-top: 50px;
}

.my-store-tab .nav-tabs {
    border: 0;
}

.my-store-tab .nav-tabs > li {
    background-color: #E9E9E9;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.my-store-tab .nav-tabs > li:first-child {
    border-left: none;
}

.my-store-tab .nav-tabs > li a {
    border: none;
    font-size: 16px;
    padding: 20px 30px 15px;
    margin: 0;
    display: block;
    color: #eb4343;
    border-bottom: 4px solid #E9E9E9;
}

.my-store-tab .nav-tabs > li > a.active,
.my-store-tab .nav-tabs > li > a:hover,
.my-store-tab .nav-tabs > li > a.active:focus,
.my-store-tab .nav-tabs > li > a.active:hover {
    color: #1872C5;
    background-color: #F0F0F0;
    border-bottom: 4px solid #1872C5;
}

.my-store-tab .nav-tabs > li .active {
    border-bottom-color: #1872C5;
}

.my-store-tab .nav-tabs > li > a:hover {
    color: #1872C5;
    background-color: #F0F0F0;
}

.my-store-tab .tab-pane {
    padding: 70px 0 44px 0;
    overflow: hidden;
}

.my-store-tab .service-sub-heading {
    color: #1872C5;
    text-transform: uppercase;
}

.service-slider-two .service-img {
    margin-bottom: 0;
}

/*===== Store Description =====*/
.my-store-info hr {
    height: 1px;
    color: rgba(0, 0, 0, 0.1);
    margin-right: 224px;
}

.about-my-store-dtl {
    margin-bottom: 40px;
}

.my-store-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #1872C5;
    color: #FFF;
    border-radius: 100%;
    line-height: 3.2;
    text-align: center;
    font-size: 16px;
    margin-right: 30px;
    vertical-align: top;
}

.my-store-desc {
    display: inline-block;
}

.my-store-heading {
    color: #1872C5;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 13px;
}

.my-store-desc p {
    line-height: 1.38;
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 0;
}

.store-leadership .team-dtl {
    text-align: center;
}

.store-leadership .section-left {
    margin-bottom: 40px;
}

.store-owner-dtl p {
    color: rgba(51, 51, 51, 0.7);
}

.store-owner-dtl .btn-default {
    margin-top: 28px;
}

.section-left {
    margin-bottom: 70px;
    text-align: left;
    position: relative;
}

.section-sub-heading {
    font-weight: 600;
    text-transform: uppercase;
    color: #073d60;
    margin-bottom: 2px;

}

/*===== Team Member =====*/
.team-img img {
    width: 100%;
}

.team-style-one {
    position: relative;
}

.team-style-one .bg-img {
    padding: 100px 0 112px;
    text-align: center;
}

.team-style-one .section {
    position: relative;
}

.team-style-one .team-block {
    position: relative;
    background-image: url(../images/team/team-text-bg.jpg);
    background-repeat: repeat;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.team-style-one .team-block:after {
    content: url(../images/icons/after.png);
    position: absolute;
    bottom: -5px;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: block;
    text-align: center;
}

.team-style-one .team-img {
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.team-style-one .team-dtl {
    padding: 30px 0;
    position: relative;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.team-style-one .team-name a {
    color: #1872C5;
    position: relative;
}

.team-style-one .team-post {
    position: relative;
}

.team-style-one .social-icon {
    opacity: 0;
    background-color: #EC8E31;
    padding: 20px 0;
    position: absolute;
    bottom: -100px;
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.team-style-one .social-icon li a {
    color: rgba(255, 255, 255, 0.7);
}

.team-style-one .social-icon ul li {

    display: inline-block;
    margin-right: 15px;

}

.team-style-one .team-img .overlay-bg {
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.team-style-one .team-dtl .overlay-bg {
    opacity: 0;
    background-color: rgba(252, 154, 57, 0.75);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.team-style-one .overlay-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(231, 231, 231, 0.8);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.team-style-one .overlay-bg a {
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.team-style-one .social-icon li a:hover {
    color: rgba(255, 255, 255, 1);
}

.team-style-one .team-block:hover .team-img {
    margin-top: -59px;
    padding-bottom: 59px;
}

.team-style-one .team-block:hover .team-img .overlay-bg {
    margin-top: -59px;
    padding-bottom: 59px;
    opacity: 1;
}

.team-style-one .team-block:hover .team-dtl .overlay-bg {
    opacity: 1;
}

.team-style-one .team-block:hover .team-dtl {
    margin-top: -59px;
    padding-bottom: 80px;
}

.team-style-one .team-block:hover .team-img .overlay-bg a {
    margin-top: 50px;
}

.team-style-one .team-block:hover .team-name a {
    color: #FFF;
}

.team-style-one .team-block:hover .team-post {
    color: #FFF;
}

.team-style-one .team-block:hover .social-icon {
    opacity: 1;
    bottom: 0;
}

@media (min-width: 768px) and (max-width: 992px) {
    .team-style-one .team-block:hover .team-img {
        margin-top: -50px;
    }
}

@media (max-width: 992px) {
    .team-style-one .team-block {
        margin-bottom: 30px;
    }

    .team-style-one {
        margin-bottom: -30px;
    }

    .team-style-one .bg-img {
        padding: 100px 0 82px;
    }

    .team-main-block .bg-img {
        margin-bottom: 30px;
    }
}

.store-leadership .team-dtl {
    text-align: center;
}

.store-leadership .section-left {
    margin-bottom: 40px;
}

.store-owner-dtl p {
    color: rgba(51, 51, 51, 0.7);
}

.store-owner-dtl .btn-default {
    margin-top: 28px;
}

/* ================================= */
/*===== Progress Bar =====*/
/* ================================= */
.fixed-item-block {
    border: solid 1px #E2E2E2;
    padding: 18px 15px 37px 5px;
}

.fixed-tag-left {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
}

.grn-bar.progress-bar {
    background-color: #388E3C;
}

.pink-bar.progress-bar {
    background-color: #FF6161;
}

.progress {
    margin: 8px 0 0;
    background-color: #EDEDED;
    height: 10px;
    border-radius: 15px;
    box-shadow: none;
}

.progress-bar {
    height: 9px;
    background-color: #FC9A39;
    border-radius: 15px;
    box-shadow: none;
}

.scroll-bar {
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

@media (max-width: 381px) {
    .fixed-tag-left {
        font-size: 10px;
    }
}

.fixed-item-block div {
    float: left;
}

.fixed-item-block .progress {
    float: none;
}

/*.progress-bar {
  width: 0;
  animation: progress 1.5s ease-in-out forwards;
}*/
.progress-bar .title {
    opacity: 0;
    animation: show 0.35s forwards ease-in-out 0.5s;
}

@keyframes progress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.progress-bar.bg-danger {
    width: 90%;
}

/*===== Comment =====*/
.media-comment-section .media-rating {
    border: solid 1px rgba(0, 0, 0, 0.1);
    padding: 30px 50px;
}

.media-comment-section .media-rating .section-left {
    margin-bottom: 46px;
}

.fixed-tag-left i {
    font-size: 10px;
    margin-left: 3px;
}

.total-rating i {
    font-size: 40px;
    color: #FC9A39;
    vertical-align: middle;
}

.average-rating-progress {
    margin-left: -80px;
}

.average-rating-block .progress {
    border-radius: 0;
    height: 5px;
}

.total-rating {
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 40px;
    color: #000;
}

.media-reviews {
    margin-top: 70px;
}

.my-store-main-block .section-left hr,
.other-store-main-block .section hr {
    margin-top: 14px;
}

.media-img {
    width: 100%;
}

.media-body {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 37px 18px 33px 36px;
}

.media-body:before {
    content: ' ';
    position: absolute;
    top: 20px;
    left: 0;
    width: 0;
    height: 0;
    border-right: 15px solid rgba(0, 0, 0, 0.1);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.media-body:after {
    content: ' ';
    position: absolute;
    top: 20px;
    left: 2px;
    width: 0;
    height: 0;
    border-right: 15px solid #FFF;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.rating {
    display: inline-block;
}

.media-body p,
.media-heading > span {
    display: inline-block;
    text-transform: uppercase;
    font-size: 11.9px;
    margin-left: 22px;
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 6px;
}

.media-block {
    margin-bottom: 30px;
    position: relative;
}

.media-comment {
    font-size: 16.1px;
    font-weight: 300;
    line-height: 1;
    font-style: italic;
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 14px;
    line-height: 1.56;
}

.media-heading {
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
    color: #000;
}

.media-heading:hover > span {
    color: #1872C5;
}

.media-reply {
    display: inline-block;
    float: right;
}

.media-reply i {
    color: #1872C5;
    margin-right: 6px;
}

.media-reply:hover a {
    color: #1872C5;
}

.reviews-heading {
    margin-bottom: 36px;
}

.media-rating p {
    font-size: 16px;
}

.media-rating {
    margin-top: 57px;
}

.media-rating .comment-form {
    margin-top: 29px;
}

.media-rating .btn-default {
    margin-top: 10px;
}

.btn-grey {
    background-color: #D8D8D8;
    color: #FFF;
}

.rating-block {
    background-color: #FAFAFA;
    border: 1px solid #EFEFEF;
    padding: 15px 15px 20px 15px;
    border-radius: 3px;
}

.bold {
    font-weight: 700;
}

.padding-bottom-7 {
    padding-bottom: 7px;
}

.review-block {
    background-color: #FAFAFA;
    border: 1px solid #EFEFEF;
    padding: 15px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.review-block-name {
    font-size: 12px;
    margin: 10px 0;
}

.review-block-date {
    font-size: 12px;
}

.review-block-rate {
    font-size: 13px;
    margin-bottom: 15px;
}

.review-block-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.review-block-description {
    font-size: 13px;
}

.rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked) > label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-size: 25px;
    -moz-osx-font-smoothing: grayscale
}

.glyphicon-star-empty::before {
    content: '★ ';
}

.glyphicon:empty {
    width: 1em
}

.glyphicon-star:before {
    content: '★ ';
}

.rate:not(:checked) > label:before {
    content: '★ ';
}

.glyphicon-star-empty::before {
    content: '★ ' !important;
    width: 1em
}

.glyphicon-star:before {
    content: '★ ' !important;
    width: 1em;
    color: #eb4343;
}

.rate > input:checked ~ label {
    color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}

#services-available .col-sm-3 {
    float: left;
}

.service-block {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.95s ease;
}

.career-details .news-block-two .lower-content h3 {
    border: 0;
    float: left;
}

.career-details .btn-style-one {
    float: right;
}

.career-details .holds {
    overflow: hidden;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .career-details .news-block-two .lower-content h3,
    .career-details .btn-style-one {
        float: none;
        text-align: center;
        display: block;
    }
}

.faq .bs-example {
    margin: 80px 0;
}

.faq .accordion .fa {
    margin-right: 0.5rem;
}

.faq .accordion .btn-link {
    color: #fff;;
    text-decoration: none;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.faq .theme-btn.btn-style-one {
    margin-top: 20px;
    display: block;
    width: 200px;

}

.faq .card-header a {
    font-size: 16px;
    color: #323232;
    border: 1px solid #e9e9e9;
    display: block;
    margin-bottom: 5px;
    line-height: 50px;
    position: relative;
    padding: 0 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
    background: #f9f9f9;

}

.faq .card-header a:hover {
    color: #eb4343;
}

.faq .card-header {
    padding: 0;
    margin: 0;
    border: 0;
}

.faq .card {
    margin-bottom: 20px;
}

.faqHeader {
    font-size: 20px;
    color: #fa2a2a;
    margin: 30px 0 15px;
}

.panel-collapse {
    background: #f5f6f7;
    padding: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #082a53;
}

/*----- 404 ------*/
#notfound {
    position: relative;
    height: 70vh;
    width: 100%;
    text-align: center;
}

#notfound .notfound {
}

.notfound .notfound-404 {

}

.notfound .notfound-404 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 10vw;
    font-weight: 200;
    margin: 0px;
    color: #211b19;
    text-transform: uppercase;
    margin-top: 5vw
}

.notfound .notfound-404 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: #211b19;
    background: #fff;
    padding: 10px 5px;
    margin: auto;

}

/* scrolltofixed-container */
.scrolltofixed-container {
    position: static;
    margin-top: 50px
}

@media only screen and (max-width: 767px) {
    .scrolltofixed-container #getFixed {
        position: static !important;
    }

    .scrolltofixed-container #getFixed + div {
        display: none !important;
    }
}

.sec_wrap {
    margin: 50px 0;
}

#getFixed {
    width: 275px;
    margin-top: 50px;
}

.cd-faq__items {
    margin-top: 50px;
}

.cd-faq__group {
    background: #f5f6f7;
    overflow: hidden;
    padding: 15px;
    margin-bottom: 50px;
    margin-top: 50px;
    height: 70vh;
    overflow-y: scroll;

}

.cd-faq__title h2 {
    font-size: 14px;
}

.cd-faq__item a {
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 10px;
    display: block;
    color: #eb4343;
}

.cd-faq__item {
    margin-bottom: 30px;

}

#sync2 .owl-prev,
#sync2 .owl-next {
    position: absolute;
    top: 60px;
    background: #113c73;
}

#sync2 .owl-prev {
    right: 0
}

.upper-box .tab-content {
    margin-top: 25px;
}

.upper-box .nav-tabs .nav-link {
    border-radius: 0;
    color: #4d4d4d;
    font-size: 18px;
    padding: 0.5rem 2rem

}

.upper-box .nav-tabs .nav-link.active {
    color: #073d6e;

}

.category-list {
    background: none;
    padding: 0;
}

.category-list li a {
    font-size: 14px;
    color: #323232;
    border: 1px solid #e9e9e9;
    display: block;
    margin-bottom: 5px;
    line-height: 50px;
    position: relative;
    padding: 0 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
    background: #f9f9f9;

}

.category-list li a:after {
    content: '\f128';
    font-family: 'flaticon';
    position: absolute;
    top: 0;
    right: 20px;
    line-height: 50px;
    color: #6A6969;
    font-weight: normal;
}

.category-list li.active a,
.category-list li a:hover {
    position: relative;
    color: #eb4343 !important;
    background: none;

}

.category-list li:hover a:before,
.category-list li.active a:before {
    position: absolute;
    background: #073d6e;
    width: 6px;
    height: 50px;
    left: 0px;
    content: "";
}

.cd-faq__title:before,
.bd-content > h3[id]:before,
.bd-content > h4[id]:before {

    display: block;
    height: 6rem;
    margin-top: -6rem;
    visibility: hidden;
    content: "";

}

.newstyle.header-style-two .outer-box2 {
    padding: 0;
    margin: 0
}

.newstyle.main-header .search-box-outer {
    padding: 13.5px 0
}

.w_wrapping a .w_box:hover {
    border: 2px solid #eb4343;
    box-shadow: 0px 2px 4px .7px #bababa;
}

.w_box {
    background: #fff;
    border: 2px solid #073d6e;
    padding: 10px 5px;
    min-height: 200px;
}

.w_box h4 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #073d60;
    font-weight: 600;
}

.w_box p {
    font-size: 14px;
    line-height: 20px;
}

.getstarted .sidebar-side li {
    position: relative;
    color: #797979;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 8px;
    margin-bottom: 8px;
    display: block;
    border-bottom: 1px solid #e6e6e6;
}

.getstarted .sidebar-title {
    padding: 0
}

.signup {
    background-image: url('../images/registration_bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.signup .accounts {
    float: left;
    position: relative;
    padding: 30px 43px 20px 43px;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    background: #f9f9f9; /* Old browsers */
    background: -moz-linear-gradient(top, #f9f9f9 0%, #e4e4e4 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9f9f9), color-stop(100%, #e4e4e4)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f9f9f9 0%, #e4e4e4 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f9f9f9 0%, #e4e4e4 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f9f9f9 0%, #e4e4e4 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f9f9f9 0%, #e4e4e4 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e4e4e4', GradientType=0); /* IE6-9 */
}

.signup .form-control {
    color: #555;
    outline: none;
    border: 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.accounts h4 {
    font-size: 20px;
    color: #e43838;
}

.aldy {
    text-align: center;
}

.red {
    color: #eb4343

}

.form-check {
    padding-top: 15px;
}

.form-check span {
    margin-right: 10px;
}

.strikethrough {
    text-decoration: line-through;
    color: #eb4343;
    font-size: 22px;
}

.sr-only,
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after,
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after,
.bootstrap-datetimepicker-widget .picker-switch::after,
.bootstrap-datetimepicker-widget table th.prev::after,
.bootstrap-datetimepicker-widget table th.next::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 4px;
    width: 19em;
}

@media (min-width: 768px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em;
    }
}

@media (min-width: 991px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em;
    }
}

@media (min-width: 1200px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em;
    }
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before,
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
    right: auto;
    left: 12px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top {
    margin-top: auto;
    margin-bottom: 27px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top.open {
    margin-top: auto;
    margin-bottom: 27px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
    left: auto;
    right: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
    left: auto;
    right: 7px;
}

.bootstrap-datetimepicker-widget .list-unstyled {
    margin: 0;
}

.bootstrap-datetimepicker-widget a[data-action] {
    padding: 0;
    margin: 0;
    border-width: 0;
    background-color: transparent;
    color: #9c27b0;
    box-shadow: none;
}

.bootstrap-datetimepicker-widget a[data-action]:hover {
    background-color: transparent;
}

.bootstrap-datetimepicker-widget a[data-action]:hover span {
    background-color: #eee;
    color: #9c27b0;
}

.bootstrap-datetimepicker-widget a[data-action]:active {
    box-shadow: none;
}

.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-weight: 300;
    font-size: 1.125rem;
    margin: 0;
    border-radius: 50%;
}

.bootstrap-datetimepicker-widget button[data-action] {
    width: 38px;
    height: 38px;
    margin-right: 3px;
    padding: 0;
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
    content: "Increment Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
    content: "Increment Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
    content: "Decrement Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
    content: "Decrement Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
    content: "Show Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
    content: "Show Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
    content: "Toggle AM/PM";
}

.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
    content: "Clear the picker";
}

.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
    content: "Set the date to today";
}

.bootstrap-datetimepicker-widget .picker-switch {
    text-align: center;
    border-radius: 3px;
    font-size: 0.875rem;
}

.bootstrap-datetimepicker-widget .picker-switch::after {
    content: "Toggle Date and Time Screens";
}

.bootstrap-datetimepicker-widget .picker-switch td {
    padding: 0;
    margin: 0;
    height: auto;
    width: auto;
    line-height: inherit;
}

.bootstrap-datetimepicker-widget .picker-switch td span {
    line-height: 2.5;
    height: 2.5em;
    width: 100%;
    border-radius: 3px;
    margin: 2px 0px !important;
}

.bootstrap-datetimepicker-widget table {
    width: 100%;
    margin: 0;
}

.bootstrap-datetimepicker-widget table.table-condensed tr > td {
    text-align: center;
}

.bootstrap-datetimepicker-widget table td > div,
.bootstrap-datetimepicker-widget table th > div {
    text-align: center;
}

.bootstrap-datetimepicker-widget table th {
    height: 20px;
    line-height: 20px;
    width: 20px;
    font-weight: 500;
}

.bootstrap-datetimepicker-widget table th.picker-switch {
    width: 145px;
}

.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
    background: none;
    color: rgba(0, 0, 0, 0.12);
    cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table th.prev span,
.bootstrap-datetimepicker-widget table th.next span {
    border-radius: 3px;
    height: 27px;
    width: 27px;
    line-height: 28px;
    font-size: 12px;
    border-radius: 50%;
    text-align: center;
}


.bootstrap-datetimepicker-widget table th.dow {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.87);
    font-weight: 400;
    padding-bottom: 5px;
    padding-top: 10px;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th {
    cursor: pointer;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover span,
.bootstrap-datetimepicker-widget table thead tr:first-child th.picker-switch:hover {
    background: #eee;
}

.bootstrap-datetimepicker-widget table td > div {
    border-radius: 3px;
    height: 54px;
    line-height: 54px;
    width: 54px;
    text-align: center;
}

.bootstrap-datetimepicker-widget table td.cw > div {
    font-size: .8em;
    height: 20px;
    line-height: 20px;
    color: #999;
}

.bootstrap-datetimepicker-widget table td.day > div {
    height: 30px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    padding: 0px;
    border-radius: 50%;
    position: relative;
    z-index: -1;
    color: #3C4858;
    font-size: 0.875rem;
}

.bootstrap-datetimepicker-widget table td.minute > div,
.bootstrap-datetimepicker-widget table td.hour > div {
    border-radius: 50%;
}

.bootstrap-datetimepicker-widget table td.day:hover > div,
.bootstrap-datetimepicker-widget table td.hour:hover > div,
.bootstrap-datetimepicker-widget table td.minute:hover > div,
.bootstrap-datetimepicker-widget table td.second:hover > div {
    background: #eee;
    cursor: pointer;
}

.bootstrap-datetimepicker-widget table td.old > div,
.bootstrap-datetimepicker-widget table td.new > div {
    color: #999;
}

.bootstrap-datetimepicker-widget table td.today > div {
    position: relative;
}

.bootstrap-datetimepicker-widget table td.today > div:before {
    content: '';
    display: inline-block;
    border: 0 0 7px 7px solid transparent;
    border-bottom-color: #9c27b0;
    border-top-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 4px;
    right: 4px;
}

.bootstrap-datetimepicker-widget table td.active > div,
.bootstrap-datetimepicker-widget table td.active:hover > div {
    background-color: #9c27b0;
    color: #fff;
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(156, 39, 176, 0.4);
}

.bootstrap-datetimepicker-widget table td.active.today:before > div {
    border-bottom-color: #fff;
}

.bootstrap-datetimepicker-widget table td.disabled > div,
.bootstrap-datetimepicker-widget table td.disabled:hover > div {
    background: none;
    color: rgba(0, 0, 0, 0.12);
    cursor: not-allowed;
}

.bootstrap-datetimepicker-widget table td span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 3px 3px;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
}

.ju_in {
    background: #082a53;
}

.plan .contact-form .form-group textarea {
    height: 100px;
}

.plan_includes {
    font-size: 18px;
    font-weight: normal;
}

.call-to-action {
    background-color: #eaf7ff;
    box-shadow: 0 0 46px rgba(0, 0, 0, .2);
}

.call-to-action::before {
    position: inherit;
}

.sign_in .title,
.reg .title {
    font-size: 20px;
    line-height: 60px;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    top: -11px;
    left: 50%;
    margin-left: -150px;
    padding-left: 40px;
    width: 303px;
    height: 50px;
    background: url(../images/memberslogin-bg.png) 0 0 no-repeat;
}

.reg .title {
    background: url(../images/signup-bg.png) 0 0 no-repeat;
}

.sign_in .fab {
    padding-top: 2px;
    padding-left: 10px

}

.sign_in .btn {
    border: 0;
    padding: 10px;
}

.sign_in .btn:hover {
    opacity: 0.7;
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;

}

/* Content */
.content {
    background-color: white;
    padding: 10px;
}

/* The "show" class is added to the filtered elements */
.show {
    display: block;
}

#myBtnContainer {
    text-align: center;
}

#myBtnContainer .btn {
    background: none;
    border: 0;
    margin: 0 auto;
    text-align: center;
    float: none;
    border-radius: 0;
}


/* Navbar container */
.navbar {
    overflow: hidden;
    background-color: #333;
    font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* The dropdown container */
.main-menu .navigation > li.mega {
    position: static;

}

/* Dropdown button */
.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
}


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Create three equal columns that floats next to each other */
.main-menu .navigation > li > ul.dropdown-content .column {
    float: left;
    width: 33.33%;
    padding: 10px;
}

.main-menu .navigation > li > .dropdown-content {
    width: 100vh;
    min-width: 650px;
}

.main-menu .navigation > li > ul.dropdown-content > li {
    position: relative;
    padding: 0px 20px;
    width: 100%;
}

.main-menu .navigation .dropdown-content a {
    position: relative;
    display: block;
    padding: 10px 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    line-height: 24px;
    font-weight: 500;
    font-size: 15px;
    color: #242424;
    text-align: left;
    text-transform: capitalize;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation .dropdown-content a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0px;
    border-bottom: 2px solid #eb4343;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

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

.main-menu .navigation > li > ul.dropdown-content > li:last-child > a:after {
    display: none;
}

.main-menu .navigation > li > ul.dropdown-content .tc:hover a {
    color: #eb4343;
}

.main-menu .navigation > li > ul > li:hover > a {
    color: #eb4343
}

.main-menu .navigation > li > ul.dropdown-content .tc:hover a:after {
    width: 100%;
}

@media screen and (max-width: 1023px) {
    .column {
        width: 100%;
        height: auto;
    }

    .dropdown-content {
        position: static;
    }

    .dropdown-content .column h3 {
        margin: 10px 0 0 15px;
        font-size: 15px;

    }

    .mobile-menu .mega.dropdown .column ul {
        display: block !important;
        margin-left: 15px;
    }

    .column img {
        width: 80%;
        margin: 0 auto;
    }
}

/*.mobile-menu .mega{
	display: none!important;
}*/
.reg_m {
    display: none;
}

.mobile-menu .reg_m {
    display: block;
}

.filter-button {
    font-size: 16px;
    border: none;
    text-align: center;
    color: #999;
    margin-bottom: 30px;
    background: none;

}

.filter-button:hover {
    text-align: center;
    color: #e43838;

}

.btn-default:active .filter-button:active {
    background-color: #42B32F;
    color: white;
}

.port-image {
    width: 100%;
}

.gallery_product {
    margin-bottom: 1px;
}

.filter {
    padding-right: 1px;
    padding-left: 1px;
}

.f_sing {
    font-size: 15px;
    display: block;
    text-align: center;
    margin: 0 auto
}

.f_sing a {
    color: #e43838;
}

.nav_wrap {
    display: block;
    text-align: center;
    width: 100%
}

.contact-block .bold_time {
    font-weight: bold !important;
}

.privacy ul li {
    display: inline-block;
    margin: 0 5px;
}

.couponcode {
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding: 25px 0;
    margin: 10px 0 0;
    overflow: hidden;
}

.couponheading {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    margin: 0 25px 0 5px;
    display: inline-block;
}

.per {
    padding: 5px;
    margin: 0 20px 0 0px;
    display: inline-block;
    font-size: 20px;
    color: #fff;
    width: 100%;
    height: 168px;
    background: #f9f9f9;
    padding: 10px;
    position: relative;
    max-width: 320px;
    z-index: 1;
}

.per:after {
    content: "";
    background: url(../images/cuponside.png);
    right: 8px;
    bottom: 12px;
    height: 50px;
    width: 50px;
    position: absolute;
    z-index: 9999;
    background-size: cover;
    background-color: #f9f9f9;
}

.cupon_wrap {
    padding: 5px;
    border: 2px dashed red;
    text-align: center;
    position: relative;
    height: 144px;
}

.cupon_wrap:before {
    content: "";
    background-image: url(../images/iconfinder_edit-cut_152752.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 45px;
    width: 45px;
    display: inline-block;
    position: absolute;
    left: -22px;
    z-index: 9999;
}

.per p {
    color: #e43838;
    background: #fff;
    margin: 10px 0;
    text-align: center;
}

.per .couponcopy {
    width: 100%;
    color: #e43838;
    text-align: center;
    overflow: hidden;
    display: block;
}

.couponcode .per_text {
    width: 100%;
    padding-left: 10px;
    font-size: 14px;
    line-height: 20px;
}

.couponcode .per_text {
    float: right;
}

.couponcopy span {
    display: block;
    font-size: 38px;
    line-height: 38px;
    font-weight: bolder;
    margin: 5px auto;
}

.couponcopysmall {
    font-size: 15px;
    color: #999;
    margin: 0 0 0 0px;
    font-style: italic;
    display: inline-block;
}

.services-section-two .lower-content .fab,
.services-section-two .lower-content img {
    font-size: 100px;
    margin-bottom: 20px;
    color: #eb4343;
}

.service-block .inner-box:hover {
    background: #eb4343;
    color: #fff;

}

.services-section-two .inner-box:hover .fab {
    color: #fff;
}

.services-section-two .inner-box:hover h5 a {
    color: #fff;
}

.services-section-two .inner-box:hover .text {
    color: #fff;
}

.pricing-section.portfolio h3 {
    font-size: 16px;
    margin: 20px 0;
}

.pricing-section.portfolio .pricing-table .table-content {
    padding-bottom: 35px;

}

.pricing-section.portfolio .pricing-table .table-footer a {
    padding: 5px 10px;
}

/*dashboard*/
.dashboard-img img {
    border: 5px solid #ddd;
    width: 100%
}

.dashboard-menu {
    padding-top: 25px
}

.dashboard-menu ul {
    padding: 0;
    margin: 0
}

.dashboard-menu ul li {
    padding: 0;
    margin: 0;
    border-bottom: 1px dashed #d3d3d3
}

.dashboard-menu ul li a {
    padding: 10px;
    display: block;
    color: #888;
    -webkit-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.dashboard-menu ul li a:hover {
    padding: 10px;
    display: block;
    color: #888;
    padding-left: 15px;
    color: #e43838
}

.dashboard-menu ul li i {
    color: #e43838;
    font-size: 15px;
    width: 30px;
    margin-right: 14px;
    border-right: 1px solid #ddd;
    text-align: left
}

.dashboard-menu ul li a:hover i {
    border-right: 1px solid #e43838
}

.dashboard-menu ul li a.active-dashboard {
    background: #e43838;
    color: #fff
}

.dashboard-menu ul li a.active-dashboard i {
    border-right: 1px solid #fff;
    color: #fff
}

.fa-calendar {
    position: absolute;
    bottom: 0px;
}

.news-block-two .image-box {
    width: 70%;
    margin: 0 auto;
}

.sedules .lists {
    background-color: #f5f5f5;
    display: table;
    width: 100%;
    margin-bottom: 20px;
}

.sedules .lists li .title {
    width: 200px;
    font-size: 16px;
    text-align: right;
}

.sedules .lists li .value {
    width: 70%;
}

.lists li .title,
.lists li .value {
    display: table-cell;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.sedules .value h2 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    margin-bottom: 15px;
}

.appointment-form {
    padding: 60px 40px;
    background: #f0f0f0;
}

.contact-form.appointment-form .form-group input[type="text"],
.contact-form.appointment-form .form-group input[type="password"],
.contact-form.appointment-form .form-group input[type="tel"],
.contact-form.appointment-form .form-group input[type="email"],
.contact-form.appointment-form .form-group textarea,
.contact-form.appointment-form .form-group select {
    background: white !important;
}

.sedules .info-box {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.col-padding-y {
    margin: 0 auto;
    border-radius: 100%;
    width: 250px;
    height: 250px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.11);
    background: rgb(255, 210, 102);
    background: -moz-linear-gradient(top, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 210, 102, 1) 1%, rgba(248, 165, 19, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd266', endColorstr='#f8a513', GradientType=0);
}

.pricing-table {
    position: relative;
    z-index: 0;
}

.pricing-detail ul li,
.pricing-head h3,
.pricing-head h2 {
    color: #000;
}

.pricing-head h2 {
    font-size: 3rem;
    margin-bottom: 0;
}

.pricing-head h2 sub {
    font-size: 1.25rem;
}

.pricing-head {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
}

.pricing-list {
    text-align: center;
    padding: 40px 30px;
}

.pricing-detail ul li {
    padding: 10px 0px;
}

.portfolio .filter-button {
    border-right: 2px solid #ccc;
    border-radius: 0;
    padding: 0 20px;
}

.portfolio .filter-button:last-child {
    border: 0;
}

.da-thumbs {
    width: 100%;
}

.da-thumbs li {
    float: left;
    padding: 0 15px 15px 0;
    position: relative;
}

.da-thumbs li a,
.da-thumbs li a img {
    display: block;
    position: relative;
}

.da-thumbs li a {
    overflow: hidden;
}

.da-thumbs li a div {
    position: absolute;
    background: #333;
    background: rgba(235, 68, 67, 0.8);
    width: 100%;
    height: 100%;
}

.da-thumbs li a div h4 {
    font-size: 16px;
}

.da-thumbs li a div span,
.da-thumbs li a div h4 {
    display: block;
    text-align: center;
    padding: 10px 0;
    margin: 40px 20px 0 20px;
    text-transform: uppercase;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.9);
}

.da-thumbs li a div span {
    margin: 0;
}

.portfolio-details .owl-theme .owl-next,
.portfolio-details .owl-theme .owl-prev {
    width: 22px;
    height: 40px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    font-size: 30px;
}

.portfolio-details .owl-theme .owl-prev {
    left: 10px;
}

.portfolio-details .owl-theme .owl-next {
    right: 10px;
}

.portfolio-details .owl-carousel .owl-item img {
    width: 80%;
    margin: 0 auto;
}

.portfolio-details .discription h4 {
    font-size: 16px;
    color: #7D97A6;
    margin: 10px auto;
    font-weight: bolder;

}

.portfolio-details .discription h4 span {
    color: rgba(235, 68, 67, 1);
}

.dropdown-content .column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e43838;
}

.dropdown-content .column p {
    font-size: 14px;
}

.dropdown-content .column article a {
    overflow: hidden;
}

.dropdown-content .column article a img {
    float: left;
}

.main-menu .navigation .dropdown-content a.allblogs {
    color: #eb4343;
}

.dropdown-content .column article a .post-right {
    float: left;
    width: calc(100% - 60px);
    padding-left: 15px;
}

.dropdown-content .column article a .post-right h5 {
    font-size: 14px;
}

.fa-calendar {
    font-size: 90px;
    color: #e43838;
}

.plan_img {
    position: relative;
}

.plan_img:after {
    content: "";
    background: url(../images/sp.png) no-repeat;
    height: 200px;
    width: 200px;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    background-size: contain;
}

.accordion {
    margin: 70px 0;
}

.accordion .accordionTitle {
    font-size: 15px;
    color: #515151;
    line-height: 26px;
    padding: 7px 31px 7px 20px;
    margin-top: 20px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    background: url(../images/plus1.png) 100% 5px no-repeat;
}

.accordion .accordionTitle.active {
    color: #fff;
    background: #1d7ec5 url(../images/minus1.png) 100% 5px no-repeat;
}

.accordion .accordionDesc {
    font-size: 12px;
    line-height: 24px;
    display: none;
    padding: 10px 20px;
    border: 1px solid #e4e4e4;
    border-top: 0;
}

.accordion .accordionDesc.active {
    display: block;
}

.accordion .accordionDesc p {
    margin-bottom: 20px;
    font-size: 14px;
}

.top-left .rating-input {
    float: left;
    margin-right: 6px;

}

.top-left .glyphicon-star::before {
    color: #ffff00;
}

#feedback {
    height: 0px;
    width: 42px;
    position: fixed;
    right: 0;
    top: 260px;
    z-index: 1000;
}

#feedback.free_est {
    top: 435px;

}


#feedback a {
    border-radius: 8px;
    text-transform: uppercase;
    display: block;
    background: #073d60;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.20);
    height: 166px;
    width: 114px;
    padding: 8px 7px;
    color: #fff;
    font-size: 17px;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    /*	border-bottom: solid 1px #333;
	border-left: solid 1px #333; border-right: solid 1px #fff;*/
}

#feedback a:hover {
    background: #0098da;

}

#feedback.free_est a {
    width: 222px;
    background: #c00;
    height: 187px;
}

#feedback.free_est a:hover {
    background: #eb4343;
}

.logo-outer .btn-style-one {
    display: none;
}

@media screen and (max-width: 1023px) {
    .column {
        width: 100%;
        height: auto;
    }

    .dropdown-content {
        position: relative;
    }

    .dropdown-content .column h3 {
        margin: 15px 15px 18px;
        font-size: 15px;

    }

    .mobile-menu .mega.dropdown .column ul {
        display: block !important;
        margin-left: 0px;
    }

    .column img {
        width: 100%;
        margin: 5px 0;
        display: block;
    }

    .entry-title {
        padding: 0 15px;
        font-size: 15px;
    }

    .mega a {
        color: #404040;
    }

    .mega .allblogs {
        color: #fff !important;
        float: left;
        border: 1px saddlebrown;
        border-radius: 3px;
        text-transform: uppercase;
        background-color: #e43838;
        padding: 3px 10px !important;
        margin: 5px;
        font-size: 14px !important;
    }

    .mobile-menu .navigation li.tc {
        padding: 0 5px;
    }

    .banner-section-two .slide-item {
        max-height: 250px;
    }

    .banner-section-two .content-box {
        height: 300px;
    }

    .sp_btn a {
        font-size: 16px !important;
        padding: 13px 15px 13px 85px;
    }

    .sp_btn a::before {
        height: 90px;
        width: 90px;
        left: -14px;
        top: -24px;
    }

    .sp_btn a::after {
        height: 40px;
        width: 40px;
        left: -5px;
        top: 25px;
    }

    .info-section {
        padding: 10px 0;
    }

    a#bbblink.ruhzbam,
    a#bbblink.ruhzbum {
        width: 100px !important;
        height: 50px;
    }

    a#bbblink.ruhzbam img,
    a#bbblink.ruhzbum img {
        width: 200px !important;
        height: 50px;
    }

    .info-section .outer-box .image {
        margin: 0 5px !important;
    }

    #feedback {
        display: none;
    }

    .logo-outer .btn-style-one {
        display: block;
        padding: 8px;
        margin: 10px 0 0;
        width: 240px;

    }

    .menu-box #feedback {
        display: block;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        padding: 15px;
        margin-left: 75px;
        margin-top: -50px;
    }

    .my-store-tab .nav-tabs > li {
        margin-bottom: 5px;
    }

    .my-store-tab .nav-tabs > li a {
        padding: 5px;
        font-size: 14px;
    }

    .my-store-dtl {
        margin: 25px 0;
    }

    .dropdown-content .column p {
        padding: 0 15px;
    }

    .link-box {
        padding-left: 15px;
        margin: 7px 0;
    }
}

.star-rating {
    display: block;
    float: left;
    margin-top: 10px;
    margin-bottom: 5px
}

.star-rating:not(:checked) > input {
    display: none
}

.star-rating:not(:checked) > label {
    float: right;
    width: 25px;
    padding: 0 .1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.2;
    color: #a9a1a1
}

.star-rating:not(:checked) > label:before,
.stars .fa:before {
    content: '★';
    font-size: 25px;
    font-family: 'Glyphicons Halflings';
}

.star-rating:not(:checked) > label:hover,
.star-rating:not(:checked) > label:hover ~ label,
.star-rating > input:checked ~ label {
    color: #df223c
}

.stars .fa {
    color: #df223c
}

.stars .fa-star-o {
    color: #a9a1a1
}


.nav-tabs {
    display: none;
}

@media (min-width: 768px) {
    .nav-tabs {
        display: flex;
    }

    .card {
        border: none;
    }

    .card .card-header {
        display: none;
    }

    .card .collapse {
        display: block;
    }

}

@media (max-width: 767px) {
    .tab-pane {
        display: block !important;
        opacity: 1;
    }

    .my-store-tab {
        margin-top: 20px;
    }

    .media-comment-section .media-rating {
        padding: 0;
        border: 0;
    }
}

.card-header a {
    color: #eb4343;
}

.card-header {
    background: #e9e9e9;
}

.active .card-header {

}

.card-header a:hover {
    color: #1872c5;
}

.active .card-header a {

}

.service-sub-heading {
    color: #1872c5;
    text-transform: uppercase;
}

.daate {
    padding: 100px 0;
}

.fc-title,
.fc-time {
    color: #fff;
}

#date-popover {
    position: inherit;
}


.button-grid.active {
    background: #082a53;
}

.button-grid {
    padding: 10px;
    position: relative;
    margin-bottom: 15px;
    background: #e43838;
    color: #ffffff;
    width: 100%;
    font-size: 14px;
}

.button-grid a {
    color: #fff;
}

.button-grid p {
    color: #fff;
    font-size: 12px;
}

.button-grid.active .button-grid-word {
    color: #fff;
}

.button-grid-word {
    font-size: 13px;
    font-weight: 600;
}

.daate h3 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 15px;
}

.productsell .product-chooser-item .pinfo {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
}

.productsell .product-chooser-item .pinfo .old_price,
.productsell .product-chooser-item .pinfo .cat_pro {
    font-family: 'Poppins', sans-serif;
    color: #666;
    text-decoration: line-through;
    display: block;
}

.productsell .product-chooser-item .pinfo .cat_pro {
    color: #073d60;
    text-decoration: none;
}

.productsell .product-chooser-item h4 a {
    font-size: 16px;
    color: #073d60;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    margin: 10px 0 5px;
}

.productsell .product-chooser-item h5 {
    font-size: 16px;
    color: #e43838;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    margin: 5px 0 10px;
}

.productsell .product-chooser-item .description {
    font-size: 14px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
}

.productsell .product-chooser-item .btn-style-one {
    padding: 5px 10px;
}

.product_details {
    padding: 2vw 0;
}

.product_details h4 {
    font-size: 24px;
    color: #073d60;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    margin: 10px 0 5px;
}

.product_details .price {
    font-size: 24px;
    color: #e43838;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    margin: 0 0 10px;
}

.product_details .add_cart {
    background: #082a53;
}

.product_details .description {
    margin-bottom: 20px;
    display: block;
}

.product_details .outer {
    margin: 0 auto;
    max-width: 800px;
}

.glyphicon-chevron-right:before {
    content: '>';
    font-size: 30px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.glyphicon-chevron-left:before {
    content: '<';
    font-size: 30px;
    line-height: 1.2em;
    color: #073d60;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.item-photo {
    width: 100%
}

/*set a border on the images to prevent shifting*/
#gallery_01 img {
    border: 2px solid white;
    width: 25%;
    float: left;
}

/*Change the colour*/
#gallery_01 .active img {
    border: 2px solid #333 !important;
}

.product_details .old_price,
.product_details .cat_pro {
    font-family: 'Poppins', sans-serif;
    color: #666;
    text-decoration: line-through;
    display: block;
}

.product_details .cat_pro {
    color: #073d60;
    text-decoration: none;
}

.product_details .main_price {
    display: block;
}

.daate div.zabuto_calendar .table th,
.daate div.zabuto_calendar .table td {
    padding: 16px 2px;
}

/***
====================================================================
Package Services Starts
====================================================================
 ***/
.service_package .service_item li {
    margin-bottom: 15px;
}

.service_package .card-header {
    padding: 5px 10px;
    background: #f8f8f8;
    border: 1px solid #dedede;
}

.service_package .card-header p {
    font-size: 16px;
    line-height: 20px;
    font-family: "Poppins", sans-serif;
    color: #787878;
    margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
    .service_package .card-header p {
        font-size: 14px;
        line-height: 17px;
    }
}

.service_package.faq .card-header a.accordion-toggle {
    padding: 0;
    background: none;
    color: #e43838;
    font-size: 14px;
    line-height: 15px;
    font-style: oblique;
    border: 0;
}

.service_package .card-header span {
    margin: 0 auto;
    font-size: 20px;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .service_package .card-header span {
        font-size: 16px;
    }
}

@media only screen and (max-width: 576px) {
    .service_package .card-header span {
        width: 100%;
        margin: 10px auto;
        padding-left: 15px;
    }
}

.service_package .card-header .add_service {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    background-color: #073d60;
    letter-spacing: 0;
    font-family: "Open Sans", sans-serif;
    width: auto;
    margin: 0 15px 0 0;
}

@media only screen and (max-width: 768px) {
    .service_package .card-header .add_service {
        width: 85px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 576px) {
    .service_package .card-header .align-items-center {
        align-items: inherit !important;
    }

    .service_package .card-header .add_service {
        width: 150px;
        margin: 0 0 0 15px;
    }
}

.service_package .panel-collapse {
    background: #ffffff;
}

.service_package .card-block ul li {
    position: relative;
    padding-left: 5px;
}

.service_package .card-block ul li:before {
    content: "-";
    position: absolute;
    left: -8px;
}

.store_list {
    margin-bottom: 25px;
}

.store_list .store_list_header {
    background-color: #e43838;
    color: #fff;
    padding: 10px 10px;
}

.store_list .store_list_header h4.store_list_header_store_name {
    font-size: 20px;
    line-height: 24px;
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .service_package .col-sm-3 {
        padding-left: 0;
    }

    .store_list .store_list_header h4.store_list_header_store_name {
        font-size: 16px;
        line-height: 20px;
        margin: 0;
    }
}

.store_list .store_list_header h5.store_list_header_store_address {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
}

.store_list .store_list_deliver {
    background-color: #f7f7f7;
    padding: 15px 10px;
}

.store_list .store_list_deliver ul li {
    display: inline-block;
    margin-right: 15px;
}

.store_list .store_list_deliver ul li .form-check-label {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
}

.store_list .store_list_deliver .store_item_deliver_price {
    font-size: 14px;
    line-height: 18px;
}

.store_list .store_items {
    background-color: #f7f7f7;
}

.store_list .store_items table td {
    display: table-cell;
    vertical-align: inherit;
}

.store_list .store_items table .img_wrap img {
    max-width: 80px;
}

.store_list .store_items table .item_name h3 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.store_list .store_items table .item_name p {
    font-size: 16px;
    line-height: 20px;
}

.store_list .order_summery_list {
    background: #ffffff;
    padding: 0 0 25px;
}

.store_list .order_summery_list table {
    font-weight: 500;
}

.store_list .order_summery_list table tr {
    border: 1px solid #ebebeb;
}

.store_list .order_summery_list table th {
    padding: 7px 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
}

.store_list .order_summery_list table td {
    text-align: right;
    padding: 7px 10px;
}

.store_list .order_summery_list table tr.total {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.store_list .order_summery_list table tr.total th {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    padding: 20px 10px;
}

.store_list .order_summery_list table tr.total td {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
}

.store_list .order_summery_list table .form-control {
    width: 75px;
    font-size: 14px;
    border-radius: 5px;
}

.store_list .order_summery_list table .promo {
    font-size: 13px;
    font-weight: lighter;
}

.store_list .order_summery_list table .promo_code {
    color: #e43838;
    display: inline;
    padding: 0;
    outline: none;
    border-radius: 0px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: bolder;
    width: 30px;
    padding: 5px 5px 0 5px;
    font-weight: lighter;
    font-size: 13px;
    text-align: right;
    width: 100%;
    letter-spacing: 5px;
    background: no-repeat;
}

.store_list .order_summery_list table .promo_code:hover {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.store_list .order_summery_list table .promo_code:active {
    position: relative;
}

@media only screen and (max-width: 576px) {
    .store_list .order_summery_list table .promo_code {
        font-size: 14px;
        font-weight: bold;
        padding: 12px 17px;
    }
}

.store_list .order_summery_list .checkout {
    background: #e43838;
    color: #fff;
    display: inline;
    padding: 15px 20px;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    margin: 10px auto;
    display: block;
    width: 100%;
}

.store_list .order_summery_list .checkout:hover {
    text-decoration: none;
    background: #073d60;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.store_list .order_summery_list .checkout:active {
    position: relative;
}

@media only screen and (max-width: 576px) {
    .store_list .order_summery_list .checkout {
        font-size: 14px;
        font-weight: bold;
        padding: 12px 17px;
    }
}

.additional_head {
    background: #cccccc;
    width: 100%;
}

.additional_head th {
    width: 100%;
    color: #fff;
}

/***
====================================================================
Package Services Ends
====================================================================
 ***/

/***

====================================================================
			42. Service Package
====================================================================

 ***/
.service_package .service_item li {
    margin-bottom: 15px;
}

.service_package .card-header {
    padding: 5px 10px;
    background: #f8f8f8;
    border: 1px solid #dedede;
}

.service_package .card-header p {
    font-size: 16px;
    line-height: 20px;
    font-family: "Poppins", sans-serif;
    color: #787878;
    margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
    .service_package .card-header p {
        font-size: 14px;
        line-height: 17px;
    }
}

.service_package.faq .card-header a.accordion-toggle {
    padding: 0;
    background: none;
    color: #e43838;
    font-size: 14px;
    line-height: 15px;
    font-style: oblique;
    border: 0;
}

.service_package .card-header span {
    margin: 0 auto;
    font-size: 20px;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .service_package .card-header span {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .service_package .card-header span {
        width: 100%;
        margin: 10px auto;
        padding-left: 15px;
    }
}

.service_package .card-header .add_service {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    background-color: #073d60;
    letter-spacing: 0;
    font-family: "Open Sans", sans-serif;
    width: auto;
    margin: 0 15px 0 0;
}

@media only screen and (max-width: 768px) {
    .service_package .card-header .add_service {
        width: 85px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) {
    .service_package .card-header .align-items-center {
        align-items: inherit !important;
    }

    .service_package .card-header .add_service {
        width: 150px;
        margin: 0 0 0 15px;
    }
}

.service_package .panel-collapse {
    background: #ffffff;
}

.service_package .card-block ul li {
    position: relative;
    padding-left: 5px;
}

.service_package .card-block ul li:before {
    content: "-";
    position: absolute;
    left: -8px;
}

.store_list {
    margin-bottom: 25px;
}

.store_list .store_list_header {
    background-color: #e43838;
    color: #fff;
    padding: 10px 10px;
}

.store_list .store_list_header h4.store_list_header_store_name {
    font-size: 20px;
    line-height: 24px;
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .service_package .col-sm-3 {
        padding-left: 0;
    }

    .store_list .store_list_header h4.store_list_header_store_name {
        font-size: 16px;
        line-height: 20px;
        margin: 0;
    }
}

.store_list .store_list_header h5.store_list_header_store_address {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
}

.store_list .store_list_deliver {
    background-color: #f7f7f7;
    padding: 15px 10px;
}

.store_list .store_list_deliver ul li {
    display: inline-block;
    margin-right: 15px;
}

.store_list .store_list_deliver ul li .form-check-label {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
}

.store_list .store_list_deliver .store_item_deliver_price {
    font-size: 14px;
    line-height: 18px;
}

.store_list .store_items {
    background-color: #f7f7f7;
}

.store_list .store_items table td {
    display: table-cell;
    vertical-align: inherit;
}

.store_list .store_items table .img_wrap img {
    max-width: 80px;
}

.store_list .store_items table .item_name h3 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

.store_list .store_items table .item_name p {
    font-size: 16px;
    line-height: 20px;
}

.store_list .order_summery_list {
    background: #ffffff;
    padding: 0 0 25px;
}

.store_list .order_summery_list table {
    font-weight: 500;
}

.store_list .order_summery_list table tr {
    border: 1px solid #ebebeb;
    font-size: 14px;
    line-height: 17px;
}

.store_list .order_summery_list table th {
    padding: 7px 10px;
    font-weight: 500;
    /* width: 40%; */
    position: relative;
}

.store_list .order_summery_list table .add_head th {
    /* width: 65%; */
    position: relative;
}

.store_list .mytable td span {
    cursor: pointer;
    font-size: 11px;
    margin-left: 5px;
    color: red;
}

.store_list .order_summery_list table td {
    text-align: right;
    padding: 7px 10px;
    /* width: 60%; */
}

.store_list .order_summery_list table .add_head td {
    /* width: 35%; */
}

.store_list .order_summery_list table tr.total {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.store_list .order_summery_list table tr.total th {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    padding: 20px 10px;
}

.store_list .order_summery_list table tr.total td {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
}

.store_list .order_summery_list table .form-control {
    width: 75px;
    font-size: 14px;
    border-radius: 5px;
}

.store_list .order_summery_list table .promo {
    font-size: 13px;
    font-weight: lighter;
}

.store_list .order_summery_list table .promo_code {
    color: #e43838;
    display: inline;
    padding: 0;
    outline: none;
    border-radius: 0px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: bolder;
    width: 30px;
    padding: 5px 5px 0 5px;
    font-weight: lighter;
    font-size: 13px;
    text-align: right;
    width: 100%;
    letter-spacing: 5px;
    background: no-repeat;
}

.store_list .order_summery_list table .promo_code:hover {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.store_list .order_summery_list table .promo_code:active {
    position: relative;
}

@media only screen and (max-width: 576px) {
    .store_list .order_summery_list table .promo_code {
        font-size: 14px;
        font-weight: bold;
        padding: 12px 17px;
    }
}

.store_list .order_summery_list .checkout {
    background: #e43838;
    color: #fff;
    display: inline;
    padding: 15px 20px;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    margin: 10px auto;
    display: block;
    width: 100%;
}

.store_list .order_summery_list .checkout:hover {
    text-decoration: none;
    background: #073d60;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.store_list .order_summery_list .checkout:active {
    position: relative;
}

@media only screen and (max-width: 576px) {
    .store_list .order_summery_list .checkout {
        font-size: 14px;
        font-weight: bold;
        padding: 12px 17px;
    }
}

.additional_head {
    background: #cccccc;
    color: #fff;
    border: 0;
}

.additional_head th {
    color: #fff;
}

.mytable {
    border-collapse: collapse;
    width: 100%;
    background-color: white;
}

.mytable-head {
    border: 1px solid #ebebeb;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mytable-head td {
    border: 0px solid #ebebeb;
}

.mytable-body {
    border: 0px solid #ebebeb;
    border-top: 0;
    border-right: 0;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mytable-body td {
    border: 0;
    border-top: 0;
}

.mytable-footer {
    border: 0;
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.mytable-footer td {
    border: 0;
    border-top: 0;
}

.billing_address {
    margin-bottom: 50px;
}

.package_buy .contact-form .form-group {
    margin-bottom: 20px;
}

.package_buy .package_header {
    background-color: #e43838;
    color: #fff;
}

.package_buy .added_head {
    background-color: #ebebeb;
    color: #666;
}

.package_buy .total {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
}

.app-section {
    background: #fff;
    padding: 100px 0 25px;
    color: #242424;
    margin-bottom: 20px;
    z-index: 1;
    margin-top: -3px;
}

.app-section-heading {
    color: #000;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 18px;
}

.app-section .text {
    color: #242424;
}

.appstores img {
    width: 230px;
    margin-bottom: 5px;
}
}

.app-section .sec-title {
    position: relative;

.appstores {
    margin-top: 20px;
}

.appstores a {
    display: block;
}

.appimg {
    text-align: center;
}

.appimg img {
    width: 370px;
}

/*@media only screen and (max-width: 980px) {*/
/*    .appimg {*/
/*    }*/
/*}*/

/*@media only screen and (max-width: 768px) {*/
/*    .appimg {*/
/*        display: none;*/
/*    }*/
/*}*/

/*.qrcode, .app-store {*/
/*    width: 50%;*/
/*}*/
/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 9898989;
    height: 2em;
    width: 2em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.cookie-consent {
    position: fixed !important;
    bottom: 0 !important;
    z-index: 999 !important;
    color: #fff !important;
    background: #222 !important;
    width: 100% !important;
    text-align: center !important;
    box-shadow: 0 1px 10px #000 !important;
    padding: 20px !important;
}

.cookie-consent__agree {
    font-weight: 400 !important;
    background: #e1a70f !important;
    border-radius: 3px !important;
    color: #fff !important;
    padding: 8px 20px !important;
    text-transform: capitalize !important;
    letter-spacing: 0.5px !important;
    font-size: 13px !important;
    margin-left: 15px !important;
}

.cookie-consent__agree:hover {
    background: #d6a31e !important;
    color: #fff !important;
}

.form-inner .form-control::placeholder {
    color: black;
    opacity: 1; /* Firefox */
}

.form-inner .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: black;
}

.form-inner .form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: black;
}

.my-store-tab {
    margin-top: 35px;
}

.my-store-tab .tab-pane {
    padding: 20px 0 0px 0;
}

.service-block {
    padding: 10px 10px 10px;
}

.clients-section {
    position: relative;
    padding: 40px 0 60px;
}

.clients-section .sec-title {
    margin-bottom: 40px;
}

.testimonial-section-two {
    padding: 50px 0;
}

.news-section {
    padding: 65px 0 50px;
}

.why-choose-us .content-column .inner-column {
    padding: 70px 0 50px;
}

.pricing-section {
    position: relative;
    padding: 70px 0 70px;
}

.services-section-two {
    padding: 70px 0;
}

.about-section {
    padding: 70px 0 30px;
}

.sidebar-page-container {
    position: relative;
    padding: 50px 0px 50px;
}

.services-sidebar .sidebar-widget {
    margin-bottom: 35px;
}

.help-block {
    color: red;
}

.status .child {
    background: url(../images/office_status.png) 0 0 no-repeat;
}


@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.ticker-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    height: 4rem;
    background-color: rgba(0, 0, 0, 0.9);
    padding-left: 100%;
    box-sizing: content-box;
}

.ticker-wrap .ticker {
    display: inline-block;
    height: 4rem;
    line-height: 4rem;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
}

.ticker-wrap .ticker a {
    color: white;
}

.ticker-wrap .ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 2rem;
    color: white;
}

.emp-profile {
    padding: 3%;
    margin-top: 3%;
    margin-bottom: 3%;
    border-radius: 0.5rem;
    background: #fff;
}

.profile-img {
    text-align: center;
}

.profile-img img {
    width: 70%;
    height: 100%;
}

.profile-img .file {
    position: relative;
    overflow: hidden;
    margin-top: -20%;
    width: 70%;
    border: none;
    border-radius: 0;
    font-size: 15px;
    background: #212529b8;
}

.profile-img .file input {
    position: absolute;
    opacity: 0;
    right: 0;
    top: 0;
}

.profile-head h5 {
    color: #333;
}

.profile-head h6 {
    color: #0062cc;
}


.proile-rating {
    font-size: 12px;
    color: #818182;
    margin-top: 20px;
    margin-bottom: 20px;
}

.proile-rating span {
    color: #495057;
    font-size: 20px;
    font-weight: 600;
}

.profile-head .nav-tabs {
    margin-bottom: 5%;
}

.profile-head .nav-tabs .nav-link {
    font-weight: 600;
    border: none;
}

.profile-head .nav-tabs .nav-link.active {
    border: none;
    border-bottom: 2px solid #0062cc;
}

.profile-work {
    padding: 14%;
    margin-top: -15%;
}

.profile-work p {
    font-size: 12px;
    color: #818182;
    font-weight: 600;
    margin-top: 10%;
}

.profile-work a {
    text-decoration: none;
    color: #495057;
    font-weight: 600;
    font-size: 14px;
}

.profile-work ul {
    list-style: none;
}

.profile-tab label {
    font-weight: 600;
}

.profile-tab p {
    font-weight: 600;
    color: #0062cc;
}

.daate {
    padding: 25px 0;
    z-index: 1500;
}

.event.event-clickable {
    background-color: blue !important;
}

.badge.badge-event {
    background-color: green !important;
}

.pricing-table .table-content {
    position: relative;
    padding: 35px 15px 45px;
}

/*.blogContent ul,*/
/*.blogContent ol {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    list-style: none;*/
/*}*/

/*.blogContent ul {*/
/*    margin-left: 1.5em;*/
/*}*/

/*.blogContent ul li {*/
/*    position: relative;*/
/*    padding-left: 1.5em;*/
/*    line-height: 1.8;*/
/*}*/

/*.blogContent ul li:before {*/
/*    content: "\2022";*/
/*    position: absolute;*/
/*    left: 0;*/
/*}*/

/*.blogContent ol {*/
/*    margin-left: 1.5em;*/
/*    list-style-type: decimal;*/
/*}*/

/*.blogContent ol li {*/
/*    position: relative;*/
/*    padding-left: 1.5em;*/
/*    line-height: 1.8;*/
/*}*/

/*.blogContent img {*/
/*    max-width: 100% !important;*/
/*    height: auto !important;*/
/*    display: block !important;*/
/*    margin: 1em auto !important;*/
/*}*/

/*.blogContent {*/
/*    font-size: 17px;*/
/*    line-height: 1.8;*/
/*    color: #242424;*/
/*}*/

/*.blog-single .lower-content p {*/
/*    font-size: 17px !important;*/
/*    line-height: 1.8 !important;*/
/*    color: #242424 !important;*/
/*}*/
/*.blogContent a {*/
/*    color: #007bff;*/
/*    text-decoration: none;*/
/*}*/
@media only screen and (max-width: 1439px) {
    .banner-section .image-box {
        right: 0;
    }

}

@media only screen and (max-width: 1139px) {
    .banner-section .image-box {
        display: none;
    }

    .service-detail,
    .main-footer .links-widget,
    .banner-section .content-box,
    .about-section .image-column .inner-column,
    .mission-section .content-column .inner-column,
    .consultation-section .form-column .inner-column {
        padding-left: 0;
    }

    .service-detail .two-column .text-column .inner,
    .service-detail .free-consultation .brochure-column .inner,
    .mission-section .image-column .inner-column,
    .contact-page-section .form-column .inner-column,
    .consultation-section .content-column .inner-column {
        padding-right: 0;
    }

    .main-menu .navigation > li {
        margin-left: 30px;
    }

    .contact-page-section .form-column .inner-column,
    .mission-section .content-column .inner-column {
        margin-top: 0;
    }

    .header-style-two .outer-box {
        display: none;
    }

    .about-section .image-column .image-2,
    .about-section .image-column .image-3 {
        float: left;
        width: 50%;
    }

    .about-section .image-column .image-2 img,
    .about-section .image-column .image-3 img {
        width: 100%;
    }

    .banner-carousel .image-box {
        display: block;
        width: 40%;
    }

    .banner-section-three .image-box .image {
        margin-left: -400px;
    }

    .banner-section-three .service-block {
        margin-bottom: 30px;
    }

    .banner-section-three .image-box.style-two .image {
        margin-bottom: 30px;
        margin-left: 0;
    }

    .our-blog.padding-right,
    .blog-sidebar.padding-right,
    .blog-single.padding-right {
        padding-right: 0;
    }

    .service-detail .free-consultation .content-column {
        order: 0;
        margin-bottom: 30px;
    }

    .brochure-box .theme-btn {
        padding: 10px 30px;
    }

    .page-title h1 {
        font-size: 40px;
    }
}


@media only screen and (min-width: 768px) {
    .main-menu .navigation > li > ul,
    .main-menu .navigation > li > ul > li > ul {
        display: block !important;
        visibility: hidden;
        opacity: 0;
    }
}

@media only screen and (max-width: 1023px) {
    .nav-outer .mobile-nav-toggler {
        display: block;
    }

    .main-header.fixed-header .header-lower,
    .header-style-two.fixed-header .header-upper {
        position: absolute;
        animation: none;
    }

    .header-style-three .header-upper,
    .header-style-three.fixed-header .header-lower,
    .header-style-three.fixed-header .header-upper {
        position: relative;
        animation: none;
    }


    .testimonial-block .inner-box:before,
    .fun-fact-section .layer-image,
    .main-header .nav-outer .nav-inner,
    .main-header .top-left {
        display: none;
    }

    .main-header .header-lower .logo-outer {
        padding: 10px 15px;
    }

    .main-header .header-lower .nav-outer {
        padding-right: 15px;
    }

    .header-style-three .header-lower .nav-outer,
    .header-style-two .header-lower .nav-outer {
        padding-right: 0;
    }

    .call-to-action .btn-column,
    .contact-page-section .image-column .image-box,
    .call-to-action .content-column,
    .fun-fact-section .outer-box {
        width: 100%;
        text-align: center;
    }

    .banner-section-three .content-box .inner,
    .why-choose-us .content-column .feature-outer,
    .fun-fact-section .count-outer {
        max-width: 100%;
    }

    .why-choose-us .image-column .inner-column {
        margin: 0;
        text-align: right;
    }

    .why-choose-us .image-column .image img {
        display: inline-block;
    }

    .testimonial-block .inner-box {
        padding-left: 130px;
    }

    .testimonial-block .thumb {
        left: 0;
        top: 0;
    }

    .info-section .outer-box .image {
        margin: 0 15px 10px;
    }

    .header-style-three,
    .header-style-two {
        padding-bottom: 0;
    }

    .header-style-two .header-upper .logo-outer {
        padding: 10px 0;
    }

    .header-style-three .header-lower,
    .header-style-two .header-upper {
        position: relative;
    }

    .header-style-two .nav-outer .mobile-nav-toggler .icon {
        color: #e43838;
    }

    .header-style-two .header-top .info-list {
        display: none;
    }

    .header-style-two .top-left {
        display: block;
    }

    .header-style-three .header-lower .nav-outer {
        float: right;
    }

    .header-style-three .header-lower .outer-box {
        padding-left: 0;
        margin-left: 0;
    }

    .header-style-three .search-box-outer .dropdown-menu {
        right: auto !important;
        left: 0 !important;
    }

    .header-style-three .upper-right,
    .header-style-three .logo-outer {
        width: 100%;
        text-align: center;
    }

    .header-style-three .logo-outer .logo img {
        display: inline-block;
    }

    .header-style-three .upper-right .info-box {
        float: none;
        margin: 0 20px 20px;
        display: inline-block;
        padding: 0;
    }

    .header-style-three .upper-right .btn-box a {
        display: inline-block;
        top: -10px;
    }

    .header-style-three .header-lower .outer-box:before {
        display: none;
    }


    .banner-section .content-box {
        float: left;
    }

    .page-title .image-box,
    .testimonial-block-three .inner-box:before,
    .banner-carousel .image-box {
        display: none;
    }

    .sidebar-page-container .content-side,
    .contact-page-section .form-column,
    .mission-section .content-column {
        order: 0;
    }

    .testimonial-block-three {
        padding: 100px 0;
    }

    .testimonial-block-three .inner-box {
        padding-left: 150px;
    }

    .testimonial-block-three .thumb {
        left: 0;
    }

    .services-section-two .service-block {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .main-header .top-right,
    .header-style-three .upper-right {
        display: none;
    }

    .header-style-two .top-right {
        display: block;
    }


    .main-header .header-lower {
        margin-top: 15px;
    }

    .header-style-three .header-lower {
        margin-top: 0;
    }

    .banner-section {
        padding-top: 200px;
    }

    .banner-section-two .content-box h2 span,
    .consultation-section .content-column h2,
    .banner-section .content-box h2 {
        font-size: 30px;
    }

    .consultation-section .content-column .title,
    .banner-section .content-box h2 span {
        font-size: 24px;
    }

    .banner-section-two .content-box h2 {
        font-size: 36px;
    }

    .banner-section .content-box .info-box,
    .banner-section .content-box .info-box strong {
        font-size: 20px;
    }

    .banner-section .banner-base .image {
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .testimonial-block .inner-box {
        padding-left: 0;
        text-align: center;
    }

    .testimonial-block .thumb {
        position: relative;
        display: inline-block;
    }

    .testimonial-section .owl-nav {
        position: relative;
        width: 100%;
        margin-top: 30px;
        left: 0;
        bottom: 0;
        top: auto;
        text-align: center;
    }

    .news-section,
    .clients-section,
    .testimonial-block-three,
    .services-section-two,
    .testimonial-section {
        padding: 70px 0;
    }

    .team-section,
    .mission-section,
    .contact-page-section,
    .services-section.alternate,
    .sidebar-page-container,
    .consultation-section,
    .fun-fact-section,
    .services-section {
        padding: 70px 0 20px;
    }

    .about-section {
        padding: 70px 0 30px;
    }

    .pricing-section {
        padding: 70px 0 40px;
    }

    .testimonial-page-section {
        padding-top: 70px;
    }

    .contact-map-section {
        padding-bottom: 70px;
    }

    .fun-fact-section .count-outer:before {
        display: none;
    }

    .why-choose-us .content-column .inner-column {
        padding-top: 70px;
    }

    .about-section .content-column h2 {
        font-size: 24px;
        line-height: 1.3em;
    }

    .service-block-two .inner-box {
        min-height: auto;
    }

    .banner-carousel .owl-nav,
    .service-block-two .inner-box br {
        display: none;
    }

    .team-section .sec-title.style-two,
    .services-section-three .sec-title {
        padding-right: 0;
    }

    .sidebar-page-container .comments-area .comment.reply-comment {
        margin-left: 0;
    }

    .testimonial-block-three .thumb {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
    }

    .testimonial-block-three .inner-box {
        padding-left: 0;
        text-align: center;
    }

    .page-title {
        padding: 140px 0px 40px;
    }

    .imgwrapper {
        width: 45px;
        float: left;
    }

    .imgwrapper img {
        width: 100%;
        height: auto;
    }


}

@media only screen and (max-width: 599px) {
    .header-style-two .top-right .language,
    .header-style-two .header-top .info-list,
    .main-header .header-lower .logo-outer:before {
        display: none;
    }

    .mission-section h2,
    .clients-section .sec-title h2,
    .pricing-table .price span:before,
    .pricing-table .price {
        font-size: 28px;
    }

    .banner-section-three .content-box h2,
    .page-title h1 {
        font-size: 30px;
    }

    .news-block-two .lower-content h3,
    .call-to-action .content-column h3,
    .banner-section-three .content-box h2 span,
    .consultation-section .content-column h2,
    .fun-fact-section .outer-box .text,
    .sec-title h2 {
        font-size: 24px;
        line-height: 1.3em;
    }

    .banner-section-three .content-box .info-box a,
    .banner-section-two .content-box .btn-box a,
    .consultation-section .content-column .title {
        font-size: 20px;
    }

    .main-header .top-right .text a,
    .main-header .top-right {
        width: 100%;
        text-align: center;
    }

    .banner-section-three,
    .banner-section {
        text-align: center;
    }

    .banner-section-three .content-box .info-box .icon,
    .banner-section .content-box .info-box .icon {
        position: relative;
        display: block;
        margin: 0 auto 10px;
    }

    .banner-section-three .content-box .info-box,
    .banner-section .content-box .info-box {
        padding: 20px 25px;
        border-radius: 0;
    }

    .banner-section-three .content-box .info-box strong,
    .banner-section .content-box .info-box strong {
        margin-left: 0;
        width: 100%;
    }

    .footer-bottom .copyright-text,
    .why-choose-us .content-column .list-style-one li {
        width: 100%;
    }

    .footer-bottom .copyright-text {
        line-height: 24px;
        text-align: left;
    }

    .footer-bottom .privacy {
        width: 100%;
        text-align: left;
    }

    .banner-section .content-box,
    .banner-section-two {
        display: block;
    }

    .banner-section-three .content-box {
        height: 700px;
    }


    .comment-form .form-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sidebar-page-container .comments-area .comment-box .author-thumb {
        position: relative;
        display: inline-block;
    }

    .sidebar-page-container .comments-area .comment {
        padding-left: 0;
    }

    .testimonial-block-three .text {
        font-size: 20px;
        line-height: 28px;
    }

    .header-style-two .top-left .text,
    .header-style-two .top-left {
        width: 100%;
        text-align: center;
    }

    .header-style-two .top-left .text .icon {
        float: none;
        display: inline-block;
    }

    .header-style-two .top-left .text span {
        width: 100%;
    }

}


@media only screen and (max-width: 479px) {
    .news-block-two .lower-content h3 {
        font-size: 20px;
    }
}
/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.47
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:before,.bootstrap-datetimepicker-widget.dropdown-menu:after{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid white;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:bold;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action="today"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#eee}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget table td.old,.bootstrap-datetimepicker-widget table td.new{color:#777}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#337ab7;border-top-color:rgba(0,0,0,0.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget table td span:hover{background:#eee}.bootstrap-datetimepicker-widget table td span.active{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td span.old{color:#777}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em !important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}