*{
	margin: 0;
	padding: 0;
}

:root{
	--primary-theme-color: #1463eb;
    /* --primary-theme-color: #3B3B98; */
	--primary-theme-light-color: #72a1f3;
	--primary-theme-dark-color: #0c3b8d;
    --primary-theme-darker-color: #06265e;

	--background-color-white: #fff;
    --background-color-secondary: #f9f8f8;

    --breadcrumb-bg-color: #262626;

	--body-regular-text-size: 1rem;
	--body-large-text-size: 1.25rem;
	--body-small-text-size: 0.875rem;

	--body-text-primary-color: #262626;
	--body-text-light-color: #666;
    --muted-text: #888;
    --ultra-light-color: #dddddd;

	--font-family-body: "Roboto", sans-serif;
	--font-family-header: "Roboto Slab", serif;
}

p {
    line-height: 1.65;
}

body{
	background-color: var(--background-color-white);
	font-size: var(--body-regular-text-size);
	font-family: var(--font-family-body);
	color: var(--body-text-primary-color)
}

h1, h2, h3, h4, h5, h6, .heading, .sub-heading {
	font-family: var(--font-family-header);
	font-weight: bold;
}

a {
	text-decoration: none;
}

.max-width-100 {
    max-width: 100%;
}

.heading{
	font-size: 2.125rem;
    line-height: 1.25;
}

.sub-heading h5 {
	/* font-size: 1.1rem; */
    margin-bottom: 0;
}

.text-secondary {
    color: var(--body-text-light-color);
}

.text-darker {
    color: var(--body-text-primary-color);
}

.ptb-100{
	padding-top: 100px;
	padding-bottom: 100px;
}

.ptb-70 {
	padding-top: 70px;
	padding-bottom: 70px;
}

.navbar{
	padding: 0;
}

.nav-link{
    color: var(--body-text-primary-color);
    font-weight: 500;
}

.nav-link:hover{
    color: var(--body-text-primary-color);
    font-weight: 500;
}

.navbar .nav-link {
	color: var(--body-text-primary-color);
	font-weight: 500;
	font-size: calc(var(--body-regular-text-size) + 0.125rem);
}

.logo{
	font-size: 2.5rem;
	font-weight: bold;
}

.highlight, .text-primary {
	color: var(--primary-theme-color);
}

.highlight-light {
    color: var(--primary-theme-light-color);
}

.ptb-50 {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
}

.box-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--body-text-primary-color);
}

.box-body {
    font-size: 1rem;
    font-weight: 400;
    color: var(--body-text-light-color);
}

.highlight-dark {
	color: var(--primary-theme-dark-color);
}

.btn{
	font-size: var(--body-regular-text-size);
	font-weight: 500;
	padding: 10px 30px;
    background-color: var(--primary-theme-color);
}

.mobile-menu-icon {
	font-size: 2rem;
	right: 0;
}

.offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    width: 400px;
	-webkit-box-shadow: -5px 0 5px 0 var(--body-text-light-color);
	box-shadow: -5px 0 5px 0 var(--body-text-light-color);
    /* border-left: 1px solid var(--primary-theme-light-color); */
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.offcanvas {
	padding: 15px 35px;
}

.offcanvas-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
}

.offcanvas-body .main-menu .nav-link{	
	padding: 0;
}

.offcanvas-body .main-menu{
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ct-vh-1{
	height: 75vh;
}

.p-section-1 {
	padding-bottom: 50px;
}

.hero-screen-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: -120px;
}
.hero-screen-wrap .phone-screen {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 220px;
    flex: 0 0 220px;
    width: 220px;
    margin-bottom: -30px;
    margin-right: -220px;
    z-index: 2;
}
.hero-screen-wrap .mac-screen {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 885px;
    flex: 0 0 885px;
    width: 885px;
    margin-right: -180px;
    z-index: 1;
}
@media (min-width: 1480px) and (max-width: 1836px) {
    .hero-screen-wrap {
        margin-right: 0;
    }
    .hero-screen-wrap .phone-screen {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 165px;
        flex: 0 0 165px;
    }
    .hero-screen-wrap .mac-screen {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 765px;
        flex: 0 0 765px;
        margin-right: 0;
    }
}
@media (min-width: 320px) and (max-width: 1479px) {
    .hero-screen-wrap {
        margin-right: 0;
    }
    .hero-screen-wrap .phone-screen {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
        flex: 0 0 100px;
        margin-right: 0px;
    }
    .hero-screen-wrap .mac-screen {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 465px;
        flex: 0 0 465px;
        margin-right: 0;
    }
}

