* {
    outline: none !important;
}

*,
:after,
:before {
    box-sizing: border-box;
}

:root {
    --px-theme: #c2e7ff;
    --px-theme-text: #001d35;
    --px-bg: #fff;
    --px-text: #444746;
    --px-gray-1: #f8fafd;
    --px-gray-2: #f3f6fc;
    --px-gray-3: #eff3fa;
    --px-gray-4: #edf2fa;
    --px-gray-5: #eaf0f9;
    --bs-heading-color: #1f1f1f;
    --px-border: #e1e3e1;
}
body {
    background-color: var(--px-bg);
    color: var(--px-text);
    font-family: Rubik,sans-serif;
    --bs-body-font-weight: 400;
    --bs-body-font-size: 1rem;
    --bs-body-line-height: 1.6;
    overflow-x: hidden;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    border-bottom: 1px solid var(--px-border);
    padding-top: 0;
    padding-bottom: 0;
    background-color: #eff3fa;
}
.toggler-menu {
    padding: 0;
    width: 35px;
    height: 35px;
    position: relative;
    background-color: var(--px-theme);
    color: var(--px-theme-text);
    border-radius: 5px;
    margin-left: 10px;
    border: none;
    margin-top:5px;
}
.toggler-menu span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 15px;
    box-shadow: 0 0 0 1px currentColor,0 -7px 0 1px currentColor,0 7px 0 1px currentColor;
    height: 0;
}
.header-left-fixed {
    position: fixed;
    bottom: 0;
    top: 0;
    width: 100px;
    left: -180px;
    z-index: 11;
    display: flex;
    flex-direction: column;
    transition: all .35s ease;
    background-color: var(--px-gray-2);
    border-right: 1px solid var(--px-border);
}
.header-left-fixed.show_menu{
    left:0;
}
.header-left-fixed .logo {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--px-border);
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--px-theme-text);
    line-height: 1;
    font-size: 18px;
}

.header-left-fixed .logo img {
    max-width: 90%;
}

.logo-dark,
[data-bs-theme=dark] .logo-light {
    display: block;
}

.header-left-fixed .logo img {
    max-width: 90%;
}

.logo-light {
    display: none;
}

.header-left-fixed .main-menu {
    flex-direction: column;
    overflow-y: auto;
}

.main-menu {
    display: flex;
    margin: 0;
    padding: 20px 0;
    list-style: none;
    justify-content: center;
}

.header-left-fixed .main-menu li {
    padding: 0 0 10px;
}

.main-menu li a {
    flex-direction: column;
    font-size: 13px;
    text-decoration: none;
    color: var(--px-text);
    padding: 10px 0;
    font-weight: 500;
}

.main-menu .m-icon,
.main-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu li.active .m-icon {
    background-color: var(--px-theme);
    color: var(--px-theme-text);
}

.main-menu .m-icon,
.main-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu .m-icon {
    width: 65px;
    font-size: 18px;
    border-radius: 30px;
    line-height: 1;
    padding: 7px 0;
    margin-bottom: 5px;
    transition: all .35s ease;
    background-color: transparent;
}

.home-section {
    overflow: hidden;
    padding: 0;
}

.home-section .home-intro .btn-bar {
    padding-top: 15px;
}
.px-btn {
    padding: 15px 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--px-theme);
    color: var(--px-theme-text);
    text-decoration: none;
    border-radius: 10px;
    transition: all .35s ease;
    font-weight: 500;
    outline: none;
    box-shadow: none;
    border: 2px solid var(--px-theme);
}
.px-btn i {
    margin-left: 10px;
}
.px-btn:hover {
    background-color: var(--px-theme-text);
    color: var(--px-theme);
}

.home-section .home-image {
    position: relative;
}
.text-center {
    text-align: center!important;
}
.home-section .home-image .hi-icon-top {
    position: absolute;
    top: -60px;
    right: -50px;
    width: 90px;
    display: inline-block;
}
.home-section .home-image svg {
    width: 100%;
}
.home-section .home-image .hi-icon-bottom {
    position: absolute;
    bottom: -40px;
    left: -50px;
    width: 90px;
    display: inline-block;
}
.home-section .home-image img {
    border-radius: 40px;
    width:100%;
}

.home-intro h2.myDesignation{
	font-weight:100;
}

.home-intro h2.myDesignation span{
	font-weight:600;
}

.home-section .min-vh-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.home-section .home-intro h1 {
    font-size: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 700;
    margin-bottom: 15px;
}







@media (min-width: 1024px) {
    .header-left-fixed {
        left: 0 !important;
    }

    .header-left-fixed + .wrapper {
        padding-left: 100px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 991px){
    .home-section .home-intro {
        text-align: center;
        max-width: 470px;
        margin: 0 auto;
        padding-top: 20px;
    }
    .home-section .home-intro h1 {
        justify-content: center;
    }
}

@media (max-width: 767px){
    .home-section .home-intro h1 {
        font-size: 35px;
    }
    .main-header .logo .navbar-brand img{
	    width:100px
    }
}

