﻿@import url("https://fonts.googleapis.com/css?family=Baloo+Paaji|Open+Sans:300,300i,400,400i,600,600i,700,700i");

:root {
    --border: #dee2e6;
    --gray-light: #a8a9b4;
    --blue: #1e549f;
    --indigo: #695aa6;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #ec185d;
    --orange: #ff6d02;
    --yellow: #ffc107;
    --green: #1bb74f;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #393e46;
    --primary: #800020; /*ats #DAA520 #594D5B;*/
    --strawberry-yogurt: #E4BCAD;
    --secondary: #393e46;
    --success: #1bb74f;
    --info: #17a2b8;
    --warning: #ff6d02;
    --danger: #ec185d;
    --light: #f8f9fa;
    --dark: #212529;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Open Sans", sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bg: #040b14;
    --textColor: #f4f6fd;
    
    --msgr-hf-border: #eee;
    --msgr-hf-color: #666;
    --msger-bg: #fcfcfe; 
    --msger-border: 2px solid #ddd;
    --left-msg-bg: #D8E0E3; /*#ececec;*/
    --right-msg-bg: #90DC91; /*#579ffb*/
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input.disabled-radio {
    pointer-events: none;
    filter: none;
    opacity: 1;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    /*color: #272829;*/
    color: #212529;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    background-color: #fff;

    padding-top: 0;
    padding-left: 17rem;
    /*
    padding-top: 54px; 
    */
}
a {
    color: #149ddd;
    text-decoration: none;
}
a:hover {
    color: #37b3ed;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
h1, .h1 {
    font-size: 3rem;
}
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;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    font-family: 'Baloo Paaji', cursive;
    color: var(--dark);
}

p {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1300 - 300)));
    font-weight: 100;
    opacity: 1;
    color: #111;
    letter-spacing: .6px;
}

.tab {
    padding-left: 4em;
}

.text-highlight {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Baloo Paaji', cursive;
    color: var(--dark);
}

#spinner-div {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    /*background: #149ddd;*/
    background: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 2rem var(--dark), 0 0 0.8rem var(--dark), 0 0 2.8rem var(--dark), inset 0 0 1.3rem var(--dark);
}
.back-to-top i {
    font-size: 1.4em; /*28px*/
    color: #fff;
    line-height: 0;
}
/*
.back-to-top:hover {
    background: var(--primary); #2eafec
    color: #fff;
}
*/
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*==================================================
                  Button
====================================================*/
.btn-primary {
    color: #fff;
    background-color: var(--dark);
    border-color: var(--dark);
}
.btn-primary:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: #85484a; /*#544885;*/
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #85484a; /*#544885;*/
    border-color: var(--primary);/* #4f437d;*/
}

.btn-outline-primary {
    color: var(--primary);
    /*background-color: var(--dark);*/
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: #85484a; 
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.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: #85484a; 
    border-color: var(--primary); 
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    transition: all ease-in-out 0.5s;
    z-index: 9997;
    transition: all 0.5s;
    padding: 0 15px;
    /*background: #040b14;*/
    background: var(--bg);
    overflow-y: auto;
}
#header .profile img {
    margin: 15px auto;
    display: block;
    width: 120px;
    /*border: 8px solid #2c2f3f;*/
    box-shadow: 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 2rem var(--primary), 0 0 0.8rem var(--primary), 0 0 2.8rem var(--primary), inset 0 0 1.3rem var(--primary);
}
#header .profile h1 {
    font-size: 26px; /*24px*/
    margin: 0;
    padding: 0;
    font-weight: 600;
    -moz-text-align-last: center;
    text-align-last: center;
    letter-spacing: 2px;
    /*font-family: "Poppins", sans-serif;*/
}
#header .profile h1 a,
#header .profile h1 a:hover {
    color: #fff;
    text-decoration: none;
}
#header .profile .social-links a {
    font-size: 18px; /*18px*/
    display: inline-block;
    background: #212431;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
#header .profile .social-links a:hover {
    background: var(--primary); /*ats #149ddd*/
    color: #fff;
    text-decoration: none;

    
    box-shadow: 0 0 .2rem var(--dark), 0 0 .2rem var(--dark), 0 0 2rem var(--primary), 0 0 0.8rem var(--primary), 0 0 2.8rem var(--primary), inset 0 0 1.3rem var(--primary);
}
#main {
    margin-left: 17px;/*ats 300px*/
}
.container,
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}
@media (max-width: 768px) { /*max-width: 1199px*/
    #header {
        left: -300px;
    }

    #main {
        margin-left: 0;
    }

    .container,
    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
    padding: 30px 0 0 0;

    padding-bottom:80px;
}
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
}
.nav-menu a,
.nav-menu a:focus {
    display: flex;
    align-items: center;
    color: var(--gray-light);
    padding: 9px 12px; /*12 15*/
    margin-bottom: 8px;
    transition: 0.3s;
    font-size: 15px;
}
.nav-menu a i,
.nav-menu a:focus i {
    font-size: 1.2em; /*24px*/
    padding-right: 8px;
    color: #6f7180;
}
.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover > a {
    text-decoration: none;
    color: #fff;
}
.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover > a i {
    color: var(--primary); /*ats #149ddd*/
}
/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    font-size: 1.2em; /*24px*/
    background: var(--dark);
    z-index: 9998;
    border: 0;
    transition: all 0.4s;
    outline: none !important;
    /*background-color: var(--dark); #149ddd*/
    width: 40px;
    height: 40px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 .2rem #fff, 0 0 .2rem #fff, 0 0 2rem var(--dark), 0 0 0.8rem var(--dark), 0 0 2.8rem var(--dark), inset 0 0 1.3rem var(--dark);
}
/*
.mobile-nav-toggle:hover {
    background: var(--primary);
}
*/
.mobile-nav-active {
    overflow: hidden;
}
.mobile-nav-active #header {
    left: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 15px;
    /*color: #f4f6fd;*/
    color: var(--textColor);
    font-size: 0.7em; /*14px*/
    position: fixed;
    left: 0;
    bottom: 0;
    width: 300px;
    z-index: 9999;
    /*background: #040b14;*/
    background: var(--bg);

    height: 80px;
}
#footer .copyright {
    text-align: center;
}
#footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 0.65em; /*13px*/
    color: #eaebf0;
}
@media (max-width: 768px) { /*@media (max-width: 1199px)*/
    #footer {
        position: static;
        width: auto;
        padding-right: 20px 15px;
    }
    body {
        padding-left: 0;
        width: auto;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}
.section-title p {
    margin-bottom: 0;
}
.section .section-title {
    font-size: calc(20px + (35 - 20) * ((100vw - 300px) / (1300 - 300)));
    padding-bottom: 30px;
}
.section .section-subtitle {
    font-size: calc(16px + (25 - 20) * ((100vw - 300px) / (1300 - 300)));
    margin-bottom: 6px;
    font-weight: 400;
    opacity: .8;
}
.section-sm {
    padding: 40px 0 !important;
}
.section-md {
    padding: 60px 0 !important;
}
.section-lg {
    padding: 100px 0 !important;
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
#home {
    /*background: url("../img/profile-banner.webp") repeat scroll center center / cover;*/
    background: url("../img/profile-banner.png") repeat scroll center center / cover;
    height: 100vh;
    width: 100%;
    /*
    background: url("../img/profile-banner.png") top center;
    background-size: cover;
    */
}
#home:before {
    content: "";
    /*background: rgba(5, 13, 24, 0.3);*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
#home .home-container {
    position: relative;
    z-index: 2;
    min-width: 300px;
}
#home h1 {
    font-family: 'Baloo Paaji', cursive;
    margin: 0 0 10px 0;
    font-size: calc(50px + (100 - 30) * ((100vw - 300px) / (1300 - 300)));
    font-weight: 700;
    
    justify-content: center;

    line-height: calc(50px + (100 - 30) * ((100vw - 300px) / (1300 - 300)) - 50px); /*56px*/
    color: var(--dark);
    text-shadow: -1px 0 var(--strawberry-yogurt), 0 1px var(--strawberry-yogurt), 1px 0 var(--strawberry-yogurt), 0 -1px var(--strawberry-yogurt);
    animation: flicker 1.5s infinite alternate;
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px var(--primary), 0 0 82px var(--primary), 0 0 92px var(--primary), 0 0 102px var(--primary), 0 0 151px var(--primary);
    /*
    font-size: 64px;
    font-weight: 700;
        #594D5B
    font-size: 4.2rem;
    color: #fff;
#0fa
    */
    margin-bottom: 35px;
}
#home p span {
    font-family: 'Baloo Paaji', cursive;
    color: #fff;
    /*padding-bottom: 4px;*/
    border-bottom: solid var(--primary);
    letter-spacing: 1px;
    font-size: calc(18px + (100 - 90) * ((100vw - 300px) / (1300 - 300)));
}

