@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;family=Vidaloka&amp;display=swap");

:root {
    --yai-font-size-10: 0.7rem;
    --yai-font-size-12: 0.8rem;
    --yai-font-size-14: 0.85rem;
    --yai-font-size-15: 0.9rem;
    --yai-font-size-16: 0.95rem;
    --yai-font-size-18: 1rem;
    --yai-font-size-20: 1.1rem;
    --yai-font-size-24: 1.2rem;
    --yai-font-300: 300;
    --yai-padding-sm: 0.5rem;
    --yai-padding-md: 0.85rem;
    --yai-padding-lg: 1rem;
    --yai-body-font: "Poppins", sans-serif;
    --yai-heading-font: "Vidaloka", serif;
    --yai-bg-color: #2196F3;
    --yai-theme-color: #2196F3;
    --yai-font-color: #0d0c41;
    --yai-base-color: #fff;
    --yai-shadow: 0 3px 10px rgba(15, 39, 125, 0.15);
    --yai-shadow-lg: 0 5px 15px rgba(15, 39, 125, 0.15);
    --yai-shadow-md: 0px 20px 30px 0px rgb(1 11 60 / 10%);
}
*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--yai-body-font);
    font-size: var(--yai-font-size-15);
    color: var(--yai-font-color);
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    color: var(--yai-font-color);
}
a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
a:hover,
a:focus {
    color: var(--bs-link-hover-color);
}

.text-color {
    color: #2196F3;
}
.bg-theme {
    background: #f1f1f1;
}
.blue-bg-4 {
    background: #2d69f0;
}
.pink-bg {
    background: #dd246e;
}
.purple-bg {
    background: #8007e6;
}
.green-bg {
    background: #0cae74;
}

section {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

.support_se {
    color: #000;
    font-size: 17px;
    text-align: center;
}

.heading_se {
    background: #2196F3;
    text-align: center;
    color: #fff;
    padding: 10px 0px;
    margin: -18px 8px;
    z-index: 9999 !important;
    position: relative;
    border-radius: 5px;
    margin-bottom: 35px;
}

.heading_se:hover {
    background: #000;
}

.main_img img
{
   border-radius: 5px;
}

.heading_se a
{
    color:#fff;
    font-size: 14px;
}


.section__title {
    color: #0e1133;
    text-transform: capitalize;
    z-index: 1;
    margin-bottom: 3px;
    font-weight: 700;
}
.section__title span {
    position: relative;
}
.section__title span img {
    position: absolute;
    left: -14px;
    bottom: 12px;
    z-index: -1;
    -webkit-animation: section-animation 3s infinite;
    animation: section-animation 3s infinite;
}
.section__title span.yellow-bg-big img {
    bottom: 0;
    width: 120%;
    -webkit-animation: section-animation-2 3s infinite;
    animation: section-animation-2 3s infinite;
}
.section__title span.yellow-bg-sm img {
    bottom: 10px;
    width: 120%;
    -webkit-animation: section-animation-2 3s infinite;
    animation: section-animation-2 3s infinite;
}
.section__title small {
    font-size: 60%;
    font-weight: 400;
}
@keyframes section-animation {
    0% {
        width: 0;
    }
    15% {
        width: 100%;
    }
    85% {
        opacity: 1;
    }
    90% {
        width: 100%;
        opacity: 0;
    }
    to {
        width: 0;
        opacity: 0;
    }
}
@keyframes section-animation-2 {
    0% {
        width: 0;
    }
    15% {
        width: 125%;
    }
    85% {
        opacity: 1;
    }
    90% {
        width: 125%;
        opacity: 0;
    }
    to {
        width: 0;
        opacity: 0;
    }
}
.btnsar {
    padding: 10px 20px;
    outline: none;
    border: 0;
    border-radius: var(--bs-border-radius-sm);
    font-size: var(--yai-font-size-18);
    background-color: var(--yai-theme-color);
    color: var(--yai-base-color) !important;
    transition: 0.2s;
    box-shadow: #000;
    display: inline-block;
}
.btnsar:hover {
    transform: translateY(4px);
    box-shadow: none;
    color: var(--yai-base-color);
}
/* Top Panel */
/* -------------------------------- */
.topHeader {
    padding: 15px 0;
    position: relative;
 
    color: var(--yai-base-color);
}
.topHeader ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
}
.topHeader ul li:first-child {
    padding-left: 0;
}
.topHeader ul li {
    position: relative;
    padding: 0 10px;
    display: flex;
    align-items: center;
}
.topHeader ul li:after {
    position: absolute;
    content: "";
        height: 30px;
    width: 1px;
    background: #d5d5d5;
    right: 0;
    top: 4px;
}
.topHeader ul li:last-child:after {
    display: none;
}
.topHeader ul li a {
    display: block;
    position: relative;
    font-size: 15px;
    color: #ffffff;
    border-radius: 5px;
    padding: 7px 20px;
    background: #2196F3;
}
.topHeader a:hover {
    color: #fff;
    background:#000;
}
.news {
    position: relative;
    padding-left: 120px;
    display: flex;
    align-items: center;
    min-height: 24px;
    color: #0a127a;
    font-weight: 800;
}
.news b {
    position: absolute;
    left: 0;
    color: #ee1f24;
    font-size: 14px;
}
.news p {
    margin-bottom: 0;
}
.nav-social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.nav-social-links a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.25);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.goog-te-banner-frame {
    display: none;
}
body {
    top: 0 !important;
}

