*
{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html, body 
{
	padding: 0;
	margin: 0;
	height: 100%;
	overflow-x:hidden;
	background: linear-gradient(135deg, #163394, #88368D, #DE7656, #5CADDd);
    background-size: cover;	
    background-repeat: no-repeat;
	/* background-image:url('../images/bk2.png'); */
	font-family: 'Graphik';
}

body
{
	overflow-y: auto;	
}

.nav-hb-wrapper
{
	display: flex;
    min-height: 90vh;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.navig-wrap ul {
    display: flex;
    list-style-type: none;
    padding-left: 0;
    column-gap: 40px;
	margin-bottom: 0;
}

.navig-wrap ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 21px;
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap img
{
	width: 200px;
}

nav 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 30px 0;
	z-index: 999;
}

.filled-btn {
    color: #000 !important;
    line-height: 25px;
    font-weight: 600;
    background-color: #fff;
    border: 1px solid #fff;
    width: fit-content;
    transition: .5s all ease;
    border-radius: 50px;
	padding: 10px 30px;
}

.outline-btn 
{
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    background-color: unset;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    padding: 10px 30px;
    transition: .5s all ease;
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.filled-btn:hover
{
	color: #fff !important;
    background-color: unset;
	border:1px solid #fff;	
	transition: .5s all ease;
}

.outline-btn:hover
{
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    transition: .5s all ease;
}

.rotating-text {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink-caret 0.7s step-end infinite;
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

.hb-content-wrap {
    height:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
    position: relative;	
}

.hb-content-wrap h3 {
    margin-top: 70px;
    color: #fff;
    font-size: 75px;
    width: 80%;
    text-align: center;
    margin-bottom: 0;
    font-weight: 700;
}

.hb-content-wrap p {
    margin-bottom: 0;
    color: #fff;
    font-size: 26px;
    margin-top: 30px;
    width: 60%;
    text-align: center;
}

.hb-view-more {
    margin-top: 40px;
    padding: 15px 50px;
}

.hb-view-more a {
    text-decoration: none;
}

.hb-view-more.filled-btn 
{
	cursor:pointer;
    background-color: #fff;
    border: 1px solid #fff;
}

.hb-view-more.filled-btn a
{
	color:#000;
}

/* .hb-view-more.filled-btn a {
    font-size: 18px;
    color: #fff !important;
	transition: .5s all ease;
} */

.hb-view-more.filled-btn:hover
{
	background-color: unset;
	transition: .5s all ease;
}

.hb-view-more.filled-btn:hover a
{
	color:#fff;
}

img.code-screen 
{
    width: 70%;
    margin-top: 80px;
	margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}

img.ai-web {
    position: absolute;
    right: -120px;
    top: 180px;
	opacity: 0.4;
	pointer-events: none;
	z-index: 99;
}

.ai-web {
    display: block;
    margin: 0 auto; /* center horizontally if needed */
    transform-origin: center center;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* .work-box-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: ripple 5s infinite;
    transition: all 400ms ease;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(0.8);
    }
} */


section.about-hp-sect 
{
    padding: 70px;
}

span.small-span 
{
	color: #004670;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
    text-transform: uppercase;
}

span.small-span:before 
{
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: #004670;
    border-radius: 20px;
}

.about-left h2 
{
    margin-top: 5px;
    width: 100%;
    line-height: 45px;
    margin-bottom: 20px;
    font-weight: 400;
	font-size: 38px;
	color:#fff;
}

.about-left h2 span 
{
    color: #004670;
    font-weight: 700;
}

.about-left p 
{
    width: 75%;
    color: #707070;
    line-height: 30px;
    font-size: 20px;
    font-weight: 400;	
}

.about-left a {
    text-decoration: none;
    border: 1px solid #707070;
    border-radius: 50px;
    padding: 7px 25px;
    margin-top: 25px;
    display: inline-flex;
    color: #2d2d2d;
	transition: .5s all ease;
}

.about-left a i {
    margin-left: 7px;
	transform: rotate(45deg);
	transition: .5s all ease;    
}

.about-left a:hover i {
    transform: rotate(0deg);
	transition: .5s all ease;    
}

.our-client-caro {
    margin-top: 70px;
}

.our-client-caro img {
    width: 120px !important;
}

.about-grid {
    display: grid;
    grid-template-columns: 40% 50%;
    grid-column-gap: 10%;
}

.exp-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 20px;
    padding: 0 70px;
}

.exp-box {
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #cfcccc;
	transition: .5s all ease;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .05);
	background: linear-gradient(to bottom, #fff, #fff, #fff);
}

.exp-box:hover span, 
.exp-box:hover p 
{
    color: #fff;
}

.exp-box p {
    margin-bottom: 0;
    color: #707070;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.exp-box span {
    font-size: 30px;
    font-weight: 700;
    display: inline-flex;
    margin-bottom: 10px;
    color: #004670;
}

.serv-sect
{
    padding: 70px 0;
 /*    background-color: #ededed6b; */
}

.common-header 
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.common-header h2 
{
    line-height: 45px;
    margin-bottom: 15px;
    font-weight: 400;
    text-align: center;
	width: 46%;
    text-align: center;
    font-size: 38px;	
}

.common-header h2 span 
{
    color: #004670;
    font-weight: 700;
}

.common-header p 
{
    width: 88%;
    text-align: center;
}

.animate 
{
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate.visible 
{
  opacity: 1;
  transform: translateY(0);
}

.serv-box svg 
{
    height: 35px;
    width: 35px;
    margin-bottom: 30px;
}

.serv-box h2 
{
    color: #000000;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.serv-grid 
{
    display: grid;
    gap: 40px;
    margin-top: 50px;
    grid-template-columns: repeat(3, 1fr);
}

.serv-box {
    display: flex;
}

.serv-box a 
{
    border: unset;
	overflow: hidden;
    color: #202020;
    border-radius: 12px;
    background-color: #004a746b;
    text-decoration: none;
	transition: .5s all ease;
}

/* .serv-box a:hover 
{
	transition: .5s all ease;
    background: #2d3142;
} */

.serv-box a:hover svg path
{
	fill:#fff;
}

.serv-box a:hover h2,
.serv-box a:hover p,
.serv-box a:hover span,
.serv-box a:hover i
{
	color:#fff;
}

.serv-box p 
{
    font-size: 20px;
    color: #000000;
    margin-bottom: 40px;
}

span.readmorearrow 
{
    display: flex;
    justify-content: flex-end;
}

span.readmorearrow i 
{
	color: #000;
    font-size: 19px;
}

section.team-sect {
    padding: 70px 0;
}

section.team-sect .common-header h2 {
    width: 45%;
}

.team-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-column-gap: 30px;
}

.team-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.team-grid .team-box:nth-child(even) {
    margin-top: 50px;
}

.team-box {
    text-align: center;
}

.team-box h3 {
    margin-top: 15px;
    font-size: 20px;
    margin-bottom: 0;
}

.team-box span {
    font-size: 15px;
}

section.testimonial-sect {
    padding: 70px 0;
    /* background-color: #ededed6b; */
}

.common-reg-text 
{
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: #414141;
    line-height: 24px;
}

.img-name-wrap 
{
    display: flex;
    grid-column-gap: 21px;
    margin-bottom: 25px;
}

.img-name-wrap img 
{
    width: 90px !important;
    height: 90px !important;
    object-fit: cover !important;
}

.name-desig-wrap 
{
	color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.name-desig-wrap span:first-child 
{
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
	margin-bottom: 7px;
}

.name-desig-wrap span:last-child 
{
	font-weight: 400;
    font-size: 16px;
}

.testimonial-caro .item p 
{
    margin-bottom: 0;
	color:#000;
}

.common-reg-text 
{
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    font-style: normal;
}

.testimonial-caro .owl-dots 
{
    display: flex;
    margin-top: 30px;
    grid-column-gap: 6px;
    justify-content: center;
}

.testimonial-caro .owl-dots button 
{
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: #dfdfdf;
}

.testimonial-caro .owl-dots button.owl-dot.active 
{
    background-color: #203754;
}

.testimonial-caro {
    margin-top: 60px;
}

.testimonial-caro .item 
{
    padding: 20px;
	background-color: #004a746b;
}

section.gettouch-sect {
    padding: 70px 0;
}



.footer-grid {
    display: flex;
    justify-content: space-between;
}

.footer-box .links ul {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
}

.links h4 {
    font-size: 20px;
    margin-bottom: 20px;
	color: #ffffff;
}

.links ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    row-gap: 11px;
}

.links ul li a {
    color: #fff;
    font-size: 18px;	
    text-decoration: none;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.5s;
    background-image: linear-gradient(transparent calc(100% - 2px), black 2px);	
}

.links ul li a:hover {
    background-size: 100% 100%;
}

.contact-box ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    column-gap: 120px;
    margin-bottom: 0;
    margin-top: 50px;
    justify-content: center;
}

.footer-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50px;
}

.footer-icon svg path {
    fill: #000;
}

.contact-box ul li svg {
    width: 19px;
    height: 19px;
}

.contact-box ul li {
    display: flex;
    column-gap: 15px;
}

.contact-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-detial {
    display: flex;
    flex-direction: column;
}

.footer-detial span 
{
	color: #979797;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    margin-bottom: 2px;
}

.footer-detial a {
    color: #212529;
    text-decoration: none;
    font-size: 17px;
}

.address {
    color: #212529;
    text-decoration: none;
    font-size: 17px;
}

.contact-box ul li:hover .footer-icon
{
	background-color:#000;
	transition: .5s all ease;	
}

.contact-box ul li:hover .footer-icon svg path
{
	fill:#fff;
	transition: .5s all ease;	
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    border-top: 1px solid #dfdfdf;
    padding-top: 50px;
}

.footer-copyright ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    column-gap: 15px;
    margin-bottom: 0;
}