/*======================================================
                Map
========================================================*/
.map-responsive {
    overflow: hidden;
    padding-bottom: 25%;
    position: relative;
    height: 0;
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/*=====================================================
                    Contact
=======================================================*/
a {
    color: var(--dark);
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    color: var(--primary);
    text-decoration: none;
}
a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
    outline: 0;
}

/*=====================================================
                Testimonial
=======================================================*/
/*
.testimonial-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.testimonial {
    --margin-bottom: 3em;
    background: #fff;
    padding: 2em;
    border-right: 30px solid #F9F9F9;
    min-height: 169px;
    border: 1px solid var(--border);
}
.testimonial:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    border-radius: 0 !important;
}
.testimonial:before {
    content: "";
    position: absolute;
    z-index: -1;
    -ms-transform: skew(-3deg,-2deg);
    -webkit-transform: skew(-3deg,-2deg);
    -o-transform: skew(-3deg,-2deg);
    -moz-transform: skew(-3deg,-2deg);
    bottom: 14px;
    --box-shadow: 0 16px 5px rgba(0,0,0,.04);
    max-width: 90%;
    width: 90%;
    height: 50px;
    left: 1px;
}
*/
.avatar .img-circle {
    background: #fff;
    padding: 3px;
    border: 1px solid #c5c5c5;
}
.avatar img {
    max-width: 120px; --100%
}
.img-circle {
    border-radius: 50%;
}
/*
.testimonial .testimony-body {
    --font-size: .9em;
    margin-bottom: 12px;
    font-weight: 500;
    opacity: .8;
    text-align: left;
}
*/

/*=====================================================
                Testimonial V2
=======================================================*/
.feedback {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
}
.container .feedback .feedback-box {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 6px;
    box-shadow: 5px 5px 6px var(--dark);
    padding: 20px 30px;
    text-align: center;
}
.container .feedback .feedback-box .feedback-title{
    padding-top: 10px;
}
.feedback .feedback-body {
    margin-bottom: 12px;
    font-weight: 400;
    opacity: .8;

    text-align: left;
}
/*
.container .feedback .feedback-box .avatar .img-circle {
    background: #fff;
    padding: 3px;
    border: 1px solid #c5c5c5;
}
.container .feedback .feedback-box .avatar img {
    max-width: 120px;
}
*/

/*======================================================
                Service
========================================================*/
/*
.service-card {
    border: 1px solid var(--border);
    position: relative;
    min-height: 230px;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 20px;
}
.service-card .body {
    padding: 10px;
}
.service-card .body img.icon {
    margin-top: 40px;
    width: 55px;
    margin-bottom: 25px;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
}
@media (prefers-reduced-motion: reduce) {
    .service-card .body img.icon {
        -webkit-transition: none;
        transition: none;
    }
}
.service-card .body .subtitle {
    position: absolute;
    bottom: -100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
}
@media (prefers-reduced-motion: reduce) {
    .service-card .body .subtitle {
        -webkit-transition: none;
        transition: none;
    }
}
.service-card:hover .body img.icon {
    margin-top: 5px;
    width: 45px;
    margin-bottom: 15px;
}
.service-card:hover .body .subtitle {
    bottom: 7px;
    font-weight: 500;
    opacity: .6;
    visibility: visible;
    font-size: 1em;
}
*/

/*======================================================
                Service V2
========================================================*/
.service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}
.container .service .service-box {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 6px;
    box-shadow: 5px 5px 6px var(--dark);
    text-align: center;
    padding: 20px 10px;
}
.container .service .service-box img.icon {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 60px;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
}
/*
.service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.container .service .service-box {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 6px;
    box-shadow: 5px 5px 6px var(--dark);
    text-align: center;
    padding: 20px 10px;
}
.container .service .service-box img.icon {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 60px;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  transition: .2s, linear;
}
.container .service .service-box h6 {
    opacity: 0.8;
}
.container .service .service-box p {
    bottom: 7px;
    font-weight: 500;
    opacity: .6;

    ------------------
    visibility: visible;
    font-size: 1rem;
    font-size: 14px;
    font-weight: 100;
    color: #555;
}
.container .service .service-box a {
    border-radius: 4px;
    background: #444;
    color: white;
}
.container .service .service-box a:hover{
  background: #908080;
}
*/
/*
.container__heading{
  text-align: center;
  padding-bottom: 15px;
  color: #e3e3e3;
  text-shadow: 0 0 10px black;
  font-size: 50px;
  font-weight: 600;
}
.container .serivce .serivce_box h3 {
    color: #444;
    font-size: 20px;
    font-weight: 600;
}
*/

/*==================================================
                Package
====================================================*/
/*
.package-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.package-wrapper .package-card {
    display: block;
    border: 1px solid var(--border);
    padding: 30px 15px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    background: #fff;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
    }
@media (prefers-reduced-motion: reduce) {
    .package-wrapper .package-card {
        -webkit-transition: none;
        transition: none;
    }
}
.package-wrapper .package-card-header .package-card-icon {
    width: 70px;
    margin-bottom: 25px;
}
.package-wrapper .package-card-footer {
    margin: 15px 0;
}
.package-wrapper .package-card-footer span {
    font-size: calc(18px + (35 - 18) * ((100vw - 300px) / (1300 - 300)));
    font-weight: 600;
    opacity: .8;
}
.package-wrapper .package-card-footer span:first-child {
    position: relative;
    right: -6px;
    top: -6px;
    font-size: calc(15px + (25 - 15) * ((100vw - 300px) / (1300 - 300)));
}
.package-wrapper .package-card-title {
    margin-bottom: 15px;
    font-size: calc(18px + (35 - 18) * ((100vw - 300px) / (1300 - 300)));
}
.package-wrapper .package-card-list p {
    margin-bottom: 12px;
    font-weight: 500;
    opacity: .6;
}
.package-wrapper .package-card-list p i {
    color: #ec185d;
}
.package-wrapper .package-card:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    border-radius: 0 !important;
}
.package-wrapper .package-card:first-child {
    border-radius: 0 0 0 0;
}
.package-wrapper .package-card:nth-child(2) {
    margin-left: -1px;
    margin-right: -1px;
}
.package-wrapper .package-card:last-child {
    border-radius: 0 0 0 0;
}
@media (max-width: 1024px) { --@media (max-width: 767.98px)
    .package-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .package-card {
        border-radius: 0 !important;
        margin: 0 0 15px 0 !important;
        width: 100%;
    }
}
*/

/*==================================================
                Package V2
====================================================*/
.package {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
    gap: 15px;
}
.container .package .package-box {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 6px;
    box-shadow: 5px 5px 6px var(--dark);
    text-align: center;
    padding: 20px 10px;
}
.container .package .package-box img.package-icon {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 60px;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
}
.package .package-title {
    margin-bottom: 15px;
    font-size: calc(18px + (35 - 18) * ((100vw - 300px) / (1300 - 300)));
}
.package .package-list p {
    margin-bottom: 12px;
    font-weight: 500;
    opacity: .6;
}
.package .package-footer {
    margin: 15px 0;
}
/*
@media (min-width: 1380px) {
    .package {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 15px;
    }
}
.package {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
}
.container .package .package-box {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 6px;
    box-shadow: 5px 5px 6px var(--dark);
    text-align: center;
    padding: 20px 10px;
}
.container .package .package-box img.icon {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 60px;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
}
.package .package-title {
    margin-bottom: 15px;
    font-size: calc(18px + (35 - 18) * ((100vw - 300px) / (1300 - 300)));
}
.package .package-list p {
    margin-bottom: 12px;
    font-weight: 500;
    opacity: .6;
}
.package .package-footer {
    margin: 15px 0;
}
*/