.goog-logo-link {
    display: none !important;
}
.goog-te-gadget-simple {
    border-radius: 5px;
    border-color: #fff;
    display: block !important;
}
.goog-te-gadget {
    color: #fff !important;
    font-size: 0 !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: #fff !important;
    display: block;
    padding: 0.25rem;
}

.goog-te-gadget img {
    display: none;
}
.goog-te-gadget-simple {
    background: transparent !important;
}
.goog-te-menu-value img {
    margin-left: 4px;
    margin-right: 5px;
    display: inline-block;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
}

#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* ============ desktop view ============ */
.nav-link {
    color: #eeeefb;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
}
.nav-link2 {
    padding: 0.5rem 0.75rem;
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1;
    position: relative;
}
.nav-link:hover,
.nav-link:focus {
    color: #2196F3;
}
@media all and (min-width: 992px) {
    .navbar-brand {
        width: 25%;
    }
    .navbar .nav-item .dropdown-menu {
        display: none;
    }

    /* .navbar .nav-item:hover .nav-link{   } */
    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }
    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
    .nav-link2 span {
        position: absolute;
        background: var(--yai-font-color);
        color: var(--yai-base-color);
        font-size: 0.7rem;
        font-weight: 500;
        border-radius: 1rem;
        padding: 0.15rem 0.3rem;
        top: 0;
        right: 0;
    }
}

/* Product Category */
/* ------------------------------- */
.categoryBox {
    position: relative;
    box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
    background: var(--yai-base-color);
    transition: transform 0.4s;
    display: block;
    margin: 1rem 0.5rem;
}
.categoryBox .contentTXT {
    position: absolute;
    left: 15px;
    bottom: 20%;
    padding: 15px;
}
.categoryBox .contentTXT h1 {
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
}
.categoryBox .contentTXT h1 span {
    display: block;
    color: #565656;
    margin-top: 10px;
    letter-spacing: 1px;
    font-size: 14px;
}
.categoryBox:hover {
    box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
}
.categoryBox .imgpt {
    overflow: hidden;
    /* height: 200px; */
    position: relative;
}

.categoryBox .imgpt img {
    transform: translateZ(0) rotate(0.001deg) scale(1.01);
    transition: transform 0.4s;
}
.categoryBox:hover .imgpt img {
    transform: translateZ(0) rotate(0.001deg) scale(1.1);
}

