* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

p {
    font-size: 18px;
    line-height: 28px;
    color: #313b57;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    padding: 0;
    font-weight: bold;
    color: #313b57;
}

h1 {
    font-size: 40px;
    line-height: 45px;
}

h2 {
    font-size: 35px;
    line-height: 42px;
}

h3 {
    font-size: 25px;
    line-height: 31px;
}

h4 {
    font-size: 18px;
    line-height: 24px;
}

h5 {
    font-size: 16px;
    line-height: 25px;
}

a {
    color: #0a58e7;
    display: block;
    text-decoration: none !important;
    transition: ease-in-out .3s;
}

a:hover {
    color: #EF360F;
}

.mt {
    margin-top: 80px;
}

.mb {
    margin-bottom: 80px;
}

.pt {
    padding-top: 80px;
}

.pb {
    padding-bottom: 80px;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #06062A;
}

.container {
    max-width: 1200px;
}


/* Header */

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 200px;
}

#header {
    box-shadow: 0 5px 20px 0 rgb(0 0 0 / 10%);
    z-index: 1020;
    position: sticky;
    top: 0;
    background: #fff;
}

#header .navbar {
    padding: 0;
}

.header-navigation ul li a {
    padding: 30px 20px !important;
    font-size: 13px;
    font-weight: 700;
    color: #152934;
    transition: ease-in-out .3s;
    text-transform: uppercase;
}

.header-navigation ul li a:hover {
    color: #0a58e7;
}

.custom-btn {
    background: #0a58e7;
    display: inline-block;
    padding: 10px 18px;
    border-radius: 5px;
    color: #fff;
    transition: ease-in-out .3s;
    border: 1px solid #0a58e7;
}

.custom-btn:hover {
    background: #EF360F;
    color: #fff;
    border: 1px solid #ed5b0e;
}

.custom-btn i {
    margin-right: 3px;
    vertical-align: middle;
    font-size: 20px;
}

.white-btn {
    background: #EF360F;
    display: inline-block;
    padding: 10px 18px;
    border-radius: 5px;
    color: #fff;
    transition: ease-in-out .3s;
    border: 1px solid #EF360F;
}

.white-btn:hover {
    background: #0a58e7;
    border: 1px solid #0a58e7;
    color: #fff;
}

.white-btn i {
    margin-right: 3px;
    vertical-align: middle;
    font-size: 20px;
}

.slider-info .white-btn {
    margin-left: 10px;
}


/* Header End */


/* Mobile Menu */

