@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");

html {
    width: 100%;
    height: 100%;
}
body {
    font-size: 14px;
    color: #4f4f4f;
    font-weight: normal;
    font-family: "Open Sans", sans-serif;
}
* {
    outline: none;
}
a {
    color: #006eb7;
    display: inline-block;
}
a,
a:hover,
a:focus {
    text-decoration: none;
    transition: 0.5s;
    outline: none;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}
textarea {
    resize: none;
}
ul,
menu,
dir {
    margin: 0px;
    padding: 0px;
    display: block;
    list-style-type: none;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-start: 0;
}
section {
    position: relative;
}
::-webkit-input-placeholder {
    color: rgba(16, 17, 17, 0.5);
    font-weight: 500;
}
:-moz-placeholder {
    color: rgba(16, 17, 17, 0.5);
    font-weight: 500;
}
::-moz-placeholder {
    color: rgba(16, 17, 17, 0.5);
    font-weight: 500;
}
:-ms-input-placeholder {
    color: rgba(16, 17, 17, 0.5);
    font-weight: 500;
}

a,
button {
    transition: 0.5s;
}

img {
    max-width: 100%;
}

/*---------sitemap-------------*/
.sitemap-heading h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.site-map-links{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.site-map-links li {
    margin: 10px;
    width: 300px;
}

.site-map-links li a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 17px 19px;
    border-radius: 4px;
    display: inline-block;
    width: 100%;
    line-height: initial;
    color: #404040;
    background-color: #e7e7e7;
    text-transform: capitalize;
}

.site-map-links li a:hover,
.site-map-links li a:focus {
    background-color: #006eb7;
    color: #fff;
}

/*-------preloader----------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #006eb7;
    z-index: 999999;
}
.cube-folding {
    width: 50px;
    height: 50px;
    display: inline-block;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 0;
}
.cube-folding span {
    position: relative;
    width: 25px;
    height: 25px;
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    display: inline-block;
}
.cube-folding span::before {
    content: "";
    background-color: white;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 25px;
    height: 25px;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -moz-animation: folding 2.5s infinite linear both;
    -webkit-animation: folding 2.5s infinite linear both;
    animation: folding 2.5s infinite linear both;
}
.cube-folding .leaf2 {
    -moz-transform: rotateZ(90deg) scale(1.1);
    -ms-transform: rotateZ(90deg) scale(1.1);
    -webkit-transform: rotateZ(90deg) scale(1.1);
    transform: rotateZ(90deg) scale(1.1);
}
.cube-folding .leaf2::before {
    -moz-animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    background-color: #f2f2f2;
}
.cube-folding .leaf3 {
    -moz-transform: rotateZ(270deg) scale(1.1);
    -ms-transform: rotateZ(270deg) scale(1.1);
    -webkit-transform: rotateZ(270deg) scale(1.1);
    transform: rotateZ(270deg) scale(1.1);
}
.cube-folding .leaf3::before {
    -moz-animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    background-color: #f2f2f2;
}
.cube-folding .leaf4 {
    -moz-transform: rotateZ(180deg) scale(1.1);
    -ms-transform: rotateZ(180deg) scale(1.1);
    -webkit-transform: rotateZ(180deg) scale(1.1);
    transform: rotateZ(180deg) scale(1.1);
}
.cube-folding .leaf4::before {
    -moz-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    background-color: #e6e6e6;
}

@-moz-keyframes folding {
    0%,
    10% {
        -moz-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -moz-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -moz-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}
@-webkit-keyframes folding {
    0%,
    10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}
@keyframes folding {
    0%,
    10% {
        -moz-transform: perspective(140px) rotateX(-180deg);
        -ms-transform: perspective(140px) rotateX(-180deg);
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -moz-transform: perspective(140px) rotateX(0deg);
        -ms-transform: perspective(140px) rotateX(0deg);
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -moz-transform: perspective(140px) rotateY(180deg);
        -ms-transform: perspective(140px) rotateY(180deg);
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}
.cube-wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    text-align: center;
}
.cube-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    margin: auto;
    width: 90px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-filter: blur(2px);
    filter: blur(2px);
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    z-index: 1;
    -moz-animation: shadow 0.5s ease infinite alternate;
    -webkit-animation: shadow 0.5s ease infinite alternate;
    animation: shadow 0.5s ease infinite alternate;
}
.cube-wrapper .loading {
    font-size: 12px;
    letter-spacing: 0.1em;
    display: block;
    color: white;
    position: relative;
    top: 25px;
    z-index: 2;
    -moz-animation: text 0.5s ease infinite alternate;
    -webkit-animation: text 0.5s ease infinite alternate;
    animation: text 0.5s ease infinite alternate;
}

@-moz-keyframes text {
    100% {
        top: 35px;
    }
}
@-webkit-keyframes text {
    100% {
        top: 35px;
    }
}
@keyframes text {
    100% {
        top: 35px;
    }
}
@-moz-keyframes shadow {
    100% {
        bottom: -18px;
        width: 100px;
    }
}
@-webkit-keyframes shadow {
    100% {
        bottom: -18px;
        width: 100px;
    }
}
@keyframes shadow {
    100% {
        bottom: -18px;
        width: 100px;
    }
}

/*---------default-classes---------*/
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 30px;
    margin-bottom: 18px;
    color: #023047;
    font-weight: bold;
}
.section-title p {
    margin-bottom: 0;
    color: #023047;
    font-size: 16px;
    font-weight: 400;
}
.bg-grey {
    background-color: #ececec;
}
.section-padding {
    padding: 80px 0px;
}
.inner-page-section {
    margin-top: 80px;
    min-height: calc(100vh - 114px);
}
.inner-page-logined{
    margin-top: 75px;
    min-height: calc(100vh - 99px);
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #37A8F3;
    background-color: #37A8F3;
}
.custom-control-input:focus~.custom-control-label::before{
    box-shadow: none;
}