/*====================================================
                Certificate
======================================================*/
/*
.timeline-scroll {
    max-height: 650px;
    padding: 1rem;
    overflow-y: auto; 
    overflow-x: hidden; 
}
.graduation-cap {
    color: var(--dark);
    text-shadow: -1px 0 var(--strawberry-yogurt), 0 1px var(--strawberry-yogurt), 1px 0 var(--strawberry-yogurt), 0 -1px var(--strawberry-yogurt);
    animation: flicker 1.5s infinite alternate;
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px var(--primary), 0 0 82px var(--primary), 0 0 92px var(--primary), 0 0 102px var(--primary), 0 0 151px var(--primary);
}

.timeline {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.2);
}

.timeline .swiper-container {
    height: 800px; 
    width: 100%;
    position: relative;
}
.timeline .swiper-wrapper {
    transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}
.timeline .swiper-slide {
    position: relative;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.timeline .swiper-slide::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: -115%;
    bottom: -10%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
    border-radius: 100%;
}
.timeline .swiper-slide-content {
    position: absolute;
    text-align: center;
    width: 90%;
    right: 50%;
    top: 5%; 
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
    z-index: 2;
    font-size: 0.75em; 
}

.timeline .swiper-slide .timeline-title {
    font-weight: 800;
    font-size: 2em;
    margin: 0 0 30px;
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
    transition: .2s ease .5s;
    text-shadow: -1px 0 var(--primary), 0 1px var(--primary), 1px 0 var(--primary), 0 -1px var(--primary);
    font-family: 'Baloo Paaji', cursive;
    color: var(--dark);
    text-shadow: -1px 0 var(--strawberry-yogurt), 0 1px var(--strawberry-yogurt), 1px 0 var(--strawberry-yogurt), 0 -1px var(--strawberry-yogurt);
    animation: flicker 1.5s infinite alternate;
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px var(--primary), 0 0 82px var(--primary), 0 0 92px var(--primary), 0 0 102px var(--primary), 0 0 151px var(--primary);
}
.timeline .swiper-slide .timeline-year {
    display: block;
    font-style: italic;
    font-size: 2.1em; 
    margin-bottom: 50px;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
    font-weight: 300;
    opacity: 0;
    transition: .2s ease .4s;
}
.timeline .swiper-slide .timeline-text {
    opacity: 0;
    font-size: 1.2em; 
    font-weight: 700;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
    transition: .2s ease .5s;
}

.timeline .swiper-slide-active .timeline-year {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    transition: 0.4s ease 1.6s;
}
.timeline .swiper-slide-active .timeline-title {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    transition: .4s ease 1.7s;
}
.timeline .swiper-slide-active .timeline-text {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    transition: .4s ease 1.8s;
}

.timeline .swiper-pagination {
    right: 5% !important; 
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    font-style: italic;
    font-weight: 300;
    z-index: 1;
}
.timeline .swiper-pagination::before {
    content: "";
    position: absolute;
    left: -31px; 
    top: 0;
    height: 100%;
    width: 5px;
    background-color: rgba(255, 255, 255);
}
.timeline .swiper-pagination-bullet {
    width: auto;
    height: auto;
    text-align: center;
    opacity: 1;
    background: transparent;
    margin: 15px 0 !important;
    position: relative;
    font-weight: 500; 

    color: var(--primary);
    font-family: 'Baloo Paaji', cursive;
    font-size: 1.2em; 
    text-shadow: -1px 0 var(--strawberry-yogurt), 0 1px var(--strawberry-yogurt), 1px 0 var(--strawberry-yogurt), 0 -1px var(--strawberry-yogurt);
}
.timeline .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 6px; 
    left: -36px; 
    width: 15px; 
    height: 15px; 
    border-radius: 100%;

    background-color: var(--primary); 
    box-shadow: -1px 0 var(--strawberry-yogurt), 0 1px var(--strawberry-yogurt), 1px 0 var(--strawberry-yogurt), 0 -1px var(--strawberry-yogurt);
    animation: flicker 1.5s infinite alternate;
    box-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px var(--primary), 0 0 82px var(--primary), 0 0 92px var(--primary), 0 0 102px var(--primary), 0 0 151px var(--primary);

    -webkit-transform: scale(0);
    transform: scale(0);
    transition: .2s;
}
.timeline .swiper-pagination-bullet-active {
    color: var(--dark); 
    
    font-family: 'Baloo Paaji', cursive;
    font-weight: 900;
    font-size: 1.2em; 

    text-shadow: -1px 0 var(--strawberry-yogurt), 0 1px var(--strawberry-yogurt), 1px 0 var(--strawberry-yogurt), 0 -1px var(--strawberry-yogurt);
    animation: flicker 1.5s infinite alternate;
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px var(--primary), 0 0 82px var(--primary), 0 0 92px var(--primary), 0 0 102px var(--primary), 0 0 151px var(--primary);
}
.timeline .swiper-pagination-bullet-active::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.timeline .swiper-button-next,
.timeline .swiper-button-prev {
    background-size: 25px 25px; 
    top: 7%; 
    width: 20px;
    height: 20px;
    margin-top: 0;
    z-index: 2;
    transition: .2s;
}
.timeline .swiper-button-prev {
    left: 8%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='-17.29 -17.29 125.58 125.58' id='Layer_1' version='1.1' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23ffffff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%23fcf8f8' stroke-width='9.1'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23800020;%7D %3C/style%3E%3Cg%3E%3Cpath class='st0' d='M41.2,48.2c7.4,6.6,14.2,13.7,20.9,21c5.5,6,10.9,14.3,18.6,17.4c1.2,0.5,2.8-0.8,2.7-2 c-0.7-8.3-7.6-15.7-12.7-21.9c-4.9-6.1-10.3-11.8-15.9-17.4c12-7.6,21.8-17.7,29.4-29.9C89.2,7.4,76.4-0.1,71.7,8 c-7.3,12.6-16.6,23.8-29.3,31.1C39.3,40.9,38.4,45.7,41.2,48.2z'%3E%3C/path%3E%3Cpath class='st0' d='M25.8,69.2c5.5,6,10.9,14.3,18.6,17.4c1.2,0.5,2.8-0.8,2.7-2c-0.7-8.3-7.6-15.7-12.7-21.9 c-4.9-6.1-10.3-11.8-15.9-17.4c12-7.6,21.8-17.7,29.4-29.9C52.9,7.4,40.1-0.1,35.4,8C28.1,20.6,18.9,31.8,6.1,39.1 c-3.1,1.8-4,6.6-1.2,9.1C12.3,54.8,19.2,61.9,25.8,69.2z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23800020;%7D %3C/style%3E%3Cg%3E%3Cpath class='st0' d='M41.2,48.2c7.4,6.6,14.2,13.7,20.9,21c5.5,6,10.9,14.3,18.6,17.4c1.2,0.5,2.8-0.8,2.7-2 c-0.7-8.3-7.6-15.7-12.7-21.9c-4.9-6.1-10.3-11.8-15.9-17.4c12-7.6,21.8-17.7,29.4-29.9C89.2,7.4,76.4-0.1,71.7,8 c-7.3,12.6-16.6,23.8-29.3,31.1C39.3,40.9,38.4,45.7,41.2,48.2z'%3E%3C/path%3E%3Cpath class='st0' d='M25.8,69.2c5.5,6,10.9,14.3,18.6,17.4c1.2,0.5,2.8-0.8,2.7-2c-0.7-8.3-7.6-15.7-12.7-21.9 c-4.9-6.1-10.3-11.8-15.9-17.4c12-7.6,21.8-17.7,29.4-29.9C52.9,7.4,40.1-0.1,35.4,8C28.1,20.6,18.9,31.8,6.1,39.1 c-3.1,1.8-4,6.6-1.2,9.1C12.3,54.8,19.2,61.9,25.8,69.2z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.timeline .swiper-button-prev:hover {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
}
.timeline .swiper-button-next {
    right: 8%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='-17.29 -17.29 125.58 125.58' id='Layer_2' version='1.1' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23ffffff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%23fffafa' stroke-width='9.1'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23800020;%7D %3C/style%3E%3Cg%3E%3Cpath class='st0' d='M36.6,43.5C31.1,49,25.7,54.8,20.7,60.8c-5.1,6.2-12,13.7-12.7,21.9c-0.1,1.3,1.5,2.5,2.7,2 c7.7-3.1,13.1-11.4,18.6-17.4c6.7-7.3,13.6-14.4,20.9-21c2.8-2.5,1.9-7.3-1.2-9.1C36.3,30,27,18.8,19.7,6.2 C15-1.9,2.2,5.6,7.2,13.5C14.8,25.7,24.6,35.8,36.6,43.5z'%3E%3C/path%3E%3Cpath class='st0' d='M72.9,43.5C67.3,49,62,54.8,57,60.8C52,67.1,45,74.5,44.3,82.7c-0.1,1.3,1.5,2.5,2.7,2 c7.7-3.1,13.1-11.4,18.6-17.4c6.7-7.3,13.6-14.4,20.9-21c2.8-2.5,1.9-7.3-1.2-9.1C72.6,30,63.3,18.8,56,6.2 c-4.7-8.1-17.5-0.6-12.5,7.3C51.1,25.7,60.9,35.8,72.9,43.5z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23800020;%7D %3C/style%3E%3Cg%3E%3Cpath class='st0' d='M36.6,43.5C31.1,49,25.7,54.8,20.7,60.8c-5.1,6.2-12,13.7-12.7,21.9c-0.1,1.3,1.5,2.5,2.7,2 c7.7-3.1,13.1-11.4,18.6-17.4c6.7-7.3,13.6-14.4,20.9-21c2.8-2.5,1.9-7.3-1.2-9.1C36.3,30,27,18.8,19.7,6.2 C15-1.9,2.2,5.6,7.2,13.5C14.8,25.7,24.6,35.8,36.6,43.5z'%3E%3C/path%3E%3Cpath class='st0' d='M72.9,43.5C67.3,49,62,54.8,57,60.8C52,67.1,45,74.5,44.3,82.7c-0.1,1.3,1.5,2.5,2.7,2 c7.7-3.1,13.1-11.4,18.6-17.4c6.7-7.3,13.6-14.4,20.9-21c2.8-2.5,1.9-7.3-1.2-9.1C72.6,30,63.3,18.8,56,6.2 c-4.7-8.1-17.5-0.6-12.5,7.3C51.1,25.7,60.9,35.8,72.9,43.5z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.timeline .swiper-button-next:hover {
    -webkit-transform: translateX(3px); 
    transform: translateX(3px);
}

@media screen and (min-width: 1024px) {
    .timeline .swiper-slide::after {
        right: -20%;
        bottom: -12%;
        width: 240px;
        height: 50%;
        box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
    }
    .timeline .swiper-slide-content {
        width: 84%;
        right: 18%;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        text-align: right;
    }
    
    .timeline .swiper-slide .timeline-title {
        margin: 0;
    }
    .timeline .swiper-slide .timeline-year {
        margin-bottom: 0;
    }

    .timeline .swiper-pagination {
        display: flex;
    }
    .timeline .swiper-button-prev {
        top: 10%; 
        left: auto;
        right: 5%; 
        -webkit-transform: rotate(90deg) translate(0, 10px);
                transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-button-prev:hover {
        -webkit-transform: rotate(90deg) translate(-3px, 10px);
                transform: rotate(90deg) translate(-3px, 10px);
    }
    .timeline .swiper-button-next {
        top: auto;
        bottom: 10%; 
        right: 5%; 
        -webkit-transform: rotate(90deg) translate(0, 10px);
                transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-button-next:hover {
        -webkit-transform: rotate(90deg) translate(3px, 10px);
                transform: rotate(90deg) translate(3px, 10px);
    }
}
*/