.mobile-menu {
    position: fixed;
    left: 0;
    z-index: 1020;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 250px;
    margin-left: -250px;
    transition: ease-in-out .3s;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.open {
    margin-left: 0;
    box-shadow: 2px 0px 10px rgb(0 0 0 / 20%);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-wrap ul li a {
    display: block;
    color: #313b57;
    padding: 15px 15px;
    border-top: 1px solid #f1f1f1;
    text-transform: capitalize;
    font-size: 16px;
    transition: ease-in-out .3s;
}

.mobile-menu-wrap ul li a:hover {
    color: #ff0000;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
}

.mobile-logo img {
    max-width: 150px;
}

.close-btn i {
    color: #fff;
    font-size: 18px;
    background: #ef360f;
    height: 30px;
    width: 30px;
    line-height: 31px;
    text-align: center;
    border-radius: 100%;
    cursor: pointer;
}

.mobile-menu-wrap ul {
    background: #ffffff;
}

.toggle-btn {
    cursor: pointer;
    margin-right: 10px;
    display: none;
}

.toggle-btn span {
    display: block;
    height: 2px;
    width: 30px;
    background: #0a58e7;
    margin: 6px 0;
}

.toggle-btn span:nth-child(2) {
    width: 22px;
    margin-left: auto;
}


/* Mobile Menu End */


/* Slider */
.carousel-item {
    height: 550px;
    overflow: hidden;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.carousel-control-next, 
.carousel-control-prev{
    width: 10%;
    opacity: 1;
}
.slider {
    /* background-image: url(../img/banner.jpg); */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

.slider-wrap {
    height: 600px;
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
}
.slider-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
}
.slider-info h1 {
    margin-bottom: 30px;
    font-weight: 700;
    color:#fff;
}

.slider-info p {
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 28px;
    color: #313b57;
}


/* Slider End */


/* Choose Section */

.choose {
    position: relative;
}
.choose-img img {
    height: 120px;
    width: 120px;
}

.choose-wrap {
    text-align: center;
}

.choose-content {
    margin-top: 20px;
}

.choose-content p {
    margin-bottom: 0;
}

.choose-content h3 {
    margin-bottom: 15px;
}


/* Choose Section End */


/* Download Section */

.download {
    background: url(../img/bg.png);
    background-position: center 85%;
    background-size: cover;
    background-color: #d8edfe;
    position: relative;
    overflow: hidden;
}

.download-btn img {
    width: auto;
}

.download-btn {
    display: flex;
    align-items: center;
}

.download-btn a {
    margin-right: 15px;
}

.download-content h2 {
    margin-bottom: 15px;
}

.download-btn {
    margin-top: 40px;
}

.download .row {
    align-items: center;
}

.download-content {
    padding: 60px 60px 70px 0;
}

.download-img {
    text-align: center;
    margin-bottom: -50px;
}

.download-img img {
    width: auto;
}


/* Download Section End */


/* Feature */

.main-title {
    text-align: center;
    margin-bottom: 40px;
}

.feature-img img {
    width: auto;
}

.feature-img {
    background: #e0ecff;
    padding: 40px 20px;
    text-align: center;
}

.feature-content {
    padding:30px 20px;
    background: #fff;
    box-shadow: 0 6px 20px 0 rgb(0 0 0 / 15%);
}

.feature-wrap {
    text-align: center;
    transition: ease-in-out .3s;
}

.feature-wrap:hover {
    transform: translateY(-7px);
}

.feature-content h3 {
    margin-bottom: 15px;
}

.feature-content h3 a {
    color: #313b57;
    transition: ease-in-out .3s;
}

.feature-content h3 a:hover {
    color: #0a58e7;
}

.feature-content p {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 25px;
}

.feature-content .custom-btn i {
    margin-left: 5px;
    font-size: 16px;
}

.main-title h2 {
    margin-bottom: 0;
}

.main-title h2 span {
    color: #ef360f;
}


/* Feature End */


/* Counter */

.counter {
    background-image: url(../img/bg1.jpg);
    background-size: cover;
    background-position: center;
    padding:50px 0;
}

.counter-wrap {
    text-align: center;
}

.counter-wrap i {
    font-size: 60px;
    color: #ffa500;
}

.counter-wrap span {
    display: block;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    margin-top: 10px;
}

.counter-wrap p {
    color: #fff;
    margin-bottom: 0;
}


/* Counter End */


/* BLog */

.blog-img {
    overflow: hidden;
}

.blog-img img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: ease-in-out .5s;
}

.blog-wrap:hover .blog-img img {
    transform: scale(1.04);
}

.blog-content {
    background: #fff;
    padding: 25px;
    box-shadow: 0 5px 20px 0 rgb(0 0 0 / 10%);
    min-height: 280px;
}

.blog-content h3 {
    margin-bottom: 15px
}

.blog-content h3 a {
    color: #313b57;
    transition: ease-in-out .3s;
}

.blog-content h3 a:hover {
    color: #0a58e7;
}

.blog-content p {
    margin-bottom: 20px;
}


/* Blog End */


/* Call To Action */

.cta-section {
    background: url(../img/bg.png);
    background-position: center 85%;
    background-size: cover;
    background-color: #d8edfe;
    position: relative;
    overflow: hidden;
    padding:50px 0;
}

.cta-wrap {
    text-align: center;
}

.cta-wrap h2 {
    margin-bottom: 10px;
}

.cta-wrap p {
    margin-bottom: 30px;
}

.cta-wrap .white-btn {
    margin-left: 10px;
}


/* Call To Action End */


/* Footer */

.footer {
    background: #0b2154;
}

.footer-wrap h3 {
    color: #fff;
    margin-bottom: 25px;
    border-bottom: 2px solid #fffffffc;
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
}

.footer-wrap h3:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: -2px;
    margin: auto;
    height: 2px;
    width: 30px;
    background: #ef360f;
}

.footer-wrap ul li,
.footer-wrap ul li a {
    color: #fff;
    display: block;
    transition: ease-in-out .3s;
}

.footer-wrap ul li a:hover {
    color: #EF360F;
}

.footer-wrap ul li+li {
    margin-top: 12px;
}

.footer-contact {
    padding-right: 100px;
}

.footer-contact p {
    color: #fff;
    margin-top: 20px;
}

footer .social-media li a {
    color: #313b57;
    display: block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: #ffffff;
    border-radius: 100%;
    font-size: 21px;
    box-shadow: 0px 2px 5px rgb(0 0 0 / 50%);
    transition: ease-in-out .3s;
}

.social-media li a:hover {
    background: #EF360F;
    color: #fff;
}

footer .social-media {
    display: flex;
    margin-top: 25px;
    position: static;
    transform: inherit;
}
.faq .row {
    align-items: center;
}
.social-media li+li {
    margin-left: 10px;
}

.footer-wrap ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 20px;
}