/*----------drodpown----------*/
.dropdown-toggle::after {
    display: none;
}
.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateY(28%) !important;
}
.dropdown-menu.show {
    opacity: 1;
    transform: translateY(1%) !important;
    visibility: visible;
}
.dropdown-menu,
.dropdown-menu .submenu {
    position: absolute;
    right: auto;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateY(28%) !important;
    -webkit-box-shadow: 0px 4px 12px rgb(68 88 130 / 20%);
    box-shadow: 0px 4px 12px rgb(68 88 130 / 20%);
    border-radius: 5px;
    border: none;
    min-width: 230px;
}
.actions-links-data ul li a {
    display: inline-block;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #334168;
    width: 100%;
    transition: 0.5s;
    position: relative;
}
.actions-links-data ul li a .submenu-arrow {
    position: absolute;
    font-size: 10px;
    right: 15px;
    top: 15px;
}
.actions-links-data ul li {
    margin-right: 0;
    position: relative;
}
.actions-links-data ul li.disable a {
    color: #8a93a6;
}
.actions-links-data ul li.disable a:hover {
    background-color: #8a93a62e;
    color: #8a93a6;
}
.actions-links-data ul li a:hover {
    background-color: #006eb7;
    color: #ffff;
}
.actions-links-data ul li.active a {
    background-color: #01a39d;
    color: #fff;
}
.dropdown-menu .submenu {
    right: 0;
    top: 0;
    left: 100%;
    transform: translateY(15%) !important;
}
.dropdown-menu li:hover > .submenu {
    opacity: 1;
    transform: translateY(0%) !important;
    visibility: visible;
}
.menu-lists li.dropdown.menu-dropdown:last-child .submenu {
    left: inherit;
    right: 100%;
}
/*------------Header--------------*/
.header-wrapper {
    width: 100%;
    z-index: 999;
    transition: 0.5s;
    padding: 20px 0px;
    position: fixed;
    top: 0;
    /*background-color: #F3F3F3;*/
    background-image: -webkit-linear-gradient(bottom, #f3f3f3, #f5f5f5d2, #ffffff00);
    background-image: -moz-linear-gradient(bottom, #f3f3f3, #f5f5f5d2, #ffffff00);
    background-image: -o-linear-gradient(bottom, #f3f3f3, #f5f5f5d2, #ffffff00);
    background-image: linear-gradient(to bottom, #f3f3f3, #f5f5f5d2, #ffffff00);
}
/*.header-wrapper:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:-webkit-linear-gradient(bottom, #F3F3F3, #F5F5F5D2, #FFFFFF00);
    background-image:-moz-linear-gradient(bottom, #F3F3F3, #F5F5F5D2, #FFFFFF00);
    background-image: -o-linear-gradient(bottom, #F3F3F3, #F5F5F5D2, #FFFFFF00);
    background-image:  linear-gradient(to bottom, #F3F3F3, #F5F5F5D2, #FFFFFF00);
    }*/
.header-wrapper.header-light {
    background-color: #fff;
}
.header-wrapper .menu-link-drop:after {
    font-family: "Font Awesome 5 Free";
    content: "\f0dd";
    display: inline-block;
    font-weight: 900;
    position: relative;
    margin-left: 12px;
    top: -3px;
}
.header-wrapper.header-sticky {
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 12px rgb(68 88 130 / 20%);
    box-shadow: 0px 4px 12px rgb(68 88 130 / 20%);
}
.header-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0px 30px;
}
.logo-part {
    margin-right: 20px;
}
.logo-part a img {
    max-height: 67px;
}
.logo-part a h5 {
    font-size: 35px;
    font-weight: bold;
    color: #006eb7;
    margin-bottom: 0;
}
.menu-lists li {
    position: relative;
    margin-right: 15px;
}
.menu-lists li a {
    font-size: 16px;
    font-weight: 400;
    color: #334168;
    padding: 5px 9px;
    position: relative;
    width: 100%;
}

.menu-lists > li > a:hover,
.menu-lists > li.active > a {
    color: #006eb7;
}

.login-button-group {
    display: flex;
    align-items: center;
}
.login-button-group .header-btn {
    background-color: transparent;
    color: #fff;
    padding: 7px 31px;
    margin-right: 10px;
}
.login-button-group .header-btn:last-child {
    margin-right: 0;
}
.login-button-group .header-btn.signin-btn {
    margin-right: 0;
    background-color: #fff;
    color: #006eb7;
    box-shadow: 0px 3px 6px #10111126;
    border-radius: 5px;
}
.login-button-group .header-btn.signup-btn {
    color: #fff;
}
.login-button-group .header-btn i {
    display: none;
}
.header-profile-user a {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
}
.header-profile-user a .profile-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
    margin-right: 10px;
}
.header-white .header-wrapper {
    background-color: #fff;
}
.header-wrapper.header-sticky .header-profile-user a,
.header-white .header-wrapper .header-profile-user a {
    color: #006eb7;
}
.header-wrapper.header-sticky .login-button-group .header-btn.signup-btn,
.header-white .header-wrapper .login-button-group .header-btn.signup-btn {
    color: #006eb7;
}
.header-wrapper.header-sticky .login-button-group .header-btn.signin-btn,
.header-white .header-wrapper .login-button-group .header-btn.signin-btn {
    background-color: #006eb7;
    color: #fff;
}

.social-head-data {
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-head-data a {
    display: inline-block;
    font-size: 23px;
    color: #006eb7;
    margin-left: 15px;
}
.account-right {
    margin-left: 15px;
}
.language-head-data {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.language-head-data a {
    position: relative;
    color: #334168;
    font-size: 18px;
    margin-left: 15px;
}
.language-head-data a:first-child:before {
    display: none;
}
.language-head-data a:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 1px;
    background-color: #334168;
    left: -8px;
    top: 3px;
}
.language-head-data a.active {
    color: #006eb7;
    font-weight: 600;
}
.logined-header {
    background-color: #334168;
    background-image: none;
    padding: 10px 0;
}
.logined-header.header-sticky{
    background-color: #334168;
}
.logined-header .logo-part a img{
    max-height: 45px;
}
.logined-header .menu-link-drop{
    color: #fff;
}
.logined-header .plumbing-menu{
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
}
.logined-header .plumbing-menu:before{
    content: '';
    position: absolute;
    height: 65px;
    width: 1px;
    top: -21px;
    right: -5px;
    background-color: rgba(255,255,255,0.43);
}
.profile-dropdown .profile-data-menu{
    display: flex;
    align-items: center;
}
.profile-dropdown .profile-image{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #37A8F3;
    text-transform: uppercase;
    background-color: rgba(255,255,255,0.8);
    border-radius: 50%;
    margin-right: 10px;
}
.profile-dropdown .profile-detail p{
    margin-bottom: 2px;
    color: #fff;
    font-size: 12px;
}
.profile-dropdown .profile-detail h6{
    color: #fff;
    margin-bottom: 0;
    font-size: 14px;
}
.profile-dropdown .profile-detail h6{
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 165px;
    overflow: hidden;
}
/*------Header-End-----------*/

/*----------hero-section-------*/
.hero-section {
    position: relative;
    background-size: cover;
    background-position: top center;
    padding-top: 105px;
    padding-bottom: 100px;
    min-height: 100vh;
}
.hero-section:after {
    position: absolute;
    content: "";
    background-image: url(../images/water2.png);
    background-size: cover;
    background-position: center top;
    width: 100%;
    height: 288px;
    bottom: -15px;
}
.hero-main-data {
    margin-top: 80px;
    margin-bottom: 150px;
    padding: 80px 0px;
}
.hero-main-data h1 {
    font-size: 57px;
    color: #006eb7;
    margin-bottom: 50px;
}
.hero-main-data h1 b {
    font-size: 74px;
    font-weight: bold;
}
.hero-sublinks ul li a {
    display: inline-block;
    width: 100%;
    box-shadow: 0px 3px 6px #00000029;
    background-color: #fff;
    border-radius: 6px;
    padding: 18px;
    position: relative;
}
.head-sideimg {
    display: flex;
    align-items: center;
}

.head-sideimg img {
    max-width: 41px;
    margin-right: 15px;
}

.head-sideimg span {
    font-size: 16px;
    color: #334168;
    font-weight: 600;
}

.hero-sublinks ul li {
    margin-bottom: 25px;
}
.head-link-arrow {
    position: absolute;
    right: 25px;
    font-size: 16px;
    color: #36498e;
    top: 32px;
}

/*---------service-left-data--------*/
.sub-head {
    font-size: 22px;
    font-weight: 600;
    color: #37a8f3;
    margin-bottom: 15px;
}
.service-main-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
}
.service-left-data h2 {
    font-size: 58px;
    color: #334168;
    font-weight: 600;
}
.service-left-data p {
    font-size: 22px;
    color: #334168;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 20px;
}
.service-left-data {
    border-right: 1px solid rgb(112 112 112 / 30%);
    padding-right: 40px;
    width: 35%;
}
.download-btns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.download-btns a img {
    max-width: 220px;
}
.service-right-data {
    width: 65%;
    padding-left: 40px;
}
.download-btns a {
    margin-right: 15px;
    margin-bottom: 15px;
}
.download-btns a:last-child {
    margin-right: 0;
}
.service-icon {
    width: 71px;
    height: 71px;
    background-color: #ececec;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    transition: 0.3s;
}
.service-box {
    text-align: center;
    cursor: pointer;
    margin-bottom: 90px;
}
.service-box p {
    font-size: 20px;
    font-weight: 500;
    color: #334168;
    margin-top: 15px;
}
.service-icon img {
    max-width: 32px;
    max-height: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}
.service-icon img:last-child {
    opacity: 0;
    visibility: hidden;
}
.service-box:hover .service-icon {
    background-color: #37a8f3;
    box-shadow: 0px 3px 6px #00000029;
}
.service-box:hover .service-icon img:first-child {
    opacity: 0;
    visibility: hidden;
}
.service-box:hover .service-icon img:last-child {
    opacity: 1;
    visibility: visible;
}

.service-box:hover p {
    font-weight: 600;
}

/*--------footer---------*/
.footer-wrapper {
    background-color: #334168;
    padding: 8px 12px;
    text-align: center;
}
.footer-copyright p {
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
}
.footer-copyright p a {
    color: #37a8f3;
    text-decoration: underline;
}
.footer-copyright p a:hover {
    text-decoration: none;
}

/*-------Inner-page--------*/
.block-title {
    background-color: #006eb7;
    color: white !important;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding-top: 13px;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 0;
}

.page-main-heading h2 {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #334168;    
    margin-bottom: 2px;
    border-bottom: 1px solid #dcdcdc;
}
.page-main-heading img {
    margin-right: 15px;
}
.public-list-data {
    height: 100%;
}
.pblc-box {
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
}
.public-table {
    font-size: 16px;
    margin-bottom: 0;
    height: 100%;
}
.public-table td,
.public-table th {
    border-top: none;
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
}
.public-table th {
    background-color: #ececec;
    color: #334168;
    font-weight: 600;
    font-size: 16px;
    min-width: 230px;
}
.public-table td {
    color: #334168;
    font-size: 16px;
}

.public-table tr:last-child td,
.public-table tr:last-child th {
    border-bottom: none;
}
.public-right-data {
    border: 2px solid #37a8f3;
    height: 100%;
}
.pbc-head {
    padding: 10px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background-color: #37a8f3;
}
.pbc-list {
    padding: 15px 25px;
}
.pbc-list h6 {
    font-weight: 500;
    color: #334168;
    font-size: 16px;
    margin-bottom: 15px;
}
.pbc-list ul {
    padding: 0;
    margin: 0;
}
.pbc-list ul li {
    font-weight: 500;
    color: #334168;
    font-size: 16px;
    margin-bottom: 10px;
}



.legis-left{
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    padding: 20px;
}
.legis-left h6{
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
}
.legis-left ul li{
    margin-bottom: 15px;
}
.legis-left ul li a{
    font-size: 16px;
    font-weight: 600;
    color: #334168;
}
.legis-menu-right{
    margin-bottom: 35px;
}
.legis-menu-list .nav-pills .nav-link.active, 
.legis-menu-list .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #1f6eb7;
}
.legis-menu-list .nav-pills .nav-link{
    border-radius: 0;
}
.menu-list-head{
    background-color: #37A8F3;
    padding: 10px;
    border: 2px solid #37A8F3;
    border-radius: 5px 5px 0px 0px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.legis-menu-list ul li{
    margin-bottom: 8px;
}
.legis-menu-list ul li a{
    padding: 10px 20px;
    background-color: #ECECEC;
    color: #334168;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    display: inline-block;
}
.laws-box a {
    display: flex;
    align-items: center;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    padding: 15px;
}

.laws-icon img {
    max-width: 43px;
}

.laws-icon {
    margin-right: 18px;
}

.laws-text h6 {
    font-size: 16px;
    color: #334168;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 24px;
    transition: 0.3s;
}
.laws-box a:hover .laws-text h6{
    color: #37A8F3;
}

.laws-text p {
    color: #37A8F3B8;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
}

.laws-box {
    margin-bottom: 15px;
}
.custom-pagination .page-item.active .page-link{
        background-color: #37A8F3;
    border-color: #37A8F3;
}
.custom-pagination .pagination,
.custom-pagination .page-item:first-child .page-link,
.custom-pagination .page-item:last-child .page-link{
    border-radius: 0;
}
.custom-pagination .page-link{
    margin-left: 2px;
    border: 1px solid #DCDCDC;
}




.left-sidebar {
    position: fixed;
    top: 65px;
    left: 0;
    border-right: 1px solid #DCDCDC;
    height: calc(100vh - 65px);
    width: 340px;
    transition: 0.3s;
    background-color: #fff;
    z-index: 9;
}

.left-sidebar ul li a {
    padding: 12px 30px;
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #DCDCDC;
    font-size: 14px;
    color: #334168;
}
.left-sidebar ul li a:hover{
    color: #37A8F3;
}
.left-sidebar ul li.active a{
    background-color: #37A8F3;
    color: #fff;
}
.left-sidebar ul {
    height: 100%;
    overflow-x: hidden;
}
.left-sidebar ul li:last-child a{
    border-bottom: none;
}
.content-wrapper{
    margin-left: 340px;
    padding: 20px 30px;
}
.profile-view-box{
    margin-top: 15px;
    margin-bottom: 30px;
}
.profile-view-box ul li {
    display: flex;
    align-items: center;
    padding: 15px 0px;
    border-bottom: 1px solid #DCDCDC;
}
.profile-view-box ul li:last-child{
    border-bottom: none;
}
.profile-vw-head{
    min-width: 175px;
}
.profile-vw-text{
    font-weight: 600;
    color: #334168;
}
.profile-vw-text .link-data{
    color: #37A8F3;
    font-size: 13px;
    font-weight: 500;
    margin-left: 30px;
}
.profile-service-data{
    margin-top: 30px;
}
.profile-service-data h6{
    margin-bottom: 15px;
    color: #334168;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
}
.profile-service-data ul{
    list-style: inherit;
    padding-left: 35px;
    margin-bottom: 20px;
}
.profile-service-data ul li{
    font-size: 14px;
    margin-bottom: 18px;
}
.sidebar-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #334168;
    border-radius: 4px;
    display: none;
}
.bills-view-box {
    margin-bottom: 40px;
}
.bills-view-box p {
    font-size: 13px;
    color: #334168;
    margin-bottom: 25px;
}

.bills-list-view ul li b {
    color: #334168;
    margin-right: 10px;
    font-weight: 600;
}

.bills-list-view ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.bills-list-view ul li span {
    color: #334168;
}

.bills-list-view {
    margin-bottom: 30px;
}

.bills-view-box h6 {
    font-size: 14px;
    line-height: 29px;
    color: #334168;
    font-weight: 600;
}
.bills-table-box{
    border: 1px solid #DCDCDC;
    border-radius: 5px;
}
.bills-table{
    margin-bottom: 0;
}
.bills-table tr td,
.bills-table tr th{
    font-size: 13px;
    color: #334168;
    padding: 14px 20px;
}
.bills-table tr:first-child th{
    border-top: none;
}
.bills-total-data {
    padding: 30px 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
        display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.bills-left-detail  h6 {
    font-size: 13px;
    font-weight: 600;
    color: #334168;
    margin-bottom: 10px;
}

.bills-left-detail h5 {
    font-size: 16px;
    font-weight: 600;
    color: #334168;
    margin-bottom: 8px;
}
.paybtn {
    padding: 8px 35px;
    color: #fff;
    background-color: #37A8F3;
    border: 2px solid #37A8F3;
    border-radius: 4px;
    min-width: 162px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}
.paybtn:hover{
    color: #37A8F3;
    background-color: #fff;
}
.bills-footer-text p{
    font-size: 13px;
    color: #334168;
    margin-bottom: 20px;
}
.bill-payment-data ul {
        display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.bill-payment-data ul li a img {
    max-height: 30px;
}

.bill-payment-data ul li {
    margin-right: 15px;
}

.bill-payment-data {
    margin-top: 20px;
    display: inline-block;
}

/*my css*/
body.grey-bg{
    background: #ECECEC;
}
/*login css*/
.login-container{
    position: relative;
    display: flex;
    justify-content: center;
}
.login-container .login-block{
    position: relative;
    top: 140px;
    /* max-width: 620px; */
    width: 550px;
    margin-bottom: 0 auto;
    background: #fff;
    padding: 40px 100px;
    border-radius: 20px;
    text-align: center;
    z-index: 9999;
}
.login-block .logo img{
    margin-bottom: 20px;
    width: 67px;
    height: auto;
}
.login-block p{
    color: #4D4F5C;
    font-size: 32px;
    margin-bottom: 40px;
}
.dts-log{
    font-size: 14px !important;
    color: #707070 !important;
}
.login-form .form-control{
    border: none;
    border-bottom: 2px solid #E9E9F0;
    border-radius: 0;
    margin-bottom: 20px
}

/* customize checkbox css */
.checkbox-block {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .checkbox-block input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute !important;
    top: 15px !important;
    left: 0;
    height: 16px;
    width: 16px;
    border-radius: 4px;;
    background-color: #fff;
    border: 1px solid #808495;
  }
  
  
  /* When the checkbox is checked, add a blue background */
  .checkbox-block input:checked ~ .checkmark {
    background-color: #37A8F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox-block input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox-block .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


.form-control:focus{
    box-shadow: none;
}
.login-form .form_input{
    margin-bottom: 25px;
}
.login-form .remember-me{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.remember-me a{
    font-size: 12px;
    color: #43425D;
}
.login-form  form .Submit_btn{
    width: 100%;
    background-color: #37A8F3;
    border-radius: 5px;
    padding: 10px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    border: none;
    display: inline-block;
    margin-top: 25px;
}
.login-form  form .ads-btn{
    width: 100%;
    background-color: #fff;
    border: 1px solid #37A8F3;
    border-radius: 5px;
    padding: 10px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    color: #37A8F3;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 50px;
}
.login-form  form .ads-btn:hover{
    background-color: #37A8F3;
    color: #fff;
}
.login-block .login-text {
    margin-bottom: 0;
    font-size: 15px;
}
.login-block .login-text a{
    margin-top: 25px;
    margin-bottom: 0;
    color: #0C4DA0;
}

.login-container .privacy-policy{
    position: absolute;
    bottom: -195px;
}
.login-container .privacy-policy{
    position: absolute;
    bottom: -109px;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: -31px;
}
.remember-me .checkboc-span{
    font-size: 12px;
    color: #43425D;
    position: relative;
    top: 3px;
}
.privacy-policy a{
    color: #334168;
    font-size: 12px;
}

/* registraion css */
.registration-block{
    padding: 40px 50px !important;
    text-align: left !important;
    width: 650px !important;
}
.login-block h2{
    font-size: 32px;
    color: #334168;
    margin-bottom: 40px;
}
.login-bloclabel{
    color: #334168 ;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.login-container .login-heading{
    color: #334168;
    font-size: 32px;
    margin-bottom: 50px;
}
.login-block .login_input{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.login-block .login_input p{
    position: relative;
    top: 19px;
}
.login-block .login_input img{
    margin-left: 30px;
}
.login-block .login_input span{
    margin-left: 10px;
    position: relative;
    top: 1px;
    color: #334168;
    font-size: 12px;
}
.registration-block label{
    font-size: 1rem;
    font-weight: 600;
    color: #334168;
    margin-bottom: 10px;
}
.login_input .form-control{
    width: 50%;
    border-color: #334168;
}
.login-block .Extend_btn{
    width: 196px;
    height: 45px;
    background-color: #37A8F3;
    border: none;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;

}
.login-block .Cancel_btn{
    width: 196px;
    height: 45px;
    border: 2px solid #37A8F3;
    background-color: #fff;
    color: #37A8F3;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
}
.login-block .Cancel_btn:hover{
    background-color: #37A8F3;
    color: #fff;
}
.login-block p{
    font-size: 12px;
}

/* registration page */

.registration-text{
    margin: 40px 0;
}
.registration-text p{
    margin-bottom: 10px;
}
.transaction-wrapper{
    margin-bottom: 50px;
}
.transaction-block .save-btn{
    width: 170px;
    height: 43px;
    background-color: #37A8F3;
    border: none;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}
.transaction-block .save-btn:hover,.transaction-block .unsave-btn:hover{
    background-color: #37A8F3;
    color: white;
}
.transaction-block .unsave-btn{
    width: 170px;
    height: 43px;
    border: 2px solid #37A8F3;
    background-color: #fff;
    color: #37A8F3;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
}


/* transcation for css */
.transaction-block{
    padding: 40px 80px !important;
    text-align: left !important;
}
.transcation-image{
    position: relative;
    top: -21px;
    margin-right: 35px;
}
.transcation-flex{
    display: flex;
    align-items: center;
    position: relative;
    top: 25px;
}
.transcation-flex .transcation-text h2{
    font-size: 26px;
    color: #00AE7D;
    margin-bottom: 5px;
}
.transaction-block .hr_dark{
    background-color: #DCDCDC;
}
.trasction-position{
    display: flex;
}
.transction-width{
    width: 50%;
}
.trasction-position p{
    margin-bottom: 25px ;
    color: #334168;
    font-size: 1rem;
}
.trasction-position .transcation-bold{
    font-weight: 700;
}
.transcation-text-red h2{
    color: #D54D4D !important;
}
.transcation-text p{
    font-size: 1rem;
}

/*confirmation main css */
.confirmation-block{
    width: 1100px !important;
    position: relative;
    top: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    text-align: left !important;
}
.confirmation-block .confirmation-text{
    text-align: center;
    margin-bottom: 50px;
}
.confirmation-block .confirmation-text img{
    width: 76px;
    margin-bottom: 70px;
}
.confirmation-block .confirmation-text p{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.confirmation-content{
    margin-top: 60px;
}
.confirmation-content p{
    margin-bottom: 10px;
    font-size: 1rem;
    color: #334168;
}
.confirmation-content .confirmation-span{
    margin-top: 30px;
}
.confirmation-block .confirmation-bg{
    background-color: #FAFDFF;
    text-align: center;
    padding: 30px;
    width: 100%;
    line-height: 28px;
}
.confirmation-block .confirmation-bg p{
    font-size: 1rem;
    color: #334168;
    line-height: 30px;
}
.confirmation-block .confirmation-start{
    padding: 50px 30px !important;
}
.confirmation-block .confirmation-end{
    padding: 30px !important;
}
.confirmation-end p{
    line-height: 25px;
    color: #334168 ;
    margin-bottom: 0;
}
/* dynamic Login */
.dynamic-login-block{
    background: #fff;
    border-radius: 20px;
    display: flex;
    height: 85vh;
}
.dynamic-login{
    max-width: 500px;
    width: 100%;
    padding: 30px;
    text-align: center;
    background-color: #fff;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.dynamic-dts-login{
    position: relative;
    overflow-y: auto;
    z-index: 100;
    padding: 50px;
    background-color: #FAFDFF;
    text-align: center;
    width: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.dynamic-dts-login .footer-dynamic-shape{
    z-index: -1;
}
.dynamic-login-container{
    max-width: 1200px;
    margin: auto;
    position: relative;
    top: 50px;
    border-radius: 20px;
}
.login-blog{
    display: flex;
    justify-content: flex-end   ;
}
.login-blog a{
    color: #334168;
    font-size: 12px;
}
.login-block h3{
    font-size: 34px;
    color: #334168;
}
 .dynmic-login-text{
    margin-top: 30px;
}
.dynmic-login-text ul li{
    margin-bottom: 10px;
}
.dynmic-login-text ul li a{
    font-size: 12px;
    margin-top: 10px;
    color: rgb(55, 168, 243);
}
.dynamic-dts-login::-webkit-scrollbar {
    width: 5px;
  }
  .dynamic-dts-login::-webkit-scrollbar-thumb {
    background: #cecece; 
  }
  .dynamic-dts-login::-webkit-scrollbar-thumb:hover {
    background: #ECECEC; 
  }
.login-block .login-span{
    font-size: 14px;
    color: #4D4F5C;
}
.dynamic-dts-box{
    display: flex;
    justify-content: center;
    flex: 33%;
}
.dynamic-dts-box-item{
    text-align: center;
    margin-right: 30px;
}
 .dynamic-dts-box-image{
    margin-bottom: 0 !important; 
    width: 50px;
    height: 50px;
    background-color: #ECECEC;
    border-radius: 100%;
    padding: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0 !important; 
}
.dynamic-dts-box-position{
    margin-bottom: 0 !important;
}
.dynamic-dts-box-position p{
    font-size: 1rem;
    color: #334168;
}
.main_dynamic_collabs{
    margin-top: 48px;
}
.main_dynamic_collabs .main_dynamic_collabs_icon{
    display: flex;
    align-items: center;
}
.main_dynamic_collabs .main_dynamic_collabs_icon span{
    margin-left: 15px;
    color: #334168;
    text-align: left
}
.main_dynamic_collabs .main_dynamic_collabs_item{
    width: 100%;
    border: 1px solid #334168;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 6px #00000029;
    background-color: #fff;
}
.main_dynamic_collabs .main_dynamic_collabs_item .arrow_down{
    width: auto;
    height: 10px;
    position: relative;
    top: 10px;
}
.main_dynamic_collabs .card{
    margin-bottom: 20px;
}
.main_dynamic_collabs .card-header{
    width: 100%;
    border: 1px solid #334168;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    box-shadow: 0 3px 6px #00000029;
    background-color: #fff;
    align-items: center;
}
.col-lg-5, .col-lg-7{
    padding: 0 !important;
    margin: 0 !important;
}
.card-header .card-link{
    text-align: left;
    color: #334168;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.card-body{
    text-align: left;
}
.main_dynamic_collabs_block .arrow_down{
    width: auto;
    height: 10px;
    position: relative;
    top: 8px;
}
.footer-dynamic-shape{
    position: absolute;
    bottom: 0;
    background-image: url('../images/water3.svg');
    background-size: cover;
    background-position: center top;
    width: 100%;
    height: 203px;
    left: 0;
}
.dynamic-login-position{
    position: relative;
    top: 12px;
}
.card-body{
    border: 1px solid #334168;
    border-top: 0;
}
.footer-position{
    background-color: #fff;
    width: 100%;
    z-index: 9999;
    position: absolute;
    bottom: 0;
}
.footer-position p{
    color: #334168;
}
.dynamic-dts-box-image:hover  {
    background-color: #37a8f3;
    box-shadow: 0px 3px 6px #00000029;
}

/*footer css*/
.footer-shape{
    position: absolute;
    bottom: 52px;
    background-image: url('../images/water3.svg');
    background-size: cover;
    background-position: center top;
    width: 100%;
    height: 203px;
}
.footer-white{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999;
}
.footer-white p{
    color: #334168;
}

/*---------Media Queries-----------*/

/*---min-width------*/

@media (min-width: 992px) {
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1370px;
    }
}

@media (min-width: 1700px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1715px;
    }
}

/*---max-width------*/
@media (max-width: 1670px) {
    .service-left-data h2 {
        font-size: 40px;
    }
    .service-left-data p {
        font-size: 20px;
    }
    .service-box p {
        font-size: 15px;
    }
}

@media (max-width: 1599.98px) {
    .menu-lists li a {
        font-size: 14px;
    }
    .language-head-data a {
        font-size: 16px;
    }
    .header-wrapper .menu-link-drop:after {
        margin-left: 10px;
    }
    .menu-lists li {
        margin-right: 0;
    }
    .language-head-data a:first-child {
        margin-left: 0;
    }
    .hero-main-data {
        padding: 0;
        padding-bottom: 40px;
        margin-bottom: 120px;
    }
    .hero-main-data h1 {
        font-size: 38px;
    }
    .hero-main-data h1 b {
        font-size: 42px;
    }
    .hero-section:after {
        height: 210px;
        bottom: -30px;
    }
}

@media (max-width: 1439.98px) {
}

@media (max-width: 1299.98px) {
}

@media (max-width: 1199.98px) {
    .account-right {
        margin-left: auto;
    }
    .menu-part {
        position: fixed;
        width: 100%;
        max-height: 320px;
        margin-left: 0px;
        margin-right: 0px;
        background-color: #fff;
        padding: 15px 0px;
        top: 104px;
        left: 0;
        right: 0;
        overflow-x: hidden;
        z-index: 99;
        box-shadow: 0 6px 6px rgb(0 0 0 / 16%);
        display: none;
    }
    .menu-part .nav-bar {
        max-width: 95%;
        margin: 0 auto;
    }
    .toggle-btn a {
        display: block;
        font-size: 20px;
        line-height: initial;
        margin-left: 20px;
        color: #000;
    }
    .header-wrapper.header-sticky .toggle-btn a,
    .header-wrapper.header-light .toggle-btn a,
    .header-white .header-wrapper .toggle-btn a {
        color: #000;
    }
    .menu-lists li a:after {
        display: none;
    }
    .menu-lists > li > a {
        color: #012265;
        padding: 10px 18px;
        border-radius: 4px;
    }
    .menu-lists li {
        margin-left: 0px;
        margin-bottom: 5px;
        display: inline-block;
        width: 100%;
    }
    .actions-links-data ul li a {
        border-radius: 4px;
    }
    .header-wrapper .menu-link-drop:after {
        position: absolute;
        top: 9px;
        right: 15px;
    }
    .logined-header .account-right .menu-link-drop:after{
        position: relative;
        top: -3px;
        right: inherit;
    }
    .menu-dropdown .dropdown-menu,
    .menu-dropdown .dropdown-menu .submenu {
        position: inherit;
        box-shadow: none;
        border: none;
        margin-top: 0;
        animation-duration: inherit;
        animation-fill-mode: inherit;
        animation-name: inherit;
        padding: 6px;
        padding-left: 18px;
        padding-top: 0;
        width: 100%;
        display: none;
        transform: translateY(0%) !important;
        left: inherit;
        right: initial;
        opacity: 1;
        visibility: visible;
    }
    .menu-dropdown .dropdown-menu .submenu {
        padding-bottom: 0;
        padding-top: 8px;
    }
    .menu-dropdown .dropdown-menu.show {
        display: block;
        transform: translateY(0%) !important;
    }
    .language-head-data {
        margin-right: 5px;
    }

    .service-main-card {
        flex-direction: column;
    }
    .service-left-data {
        border-right: none;
        border-bottom: 1px solid rgb(112 112 112 / 30%);
        padding-right: 0;
        padding-bottom: 40px;
        width: 100%;
    }
    .service-right-data {
        padding-left: 0;
        padding-top: 40px;
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .hero-section:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.4);
    }
    .hero-section:after {
        height: 188px;
        bottom: -10px;
    }
    .left-sidebar{
        left: -100%;
        width: 270px;
        border-right: none;
        box-shadow: 0px 4px 12px rgba(0,0,0,0.16);
    }
    .left-sidebar.active{
        left: 0;
    }
    .left-sidebar ul li a{
        padding: 12px 18px;
    }
    .sidebar-overlay{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
        opacity: 0;
        visibility: hidden;
        z-index: 1;
    }
    .sidebar-overlay.active{
        opacity: 1;
        visibility: visible;
    }
    .content-wrapper{
        margin-left: 0;
    }
    .sidebar-toggle{
        display: flex;
        margin-bottom: 20px;
    }

    .login-container .login-block{
        padding: 40px 80px;
    }
    .login_input{
        flex-wrap: wrap;
    }
    .login_input .form-control{
        width: 100%;
    }
    .registration-text{
        margin: 30px 0;
    }
    .login-block .Extend_btn,.login-block .Cancel_btn{
        width: 160px;
    }
    .dynamic-login{
        width: 100%;
        margin: 0;
        border-radius: 20px;
        padding: 25px;
        margin: auto;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
    }
    .dynamic-login-container{
        top: 0;
    }
    .dynamic-dts-login{
        width: 100%;
        padding: 25px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    .dynamic-login-position{
        top: 0;
    }
    .footer-position{
        background-color: #fff;
        width: 100%;
        z-index: 9999;
        position: relative;
        bottom: 0;
    }
    .dynamic-login-block{
        flex-wrap: wrap;
    }
    .dynamic-login-block{
        height: 100%;
    }
}

@media (max-width: 767.98px) {
    body.grey-bg{
        background-color: #fff;
    }
    .service-box {
        margin-bottom: 40px;
    }
    .public-table th {
        min-width: 160px;
    }
    .legis-menu-list ul li a{
        font-size: 14px;
    }
    .menu-list-head{
        font-size: 14px;
    }

    .registration-block{
        padding: 15px 30px !important;
    }
    .login-container .login-block{
        width: 100%;
        padding: 40px;
        top: 30px;
        border-radius: 0;
    }
    .login-container .privacy-policy{
        position: absolute;
        bottom: -38px;
    }
    .transaction-block .save-btn,.transaction-block .unsave-btn{
        width: 150px;
    }
    .transcation-text p{
        font-size: 12px;
    }
    .save-btn, .unsave-btn{
        width: 150px !important;
    }
    .login-block .login_input p{
        top: 6px;
    }
    .transaction-block{
        padding: 30px 20px !important;
    }
    .login_input p{
        margin-bottom: 15px;
    }
    .registration-block h2{
        margin-bottom: 15px;
    }
    .login-block .login_input img{
        margin-left: 0;
    }
    .confirmation-block .confirmation-start, .confirmation-block .confirmation-end{
        padding: 25px 30px !important;
    }
    .transcation-flex .transcation-text h2,.transcation-flex .transcation-text h2{
        font-size: 20px;
    }
    .fix-btn{
        width: 170px !important;
    }
    .dynamic-login{
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    .dynamic-dts-login{
        border-radius: 0;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .header-part {
        padding: 0px 5px;
    }
    .hero-main-data h1 {
        font-size: 36px;
        line-height: 55px;
    }
    .hero-main-data {
        padding: 20px 0px;
    }
    .hero-main-data h1 b {
        font-size: 40px;
    }
    .service-main-card {
        padding: 100px 30px;
    }
    .service-left-data h2 {
        font-size: 36px;
    }
    .public-table th {
        min-width: 100px;
    }
    .profile-dropdown .profile-image{
        margin-right: 0;
    }
    .profile-dropdown .profile-data-menu .profile-detail{
        display: none;
    }
}

@media (max-width: 479.98px) {
    .profile-view-box ul li{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 349.98px) {
}