/*====================================================
                Certificate V2
======================================================*/
.timeline-scroll {
    max-height: 650px;
    padding: 1rem;
    overflow-y: auto; /* Show vertical scrollbar */
    overflow-x: hidden; /* Show horizontal scrollbar */
}
.graduation-cap {
    color: var(--dark);
    text-shadow: -1px 0 var(--strawberry-yogurt), 0 1px var(--strawberry-yogurt), 1px 0 var(--strawberry-yogurt), 0 -1px var(--strawberry-yogurt);
    animation: flicker 1.5s infinite alternate;
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px var(--primary), 0 0 82px var(--primary), 0 0 92px var(--primary), 0 0 102px var(--primary), 0 0 151px var(--primary);
}

.timeline {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.2);
}

.timeline .swiper-container {
    height: 800px; /*600*/
    width: 100%;
    position: relative;
}
.timeline .swiper-wrapper {
    transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}
.timeline .swiper-slide {
    position: relative;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.timeline .swiper-slide::after {
    content: "";
    /*position: inherit;*/
    position: absolute;
    z-index: 1;
    right: -115%;
    bottom: -10%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /*
      background-size: cover;
      background-position: 100% 100%;
      box-shadow: inset 600px 0 500px -300px #292828;*/
    /*box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
    box-shadow: -1024px 0 150vw 60vw rgba(0, 0, 0, 0.7) inset;*/    
    /*02012024 box-shadow: -700px 0 150px 60vw rgba(0, 0, 0, 0.7);*/
    box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
    border-radius: 100%;
}
.timeline .swiper-slide-content {
    /*max-width: 310px;*/
    position: absolute;
    text-align: center;
    width: 90%;
    /*max-width:300px;*/
    right: 50%;
    top: 5%; /*13*/
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
    z-index: 2;
    font-size: 0.75em; /*0.75em 12px*/
}

.timeline .swiper-slide .timeline-title {
    font-weight: 800;
    font-size: 1.5em; /*34px; 2em*/
    margin: 0 0 30px;
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
    transition: .2s ease .5s;
    text-shadow: -1px 0 var(--primary), 0 1px var(--primary), 1px 0 var(--primary), 0 -1px var(--primary);
    /*color: var(--gray-light); #aa95ad*/
        
    font-family: 'Baloo Paaji', cursive;
    color: var(--dark);
    text-shadow: -1px 0 var(--strawberry-yogurt), 0 1px var(--strawberry-yogurt), 1px 0 var(--strawberry-yogurt), 0 -1px var(--strawberry-yogurt);
    animation: flicker 1.5s infinite alternate;
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px var(--primary), 0 0 82px var(--primary), 0 0 92px var(--primary), 0 0 102px var(--primary), 0 0 151px var(--primary);
}
.timeline .swiper-slide .timeline-year {
    display: block;
    font-style: italic;
    font-size: 2.1em; /*42px*/
    margin-bottom: 50px;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
    /*color: #d4a024;*/
    font-weight: 300;
    opacity: 0;
    transition: .2s ease .4s;
}
.timeline .swiper-slide .timeline-text {
    /*27122023 line-height: 2em;*/
    opacity: 0;
    font-size: 1.2em; /**/
    font-weight: 700;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
    transition: .2s ease .5s;
}

.timeline .swiper-slide-active .timeline-year {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    transition: 0.4s ease 1.6s;
}
.timeline .swiper-slide-active .timeline-title {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    transition: .4s ease 1.7s;
}
.timeline .swiper-slide-active .timeline-text {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    transition: .4s ease 1.8s;
    /*line-height: 50%;*/
    /*27122023 line-height: 2em; */
}

.timeline .swiper-pagination {
    right: 3% !important; /*15 5*/ /*3*/
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    font-style: italic;
    font-weight: 300;
    /*font-size: 18px;*/
    z-index: 1;
}
.timeline .swiper-pagination::before {
    content: "";
    position: absolute;
    left: -31px; /*30*/
    top: 0;
    height: 100%;
    width: 5px; /*1*/
    /*
    background-color: rgba(255, 255, 255, 0.2);*/
    background-color: rgba(255, 255, 255);
}
.timeline .swiper-pagination-bullet {
    width: auto;
    height: auto;
    text-align: center;
    opacity: 1;
    background: transparent;
    /*color: var(--gray); --gray #726375*/
    margin: 15px 0 !important;
    position: relative;
    font-weight: 500; 

    color: var(--primary);
    font-family: 'Baloo Paaji', cursive;
    /*font-weight: 700;  
    font-size: 1em; */
    font-size: 1.2em; 
    text-shadow: -1px 0 var(--strawberry-yogurt), 0 1px var(--strawberry-yogurt), 1px 0 var(--strawberry-yogurt), 0 -1px var(--strawberry-yogurt);
}
.timeline .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 6px; /*8*/
    left: -36px; /*-32.5*/
    width: 15px; /*6*/
    height: 15px; /*6*/
    border-radius: 100%;

    background-color: var(--primary); /*--gray-light #d4a024*/
    box-shadow: -1px 0 var(--strawberry-yogurt), 0 1px var(--strawberry-yogurt), 1px 0 var(--strawberry-yogurt), 0 -1px var(--strawberry-yogurt);
    animation: flicker 1.5s infinite alternate;
    box-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px var(--primary), 0 0 82px var(--primary), 0 0 92px var(--primary), 0 0 102px var(--primary), 0 0 151px var(--primary);

    -webkit-transform: scale(0);
    transform: scale(0);
    transition: .2s;
}
.timeline .swiper-pagination-bullet-active {
    color: var(--dark); /* --gray-light  #d4a024*/
    
    font-family: 'Baloo Paaji', cursive;
    /* font-weight: 900; */
    /* font-size: 1.2em; */
    font-weight: 900;
    font-size: 1.2em; 

    text-shadow: -1px 0 var(--strawberry-yogurt), 0 1px var(--strawberry-yogurt), 1px 0 var(--strawberry-yogurt), 0 -1px var(--strawberry-yogurt);
    animation: flicker 1.5s infinite alternate;
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px var(--primary), 0 0 82px var(--primary), 0 0 92px var(--primary), 0 0 102px var(--primary), 0 0 151px var(--primary);
}
.timeline .swiper-pagination-bullet-active::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.timeline .swiper-button-next,
.timeline .swiper-button-prev {
    background-size: 25px 25px; /*20*/
    top: 7%; /*15*/
    width: 20px;
    height: 20px;
    margin-top: 0;
    z-index: 2;
    transition: .2s;
}
.timeline .swiper-button-prev {
    left: 8%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='-17.29 -17.29 125.58 125.58' id='Layer_1' version='1.1' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23ffffff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%23fcf8f8' stroke-width='9.1'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23800020;%7D %3C/style%3E%3Cg%3E%3Cpath class='st0' d='M41.2,48.2c7.4,6.6,14.2,13.7,20.9,21c5.5,6,10.9,14.3,18.6,17.4c1.2,0.5,2.8-0.8,2.7-2 c-0.7-8.3-7.6-15.7-12.7-21.9c-4.9-6.1-10.3-11.8-15.9-17.4c12-7.6,21.8-17.7,29.4-29.9C89.2,7.4,76.4-0.1,71.7,8 c-7.3,12.6-16.6,23.8-29.3,31.1C39.3,40.9,38.4,45.7,41.2,48.2z'%3E%3C/path%3E%3Cpath class='st0' d='M25.8,69.2c5.5,6,10.9,14.3,18.6,17.4c1.2,0.5,2.8-0.8,2.7-2c-0.7-8.3-7.6-15.7-12.7-21.9 c-4.9-6.1-10.3-11.8-15.9-17.4c12-7.6,21.8-17.7,29.4-29.9C52.9,7.4,40.1-0.1,35.4,8C28.1,20.6,18.9,31.8,6.1,39.1 c-3.1,1.8-4,6.6-1.2,9.1C12.3,54.8,19.2,61.9,25.8,69.2z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23800020;%7D %3C/style%3E%3Cg%3E%3Cpath class='st0' d='M41.2,48.2c7.4,6.6,14.2,13.7,20.9,21c5.5,6,10.9,14.3,18.6,17.4c1.2,0.5,2.8-0.8,2.7-2 c-0.7-8.3-7.6-15.7-12.7-21.9c-4.9-6.1-10.3-11.8-15.9-17.4c12-7.6,21.8-17.7,29.4-29.9C89.2,7.4,76.4-0.1,71.7,8 c-7.3,12.6-16.6,23.8-29.3,31.1C39.3,40.9,38.4,45.7,41.2,48.2z'%3E%3C/path%3E%3Cpath class='st0' d='M25.8,69.2c5.5,6,10.9,14.3,18.6,17.4c1.2,0.5,2.8-0.8,2.7-2c-0.7-8.3-7.6-15.7-12.7-21.9 c-4.9-6.1-10.3-11.8-15.9-17.4c12-7.6,21.8-17.7,29.4-29.9C52.9,7.4,40.1-0.1,35.4,8C28.1,20.6,18.9,31.8,6.1,39.1 c-3.1,1.8-4,6.6-1.2,9.1C12.3,54.8,19.2,61.9,25.8,69.2z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /*background-image: url("data:image/svg+xml,%3Csvg fill='%23800020' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-3.9 -3.9 63.55 63.55' xml:space='preserve' stroke='%23800020'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%23f3f2f2' stroke-width='5.0177700000000005'%3E%3Cg%3E%3Cpath d='M12.745,23.915c0.283-0.282,0.59-0.52,0.913-0.727L35.266,1.581c2.108-2.107,5.528-2.108,7.637,0.001 c2.109,2.108,2.109,5.527,0,7.637L24.294,27.828l18.705,18.706c2.109,2.108,2.109,5.526,0,7.637 c-1.055,1.056-2.438,1.582-3.818,1.582s-2.764-0.526-3.818-1.582L13.658,32.464c-0.323-0.207-0.632-0.445-0.913-0.727 c-1.078-1.078-1.598-2.498-1.572-3.911C11.147,26.413,11.667,24.994,12.745,23.915z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cpath d='M12.745,23.915c0.283-0.282,0.59-0.52,0.913-0.727L35.266,1.581c2.108-2.107,5.528-2.108,7.637,0.001 c2.109,2.108,2.109,5.527,0,7.637L24.294,27.828l18.705,18.706c2.109,2.108,2.109,5.526,0,7.637 c-1.055,1.056-2.438,1.582-3.818,1.582s-2.764-0.526-3.818-1.582L13.658,32.464c-0.323-0.207-0.632-0.445-0.913-0.727 c-1.078-1.078-1.598-2.498-1.572-3.911C11.147,26.413,11.667,24.994,12.745,23.915z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /*background-image: url("data:image/svg+xml,%3Csvg fill='%23800020' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-6.13 -6.13 68.01 68.01' xml:space='preserve' transform='rotate(180)'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%23fcfcfc' stroke-width='4.683168'%3E%3Cg%3E%3Cpath d='M43.006,23.916c-0.28-0.282-0.59-0.52-0.912-0.727L20.485,1.581c-2.109-2.107-5.527-2.108-7.637,0.001 c-2.109,2.108-2.109,5.527,0,7.637l18.611,18.609L12.754,46.535c-2.11,2.107-2.11,5.527,0,7.637c1.055,1.053,2.436,1.58,3.817,1.58 s2.765-0.527,3.817-1.582l21.706-21.703c0.322-0.207,0.631-0.444,0.912-0.727c1.08-1.08,1.598-2.498,1.574-3.912 C44.605,26.413,44.086,24.993,43.006,23.916z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cpath d='M43.006,23.916c-0.28-0.282-0.59-0.52-0.912-0.727L20.485,1.581c-2.109-2.107-5.527-2.108-7.637,0.001 c-2.109,2.108-2.109,5.527,0,7.637l18.611,18.609L12.754,46.535c-2.11,2.107-2.11,5.527,0,7.637c1.055,1.053,2.436,1.58,3.817,1.58 s2.765-0.527,3.817-1.582l21.706-21.703c0.322-0.207,0.631-0.444,0.912-0.727c1.08-1.08,1.598-2.498,1.574-3.912 C44.605,26.413,44.086,24.993,43.006,23.916z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /*background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23D70032'%2F%3E%3C%2Fsvg%3E");
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");*/
}
.timeline .swiper-button-prev:hover {
    -webkit-transform: translateX(-3px);/**/
    transform: translateX(-3px);
}
.timeline .swiper-button-next {
    right: 8%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='-17.29 -17.29 125.58 125.58' id='Layer_2' version='1.1' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23ffffff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%23fffafa' stroke-width='9.1'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23800020;%7D %3C/style%3E%3Cg%3E%3Cpath class='st0' d='M36.6,43.5C31.1,49,25.7,54.8,20.7,60.8c-5.1,6.2-12,13.7-12.7,21.9c-0.1,1.3,1.5,2.5,2.7,2 c7.7-3.1,13.1-11.4,18.6-17.4c6.7-7.3,13.6-14.4,20.9-21c2.8-2.5,1.9-7.3-1.2-9.1C36.3,30,27,18.8,19.7,6.2 C15-1.9,2.2,5.6,7.2,13.5C14.8,25.7,24.6,35.8,36.6,43.5z'%3E%3C/path%3E%3Cpath class='st0' d='M72.9,43.5C67.3,49,62,54.8,57,60.8C52,67.1,45,74.5,44.3,82.7c-0.1,1.3,1.5,2.5,2.7,2 c7.7-3.1,13.1-11.4,18.6-17.4c6.7-7.3,13.6-14.4,20.9-21c2.8-2.5,1.9-7.3-1.2-9.1C72.6,30,63.3,18.8,56,6.2 c-4.7-8.1-17.5-0.6-12.5,7.3C51.1,25.7,60.9,35.8,72.9,43.5z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23800020;%7D %3C/style%3E%3Cg%3E%3Cpath class='st0' d='M36.6,43.5C31.1,49,25.7,54.8,20.7,60.8c-5.1,6.2-12,13.7-12.7,21.9c-0.1,1.3,1.5,2.5,2.7,2 c7.7-3.1,13.1-11.4,18.6-17.4c6.7-7.3,13.6-14.4,20.9-21c2.8-2.5,1.9-7.3-1.2-9.1C36.3,30,27,18.8,19.7,6.2 C15-1.9,2.2,5.6,7.2,13.5C14.8,25.7,24.6,35.8,36.6,43.5z'%3E%3C/path%3E%3Cpath class='st0' d='M72.9,43.5C67.3,49,62,54.8,57,60.8C52,67.1,45,74.5,44.3,82.7c-0.1,1.3,1.5,2.5,2.7,2 c7.7-3.1,13.1-11.4,18.6-17.4c6.7-7.3,13.6-14.4,20.9-21c2.8-2.5,1.9-7.3-1.2-9.1C72.6,30,63.3,18.8,56,6.2 c-4.7-8.1-17.5-0.6-12.5,7.3C51.1,25.7,60.9,35.8,72.9,43.5z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /*background-image: url("data:image/svg+xml,%3Csvg fill='%23800020' version='1.1' id='Capa_2' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-3.9 -3.9 63.55 63.55' xml:space='preserve'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%23f3f2f2' stroke-width='5.129184'%3E%3Cg%3E%3Cpath d='M43.006,23.916c-0.28-0.282-0.59-0.52-0.912-0.727L20.485,1.581c-2.109-2.107-5.527-2.108-7.637,0.001 c-2.109,2.108-2.109,5.527,0,7.637l18.611,18.609L12.754,46.535c-2.11,2.107-2.11,5.527,0,7.637c1.055,1.053,2.436,1.58,3.817,1.58 s2.765-0.527,3.817-1.582l21.706-21.703c0.322-0.207,0.631-0.444,0.912-0.727c1.08-1.08,1.598-2.498,1.574-3.912 C44.605,26.413,44.086,24.993,43.006,23.916z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cpath d='M43.006,23.916c-0.28-0.282-0.59-0.52-0.912-0.727L20.485,1.581c-2.109-2.107-5.527-2.108-7.637,0.001 c-2.109,2.108-2.109,5.527,0,7.637l18.611,18.609L12.754,46.535c-2.11,2.107-2.11,5.527,0,7.637c1.055,1.053,2.436,1.58,3.817,1.58 s2.765-0.527,3.817-1.582l21.706-21.703c0.322-0.207,0.631-0.444,0.912-0.727c1.08-1.08,1.598-2.498,1.574-3.912 C44.605,26.413,44.086,24.993,43.006,23.916z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); 
    /*background-image: url("data:image/svg+xml,%3Csvg fill='%23800020' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-6.13 -6.13 68.01 68.01' xml:space='preserve' transform='rotate(0)'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%23fcfcfc' stroke-width='4.683168'%3E%3Cg%3E%3Cpath d='M43.006,23.916c-0.28-0.282-0.59-0.52-0.912-0.727L20.485,1.581c-2.109-2.107-5.527-2.108-7.637,0.001 c-2.109,2.108-2.109,5.527,0,7.637l18.611,18.609L12.754,46.535c-2.11,2.107-2.11,5.527,0,7.637c1.055,1.053,2.436,1.58,3.817,1.58 s2.765-0.527,3.817-1.582l21.706-21.703c0.322-0.207,0.631-0.444,0.912-0.727c1.08-1.08,1.598-2.498,1.574-3.912 C44.605,26.413,44.086,24.993,43.006,23.916z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cpath d='M43.006,23.916c-0.28-0.282-0.59-0.52-0.912-0.727L20.485,1.581c-2.109-2.107-5.527-2.108-7.637,0.001 c-2.109,2.108-2.109,5.527,0,7.637l18.611,18.609L12.754,46.535c-2.11,2.107-2.11,5.527,0,7.637c1.055,1.053,2.436,1.58,3.817,1.58 s2.765-0.527,3.817-1.582l21.706-21.703c0.322-0.207,0.631-0.444,0.912-0.727c1.08-1.08,1.598-2.498,1.574-3.912 C44.605,26.413,44.086,24.993,43.006,23.916z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /*background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23aa95ad'%2F%3E%3C%2Fsvg%3E");
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");*/
}
.timeline .swiper-button-next:hover {
    -webkit-transform: translateX(3px); /**/
    transform: translateX(3px);
}
/*
@media screen and (min-width: 768px) {
    .timeline .swiper-slide::after {
        right: -30%;
        bottom: -8%;
        width: 240px;
        height: 50%;
        box-shadow: -500px 0 150px 70vw rgba(0, 0, 0, 0.7);
    }
}
*/
@media screen and (min-width: 1024px) {
    .timeline .swiper-slide::after {
        right: -20%;
        bottom: -12%;
        width: 240px;
        height: 50%;
        /*02012024 box-shadow: -700px 0 150px 39vw rgba(0, 0, 0, 0.7);*/
        /*box-shadow: -700px 0 150px 39vw rgba(0, 0, 0, 0.7);*/
        box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
    }
    /*
    .timeline .swiper-slide-content {
        right: 25%;
    }
    */
    .timeline .swiper-slide-content {
        /* 80*/
        /*width: 310px;*/
        /*right: 1%;*/
        /*font-size: 11px;*/
        width: calc(84% - 3.5em); /*84%*/
        right: calc(18% + 3.5em); /*18%*/
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        text-align: right;
    }

    .timeline .swiper-slide .timeline-title {
        font-size: 2em;

        /*font-size: 46px;*/
        margin: 0;
    }
    .timeline .swiper-slide .timeline-year {
        margin-bottom: 0;
        /*font-size: 32px;*/
    }

    .timeline .swiper-pagination {
        display: flex;
    }
    .timeline .swiper-button-prev {
        top: 20%; /*15*/
        left: auto;
        right: 5%; /*5 15*/
        -webkit-transform: rotate(90deg) translate(0, 10px);
                transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-button-prev:hover {
        -webkit-transform: rotate(90deg) translate(-3px, 10px);
                transform: rotate(90deg) translate(-3px, 10px);
    }
    .timeline .swiper-button-next {
        top: auto;
        bottom: 20%; /*15*/
        right: 5%; /*5 15*/
        -webkit-transform: rotate(90deg) translate(0, 10px);
                transform: rotate(90deg) translate(0, 10px);
    }
    .timeline .swiper-button-next:hover {
        -webkit-transform: rotate(90deg) translate(3px, 10px);
                transform: rotate(90deg) translate(3px, 10px);
    }
}

.certified {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}
.container .certified .certified-box {
    text-align: center;
    margin-bottom: 10px;
}
.container .certified .certified-box img.icon100 {
    height: 100px;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
}
.container .certified .certified-box img.icon80 {
    height: 80px;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
}
/*
.container .certified .certified-box img.icon100:hover {
    text-decoration: none;
    box-shadow: 0 0 .2rem var(--dark), 0 0 .2rem var(--dark), 0 0 2rem var(--primary), 0 0 0.8rem var(--primary), 0 0 2.8rem var(--primary), inset 0 0 1.3rem var(--primary);
}
*/

/*

.certified {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}
.container .certified .certified-box {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 6px;
    box-shadow: 5px 5px 6px var(--dark);
    text-align: center;
    padding: 20px 10px;
}
.container .certified .certified-box img.icon {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 60px;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
}
.certified img.icon {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 100px;
    -webkit-transition: all, 0.3s;
    transition: all, 0.3s;
}
.certified img.icon:hover {
    color: var(--primary);
    text-decoration: none;

    box-shadow: 0 0 .2rem var(--dark), 0 0 .2rem var(--dark), 0 0 2rem var(--primary), 0 0 0.8rem var(--primary), 0 0 2.8rem var(--primary), inset 0 0 1.3rem var(--primary);
}
*/

/*=====================================================
                About
=======================================================*/
.about-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.about {
    /*margin-bottom: 3em;*/
    background: #fff;
    padding: 2em;
    border-right: 30px solid #F9F9F9;
    min-height: 169px;
    border: 1px solid var(--border);
}
/*
.about:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    border-radius: 0 !important;
}
*/
.about:before {
    content: "";
    position: absolute;
    z-index: -1;
    -ms-transform: skew(-3deg,-2deg);
    -webkit-transform: skew(-3deg,-2deg);
    -o-transform: skew(-3deg,-2deg);
    -moz-transform: skew(-3deg,-2deg);
    bottom: 14px;
    /*box-shadow: 0 16px 5px rgba(0,0,0,.04);*/
    max-width: 90%;
    width: 90%;
    height: 50px;
    left: 1px;
}
.about .about-body {
    /*font-size: .9em;*/
    margin-bottom: 12px;
    font-weight: 500;
    opacity: .6;
    text-align: left;
}

.language-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.language-wrapper img {
    cursor: pointer;
}
.img-grey {
    width: 100%;
    max-width: 40px;
    height: auto;
    filter: grayscale(100%);
}
.img-nogrey {
    width: 100%;
    max-width: 40px;
    height: auto;
    filter: grayscale(0%);
}
.img-main {
    height: 100%;
    max-height: 100px;
    width: auto;
}

/*=====================================================
                Cookie
=======================================================*/
.cookie {
    /*position: absolute;
    top: 100px;
    left: 450px;*/
    position: fixed;
    bottom: 0;
    /*max-width: 450px;*/
    width: 50%;
    right: 70px;
    text-align: center;
    border-radius: 15px;
    padding: 0px 25px 5px 25px;
    z-index: 120000;
    font-size: 0.7em;
    /*    
    background: var(--white);
    color: #fff;
    */

    /*color: #f4f6fd;*/
    color: var(--textColor);
    /*background: #040b14;*/
    background: var(--bg);
    box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}
.cookie img {
    max-width: 30px;
}
.content {
    margin-top: 5px;
}
.cookie .content {
    margin-top: 10px;
}
.cookie header {
    /*font-size: 21px;*/
    font-weight: 600;
    font-size: 1.5em;
}
.cookie .copyright {
    /*color: #858585;*/
    /*color: #fff;*/
    /*font-size: 16px;*/
    /*margin: 5px 0 20px 0;*/
    text-align: center;
}


/*=====================================================
                Modal
=======================================================*/
.modal {
    z-index: 120000;
}
.modal-dialog {
    margin-right: 70px !important;
    /*
    margin-top: 0 !important;
    height: 75%;
    width: 50%;*/
}
.modal-content {
    margin: auto;
    border-radius: 15px;
    align-items: center;
    color: var(--textColor);
    background: var(--bg);
    box-shadow: 0 0 .2rem var(--dark), 0 0 .2rem var(--dark), 0 0 2rem var(--primary), 0 0 0.8rem var(--primary), 0 0 2.8rem var(--primary), inset 0 0 1.3rem var(--primary);
}
.modal-header h4 {
    /*color: #f4f6fd;*/
    color: var(--textColor);
}
.modal-img {
    /*padding: 5px 0;*/
    width: 50px;
}


/*=====================================================
                Price
=======================================================*/
.imessage {
    /*background-color: #fff;
    font-family: "SanFrancisco";
    border-radius: 0.25rem;
    border: 1px solid #e5e5ea;
    font-size: 1.25rem;
    max-width: 600px;
    padding: 0.5rem 1.5rem;
    margin: 0 auto 1rem;*/
    display: flex;
    flex-direction: column;

    color: var(--textColor);
    background-color: var(--bg);
    padding: 0 1rem;
    margin: 0 auto 0;
}
.imessage p {
    border-radius: 1.15rem;
    /*line-height: 1.25;
    max-width: 75%;
    padding: 0.5rem 0.875rem;*/
    position: relative;
    word-wrap: break-word;
    
    padding: 0.75rem 0.875rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    text-align: left;
    padding-left: 2rem;
}
.imessage p::before,
.imessage p::after {
    bottom: -0.1rem;
    content: "";
    height: 1rem;
    position: absolute;
}
p.from-them {
    align-items: flex-start;
    /*background-color: #e5e5ea;
    color: #000;*/

    background-color: var(--gray-dark);
    color: #fff;
}
p.from-them:before {
    border-bottom-right-radius: 0.8rem 0.7rem;
    /*border-left: 1rem solid #e5e5ea;*/
    left: -0.35rem;
    transform: translate(0, -0.1rem);

    border-left: 1rem solid var(--gray-dark);
}
p.from-them::after {
    /*background-color: #fff;*/
    border-bottom-right-radius: 0.5rem;
    left: 20px;
    transform: translate(-30px, -2px);
    width: 10px;

    background-color: var(--bg);
}
p[class^="from-"] {
    margin: 0.5rem 0rem;
    width: fit-content;
}
p[class^="from-"].emoji {
    background: none;
    font-size: 2.5rem;
    margin-left: -2rem;
}
p[class^="from-"].emoji::before {
  content: none;
}
.margin-t_one {
    margin-top: 0rem !important;
}
span.bigP {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Baloo Paaji', cursive;
}

/*
.imessage {
  background-color: #fff;
  border: 1px solid #e5e5ea;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  font-family: "SanFrancisco";
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  max-width: 600px;
  padding: 0.5rem 1.5rem;
}

.imessage p {
  border-radius: 1.15rem;
  line-height: 1.25;
  max-width: 75%;
  padding: 0.5rem .875rem;
  position: relative;
  word-wrap: break-word;
}

.imessage p::before,
.imessage p::after {
  bottom: -0.1rem;
  content: "";
  height: 1rem;
  position: absolute;
}

p.from-me {
  align-self: flex-end;
  background-color: #248bf5;
  color: #fff; 
}

p.from-me::before {
  border-bottom-left-radius: 0.8rem 0.7rem;
  border-right: 1rem solid #248bf5;
  right: -0.35rem;
  transform: translate(0, -0.1rem);
}

p.from-me::after {
  background-color: #fff;
  border-bottom-left-radius: 0.5rem;
  right: -40px;
  transform:translate(-30px, -2px);
  width: 10px;
}

p[class^="from-"] {
  margin: 0.5rem 0;
  width: fit-content;
}

p.from-me ~ p.from-me {
  margin: 0.25rem 0 0;
}

p.from-me ~ p.from-me:not(:last-child) {
  margin: 0.25rem 0 0;
}

p.from-me ~ p.from-me:last-child {
  margin-bottom: 0.5rem;
}

p.from-them {
  align-items: flex-start;
  background-color: #e5e5ea;
  color: #000;
}

p.from-them:before {
  border-bottom-right-radius: 0.8rem 0.7rem;
  border-left: 1rem solid #e5e5ea;
  left: -0.35rem;
  transform: translate(0, -0.1rem);
}

p.from-them::after {
  background-color: #fff;
  border-bottom-right-radius: 0.5rem;
  left: 20px;
  transform: translate(-30px, -2px);
  width: 10px;
}

p[class^="from-"].emoji {
  background: none;
  font-size: 2.5rem;
}

p[class^="from-"].emoji::before {
  content: none;
}

.no-tail::before {
  display: none;
}

.margin-b_none {
  margin-bottom: 0 !important;
}

.margin-b_one {
  margin-bottom: 1rem !important;
}

.margin-t_one {
  margin-top: 1rem !important;
}


/ * general styling * /
@font-face {
  font-family: "SanFrancisco";
  src:
    url("https://cdn.rawgit.com/AllThingsSmitty/fonts/25983b71/SanFrancisco/sanfranciscodisplay-regular-webfont.woff2") format("woff2"),
    url("https://cdn.rawgit.com/AllThingsSmitty/fonts/25983b71/SanFrancisco/sanfranciscodisplay-regular-webfont.woff") format("woff");
}

body {  
  font-family: -apple-system, 
    BlinkMacSystemFont, 
    "Segoe UI", 
    Roboto, 
    Oxygen-Sans, 
    Ubuntu, 
    Cantarell, 
    "Helvetica Neue", 
    sans-serif;
  font-weight: normal;
  margin: 0;
}

.container {
  margin: 0 auto;
  max-width: 600px;
  padding: 1rem;
}

h1 {
  font-weight: normal;
  margin-bottom: 0.5rem;
}

h2 {
  border-bottom: 1px solid #e5e5ea;
  color: #666;
  font-weight: normal;
  margin-top: 0;
  padding-bottom: 1.5rem;
}

.comment {
  color: #222;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: 100%;
  padding: 0;
}

@media screen and (max-width: 800px) {
  body {
    margin: 0 0.5rem;
  }

  .container {
    padding: 0.5rem;
  }

  .imessage {
    font-size: 1.05rem;
    margin: 0 auto 1rem;
    max-width: 600px;
    padding: 0.25rem 0.875rem;
  }

  .imessage p {
    margin: 0.5rem 0;
  }
}
*/

/*=====================================================
                FAQ
=======================================================*/
section-faq {
    padding: 0 0;
    overflow: hidden;
}
.msger {
    /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    height: calc(100% - 50px);*/
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    margin: 25px 10px;
    border: var(--msger-border);
    border-radius: 5px;
    background: var(--msger-bg);
    box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);
    /*min-width: 867px;
    height: 600px;*/

    height: 75svh;
    margin-bottom: 0;
}
.msger-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: var(--msger-border);
    /*background: #eee;
    color: #666;*/

    background: var(--msgr-hf-border);
    color: var(--msgr-hf-color);
}
.msger-chat {
    background-color: var(--msger-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23dddddd' fill-opacity='0.4'%3E%3Cpath d='M24.37 16c.2.65.39 1.32.54 2H21.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06A5 5 0 0 1-17.45 28v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H-20a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1L.9 19.22a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0L2.26 23h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM-13.82 27l16.37 4.91L18.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H-13.1z'/%3E%3Cpath id='path6_fill-copy' d='M284.37 16c.2.65.39 1.32.54 2H281.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06a5 5 0 0 1-2.24-8.94v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H240a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM246.18 27l16.37 4.91L278.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H246.9z'/%3E%3Cpath d='M159.5 21.02A9 9 0 0 0 151 15h-42a9 9 0 0 0-8.5 6.02 6 6 0 0 0 .02 11.96A8.99 8.99 0 0 0 109 45h42a9 9 0 0 0 8.48-12.02 6 6 0 0 0 .02-11.96zM151 17h-42a7 7 0 0 0-6.33 4h54.66a7 7 0 0 0-6.33-4zm-9.34 26a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-7a7 7 0 1 1 0-14h42a7 7 0 1 1 0 14h-9.34zM109 27a9 9 0 0 0-7.48 4H101a4 4 0 1 1 0-8h58a4 4 0 0 1 0 8h-.52a9 9 0 0 0-7.48-4h-42z'/%3E%3Cpath d='M39 115a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm6-8a6 6 0 1 1-12 0 6 6 0 0 1 12 0zm-3-29v-2h8v-6H40a4 4 0 0 0-4 4v10H22l-1.33 4-.67 2h2.19L26 130h26l3.81-40H58l-.67-2L56 84H42v-6zm-4-4v10h2V74h8v-2h-8a2 2 0 0 0-2 2zm2 12h14.56l.67 2H22.77l.67-2H40zm13.8 4H24.2l3.62 38h22.36l3.62-38z'/%3E%3Cpath d='M129 92h-6v4h-6v4h-6v14h-3l.24 2 3.76 32h36l3.76-32 .24-2h-3v-14h-6v-4h-6v-4h-8zm18 22v-12h-4v4h3v8h1zm-3 0v-6h-4v6h4zm-6 6v-16h-4v19.17c1.6-.7 2.97-1.8 4-3.17zm-6 3.8V100h-4v23.8a10.04 10.04 0 0 0 4 0zm-6-.63V104h-4v16a10.04 10.04 0 0 0 4 3.17zm-6-9.17v-6h-4v6h4zm-6 0v-8h3v-4h-4v12h1zm27-12v-4h-4v4h3v4h1v-4zm-6 0v-8h-4v4h3v4h1zm-6-4v-4h-4v8h1v-4h3zm-6 4v-4h-4v8h1v-4h3zm7 24a12 12 0 0 0 11.83-10h7.92l-3.53 30h-32.44l-3.53-30h7.92A12 12 0 0 0 130 126z'/%3E%3Cpath d='M212 86v2h-4v-2h4zm4 0h-2v2h2v-2zm-20 0v.1a5 5 0 0 0-.56 9.65l.06.25 1.12 4.48a2 2 0 0 0 1.94 1.52h.01l7.02 24.55a2 2 0 0 0 1.92 1.45h4.98a2 2 0 0 0 1.92-1.45l7.02-24.55a2 2 0 0 0 1.95-1.52L224.5 96l.06-.25a5 5 0 0 0-.56-9.65V86a14 14 0 0 0-28 0zm4 0h6v2h-9a3 3 0 1 0 0 6H223a3 3 0 1 0 0-6H220v-2h2a12 12 0 1 0-24 0h2zm-1.44 14l-1-4h24.88l-1 4h-22.88zm8.95 26l-6.86-24h18.7l-6.86 24h-4.98zM150 242a22 22 0 1 0 0-44 22 22 0 0 0 0 44zm24-22a24 24 0 1 1-48 0 24 24 0 0 1 48 0zm-28.38 17.73l2.04-.87a6 6 0 0 1 4.68 0l2.04.87a2 2 0 0 0 2.5-.82l1.14-1.9a6 6 0 0 1 3.79-2.75l2.15-.5a2 2 0 0 0 1.54-2.12l-.19-2.2a6 6 0 0 1 1.45-4.46l1.45-1.67a2 2 0 0 0 0-2.62l-1.45-1.67a6 6 0 0 1-1.45-4.46l.2-2.2a2 2 0 0 0-1.55-2.13l-2.15-.5a6 6 0 0 1-3.8-2.75l-1.13-1.9a2 2 0 0 0-2.5-.8l-2.04.86a6 6 0 0 1-4.68 0l-2.04-.87a2 2 0 0 0-2.5.82l-1.14 1.9a6 6 0 0 1-3.79 2.75l-2.15.5a2 2 0 0 0-1.54 2.12l.19 2.2a6 6 0 0 1-1.45 4.46l-1.45 1.67a2 2 0 0 0 0 2.62l1.45 1.67a6 6 0 0 1 1.45 4.46l-.2 2.2a2 2 0 0 0 1.55 2.13l2.15.5a6 6 0 0 1 3.8 2.75l1.13 1.9a2 2 0 0 0 2.5.8zm2.82.97a4 4 0 0 1 3.12 0l2.04.87a4 4 0 0 0 4.99-1.62l1.14-1.9a4 4 0 0 1 2.53-1.84l2.15-.5a4 4 0 0 0 3.09-4.24l-.2-2.2a4 4 0 0 1 .97-2.98l1.45-1.67a4 4 0 0 0 0-5.24l-1.45-1.67a4 4 0 0 1-.97-2.97l.2-2.2a4 4 0 0 0-3.09-4.25l-2.15-.5a4 4 0 0 1-2.53-1.84l-1.14-1.9a4 4 0 0 0-5-1.62l-2.03.87a4 4 0 0 1-3.12 0l-2.04-.87a4 4 0 0 0-4.99 1.62l-1.14 1.9a4 4 0 0 1-2.53 1.84l-2.15.5a4 4 0 0 0-3.09 4.24l.2 2.2a4 4 0 0 1-.97 2.98l-1.45 1.67a4 4 0 0 0 0 5.24l1.45 1.67a4 4 0 0 1 .97 2.97l-.2 2.2a4 4 0 0 0 3.09 4.25l2.15.5a4 4 0 0 1 2.53 1.84l1.14 1.9a4 4 0 0 0 5 1.62l2.03-.87zM152 207a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6 2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-11 1a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-6 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3-5a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-8 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm0 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4 7a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5-2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5 4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-5-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-24 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm16 5a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm7-5a7 7 0 1 1-14 0 7 7 0 0 1 14 0zm86-29a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1 246 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM275 214a29 29 0 0 0-57.97 0h57.96zM72.33 198.12c-.21-.32-.34-.7-.34-1.12v-12h-2v12a4.01 4.01 0 0 0 7.09 2.54c.57-.69.91-1.57.91-2.54v-12h-2v12a1.99 1.99 0 0 1-2 2 2 2 0 0 1-1.66-.88zM75 176c.38 0 .74-.04 1.1-.12a4 4 0 0 0 6.19 2.4A13.94 13.94 0 0 1 84 185v24a6 6 0 0 1-6 6h-3v9a5 5 0 1 1-10 0v-9h-3a6 6 0 0 1-6-6v-24a14 14 0 0 1 14-14 5 5 0 0 0 5 5zm-17 15v12a1.99 1.99 0 0 0 1.22 1.84 2 2 0 0 0 2.44-.72c.21-.32.34-.7.34-1.12v-12h2v12a3.98 3.98 0 0 1-5.35 3.77 3.98 3.98 0 0 1-.65-.3V209a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4v-24c.01-1.53-.23-2.88-.72-4.17-.43.1-.87.16-1.28.17a6 6 0 0 1-5.2-3 7 7 0 0 1-6.47-4.88A12 12 0 0 0 58 185v6zm9 24v9a3 3 0 1 0 6 0v-9h-6z'/%3E%3Cpath d='M-17 191a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2H4zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1-14 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM15 214a29 29 0 0 0-57.97 0h57.96z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}
.msger-chat::-webkit-scrollbar {
  width: 6px;
}
.msger-chat::-webkit-scrollbar-track {
  background: #ddd;
}
.msger-chat::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}
.msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
.msg:last-of-type {
  margin: 0;
}

