@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
}

a,
body,
h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul {
    margin: 0;
    padding: 0
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    padding: 10px 25px;
}

.form-control {
    height: 50px;
    border-radius: 8px;
    margin-bottom: 1rem;
}


/*start header*/

.start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 5px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    padding: 10px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
    height: 30px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation-wrap {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-color: #006CE8;
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar-brand {
    color: #fff !important;
    font-size: 30px;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #fff;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #fff;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: all 200ms linear;
}

.nav-item:hover .nav-link {
    color: #fff !important;
}

.nav-item.active .nav-link {
    color: #fff !important;
}

.nav-item .active {
    border-bottom: 2px solid #fff;
}

.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
}

.nav-item:before {
    content: '';
    height: 70px;
    background-color: transparent;
    display: block;
    position: absolute;
    width: 100%;
}

.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #fff;
    opacity: 0;
    transition: all 200ms linear;
}

.nav-item:hover:after {
    bottom: 0;
    opacity: 1;
}

.nav-item.active:hover:after {
    opacity: 0;
}

.nav-item {
    position: relative;
    transition: all 200ms linear;
}

.navbar .dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #000;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}


/*----------------*/

.dropdown-toggle {
    background-color: transparent;
    color: #fff;
    padding: 5px 0;
    font-size: 16px;
    border: none;
}

.nav-item {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 270px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 50px;
}

.dropdown-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #ddd;
}

.nav-item:hover .dropdown-menu {
    display: block !important;
}

.nav-item:hover .dropbtn {
    background-color: transparent;
}

@media (max-width: 767px) {
    h1 {
        font-size: 38px;
    }
    .nav-item:after {
        display: none;
    }
    .nav-item::before {
        position: absolute;
        display: block;
        top: 15px;
        left: 0;
        width: 11px;
        height: 1px;
        content: "";
        border: none;
        background-color: #fff;
        vertical-align: 0;
    }
    .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 10px;
        left: -23px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: #fff;
        vertical-align: 0;
        transition: all 200ms linear;
    }
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
        opacity: 0;
    }
    .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
    }
    .dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }
    body.dark .nav-item::before {
        background-color: #fff;
    }
    body.dark .dropdown-toggle::after {
        background-color: #fff;
    }
    body.dark .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
    }
    .navbar .dropdown-item {
        color: #fff;
        white-space: initial;
    }
    .dropdown-menu a:hover {
        background-color: #0157b9;
    }
}


/*end navbar*/


/*start banner*/

.banner-bg {
    background-image: url(../images/home-bg.png);
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 100px 0;
    margin-top: 70px;
    background-position: center;
}

.banner-bg h2 {
    color: #fff;
    z-index: 9;
    text-align: center;
    font-weight: 400;
    font-size: 33px;
    position: relative;
}

.banner-bg .inner-page-banner::before {
    background-color: rgba(57, 108, 240, .9);
}

.banner-bg .inner-page-banner::before {
    background-color: #00000038;
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .banner-bg h2 {
        font-size: 18px;
    }
    .banner-bg {
        padding: 30px 0;
    }
}


/*end banner*/


/*start short des about us*/

.short-des {
    padding: 40px 0;
}

.short-des h2 {
    font-weight: 300;
    font-style: normal;
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px !important;
}

.short-des p {
    line-height: 25px;
    color: #000;
    margin-bottom: 30px;
    font-size: 16px;
}

.short-des img {
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .short-des h2 {
        font-size: 18px;
    }
    .short-des {
        padding: 30px 0;
    }
}


/*end short des about us*/


/*--START HOME PAGE--*/

.home .img-avt {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0;
    margin-right: 10px;
}

.home .story {
    display: block;
    font-weight: 700;
    font-style: italic;
}

.home .name {
    font-size: 16px;
    font-style: italic;
    display: block;
    margin-bottom: 1rem;
}


/*--END HOME PAGE--*/


/*--START filling-services--*/

.filling-services h3 {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}


/*--START FAQ--*/

.accordion {
    margin-top: 40px;
}

.accordion .card {
    border: none;
    margin-bottom: 20px;
}

.accordion .card h2 {
    background: url(https://cdn0.iconfinder.com/data/icons/entypo/91/arrow56-512.png) no-repeat calc(100% - 0px) center;
    background-size: 20px;
    cursor: pointer;
    font-size: 18px;
    position: relative;
    padding-left: 30px;
    padding-right: 25px;
}

.accordion .card h2::before {
    background: url(../images/ask.png) 0 0 no-repeat !important;
    position: absolute;
    top: -3px;
    left: 0px;
    height: 100%;
    width: 100%;
    content: "";
    z-index: 1;
    border-radius: inherit;
    background-size: 25px !important;
    min-height: 2rem;
}

.accordion .card h2.collapsed {
    background-image: url(https://cdn0.iconfinder.com/data/icons/arrows-android-l-lollipop-icon-pack/24/expand2-256.png);
}

.accordion .card-body {
    padding-left: 0;
    padding-right: 0;
}

.faq .card-head {
    border: 1px solid #e2e2e2;
    padding: 15px;
    border-radius: 6px 6px 0 0;
}

.faq .b-style {
    border-color: #e2e2e2;
    border-style: none solid solid;
    border-width: 0px 1px 1px;
    padding: 5px 10px;
}

@media screen and (max-width: 768px) {
    .accordion .card h2 {
        font-size: 15px;
    }
    .accordion .card-body {
        font-size: 15px;
    }
}


/*--State Rules--*/

@media screen and (max-width: 768px) {
    .table-bordered td,
    .table-bordered th {
        font-size: 15px;
    }
}


/*--START Contact us--*/

.form-box {
    box-shadow: 1px 0 15px #e2e2e2;
    padding: 30px 20px;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .contact-us .conImg {
        text-align: center;
        margin-bottom: 10px;
    }
}


/*--START decision-judgement--*/

.decision-judgement .sbul-head {
    text-decoration: underline;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}


/*--END decision-judgement--*/


/*--START Footer--*/

footer {
    width: 100%;
    background-color: #000;
    padding: 8px;
    z-index: 9;
}

footer p {
    color: #d0d0d0;
    font-size: 14px;
    text-align: right;
}

footer ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #d0d0d0;
}

footer ul li:first-child {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
}

footer ul li a {
    color: #d0d0d0;
}

footer ul li a:hover {
    color: #d0d0d0;
}

.MobTalkTo {
    display: block;
    position: fixed;
    max-width: 58px;
    border-radius: 50%;
    z-index: 111111111;
    right: 15px;
    bottom: 100px;
}

@media screen and (max-width: 768px) {
    footer {
        text-align: center;
    }
    footer p {
        text-align: center;
        margin-top: 1rem;
    }
}

.main-content {
    min-height: calc(100vh - 100px);
}

.form-group label {
    font-weight: 700;
    margin-bottom: 2px;
}

label.error {
    color: red;
    margin-top: -15px;
    display: block;
    font-size: 14px;
}

.radioWrap {
    position: relative;
}

.radioWrap label.error {
    position: absolute;
    left: 0;
    top: -7px;
    font-weight: 700;
}

.custom-control-label {
    font-weight: 700;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .custom-control-label {
        font-size: 16px;
    }
}