* {
    font-family: 'Poppins';
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

html {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

body {
    margin: 0;
    padding: 0;
}

img,
svg {
    max-width: 100%;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    line-height: 1.2;
}


/* Header */

.headerGridContain {
    display: grid;
    grid-template-columns: 30% 70%;
    padding: 10px 0;
}

.navBar,
.logoHeader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navBar{
    flex-direction: column;
}

.sub-nav{
    display: flex;    
    width: 100%;
    justify-content: flex-end;
}

.sub-nav a#navnum{
    padding: 5px 30px;
    margin-right: 45px;
    color: white;
    background-color: #012c50;
    border-radius: 20px;
    transition: .25s;
}

.sub-nav A#navnum:hover{
    background: #1b91e2;
    transition: .25s;
}

.social-list{
    display: flex;
    align-items: center;
    margin-right: 50px;
}

.social-list a{
    display: flex !important;
    padding: unset !important;
    background-color: #001533 !important;
    color: #fff !important;
    transition: .25s !important;
    font-weight: unset !important;
    text-transform: unset !important;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-list a:hover{
    background: #1b91e2 !important;
    transition: .25s !important;
}

.logoHeader img {
    width: 60%;
    cursor: pointer;
    transition: .25s;
}

.logoHeader img:hover {
    transform: scale(.95);
}

.navBar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navBar li {
    float: left;
}

.navBar a {
    display: block;
    padding: 20px;
    color: #001533;
    transition: .25s;
    font-weight: 500;
    text-transform: uppercase;
}

.navBar a:hover {
    color: #00b3ff;
}

.dropdown {
    transition: .25s;
}

.dropdown:hover {
    cursor: pointer;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: all 0.3s ease-out;
}

.dropdown-content a {
    color: #001533;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 14;
    text-transform: capitalize;
    display: block;
    text-align: left;
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
}

.mobile_header {
    width: 100%;
    display: none;
    justify-content: space-around;
    align-items: center;
    background: #fff;
}

.mobile_header img {
    width: 60%;
}

.mobile_toogle {
    font-size: 26px;
}

.mobile_menu {
    width: 60vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background: #001533;
    overflow-y: scroll!important;
    transform: translateX(100%);
    display: none;
    transition: .25s;
}

.mobile_menu_active {
    transform: translateX(0);
}

.mobile_item {
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 9px 15px;
}

.mobile_item a {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    width: 100%;
    font-weight: 500;
    display: flex;
}

.mobile_close {
    font-size: 32px;
    justify-content: flex-end;
    padding-right: 35px;
    padding-top: 10px;
}

.mobile_dropdown {
    background: #00214e;
    max-height: 0;
    overflow: hidden;
    transition: all 1s ease-out;
}

.out {
    animation-name: outDrop;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.entry {
    animation-name: showDrop;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

@keyframes showDrop {
    0% {
        max-height: 0;
    }
    100% {
        max-height: 9000px;
    }
}

@keyframes outDrop {
    0% {
        max-height: 9000px;
    }
    100% {
        max-height: 0;
    }
}

.mobile_dropdown .mobile_item a {
    font-size: 13px;
}

.blur {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    visibility: hidden;
    opacity: 0;
    transition: .25s;
    z-index: 90;
}

.blur_active {
    visibility: visible;
    opacity: 1;
}


/* Footer */

footer .containContent {
    display: grid;
    grid-template-columns: 20% 80%;
}

footer .containContent .logoContain,
footer .containContent .logoContain a {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .containContent .logoContain{
    padding: 20px;
}

footer .containContent .logoContain img {
    width: 60%;
    z-index: 1;
}

footer .containContent .infoContain {
    position: relative;
}

footer .containContent .infoContain {
    background: url("../images/footer_background_ui_medical_marketing.jpg");
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 100px;
    color: white;
    text-align: left;
}

footer .infoContain:before {
    content: " ";
    position: absolute;
    width: 50px;
    height: 100%;
    background: white;
    transform-origin: bottom left;
    transform: skewX(-5deg) translateX(-100%);
}

footer .infoContain ul {
    list-style: none;
    padding: 0;
}

footer .infoContain ul a {
    color: white;
    transition: .25s;
}

footer .infoContain ul a:hover {
    color: #00b3ff;
}

footer .infoContain ul i {
    margin-right: 3%;
}

footer .infoContain .serviceContain ul {
    list-style: initial;
    padding-left: 20px;
}


footer .copyright{
    background: #00214e;
    text-align: center;
    padding: 5px;
}

footer .copyright a{
    color: white;
    font-weight: 400;
    font-size: 12px;
    transition: .25s;
}

footer .copyright a:hover{
    color: #00b3ff;
}


/* POPUP */

.popupOff {
    display: none;
}

.popupOn{
    background: white;
    border-radius: 20px;
    display: flex;
    position: fixed;
    top: 0;
    left: 15%;
    width: 70%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
}

.popupOn .contain{
    width: 100%;
    height: 100%;
}

.popupOn .popup{
    overflow: hidden !important;
}

.popupOn iframe{
    height: 700px;
}

.popupOn .fa-times-circle {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    color: #012c50;
    transition: .25s;
}

.popupOn .fa-times-circle:hover {
    color: #1b91e2;
    cursor: pointer;
}



/* Chatbot */

.openchat {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    background: rgb(0, 95, 255);
    background: linear-gradient(0deg, rgba(0, 95, 255, 1) 0%, rgba(0, 179, 255, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    z-index: 2;
}

.openchatnot {
    display: none;
}

.chatcontainer {
    width: 370px;
    height: 600px;
    background-color: #fff;
    position: fixed;
    bottom: 30px;
    right: 50px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.32);
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.32);
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease-out;
    z-index: 2;
}

.chatcontaineractive {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.send {
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    transform: translate(40%, 20%);
    background: rgb(0, 95, 255);
    background: linear-gradient(0deg, rgba(0, 95, 255, 1) 0%, rgba(0, 179, 255, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
}

.chatheader {
    width: 100%;
    height: 80px;
    /* background-color: #5d38d1; */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
}

.chatheader_content {
    position: absolute;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    background: rgb(0, 179, 255);
    background: linear-gradient(0deg, rgba(0, 179, 255, 1) 31%, rgba(0, 95, 255, 1) 100%);
    z-index: 99;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.chatheader svg {
    position: absolute;
    bottom: 20px;
    right: 0;
    transform: translateY(100%);
    z-index: 1;
}

.profile {
    display: flex;
    align-items: center;
}

.profile .pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-right: 20px;
}

.profile .pic img {
    width: 60px;
}

.profile .name {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 22px;
    color: #fff;
}

.options {
    display: flex;
    align-items: center;
}

.close {
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.chatbody {
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 50px;
}

.chatbody::-webkit-scrollbar {
    width: 0.5vw;
    background: transparent;
}

.chatbody::-webkit-scrollbar-thumb {
    background: -webkit-linear-gradient(transparent, transparent);
    background: linear-gradient(transparent, #00b3ff);
    border-radius: 20px;
}

.chatbody::-webkit-scrollbar-thumb:hover {
    background: -webkit-linear-gradient(transparent, #00b3ff);
    background: linear-gradient(transparent, #00b3ff);
}

.chatbody .message {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.chatbody .message .content_message {
    width: fit-content;
    max-width: 80%;
    min-height: 40px;
    background: #f0f2f7;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    word-break: break-word;
    border-radius: 25px;
}

.chatbody .message.sender {
    justify-content: flex-end;
}

.chatbody .message.sender .content_message {
    background: rgb(0, 95, 255);
    background: linear-gradient(0deg, rgba(0, 95, 255, 1) 0%, rgba(0, 179, 255, 1) 100%);
    color: #fff;
}

.chatinput {
    width: 100%;
    height: 70px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    position: relative;
}

.chatinput::before {
    content: "";
    width: 85%;
    height: 1px;
    background: #dbdfe6;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.chatinput textarea {
    width: 100%;
    outline: none;
    border: none;
    font-size: 15px;
}

.chatinput textarea::-webkit-scrollbar {
    width: 0.5vw;
    background: transparent;
}

.chatinput textarea::-webkit-scrollbar-thumb {
    background: -webkit-linear-gradient(transparent, transparent);
    background: linear-gradient(transparent, #5d38d1);
    border-radius: 20px;
}

.chatinput textarea::-webkit-scrollbar-thumb:hover {
    background: -webkit-linear-gradient(transparent, #5d38d1);
    background: linear-gradient(transparent, #5d38d1);
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 20px;
}

.lds-ellipsis div {
    position: absolute;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #a0a3aa;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

@media (max-width: 996px) {
    .desktopHeader {
        display: none;
    }
    .mobile_header {
        display: flex;
        align-items: center;
        z-index: 99;
    }
    .mobile_header img{
        width: 25%;
    }
    .mobile_menu {
        display: block;
        z-index: 99;
    }
    footer .containContent {
        display: grid;
        grid-template-columns: 1fr;
    }
    footer .containContent .logoContain img {
        width: 40%;
    }
    footer .containContent .infoContain {
        grid-template-columns: 1fr;
        padding: 100px 20px 50px 20px;
        text-align: center;
    }
    footer .infoContain:before {
        width: 100%;
        height: 50px;
        transform: skewY(-5deg) translateY(0%);
    }
    footer .infoContain .serviceContain ul {
        list-style: none;
        padding: 20px 0;
    }
    .chatcontainer {
        width: 80%;
        height: 450px;
    }
    .drop-dw-mobile {
        display: flex;
        flex-direction: column;
        max-width: 180px;
        max-height: 0;
        overflow: hidden;
        transition: .25s;
        margin-left: 10px;
    }
    .drop-dw-mobile a {
        font-size: 12px;
        text-transform: capitalize !important;
        margin: 5px 0;
    }
    .show-dropdw {
        max-height: 500px;
    }
    .popupOn{
        top: 0;
        left: 5%;
        width: 90%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 90;
    }
}