.footer-wrap ul li {
    position: relative;
}

.contact li {
    padding-left: 30px;
}

.footer-contact img {
    background: #fff;
    padding: 10px;
    border-radius: 4px;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom ul li {
    color: #fff;
}

.footer-bottom ul li a {
    display: inline-block;
    color: #ef360f;
    font-weight: 600;
}

.footer-bottom {
    background: #091d4a;
    padding: 20px 0;
}


/* Footer End */


/* Register Form */

.register-form .form-control {
    height: 50px !important;
    background: #d8edfe2e;
    border: 1px solid #efefef;
    border-radius: 0;
    padding-left: 40px;
    font-size: 14px;
}

.register-form .form-group {
    position: relative;
}

.register-form .form-group i {
    position: absolute;
    top: 16px;
    font-size: 18px;
    left: 10px;
}

.register-form .padding {
    padding-left: 5px;
    padding-right: 5px;
}

.register-form .margin {
    margin-left: -5px;
    margin-right: -5px;
}

.register-form .custom-btn {
    width: 100%;
    margin-top: 5px;
}

.register .modal-header {
    padding: 20px 25px;
    background: #0a58e7;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.register .modal-body {
    padding: 20px 25px;
}

.register .modal-dialog {
    width: 450px;
}

.register.show {
    background: rgb(0 0 0 / 82%);
}

.close {
    opacity: 1;
}

.close:hover {
    outline: none;
    opacity: 1;
}

.close span {
    background: #EF360F;
    height: 30px;
    width: 30px;
    display: block;
    color: #fff;
    border-radius: 100%;
    line-height: 26px;
}

.register .modal-title {
    color: #fff;
}


/* Register Form End */


/* About Us Page */

.banner {
    position: relative;
}

.banner img {
    height: 310px;
    width: 100%;
    object-fit: cover;
}

.banner-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.banner-info h1 {
    margin-bottom: 0;
    color: #fff;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

.breadcrumb-item.active {
    color: #ffffff;
    font-size: 18px;
}

.breadcrumb li a {
    color: #fff;
    font-size: 18px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-us p {
    font-size: 16px;
    line-height: 26px;
}

.about-all-info {
    margin-top: 50px;
}


/* About Us Page End */


/* BLog Page */

.blog-page .blog-wrap {
    margin-bottom: 30px;
}

.blog-page.mb {
    margin-bottom: 50px;
}


/* Blog Page End */


/* Blog Details */

.blog-details-content {
    margin-top: 30px;
}

.blog-details-content h2 {
    margin-bottom: 20px;
}

.author {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4e4e4;
}

.author ul {
    display: flex;
    align-items: center;
}

.author ul li+li {
    margin-left: 35px;
}

.author ul li i {
    margin-right: 5px;
    color: #0a58e7;
}

.blog-details-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-search .form-control {
    height: 50px;
    border-radius: 2px;
    font-size: 14px;
    padding-right: 65px;
}

.blog-search {
    position: relative;
    margin-bottom: 30px;
}

.blog-search .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 10px 15px;
    background: #0a58e7;
    color: #fff;
    border-radius: 0;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    font-size: 22px;
}

.recent-post {
    background: #fff;
    padding: 30px;
    box-shadow: 0 5px 20px 0 rgb(0 0 0 / 15%);
}

.blog-sidebar h3 {
    background: #0a58e7;
    color: #fff;
    padding: 15px 30px;
    margin-left: -30px;
    margin-right: -30px;
    margin-top: -30px;
    margin-bottom: 15px;
}

.recent-post ul li+li {
    margin-top: 15px;
    border-top: 1px solid #e4e4e4;
    padding-top: 15px;
}

.recent-post ul li a {
    color: #313b57;
    transition: ease-in-out .3s;
    position: relative;
    padding-left: 25px;
}

.recent-post ul li a:before {
    position: absolute;
    content: '\f105';
    left: 0;
    color: #0a58e7;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 14px;
    top: 2px;
}

.recent-post ul li a:hover {
    color: #0a58e7;
}

.recent-post ul li span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #a5a5a5;
}

.blog-details-img img {
    height: 440px;
    width: 100%;
    object-fit: cover;
}


/* Blog Details End */


/* Faq Page */

.faq-accordion-item {
    box-shadow: 0 0px 20px 0 rgb(0 0 0 / 15%);
    border-radius: 5px;
    margin-bottom: 20px;
    background: #ffffff;
}

.faq-accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion-header {
    padding: 25px;
    position: relative;
    cursor: pointer;
    border-radius: 0px;
    overflow: hidden;
}

.faq-accordion-header:before {
    content: "\f067";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 22px;
    position: absolute;
    right: 25px;
    top: 20px;
    transition: all 0.5s linear;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.faq-accordion-header:after {
    content: "\f068";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 22px;
    position: absolute;
    right: 25px;
    top: 20px;
    transition: all 0.5s linear;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.faq-accordion-header-overlay {
    position: absolute;
    width: 0;
    height: 100%;
    background: linear-gradient( 90deg, #0856e6 0%, #2f74f4 100%);
    top: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.faq-accordion-item-active .faq-accordion-header:before {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.faq-accordion-item-active .faq-accordion-header:after {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    color: #fff;
}

.faq-accordion-item-active .faq-accordion-header .faq-accordion-header-overlay {
    width: 100%;
}

.faq-accordion-item-active .faq-accordion-header .faq-accordion-title {
    color: #fff;
}

.faq-accordion-item-active .faq-accordion-body {
    max-height: 250px;
    transition: all 0.5s ease-in-out;
}

.faq-accordion-title {
    font-size: 20px;
    padding-right: 35px;
    transition: all 0.3s linear;
    position: relative;
    z-index: 10;
    text-transform: none;
    margin-bottom: 0;
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.faq-accordion-body-inner {
    padding: 25px;
}

.faq-accordion-para {
    font-size: 16px;
    color: #7a7a7a;
    font-weight: 400;
}

.faq-accordion {
    padding-left: 30px;
}


/* Faq Page End */


/* Contact Us */

.contact-us .register-form .form-group i {
    top: 16px;
    transform: inherit;
}

.contact-us .las.la-envelope-open-text {
    top: 9px !important;
}

.contact-wrap {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 5px 20px 0 rgb(0 0 0 / 10%);
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 5px 20px 0 rgb(0 0 0 / 10%);
    min-height: 657px;
}

.contact-wrap ul li {
    background: #fff;
    box-shadow: 0 5px 20px 0 rgb(0 0 0 / 10%);
    padding: 30px;
    text-align: center;
}

.contact-wrap ul li+li {
    margin-top: 10px;
}

.contact-wrap ul li i {
    font-size: 40px;
    color: #0a58e7;
}

.contact-wrap ul li span {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 8px;
}

.contact-wrap ul li p {
    margin-bottom: 0;
    font-size: 16px;
}

.contact-wrap ul li a {
    color: #313b57;
}

.contact-form h3 {
    margin-bottom: 20px;
}

.contact-us textarea.form-control {
    height: 200px !important;
}

.contact-us .form-group {
    margin-bottom: 30px;
}

.contact-us .padding {
    padding-left: 10px;
    padding-right: 10px;
}

.contact-us .row {
    margin-left: -10px;
    margin-right: -10px;
}

.map {
    margin-top: 50px;
}


/* Contact Us End */


/* Feature Details */

.feature-details-content {
    padding-left: 30px;
}

.feature-details-content h2 {
    margin-bottom: 20px;
}


/* Feature Details End */


/* App Link */

.app-download-img img {
    width: auto;
    margin: auto;
    height: 180px;
}

.app-download-img {
    text-align: center;
}

.app-download-info img {
    width: auto;
    margin: auto;
    height: 110px;
}

.app-download-info {
    text-align: center;
}

.shreevahan h2 {
    margin-bottom: 40px;
}

.app-download-info h5 {
    margin-top: 20px;
}


/* End App Link */


/* Basic Page */

.terms-condition li {
    list-style: inherit;
}


/* End Basic Page */


/* Error */

.error {
    color: red !important;
    font-size: 12px !important;
}


/* End Error */

.app-download-info img {
    height: 80px;
}






/* Team Section */
.team-wrap {
	background: #fff;
	margin-bottom: 25px;
	box-shadow: 0px 10px 20px rgb(0 0 0 / 20%);
	transition: ease-in-out .3s;
	cursor: pointer;
}
.team-wrap:hover{
	box-shadow: 0px 10px 20px rgb(0 0 0 / 35%);
	transform: translateY(-5px);
}
.team-content {
	padding: 20px;
	text-align: center;
}
.team-content span {
	display: block;
	font-size: 20px;
	font-weight: bold;
}
.team-content p {
	margin-bottom: 0;
	color: #dc3b05;
}
.team-btn{
	text-align: center;
	margin-top: 15px;
}
.team-img {
	position: relative;
	overflow: hidden;
}
.team-img:before {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #1b508369;
	opacity: 0;
	transition: ease-in-out .3s;
}
.team-wrap:hover .team-img:before{
	opacity: 1;
}
.social-media {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -50px;
	transition: ease-in-out .3s;
}
.team-wrap:hover .social-media{
	left: 0;
}
.team.mb {
    margin-bottom: 50px;
}
.social-media ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #ef360f;
	padding: 10px 7px;
}
.social-media ul li+li {
	margin-top: 10px;
}
.social-media ul li a {
	color: #fff;
	display: block;
	font-size: 20px;
}
.social-media ul li a:hover{
	color:#1b5083;
}
.social-media ul:before {
	position: absolute;
	content: '';
	border-top: 20px solid transparent;
	border-left: 45px solid #ef360f;
	top: -20px;
	left: 0;
}
.social-media ul:after {
	position: absolute;
	content: '';
	border-bottom: 20px solid transparent;
	border-left: 45px solid #ef360f;
	bottom: -20px;
	left: 0;
}
/* Team Section End */