.msg-bubble {
    /*
    max-width: 450px;
    border-radius: 15px;
    padding: 15px;
    max-width: 75%;
    background: var(--left-msg-bg);
    */

    padding-left: 15px;
    padding-right: 15px;
    max-width: 85%;
}
.msg-bubble p {
    border-radius: 1.15rem;
    /*line-height: 1.25;
    max-width: 75%;
    padding: 0.5rem 0.875rem;*/
    position: relative;
    word-wrap: break-word;
    padding: 0.75rem 0.875rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    text-align: left;

    padding-left: 2rem;
    padding-right: 2rem;
}
.msg-bubble p::before,
.msg-bubble p::after {
    bottom: -0.1rem;
    content: "";
    height: 1rem;
    position: absolute;
}

.msg-from {
    width: 55px;
    height: 55px;
    margin-right: 10px;
    margin-left: 10px;
    background: var(--gray-light);
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*margin-bottom: 2%;*/

    /*
    background: #ddd;
    background-image: url("../img/client/man.png");
    */
}
.msg-from img {
    margin-top: 2.5px;
    margin-left: 0.5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /*
    background-image: url("../img/client/man.png");
    margin-right: 10px;
    background: #ddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    */
}

.left-msg .msg-bubble {
    border-bottom-left-radius: 0;
}

