@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    --font-default: 'Roboto', sans-serif;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    /* Default text color */
    --color-default: #1a1f24;
    --color-default-rgb: 26, 31, 36;
    /* Defult links color */
    --color-links: #0ea2bd;
    --color-links-hover: #1ec3e0;
    /* Primay colors */
    --color-primary: #0ea2bd;
    --color-primary-light: #1ec3e0;
    --color-primary-dark: #0189a1;
    --color-primary-rgb: 14, 162, 189;
    /* Secondary colors */
    --color-secondary: #485664;
    --color-secondary-light: #8f9fae;
    --color-secondary-dark: #3a4753;
    --color-secondary-rgb: 72, 86, 100;
    --color-white: #ffffff;
    scroll-behavior: smooth;
}

body {
    background: #d4d0d0;
    color: #000;
}

a,
button {
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

a,
a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
    font-family: var(--font-primary);
}

label {
    margin-bottom: 0;
}

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0, 0, 0, .5);
    display: block;
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
}

a {
    color: var(--color-links);
    text-decoration: none;
}

a:hover {
    color: var(--color-links-hover);
    text-decoration: none;
}

main {
    overflow: hidden;
}

body {
    font-family: var(--font-default);
    background-color: #fff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 0 14px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


@media (max-width: 640px) {
    .hero-fullscreen h2 {
        font-size: 32px;
    }
    .hero-fullscreen p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .hero-fullscreen .btn-get-started,
    .hero-fullscreen .btn-watch-video {
        font-size: 14px;
    }
}

.blog {
    padding: 0px;
}

.btn-get-qualified {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: var(--color-white);
    background: #185ED9;
    font-family: var(--font-secondary);
    border: 0px;
}

.btn-get-qualified:hover {
    background: #0269b4;
}

/*--------------------------------------------------------------
# Static Hero Section
--------------------------------------------------------------*/

.hero-static {
    width: 100%;
    min-height: 40vh;
    position: relative;
    padding: 20px 0 20px;
}

.hero-static h2 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 300;
    color: var(--color-secondary);
    font-family: var(--font-primary);
}

.hero-static h2 span {
    color: var(--color-primary);
}

.hero-static .content {
    width: 60%;
}

.hero-static .content-text {
    font-size: 1.875rem;
    font-weight: 700;
}

.hero-static span.red {
    color: #df1529;
}

.hero-static p {
    color: rgba(var(--color-secondary-rgb), 0.8);
    margin: 0 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero-static .btn-get-started {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: var(--color-white);
    background: var(--color-primary);
    font-family: var(--font-secondary);
}

.hero-static .btn-get-started:hover {
    background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-static .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    font-weight: 600;
}

.hero-static .btn-watch-video i {
    color: var(--color-primary);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero-static .btn-watch-video:hover {
    color: var(--color-primary);
}

.hero-static .btn-watch-video:hover i {
    color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
    .hero-static h2 {
        font-size: 32px;
    }
    .hero-static p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .hero-static .btn-get-started,
    .hero-static .btn-watch-video {
        font-size: 14px;
    }
}

.msg_wrap {
    width: fit-content;
    border-radius: 8px;
    background-color: #EEEEEE;
}

.btn_wrapper {
    min-width: 50px;
    border-radius: 8px;
    background-color: #fbfbfb;
    text-align: center;
}

.user {
    width: 45px;
    height: 100%;
}

.agent {
    width: 45px;
    height: 100%;
    border-radius: 22px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    color: #5c6064;
    font-size: 14px;
    margin-top: 225px;
    background-color: #f3f4f6;
}

.footer .footer-content {
    /*background: var(--color-secondary);*/
    padding: 60px 0 44px 0;
}

.footer .footer-content .footer-info {
    margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
    color: var(--color-primary);
}

.footer .footer-content .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0px;
    font-family: var(--font-primary);
    color: var(--color-white);
}

.footer .footer-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.footer .footer-content h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    bottom: 0;
    left: 0;
}

.footer .footer-content .footer-links {
    margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-content .footer-links ul i {
    padding-right: 2px;
    color: var(--color-white);
    font-size: 12px;
    line-height: 1;
}

.footer .footer-content .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-content .footer-links ul a {
    color: rgba(var(--color-white-rgb), 0.7);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
    color: var(--color-white);
}

.footer .footer-legal {
    padding: 30px 0;
    background-color: #031A42;
}

.footer .footer-legal .credits {
    padding-top: 4px;
    font-size: 13px;
    color: var(--color-white);
}

.footer .footer-legal .credits a {
    color: var(--color-primary-light);
}

.copyright {
    color: #f4f4f4;
}

.chat-online {
    color: #34ce57
}

.chat-offline {
    color: #e4606d
}

.chat-messages {
    display: flex;
    flex-direction: column;
}

.chat-message-left,
.chat-message-right {
    display: flex;
    flex-shrink: 0
}

.chat-message-left {
    margin-right: auto
}

.chat-message-right {
    flex-direction: row-reverse;
    margin-left: auto
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.hidden {
    display: none !important;

}

.flex-shrink-0 {
    flex-shrink: 0;
}

.typing-animation {
    display: inline-flex;
    align-items: center;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background-color: #a7a7a7;
    border-radius: 50%;
    margin-right: 4px;
    animation: typing 1s infinite;
}

@keyframes typing {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .hero-static .content {
        width: 100%;
    }
}

footer {
  background-color: #0E357A !important;
}
.footer-content p{
  margin-bottom: 20px;
  color: #fff;
}

.modal-dialog {
  max-width: 950px;
  margin: 1.75rem auto;
}
.mdl-close{
  position: absolute;
  left: 0px;
}
.modal-header{
  border-bottom: none;
}

.trams-mdl-content {}
.trams-mdl-content h2{
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #5C6064;
}
.trams-mdl-content p{
  color: #5C6064;
  font-size: 14px;
  margin-bottom: 15px;
}



.modal {
	display: none;
	position: fixed;
	z-index: 999999;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	/* background-color: rgb(0, 0, 0); */
	background-color: rgba(0, 0, 0, 0);
}


/* ============================end all the css ========================= */