.productMain {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    height: calc(100% - 20px);
}
.productMain img {
    position: relative;
    padding: 10px;
    border: 1px solid #2196F3;
    border-radius: 10px;
    background: #f1f1f1;
}
.productMain h4 {
    opacity: 0;
    font-size: 16px;
    position: absolute;
    bottom: 10px;
    border-radius: 5px;
    left: 10px;
    width: calc(100% - 20px);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.productMain h4 i {
    color: var(--yai-base-color);
    border: 1px solid #fff;
    padding: 0.3rem;
    border-radius: 50%;
    display: inline-block;
}
.productMain:hover h4 {
    opacity: 1;
    background: var(--yai-bg-color);
    padding: 0.5rem 1rem;
    color: var(--yai-base-color);
}

/* About Main Panel */
/* ================================= */

.aboutMain p {
    line-height: 2;
}
.countMain {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-around;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
    background: rgb(255 255 255 / 85%);
    margin-top: -3rem;
    position: relative;
    margin-left: 3rem;
    margin-right: -3rem;
    border: 2px dashed #2196F3;
}
.count p {
    margin-bottom: 0;
}

.services__item {
    position: relative;
    padding: 40px 40px;
    -webkit-box-shadow: 0px 30px 40px 0px rgba(3, 24, 128, 0.2);
    -moz-box-shadow: 0px 30px 40px 0px rgba(3, 24, 128, 0.2);
    box-shadow: 0px 30px 40px 0px rgba(3, 24, 128, 0.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -moz-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -ms-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -o-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .services__item {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .services__item {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .services__item {
        padding-left: 25px;
        padding-right: 25px;
    }
}
.services__item:hover {
    -webkit-transform: translateY(-5px) translate3d(0, -5px, 0);
    -moz-transform: translateY(-5px) translate3d(0, -5px, 0);
    -ms-transform: translateY(-5px) translate3d(0, -5px, 0);
    transform: translateY(-5px) translate3d(0, -5px, 0);
}
.services__title {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 17px;
}
.services__icon {
    margin-bottom: 30px;
}
.services__icon svg {
    width: 80px;
    height: 80px;
}
.services__icon svg path {
    fill: #ffffff;
}
.services__content p {
    color: #ffffff;
    opacity: 0.8;
    line-height: 22px;
    margin-bottom: 0;
}

/* footer Panel */
/* ================================= */

footer img {
    height: 78px;
}
footer {
    background: #f3f3f3;
    padding: 4rem 0;
    color: #000;
}
footer h4 {
    margin-bottom: 1.5rem; 
    color:#000;
}
footer .widgetFoot {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
footer .widgetFoot li {
    display: block;
    font-size: var(--yai-font-size-14);
    margin-bottom: 0.5rem;
}
footer .widgetFoot li i {
    font-size: var(--yai-font-size-12);
    margin-right: 5px;
    
}
footer a {
    color: #000;
}
footer a:hover {
    color: var(--yai-theme-color);
} 
footer .social a i {
    font-size: 1.5rem;
    margin-right: 0.3rem;
    color: #000;
}
footer .social a:hover i {
    color: var(--yai-theme-color);
}

footer h4, h6 {
    color: #000;
}

footer p {
    color: #000;
}

/* Banner Panel */
/* ================================= */
.banner {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    background: #184250;
}

.banner h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--yai-base-color);
    font-family: var(--yai-heading-font);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}
.banner h2 {
    color: var(--yai-base-color);
    font-size: 2rem;
    font-weight: 700;
}
.banner h3,
.banner h5 {
    margin-bottom: 0;
    color: var(--yai-base-color);
}

address {
    display: block;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}
address svg {
    position: absolute;
    left: 0;
}

.promodal .modal-content {
    background-image: linear-gradient(180deg, rgba(var(--bs-body-bg-rgb), 0.01), rgba(var(--bs-body-bg-rgb), 1) 85%), radial-gradient(ellipse at top left, rgba(var(--bs-primary-rgb), 0.5), transparent 50%),
        radial-gradient(ellipse at top right, rgba(var(--bd-accent-rgb), 0.5), transparent 50%), radial-gradient(ellipse at center right, rgba(var(--bd-violet-rgb), 0.5), transparent 50%),
        radial-gradient(ellipse at center left, rgba(var(--bd-pink-rgb), 0.5), transparent 50%);
    border-radius: 0;
    border: 0;
}
.promodal .modal-title {
    font-size: var(--sar-font-size-15);
}
.promodal .modal-dialog {
    max-width: 700px;
}
.promodal h4 {
    font-family: var(--sar-heading-font);
}
.promodal .form-check .form-check-input {
    margin-left: -1rem;
}

.promodal .btn-close {
    position: absolute;
    right: -15px;
    top: -15px;
    padding: 0.5em 0.5em;
    outline: none;
}
.pricing-table {
    background: #fff;
    box-shadow: 0px 3px 20px rgb(148 3 153);
    padding: 2rem;
    border-radius: 4px;
    transition: 0.3s;
}

.pricing-table:hover {
    box-shadow: 0px 1px 10px -4px rgba(0, 0, 0, 0.15);
}

.pricing-table .pricing-label {
    border-radius: 2px;
    padding: 0.25rem 0.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    font-size: 22px;
    font-weight: 500;
}

.pricing-table h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    background: #940399;
    padding: 10px 20px;
}

.pricing-table h5 {
    color: #b3b3b3;
    font-size: 14px;
    font-weight: 400;
}

.pricing-table .pricing-features {
    margin-top: 2rem;
}

.pricing-table .pricing-features .feature {
    font-size: 18px;
    margin: 0.5rem 0;
    color: #020068;
}

.pricing-table .pricing-features .feature span {
  float: right;            /* Use float alone, no need for inline-block */
  color: #3b3b3b;
  font-weight: 500;
}


/* .pricing-table .pricing-features .feature span 
{
    display: inline-block;
    float: right; 
    color: #3b3b3b;
    font-weight: 500;
} */

.pricing-table .price-tag {
    margin-top: 2rem;
    text-align: center;
    font-weight: 500;
}

.pricing-table .price-tag .symbol {
    font-size: 24px;
}

.pricing-table .price-tag .amount {
    letter-spacing: -2px;
    font-size: 64px;
}

.pricing-table .price-tag .after {
    color: #3b3b3b;
    font-weight: 500;
}

.pricing-table .price-button {
    display: block;
    color: #fff;
    margin-top: 2rem;
    padding: 0.75rem;
    border-radius: 2px;
    text-align: center;
    font-weight: 500;
    transition: 0.3s;
}

.pricing-table .price-button:hover {
    text-decoration: none;
}

.purple .pricing-label {
    background: #7f00ff;
    color: #ffffff;
}

.purple .price-tag {
    color: #627afe;
}

.purple .price-button {
    background: #627afe;
}

.purple .price-button:hover {
    background: #546dfe;
}

.turquoise .pricing-label {
    background: #b9edee;
    color: #44cdd2;
}

.turquoise .price-tag {
    color: #44cdd2;
}

.turquoise .price-button {
    background: #44cdd2;
}

.turquoise .price-button:hover {
    background: #2dbcc4;
}

.red .pricing-label {
    background: #ffc4c4;
    color: #ff5e5e;
}

.red .price-tag {
    color: #ff5e5e;
}

.red .price-button {
    background: #ff5e5e;
}

.red .price-button:hover {
    background: #f23c3c;
}

.achive {
    position: relative;
}
.rank {
    position: absolute;
    bottom: 70px;
    left: 15%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    line-height: 1.2;
    min-width: 160px;
}
.achive .content {
    position: absolute;
    right: 50px;
    top: 50px;
    color: #c6f90e;
    text-align: center;
}
.achive .content img {
    width: 120px;
    padding: 5px;
    margin-bottom: 10px;
    border: 2px dashed #1ad2de;
}
.achive .content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.achive .content h5 {
    font-size: 14px;
}

.logo-name img {
    width: 130px;
}


/*===================================*/
/* RESPONSIVE PART */
/*==============================================================*/
@media (max-width: 800px) {
    
    
    .login_sec img {
    display: none !important;
}

    
   .desk_omg img {
    display: none !important;
}
    
    
     .sidebar-logo i, .navbar .bx-menu {
        font-size: 25px;
                color: #000 !important;
               
    }
    
        nav .navbar {
        max-width: 100%;
        padding: 0 25px;
        background: #ccc !important;
    }
    
        .sidebar-logo i
        {
        font-size: 25px;
        color: #000;
        margin-top: -38px;
    }
    
    section {
    padding-top: 1px;
    padding-bottom: 2px;
    position: relative;
}
    
    .topHeader {
    padding: 5px 0;
    position: relative;
    color: var(--yai-base-color);
}

.topHeader ul li a {
    display: block;
    position: relative;
    font-size: 15px;
    color: #ffffff;
    border-radius: 5px;
    padding: 7px 20px;
    background: #2196F3;
    width: 125px;
    text-align: center;
}
    .topHeader ul,
    .news {
        margin: 5px 0;
    }
    .nav-social-links {
        justify-content: center;
    }
    .nav-item {
        border-bottom: 1px dashed #ddd;
    }
    .productMain {
        margin-bottom: 20px;
    }
    .countMain {
        margin: 10px 0 30px 0;
    }
    .services__item {
        padding: 20px;
    }
    .services__icon {
        margin-bottom: 20px;
    }
    .services__icon svg {
        width: 50px;
        height: 50px;
    }
    .rank {
        position: absolute;
        bottom: 35px;
        left: 10%;
        font-size: 13px;
        line-height: 1.2;
        min-width: 130px;
    }
    .achive .content {
        right: 30px;
        top: 20px;
    }
    .achive .content img {
        width: 80px;
        padding: 2px;
        margin-bottom: 5px;
        border: 1px dashed #1ad2de;
    }
    .achive .content h4 {
        font-size: 12px;
        margin-bottom: 0;
        width: 160px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .achive .content h5 {
        font-size: 10px;
    }
}