.footer-copyright ul li a {
    color: #212529;
    text-decoration: none;
}

/* .links ul li a:hover 
{
    color: #0048ab;
}
 
.footer-copyright ul li a:hover
{
    color: #0048ab;	
}*/

.contact-box ul li svg {
    width: 19px;
    height: 19px;
}

.contact-box ul li {
    display: flex;
    column-gap: 15px;
}

.contact-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-detial {
    display: flex;
    flex-direction: column;
}

.footer-detial span 
{
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    display: inline-flex;
    margin-bottom: 2px;
}

.footer-detial a {
    color: #212529;
    text-decoration: none;
    font-size: 18px;
}

.address {
    color: #212529;
    text-decoration: none;
    font-size: 17px;
}

.contact-box ul li svg {
    width: 19px;
    height: 19px;
}

.contact-box ul li:hover .footer-icon svg path
{
	fill:#fff;
	transition: .5s all ease;	
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    border-top: 1px solid #dfdfdf;
    padding-top: 50px;
	color: #fff;
	align-items: center;
    font-size: 18px;	
}

.footer-copyright ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    column-gap: 15px;
    margin-bottom: 0;
}

.footer-copyright ul li a {
    color: #fff;
    text-decoration: none;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.5s;
    background-image: linear-gradient(transparent calc(100% - 2px), black 2px);
}