.right-msg {
  flex-direction: row-reverse;
}
.right-msg .msg-bubble {
  /*color: #fff;
  background: var(--right-msg-bg);*/

  border-bottom-right-radius: 0;
}

p.from-me {
    align-items: flex-start;
    /*background-color: #e5e5ea;
    color: #000;*/

    background-color: var(--left-msg-bg);
    color: var(--dark);
}
p.from-me:before {
    border-bottom-right-radius: 0.8rem 0.7rem;
    /*border-left: 1rem solid #e5e5ea;*/
    left: -0.35rem;
    transform: translate(0, -0.1rem);
    
    border-left: 1rem solid  var(--left-msg-bg);
}
p.from-me::after {
    /*background-color: #fff;*/
    border-bottom-right-radius: 0.5rem;
    left: 20px;
    transform: translate(-30px, -2px);
    width: 10px;

    background-color: var(--msger-bg);
}

p.from-faq {
    align-items: flex-end;

    background-color: var(--right-msg-bg);
    color: var(--dark);
}
p.from-faq:before {
    border-bottom-left-radius: 0.8rem 0.7rem;
    border-right: 1rem solid var(--right-msg-bg);
    right: -0.35rem;
    transform: translate(0, -0.1rem);
}
p.from-faq::after {
    /*background-color: #fff;*/
    border-bottom-left-radius: 0.5rem;
    right: -40px;
    transform:translate(-30px, -2px);
    width: 10px;

    background-color: var(--msger-bg);
}

.msger-inputarea {
    /*display: flex;
    background: #eee;
    padding: 10px;*/
    border-top: var(--msger-border);

    /*
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-template-rows: 40px; minmax(40px, 1fr); 
    gap: 15px;*/
    padding: 5px;
    background: var(--msgr-hf-border);
    box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);
    margin: 25px 10px;
    margin-top: 0;
}
.msger-inputarea * {
    margin: 5px;
    /*
    margin-right: 15px;
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    */
} 
/*
.msger-button {
   white-space: nowrap;
    min-width: auto;
}
*/


/*-------------------------------------------------*/