@media (min-width: 320px) and (max-width: 768px) {
	.hero-screen-wrap {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

}
@media (min-width: 320px) and (max-width: 767px) {
    .hero-screen-wrap {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .hero-screen-wrap .phone-screen {
        display: none;
    }
    .hero-screen-wrap .mac-screen {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
    }
}

.digi-service-single {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    padding: 48px 24px 30px 24px;
}

.digi-service-single img, .digi-service-single i {
    margin-bottom: 24px;
}

.digi-service-single a {
    font-size: 14px;
    color: #575757;
    font-weight: 600;
}
.digi-service-single:hover {
    border: 1px solid rgba(0, 0, 0, 0);
    -webkit-box-shadow: 14px 14px 56px rgba(33, 38, 106, 0.1);
    box-shadow: 14px 14px 56px rgba(33, 38, 106, 0.1);
}


.footer {
	padding-top: 70px;
	background: var(--body-text-primary-color);
	color: var(--background-color-white);
}

.service-content-wrap {
	padding-top: 25px;
}

@media only screen and (max-width: 767px) {
	.service-content-wrap {
	padding-top: 20px;
	}
}


.services-card-wrapper-item {
	background: #ffffff;
    /* box-shadow: 0.125rem 0.15rem 0.25rem rgba(0, 0, 0, 0.075); */
	box-shadow: 0.125rem 0.15rem 0.25rem rgba(0, 0, 0, 0.075);
    -webkit-box-shadow: 0.125rem 0.15rem 0.25rem rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0.125rem 0.15rem 0.25rem rgba(0, 0, 0, 0.075);
	border-radius: 4px;
	border-top: 5px solid var(--primary-theme-color);
	transform: translate3d(0, 0, 0);
	padding: 30px 20px 20px;
	margin-top: 30px;
	transition: all 0.3s linear;
    max-width: 400px;
}

.services-cards-wrapper .row > .col-lg-6:nth-child(odd) .services-card-wrapper-item {
    margin-left: auto;
}

.services-cards-wrapper .row > .col-lg-6:nth-child(even) .services-card-wrapper-item {
    margin-right: auto;
}


@media (max-width: 768px) {
    .services-cards-wrapper .row .col-lg-6 .services-card-wrapper-item {
        margin-left: auto;
        margin-right: auto;
    }
}


.service-item {
	background: #ffffff;
	/* box-shadow: 8px 8px 8px 1px rgba(136,136,136,0.59);
    -webkit-box-shadow: 8px 8px 8px 1px rgba(136,136,136,0.59);
    -moz-box-shadow: 8px 8px 8px 1px rgba(136,136,136,0.59); */
	border-radius: 8px;
	transform: translate3d(0, 0, 0);
	padding: 30px 20px 20px;
	margin-top: 30px;
	transition: all 0.3s linear;
	max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 1399px) {
	.service-item, .services-card-wrapper-item  {
	padding: 30px 30px 40px;
	}
}

.service-item.service-01, .service-item.service-03 {
	margin-top: 50px;
}

@media only screen and (max-width: 1199px) {
	.service-item.service-01, .service-item.service-03 {
		margin-top: 25px;
	}
}

.service-item a, .service-item a:hover, .services-card-wrapper-item a, .services-card-wrapper-item a:hover{
	color: var(--primary-theme-color);
}

.service-item .service-img img, .services-card-wrapper-item .service-img img {
	height: 60px;
}

.service-item .service-content .title, .services-card-wrapper-item .title {
	font-size: 24px;
	line-height: 30px;
	padding-right: 15px;
	margin-top: 20px;
}

@media only screen and (max-width: 1399px) {
	.service-item .service-content .title, .services-card-wrapper-item .service-content .title {
		font-size: 22px;
		padding-right: 0;
	}
}

.service-item .service-content p, .services-card-wrapper-item .service-content p{
	margin-top: 15px;
}

.service-item:hover {
	transform: translateY(-5px) translate3d(0, -5px, 0);
}

.services-custom-paddding{
	padding: 0px 10%;
}

.box{
    display: flex;
    gap: 10px;
    padding: 20px 10px;
    margin-bottom: 1rem;
}

.box .box-icon {
    color: var(--primary-theme-color);
}

.aboutusImage-box {
    display: flex;
    height: 100%;
}

.about-us-content-flex-center{
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.aboutus-section img{
    max-height: 90%;
    max-width: 90%;
    display: block;
    margin: auto;
}


.single-work {
	border-radius: 7px;
	background-color: #fff;
	-webkit-box-shadow: 0.125rem 0.15rem 0.25rem rgba(0, 0, 0, 0.075);
	box-shadow: 0.125rem 0.15rem 0.25rem rgba(0, 0, 0, 0.075);
	margin-top: 30px
}

.single-work .features-thumb {
	border-radius: 7px;
	height: 285px;
	/* background-color: var(--body-text-light-color); */
	white-space: nowrap;
}

.single-work .content {
	padding: 33px 35px;
	font-weight: bold;
}

.text-left{
    text-align: left;
}

.single-work .content h3 {
	margin-bottom: 5px;
	margin-top: -5px
}

.single-work .content p {
	color: var(--body-text-light-color);
    font-size: 0.875rem;
}

.single-work .content a {
	color: var(--primary-theme-color);
	text-transform: uppercase;
	margin-top: 15px;
	font-size: 14px;
	line-height: 1;
	display: block
}

.single-work .content a i {
	margin-left: 10px
}

.single-work span.helper{
	vertical-align: middle;
	height: 100%;
	display: inline-block;
}

.single-work .features-thumb img{
	max-width: 98%;
    max-height: 100%;
}

.call-to-action-section {
    background-color: var(--body-text-primary-color);
    color: var(--background-color-white);
}

.call-to-action-btn {
    height: 100%;
    display: flex;
}

.call-to-action-btn button {
    margin-top: auto;
    margin-bottom: auto;
}

.call-to-action-btn i{
    margin-left: 0.75rem;
    font-weight: bold;
}

.testimonial-wrapper .testimonial-box  {
    -webkit-box-shadow: -0.125rem -0.15rem 0.25rem rgba(0, 0, 0, 0.075) inset;
	box-shadow: -0.125rem -0.15rem 0.25rem rgba(0, 0, 0, 0.075) inset;
    border-radius: 8px;
    padding: 30px 45px;
    background-color: var(--background-color-white);
}

.ct-text-light {
    color: var(--body-text-light-color);
}

.caption {
    font-size: 0.875rem;
    color: var(--body-text-light-color);
    font-family: var(--font-family-body);
    font-weight: 400;
}

.testimonial-box .flex-box{
    display: flex;
    gap: 2rem;
}

.testimonial-box .box-figure{
    width: 60px;
    height: 60px;
}

.testimonial-box .box-figure img {
    /* width: 100%; */
    border-radius: 50%;
}

.testimonial-box .box-content-title .box-title {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-box .review-rate {
    color: gold;
}

.review-rate .list-inline-item:not(:last-child) {
    margin-right: 0.125rem;
}

.blog-section .box {
    -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.075);
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.075);
    border-radius: 5px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--background-color-white);
}

.blog-section .box .box-img {
    width: 100%;
}

.blog-section .box .box-img img {
    width: 100%;
}

.blog-section .box-captions i {
    color: var(--primary-theme-color);
}

.blog-section .box-captions {
    display: flex;
    justify-content: space-between;
}

.text-muted, .caption1 {
    color: var(--muted-text);
}

.caption1 {
    font-size: 0.875rem;
}

.caption1 i {
    margin-right: 0.675rem;
}

.footer a{
    color: var(--background-color-white);
}

.footer a:hover{
    color: var(--background-color-white);
}

.navbar .styled-link {
    position: relative;
    transition: all 0.3s ease, transform 0.3s ease;
    color: var(--body-text-primary-color);
}

.navbar .styled-link::after {
    content: '';
    position: absolute;
    left: 15px; 
    bottom: 8px; 
    width: 0;
    height: 2px;
    background-color: var(--primary-theme-color);
    color: var(--primary-theme-color);
    transition: width 0.3s ease;
}

.navbar .styled-link:hover::after, .navbar .active.styled-link::after {
    width: 50%; 
}

.footer .styled-link {
    position: relative;
    color: var(--background-color-white);
    transition: all 0.3s ease, transform 0.3s ease;
}

.footer .styled-link::after {
    content: '';
    position: absolute;
    left: 0; 
    bottom: -8px; 
    width: 0;
    height: 2px;
    background-color: var(--primary-theme-color);
    color: var(--primary-theme-color);
    transition: width 0.3s ease;
}

.footer .styled-link:hover::after {
    width: 75%; 
}

.flex-box {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;    
}

.call-to-action-section.footer-cta{
    padding-top: 50px;
}

.call-to-action-section .center-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.call-to-action-btn.newsletter{
    display: flex;
    gap: 10px;
}

.call-to-action-btn.newsletter input{
    padding: 10px 20px;
}

.form-control,
.custom-select,
.form-select {
    border: 2px solid rgba(17, 24, 39, .12)
}

label {
    font-weight: 600;
    font-size: .875rem
}

.form-control:focus,
.custom-select:focus {
    background-color: #fff;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.breadcrumb-section {
    background: var(--breadcrumb-bg-color);
    color: var(--background-color-white);
}

.breadcrumb-ct {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.breadcrumb-item-ct a{
    color: var(--background-color-white);
}

.breadcrumb-item-ct a:hover{
    color: var(--background-color-white);
}

.breadcrumb-item-ct.active{
    color: var(--background-color-white);
}

.section-body-text1 {
    max-width: 768px;
    color: var(--body-text-light-color);
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
}


.process-icon {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin: 0 auto 35px;
}

.process-card-two:hover .process-icon {
    background-color: var(--background-color-white);
    color: var(--primary-theme-color);
}

.process-card:hover {
    background: var(--background-color-white);
}

.process-card:hover .process-icon {
    background: var(--primary-theme-color) !important
}

.process-card:hover .process-icon span,
.process-card:hover .process-icon span i {
    color: var(--background-color-white) !important
}

.process-icon-2 i {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 1.675rem;
}

.process-icon-2 {
    position: relative;
    border-radius: 0.75rem;
}

.process-icon-2:after {
    content: "";
    position: absolute;
    top: -20px;
    width: 0;
    right: 47%;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    height: 150px;
    z-index: -1;
    border-style: dashed;
    border-width: 1px;
    border-color: rgba(17, 24, 39, .12);
    background-color: rgba(0, 0, 0, 0);
}

.work-process-list li:last-child .process-icon-2:after {
    display: none;
}

.work-process-list li,
.process-icon-2 i {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.process-icon-2 i {
    opacity: .6;
}

.work-process-list li:hover .process-icon-2 i {
    color: var(--bs-primary);
    opacity: 1;
}


.bg-slight-light-gray {
    background-color: var(--background-color-secondary);
}


/* Services Detail Page CSS Starts */
.service-detail-section .category-wrapper, .service-detail-section .brochure-wrapper {
    padding: 2rem;
    border: 1px solid var(--ultra-light-color);
    border-radius: 6px;
}

.category-wrapper .category-item a{
    position: relative;
    color: var(--body-text-primary-color);
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}

.category-wrapper .category-item a::before{
    content: '';
    width: 0;
    top: 0;
    left: 0;
    height: 100%;
    position: absolute;
    background: var(--primary-theme-color);
    border-radius: 3px;
    /* background: linear-gradient(90deg, var(--primary-theme-color) 0%, var(--primary-theme-color) 60%, var(--primary-theme-dark-color) 100%); */
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    z-index: -1;
}

.category-wrapper .category-item a:hover::before, .category-wrapper .category-item a.active::before{
    width: 100%;
}

.category-wrapper .category-item a.active::after {
    position: absolute;
    right: 10px;
    content: "\F234";
    font-family: "bootstrap-icons";
    font-weight: 60;
    font-size: 1.25rem;
    transform: translateY(-50%);
    top: 50%;
}

.category-wrapper .category-item a:hover, .category-wrapper .category-item a.active {
    color: var(--background-color-white);
} 

.category-wrapper .category-item {
    border-radius: 3px;
    border-bottom: 1px solid var(--ultra-light-color);
}

.category-wrapper .category-item:last-child, .category-wrapper .category-item:hover{
    border: none;
}

.service-feature-list li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.service-feature-list li .icon i {
    font-size: 1.25rem;
    /* position: relative;
    top: -4px; */
    color: var(--primary-theme-color);
}

.faq-section-wrapper .accordion-button:not(.collapsed) {
    color: var(--background-color-white);
    background-color: var(--primary-theme-color);
}

.faq-section-wrapper .accordion-button:not(.collapsed)::after {
    color: #fff;
}

.faq-section-wrapper .accordion-button::after,.faq-section-wrapper .accordion-button:not(.collapsed)::after {
    content: "\F27E";
    font-family: "bootstrap-icons";
    background-image: none;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Services Detail Page CSS Ends */

/* Services Cards Starts */
.service-item-card2 {
    background-color: var(--background-color-white);;
	box-shadow: 0.15rem 0.15rem 0.25rem rgba(0, 0, 0, 0.075);
    -webkit-box-shadow: 0.15rem 0.15rem 0.25rem rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0.15rem 0.15rem 0.25rem rgba(0, 0, 0, 0.075);
	border-radius: 8px;
	transform: translate3d(0, 0, 0);
	padding: 40px 30px;
	margin-top: 30px;
	transition: all 0.3s linear;
    margin-left: auto;
    margin-right: auto;
}

.service-item-card2 .img-wrapper img, .service-item-card2 .img-wrapper i {
    height: 60px;
    font-size: 48px;
    color: var(--primary-theme-color);
    margin-bottom: 0.875rem;
}

.service-item-card2 .title a {
    font-size: 1.125rem;
    color: var(--body-text-primary-color);
    transition: color 0.25s ease-in-out;
}

.service-item-card2 .title a:hover{
    color: var(--primary-theme-color);
}

.service-item-card2 .service-item-card2-content p {
    margin-top: 0.675rem;
    line-height: 1.75;
}

.btn-link {
    text-decoration: none;
    color: var(--body-text-primary-color);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.btn-link-box {
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
    gap: 0;
}

.btn-link-box:hover {
    gap: 4px;
}

.btn-link-box i {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-link-box:hover{
    color: var(--primary-theme-color);
}

/* Services Cards Ends */