.footer-copyright ul li a:hover {
    background-size: 100% 100%;
}

/* .links ul li a:hover 
{
    color: #0048ab;
} */

.footer-copyright ul li:hover
{
    color: #0048ab;	
}

.moto ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 0;
}

.moto ul li {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.moto ul li a {
    width: fit-content;
    height: fit-content;
    transition: .5s all ease;
}

.moto ul li a svg
{
    width: 40px;
    height: 40px;
	transition: .5s all ease;
}

.moto ul li a svg {
    transition: .5s all ease;
}

footer {
    padding: 70px;
    /* background: linear-gradient(to right, #021B79, #0575E6); */
}

.footer-box p {
    color: #000;
}

.contact-box ul li:last-child {
    width: 25%;
}

.nav-hb-wrapper.inner-pages 
{
    min-height: auto !important;
    /* height: 350px !important; */
}

.ip-header {
    padding: 50px 0 60px 0;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 9;
}

.ip-header h3 {
    margin-bottom: 15px !important;
    font-weight: 700;
    font-size: 40px;
}

.ip-header p {
	width: 60%;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
}

.contact-left form 
{
    display: grid;
    gap: 25px;
    padding: 50px 160px 50px 50px;
    margin-bottom: 0;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    background: rgb(255 255 255);
    grid-template-columns: repeat(2, 1fr);
}

.contact-grid 
{
	display: grid;
    grid-template-columns: 88%;
    position: relative;
}

.form-group 
{
    display: flex;
    flex-direction: column;
}

.contact-left .form-group label 
{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.contact-left .form-group input 
{
    border: none;
    background-color: unset;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e4e4;
}

.contact-left .form-group select 
{
    border: none;
    background-color: unset;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e4e4;
}

section.contact-sect 
{
    padding: 70px 0 0;
    background-color: #ededed6b;
	background: linear-gradient(to right, #348AC7, #7474BF);
}

.contact-left .form-group textarea 
{
    resize: none;
    border: none;
    height: 90px;
    padding-bottom: 8px;
    background-color: unset;
    border-bottom: 1px solid #e5e4e4;
}

.form-group.span2
{
    grid-column: span 2;
}

.form-group.span2 button {
    height: 60px;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    border: 1px solid #000000;
    border-radius: 50px;
    text-transform: uppercase;
    background: #000000;
}

.cr-top img 
{
    width: 100%;
}

.contact-left .form-group input:focus {
    outline: none;
}

.contact-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999999;
    height: 100%;
}

.contact-right img {
	width: 100%;
    height: 100%;
}

.googlemapwrap iframe
{
	width:100%;
	height:550px;
}

.about-left figure {
    display: block;
    width: 100%;
}

.about-page .about-left img {
    width: 100%;
    object-fit: cover;
}

section.about-sect {
    padding: 70px;	
}

.inner-heading
{
	margin-bottom:70px;
}

.inner-heading .common-header {
    display: grid;
    grid-template-columns: 40% 40%;
    column-gap: 20%;
}

.inner-heading .common-header h2 
{
    width: 100%;
    text-align: left;
}

.inner-heading .common-header p {
    width: 100%;
    text-align: left;
}

.shape-box {
	position: relative;
    background: #ffffff;
    padding: 3rem 1.5rem;
    max-width: 600px;
    color: #111;
    border-radius: 16px;
    overflow: hidden;
}

.shape-box::before,
.shape-box::after {
    content: "";
    position: absolute;
    background: #f7f7f7;
    z-index: 1;
    width: 50px;
    height: 50px;
}

.shape-box::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.shape-box::after {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
}

.custom-about-wrapper 
{
	display: flex;
	flex-direction: column;
	row-gap: 25px;
}	

.shape-box p {
    margin-bottom: 0;
}

section.misvis-sect {
    padding: 70px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 60% 40%;
}

.mv-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.mv-box {
    padding: 30px;
    color: #202020;
    border-radius: 12px;
    border: 1px solid #fff;
    background-color: #fff;
    text-decoration: none;
    transition: .5s all ease;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .05);
}

section.misvis-sect .ch-left h2 {
    text-transform: capitalize;
}

.mv-box svg {
    height: 35px;
    width: 35px;
    margin-bottom: 30px;
}

.mv-left img {
    width: 92%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
}

.service-pg-sect {
    padding: 70px 0;
}

.service-pg-sect .common-header h2 {
    width: 55%;
}

.serv-pg-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.serv-pg-box 
{
    padding: 30px;
    border-radius: 30px;
    background-color: #FFF7E1;
}

.serv-pg-box h4 
{
    font-size: 22px;
}

.serv-pg-box a 
{
    color: #000;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
}

.serv-pg-box svg
{
    width: 45px;
    height: 45px;
    margin-bottom: 30px;
}

section.whychoose-sect 
{
    padding: 70px;
    overflow: hidden;
    position: relative;	
}

#accordion 
{
    width: 100%;
    margin: 0 auto;
    z-index: 9999999;
    position: relative;	
}

#accordion .card 
{
    border: unset;
    background-color: unset;
}

#accordion .card-header 
{
    padding: 0;
    background-color: unset;
    /* border-bottom: 2px solid rgba(1, 20, 53, 0.12); */
	border-bottom: unset !important;
}

#accordion .card-header a 
{
    display: grid;
    grid-template-columns: 90% 10%;
    outline: none;
    border: none;
    box-shadow: unset;
    padding: 0;
    position: relative;
	border-radius: 6px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;	
}

.accordDflex 
{
    display: flex;
    align-items: center;
    top: 0;
    position: relative;
    padding: 12px;
}

.accordDflex span 
{
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.1px;
    text-align: left;
}

.accord-arw-wrap 
{
    top: 13px;
    right: 13px;
    position: absolute;
}

.accord-arw-wrap i {
	color: #fff;
    font-size: 20px;
}

#accordion .card-body 
{
    padding: 10px 10px;
background-color: #fff;	
}

#accordion .card-body p 
{
	font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 10px;
    vertical-align: middle;
}

.faq-wrap 
{
    width: 64%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

#accordion [aria-expanded="true"] span
{
	color:#fff;
}

.card.accord-active {
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
}

.whychoose-sect .common-header h2 {
    width: 54%;
}

.whychoose-sect .common-header p {
    width: 75%;
}

.serv-sect.inner-serv-grid
{
	margin-top:0;
	padding-top:0;
}

.serv-sect.inner-serv-grid .serv-grid
{
	margin-top:0;
}

img.patt-bottom 
{
    position: absolute;
    bottom: -40%;
    width: 100%;
    left: 0;
    opacity: 0.1;
    z-index: 99999;
    pointer-events: none;
}

.serv-pg-box:hover svg path {
    fill: #fff;
}

.serv-pg-box
{
	text-decoration:none;
}

.serv-pg-box h4, 
.serv-pg-box p, 
.serv-pg-box span 
{
    color: #000;
}

.serv-pg-box:hover h4, 
.serv-pg-box:hover p, 
.serv-pg-box:hover span 
{
    color: #fff;
}

a.humb-menu svg {
    width: 50px;
    height: 50px;
}

a.humb-menu svg path {
    fill: #fff;
}


.full-menu-wrap {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #504cff;
  transition: left 0.5s ease;
  display: flex;
  justify-content: center;
  z-index: 9999;
}

body.anim-menu .full-menu-wrap {
  left: 0;
}

.full-menu-wrap {
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.7s ease-in-out;
}

body.anim-menu .full-menu-wrap {
  clip-path: circle(150% at 50% 50%);
}

.full-menu-wrap ul {
	list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    width: 100%;
    height: calc(100% - 180px);
}

.full-menu-wrap ul li a {
    color: #fff;
    text-decoration: none;
}

.full-menu-wrap 
{
    width: 100%;
    display: grid;
    grid-template-columns: 13% 82%;
    grid-column-gap: 5%;
}

.fo-address {
    color: #fff;
}

.fo-menu ul li a {
	font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.fo-menu {
    border-left: 1px solid rgb(255 255 255 / 15%);
    /* border-right: 1px solid rgb(255 255 255 / 15%); */
}

.full-menu-wrap .fo-menu ul li {
    border-bottom: 1px solid rgb(255 255 255 / 15%);
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.fo-menu ul li:first-child {
    padding-top: 30px;
	border-top: 1px solid rgb(255 255 255 / 15%);
}

.full-menu-wrap .logo-wrap {
    padding-top: 50px;
    padding-left: 50px;
}

.fo-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow-y: scroll;
}

.fo-menu::-webkit-scrollbar {
  width: 5px;
}

.fo-menu::-webkit-scrollbar-track {
  background: #605def; 
}
 
.fo-menu::-webkit-scrollbar-thumb {
  background: #414141; 
}

.mid-menu {
    display: grid;
    width: 100%;
    grid-template-columns: 70% 27%;
    grid-column-gap: 3%;
}

.fo-right-cover {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
}

.fo-right-cover h4 
{
    color: #fff;
    margin-bottom: 12px;
    opacity: .7 !important;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fo-right-cover p 
{
    width: 60%;
    color: #c6c8c9;
    margin-bottom: 0;
}

.fo-right-cover {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
	margin-top: 180px;
}

.fo-social-wrap ul {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.contact-wrap a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

a.cross {
    position: absolute;
    right: 30px;
    top: 30px;
}

a.cross svg {
    width: 20px;
    height: 20px;
}

a.cross svg path {
    fill: #fff;
}

section.blockchain-vid-sect {
    padding: 70px 0;
}

.serv-box img {
    width: 100%;
}

span.small-span,
.about-left,
.about-left h2 span,
.common-header h2 span,
.common-header h2,
.team-box h3,
.team-box span,
.address,
.footer-detial a
{
    color: #fff;
}

.exp-box span,
.exp-box p 
{
    color: #000;	
}

span.small-span:before 
{
    background-color: #fff;
}

.about-left p {
    color: #fff;
 }

.about-left a 
{
    color: #fff;
    border: 1px solid #fff;
}

.common-header p {
    color: #fff;
	font-size: 24px;
}


.serv-box.animate {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: transform 0.8s ease, opacity 0.8s ease !important;
}

.serv-box.animate.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.anim-img {
  transform: scale(0.6) rotate(75deg) !important;
  transition: transform 0.7s ease-out !important;
}

.serv-box.animate.visible .anim-img {
  transform: scale(1) rotate(0deg) !important;
}


.exp-box 
{
	border:unset;
	background: unset;
    background-color: #004a746b;
}

.exp-box:hover 
{
	border:unset;
    background-color: #2d3142;
}

.animate-onebyone ul li {
  opacity: 0;
  transform: translateY(80px) rotateX(90deg);
  transform-origin: top;
  animation: none;
}

.animate-onebyone ul li.show {
  animation: riseUp 0.8s forwards ease-out;
}

@keyframes riseUp {
  0% {
	opacity: 0;
	transform: translateY(80px) rotateX(90deg);
  }
  100% {
	opacity: 1;
	transform: translateY(0) rotateX(0deg);
  }
}

.animate-footer h4,
.animate-footer p,
.animate-footer a,
.animate-footer ul li {
  opacity: 0;
  transform: translateY(80px) rotateX(90deg);
  transform-origin: top;
  animation: none;
}

.animate-footer .show-footer {
  animation: riseUpFooter 0.8s forwards ease-out;
}

@keyframes riseUpFooter {
  0% {
    opacity: 0;
    transform: translateY(80px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.animate {
  opacity: 0;
  transform: translateY(60px) rotateX(10deg) scale(0.95);
  transform-origin: top;
  transition: all 0.8s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg) scale(1);
}

.our-client-caro.animate {
  opacity: 0;
  transform: scale(0.8);
  transition: all 1s ease-out;
}

.our-client-caro.animate.visible {
  opacity: 1;
  transform: scale(1);
}

section.market-sect {
    padding: 50px 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    color: #fff;
    grid-column-gap: 80px;
    grid-row-gap: 40px;
    margin-top: 50px;
}

.media-box h1 {
    font-size: 70px;
    margin-bottom: 20px;
    font-weight: 900;
}

.media-box h5 {
    margin-bottom: 19px;
    font-size: 24px;
}

.media-box p {
    font-weight: 400;
    font-size: 18px;
}

.inner-pages-wrap
{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:350px;
	overflow:hidden;
	opacity: 0;
}

/* .inner-pages-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000d9;
    z-index: 0;
    width: 100%;
    height: 100%;
} */

.footer-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#accordion .card-header a {
    border-bottom: 1px solid #d7d7d7;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 40% 50%;
    grid-column-gap: 10%;
}

section.adds-time-sect {
    padding: 70px 0;
}

.add-time-left {
    color: #fff;
    font-weight: 400;
}

.add-time-left h3 {
    text-transform: uppercase;
    font-weight: 700;
	    margin-bottom: 20px;
}

.atl-top ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
	margin-bottom:0;
}

.atl-top h3 {
    margin-bottom: 20px;
}

.atl-top {
    margin-bottom: 50px;
}

.atl-bottom ul {
    margin-bottom: 0;
    list-style-type: none;
    padding-left: 0;
}

.atl-bottom ul {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

section.about-sect.cp-ourmis h2 {
    width: 60%;
}

body.home-page.anim-menu .logo-wrap img {
    filter: invert(0);
}

.serv-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 9999;
    /* background-color: #00000054; */
}

.serv-box h3 {
    margin-bottom: 0;
    background-color: #fff;
    z-index: 9999;
    position: relative;
    padding: 15px 20px;
    font-size: 21px;
    font-weight: 600;
    line-height: 28px;
}

.serv-img 
{
    height: 380px;
    overflow: hidden;
    position: relative;
}

.serv-box a img 
{
	transition: .5s all ease;
}

.serv-box a:hover img 
{
    transform: scale(1.2);
	transition: .5s all ease;
}

.atl-top li 
{
    font-size: 21px;
}

.atl-bottom ul li 
{
    font-size: 21px;
}

.section-header 
{
	text-align: center;
	margin: 60px 0 40px;
}

.section-header span 
{
	color: #777;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.section-header h1 
{
	font-size: 2.5rem;
	margin-top: 10px;
}

.cards-container 
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	padding: 0 60px 80px;
}

.card 
{
	border-radius: 16px;
	overflow: hidden;
	background: #f9f9f9;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	transition: transform 0.3s;
}

.card:hover 
{
	transform: translateY(-8px);
}

.card img 
{
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.card-content 
{
	padding: 20px;
}

.card-content span 
{
	font-size: 0.85rem;
	color: #555;
	display: block;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.card-content h3 
{
	font-size: 1.2rem;
	line-height: 1.4;
	margin: 0;
}

.overview 
{
	color: #fff;
	padding: 60px;
}

.service-wrap 
{
	display: flex;
	column-gap: 100px;
}

.overview h2 
{
	font-size: 2rem;
	margin-bottom: 20px;
}

.overview p 
{
	color: #fff;
	line-height: 1.6;
	margin-bottom: 20px;
	font-size:20px;
}

body.service-detail-page
{
	background: linear-gradient(135deg, #240046, #3C096C, #5A189A, #FF6FFF);
}

.serv-help ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 20px;
}

.serv-help {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

/* .footer-grid svg path {
    fill: #fff;
} */

.footer-grid .moto ul li a svg {
    width: 25px;
    height: 25px;
}

.sr-dtl-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.sr-dtl-wrap img {
    width: 100%;
    border-radius: 10px;
}

.sd-img-wrap {
    height: 470px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 100px;
    margin-top: 100px;
}

.sd-content-box {
    margin-top: 60px;
    color: #fff;
}

.sd-content-box h2 {
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 42px;
}

.sd-content-box p {
    font-size: 21px;
    line-height: 34px;
    font-weight: 100;
}

.img-gallery-wrap {
	display: flex;
    margin-top: 40px;
    column-gap: 40px;
}

.img-gallery-wrap img {
    width: 70%;
    height: 330px;
    border-radius: 10px;
    object-fit: cover;
}

.img-gallery-wrap .video-cover
{	
    width: 100%;
    height: 330px;
    border-radius: 10px;
	position:relative;
	overflow:hidden;
}

.img-gallery-wrap .video-cover:before 
{
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    background-color: #00000054;
    width: 100%;
    height: 100%;
    display: block;
}

.img-gallery-wrap .video-cover video
{
    width: 100%;
    height: 100%;
}

.services-section {
    text-align: center;
    margin: 0 auto;
}

.services-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.services-section p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
}

.services-grid 
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 0 auto;
}

.service-card {
    color: #fff;
	overflow: hidden;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 6px 18px rgb(0 0 0 / 12%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
}

/* Individual card colors */
.laravel { background: #f87171; }
.flutter { background: #60a5fa; }
.vue { background: #34d399; }
.website { background: #fbbf24; }
.mobile { background: #a78bfa; }
.design { background: #f472b6; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.service-card a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.laravel a { color: #e11d48; }
.flutter a { color: #2563eb; }
.vue a { color: #059669; }
.website a { color: #d97706; }
.mobile a { color: #6d28d9; }
.design a { color: #be185d; }

.service-card ul {
	list-style-type: auto;
    font-size: 19px;
    line-height: 27px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding: 0 40px;
}

.sct-box h2 {
    text-align: left;
    color: #fff;
    margin-bottom: 30px;
}

.card-title {
    display: flex;
    column-gap: 20px;
}

.card-title svg {
    width: 26px;
    height: 26px;
}

.card-title svg path {
    fill: #fff;
}

.card-title h3 {
	font-size: 23px;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    font-weight: 600;
}

.card-title {
	margin-bottom: 15px;
    position: relative;
    background-color: #00000017;
    color: #ffffff;
    padding: 14px 20px;
}

.service-card ul li {
    font-size: 20px;
    line-height: 29px;
}

/* .card-title:before {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 200px;
    height: 2px;
    bottom: -5px;
	left:0;
} */

.title-intact
{
    position: relative;
    display: flex;
    margin-bottom: 50px;
}

.title-intact:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 150px;
    height: 2px;
    background-color: #fff;
}

.title-intact h2 {
    margin-bottom: 0;
}

body.service-detail-page .ip-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 43px;
    font-weight: 600;
    letter-spacing: 1px;
}

body.service-detail-page .ip-header p {
    width: 70%;
    font-size: 19px;
    color: #ddd;
    max-width: 700px;
    margin: auto;
}

section.services-section.wwww 
{
    margin-top: 80px;
}

section.services-section.wwww .services-grid
{
	display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin: 0 auto;	
}

section.services-section.wu 
{
    margin-top: 80px;
}

section.services-section.wu .services-grid
{
	display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin: 0 auto;	
}

/* service details start */

    .service-section {
		padding: 0;
		display: grid;
		grid-template-columns: 33% 63%;
		gap: 50px;
		align-items: start;
		margin-top: 70px;
    }

    .service-intro h2 {
		font-size: 38px;
		font-weight: 900;
		text-transform: uppercase;
		line-height: 1.2;
		margin: 0 0 20px;
		font-family: 'Orbitron', sans-serif;
		color: #fff;
		letter-spacing: 1px;
    }

    .service-intro p {
		line-height: 1.6;
		font-size: 19px;
		color: #ddd;
		max-width: 700px;
		margin: auto;
    }

    .service-steps {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px 60px;
    }

    .step {
		border-top: 2px solid #b7b7b7;
		padding-top: 20px;
    }
	
	.step:hover {
		border-top: 2px solid #00aaf7;
	}	

    .step span {
		display: block;
		font-size: 38px;
		font-weight: bold;
		color: #ffffff;
		margin-bottom: 8px;
		opacity: 0.3;
    }

    .step h3 {
		font-size: 22px;
		font-weight: 600;
		text-transform: uppercase;
		color: #fff;
		font-family: "Poppins", sans-serif;
		margin-bottom: 25px;
    }

    .step p {
      font-size: 15px;
      color: #ccc;
      line-height: 1.6;
    }

    @media(max-width: 992px) {
      .service-section {
        grid-template-columns: 1fr;
      }
      .service-steps {
        grid-template-columns: 1fr;
      }
    }
	
	.step ul {
		padding-left: 20px;
		display: flex;
		flex-direction: column;
		row-gap: 20px;
		margin-bottom: 0;
	}	

	.step ul li {
		font-family: "Mulish", sans-serif;
		color: #fff;
		font-size: 18px;
	}


/* service details end */


.video-image-section {
    display: grid;
    grid-template-columns: auto 30%;
    gap: 20px;
    align-items: stretch;
}

/* Left side video */
.video-box {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right side images */
.right-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.image-box {
  border-radius: 12px;
  overflow: hidden;
  background: #222;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media(max-width: 992px) {
  .video-image-section {
	grid-template-columns: 1fr;
  }
  .right-side {
	grid-template-rows: auto;
  }
}

.video-image-section {
    height: 450px;
}

section.video-image-pdiv-wrap {
    margin-top: 70px;
}

button#playBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    background: rgb(127 127 127 / 60%);
    border: none;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-play-btn svg {
    width: 60px;
    height: 60px;
    position: relative;
}

.custom-play-btn svg path {
    fill: #fff;
}

.image-box img {
    width: 100%;
    height: 216px;
    object-fit: cover;
}

body.service-detail-page.w3cc 
{
    background: linear-gradient(135deg, #6A00F4, #B100E8);
}

body.service-detail-page.itserv-cc
{
	background: linear-gradient(135deg, #382c84, #1c72dc);
}

body.service-detail-page.blockchainpr-cc
{
	background: linear-gradient(135deg, #40289c, #1c72dc);
}

body.service-detail-page.cyber-cc
{
	background: linear-gradient(135deg, #583588, #7840bc);
}

body.service-detail-page.aa-cc
{
	background: linear-gradient(135deg, #6e65c6, #da81de);
}


@media only screen and (min-width: 300px) and (max-width: 991px) 
{
    .hb-content-wrap h3 
    {
        font-size: 43px;
        width: 90%;
    }
    
    .hb-content-wrap p 
    {
        font-size: 20px;
        margin-top: 30px;
        width: 100%;
    }
    
    section.about-hp-sect 
    {
        padding: 0px 0px;
    }
    
    .about-grid 
    {
        grid-template-columns: 100%;
    }
    
    .about-left p 
    {
        width: 100%;
    }
    
    .our-client-caro 
    {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    
    .exp-box-grid 
    {
        padding: 0 0px;
    } 
    
    .exp-box 
    {
        padding: 20px 0;    
    }
    
    .exp-box span 
    {
        font-size: 25px;    
    }
    
    .common-header h2 
    {
        line-height: 34px;
        width: 88%;
        font-size: 25px;
    }
    
    .common-header p 
    {
        color: #fff;
        font-size: 19px;
        width: 95%;
    } 

    .serv-grid 
    {
        grid-template-columns: repeat(1, 1fr);
    } 
    
    .serv-img 
    {
        height: 320px;
    } 
    
    .serv-sect {
        padding-bottom: 50px;
    } 
    
    .media-grid 
    {
        grid-template-columns: repeat(1, 1fr);
    } 
    
    .container {
        padding: 0 20px !important;
    } 
    
    section.market-sect
    {
        padding-top:0;
    }

    section.team-sect .common-header h2 {
        width: 100%;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }    
    
    .team-box img {
        height: 180px;
    }    
    
    section.testimonial-sect {
        padding-top: 0;
    }
    
    section.testimonial-sect {
        padding: 70px 25px;
    }
    
    section.gettouch-sect {
        padding-top: 0;
    }
    
    section.gettouch-sect 
    {
        padding-top: 0;
    }
    
    .contact-box ul {
        flex-direction: column;
        width: 100%;
        row-gap: 40px;
    }
    
    .contact-box ul li:last-child {
        width: 100%;
    } 
    
    footer {
        padding: 0 25px 50px;
    } 
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        row-gap: 15px;
        padding-top: 30px;
    } 
    
    .full-menu-wrap {
        grid-template-columns: 100%;
    }
    
    .fo-menu {
        justify-content: flex-start;
        margin-top: 0px;
    } 
    
    .mid-menu {
        grid-template-columns: 100%;
        grid-column-gap: 0;
    }
    
    .fo-right-cover {
        margin-top: 0;
        padding: 0 25px;
        row-gap: 40px;
    } 
    
    .fo-social-wrap ul {
        display: flex;
        flex-direction: row;
        column-gap: 25px;
    }  
    
    .full-menu-wrap .fo-menu ul li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    } 
        
    .fo-menu ul li a {
        font-size: 25px;
    } 
    
    .ip-header {
        padding: 20px 0 20px 0;
    }
    
    .ip-header p {
        width: 100%;
    }
    
    section.misvis-sect {
        padding-top: 10px;
    }
    
    .inner-heading .common-header {
        grid-template-columns: 100%;
    }
    
    span.small-span {
        display: flex;
        margin-bottom: 10px;
    }
    
    .mv-grid {
        grid-template-columns: 100%;
    } 
    
    .inner-heading .common-header {
        grid-template-columns: 100%;
     }  
     
    .inner-heading {
        margin-bottom: 50px;
    }  
    
    .mv-left img {
        width: 100%;
        height: 260px;
    }
    
    .mv-left {
        margin-bottom: 25px;
    }
    
    section.about-sect {
        padding: 70px 0;
        padding-top: 0;
    }
    
    section.team-sect {
        padding-top: 0;
    }    
    
    .inner-heading {
        margin-bottom: 30px;
    }
    
    .about-grid {
        grid-row-gap: 30px;
    } 
    
    .whychoose-sect .common-header h2 {
        width: 100%;
    }  
    
    section.whychoose-sect {
        padding: 0;
        padding-top: 20px;
    } 
    
    .whychoose-sect .common-header p {
        width: 100%;
    } 
    
    .faq-wrap {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 50px;
    } 
    
    body.service-detail-page .ip-header h3 {
        font-size: 30px;
    }
    
    body.service-detail-page .ip-header p {
        width: 100%;
        font-size: 20px;
    }
    
    .service-section {
        margin-top: 50px;
    }
    
    .service-intro h2 {
        font-size: 28px;
    }
    
    .step h3 {
        font-size: 20px;
    }
    
    .step span {
        font-size: 32px;
    }
    
    .video-image-section {
        height: auto;
    }
    
    .video-image-section .right-side .image-box:last-child {
        display: none;
    } 
    
    .service-detail-page section.video-image-pdiv-wrap
    {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .contact-form-grid {
        grid-template-columns: 100%;
        grid-column-gap: 0;
    }
    
    section.adds-time-sect {
        padding: 40px 25px;
    }
    
    .atl-top {
        width: 100% !important;
    }
    
    .contact-left form {
        display: flex;
        flex-direction: column;
        padding: 25px !important;
        grid-template-columns: repeat(1, 1fr) !important;
    }
    
    .contact-page section.adds-time-sect {
        padding: 40px 0px;
    }    
    
    
}

@media only screen and (min-width: 1300px) and (max-width: 1399px) 
{
    .exp-box {
        padding: 22px;
    }
    
    .common-header h2 {
        width: 60%;
    } 
    
    .hb-content-wrap h3 {

        font-size: 66px;
    } 
    
    .nav-hb-wrapper {
        min-height: 100vh;
    }
    
    section.team-sect .common-header h2 {
        width: 50%;
    }
    
    .team-box img {
        height: 260px;
    }    
    
}

@media only screen and (min-width: 1400px) and (max-width: 1499px) 
{
    section.testimonial-sect {
        padding: 70px 30px;
    }
    
    .team-box img {
        height: 260px;
    }      
    
}
