*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	padding: 0;
	background-color: #FFFFFF;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #333333;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clear {
	clear: both;
	line-height: 0;
	font-size: 0;
}

a {
	text-decoration: none !important;
	transition: all 0.3s ease-in-out;
	font-family: 'Montserrat', sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin: 0;
	padding: 0;
	font-family: 'Archivo', sans-serif;
}

.text-right {
	text-align: right;
}

p {
	margin: 0;
	padding: 0 0 15px;
	color: #2A2A2A;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
}

p:last-child {
	padding-bottom: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

img {
	max-width: 100%;
	object-fit: cover;
}

.image-overlay {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.object-fit {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container {
	max-width: 100%;
	padding: 0 22px;
}

h5 {
	text-transform: uppercase;
	font-family: 'Archivo', sans-serif;
	color: #68F076;
	font-size: 15px;
	line-height: 1em;
	padding: 0 0 15px;
	font-weight: 600;
}

h2 {
	font-size: 30px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 0 0;
	color: #00398D;
}

h2 span {
	font-weight: 700;
	color: #171717;
}

.heading-for-all {
	padding: 0 0 20px;
}

select {
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 0;
	color: #1C1C1C;
	background-color: transparent;
	outline: none;
	border: none;
	border-bottom: 1px solid #429A4B;
 }

 textarea {
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 0;
	color: #1C1C1C;
	background-color: transparent;
	outline: none;
	border: none;
	border-bottom: 1px solid #429A4B;
	resize: none;
	height: 80px;
 }

 select option { color: black; }

 input {
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 0;
	color: #1C1C1C;
	background-color: transparent;
	outline: none;
	border: none;
	border-bottom: 1px solid #429A4B;
 }

 ::placeholder {
	opacity: 1;
	color: #1C1C1C;
 }

 .btn {
	border-radius: 23px;
	font-weight: 600;
	border: none;
	outline: none;
	padding: 12px 35px 12px 17px;
	line-height: 1em;
	position: relative;
	transition: all 0.3s ease-in-out;
	font-size: 13px;
	overflow: hidden;
	z-index: 1;
 }

 .btn::after {
    content: '\f061';
    font-family: 'fontawesome';
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translate(0% , -50%);
    font-size: 12px;
 }

 .btn::before {
    content: '';
    position: absolute;
	transition: all 0.3s ease-in-out;
    top: 0%;
    left: 0;
	height: 100%;
	width: 0%;
	background-color: #68F076;
	z-index: -1;
 }

 .btn:hover::before {
	width: 100%;
 }

 .btn-primary {
	background: #00398D;
	color: #ffffff;
 }

 .btn-white {
	background: #fff;
	color: #00398D;
	box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.10);
 }

 .btn-primary:hover {
	color: #000;
 }
 
 
 /* floating whatapp */
 .floating_btn {
  position: fixed;
  bottom: 30px;
  right: 8%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}
 /* floating whatapp */

@media(min-width: 768px) {
	.container {
		padding: 0 52px;
	}

	h5 {
		font-size: 17px;
	}

	h2 {
		font-size: 35px;
	}

	.heading-for-all {
		padding: 0 0 40px;
	}

	.btn {
		padding: 14px 48px 14px 32px;
		font-size: 14px;
	}

	.btn::after {
		right: 21px;
		font-size: 14px;
	}
}

@media(min-width: 1200px) {
	.container {
		max-width: 1188px;
		padding: 0 22px;
	}

	h5 {
		font-size: 18px;
	}

	.heading-for-all {
		padding: 0 0 90px;
	}
}

/*portfolio_gallary*/
.gallery.portfolio_gallary ul{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.gallery.portfolio_gallary ul .col-lg-6{
    width: 100% !important;
}
.gallery.portfolio_gallary ul .col-lg-6 .project-image-text-image{
    height: 340px;
    overflow: hidden;
    margin-bottom: 8px;
}
.gallery.portfolio_gallary ul .col-lg-6 .project-image-text-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gallery.portfolio_gallary .project-image-text-content{
    text-align: center;
}
/*portfolio_gallary*/


/* testimonial */

.testimonials {
	padding: 50px 0;
	background-color: #F8FAFE;
	position: relative;
}

.testimonials-tabs {
	display: none;
}

.testimonials-list-item-image {
	width: 60px;
	height: 60px;
	overflow: hidden;
	border-radius: 50px;
}

.testimonials-list-item-content {
	width: calc(100% - 60px);
	padding: 0 20px;
}

.testimonials-list-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #FFFFFF;
	padding: 13px 18px;
	border: 1px solid;
	border-radius: 4px;
	border-image-slice: 1;
	border-image-source: linear-gradient(31deg, rgba(255,255,255,1) 0%, rgba(165,201,255,1) 58%);
}

.testimonials-list-item-content ul {
	display: flex;
}

.testimonials-list-item-content ul li {
	color: #FF8A00;
	font-size: 10px;
	margin-right: 4px;
}

.testimonials-list-item-content p {
	font-weight: 500;
	color: #434343;
	font-size: 15px;
	padding: 5px 0 0;
}

.testimonial-author {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 10px 0;
}

.testimonial-author-image {
	width: 42px;
	height: 42px;
	border-radius: 50px;
	overflow: hidden;
}

.testimonial-author-content {
	width: calc(100% - 42px);
	padding-left: 10px;
}

.testimonial-author-content h4 {
	font-size: 16px;
	line-height: 16px;
	padding: 0 0 4px;
}

.testimonial-author-content p {
	color: #727272;
	font-size: 12px;
}

.testimonial-tab-content p {
	color: #545454;
}

.testimonial-tab-content {
	padding: 18px 22px;
    background: #f5f5f5;
}

.tab_drawer_heading {
	position: relative;
	cursor: pointer;
	margin-top: 10px;
}

.tab_drawer_heading::before {
    content: '\2b';
    position: absolute;
    font-family: fontawesome;
    right: 20px;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: #cddaf5;
    transform: translate(0% , -50%);
    font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.tab_drawer_heading.d_active::before {
	content: '\f068';
}

.testimonial-wave-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

@media(min-width: 768px) {

	.testimonials {
		padding: 70px 0;
	}

	.testimonials .heading-for-all {
		padding: 0 0 20px;
	}

	.testimonials-list-item-image {
		width: 96px;
		height: 96px;
	}

	.testimonials-list-item-content {
		width: calc(100% - 96px);
		padding: 0 20px;
	}

	.testimonials-list-item-content p {
		font-size: 20px;
		padding: 7px 0 0;
	}

	.testimonials-list-item-content ul li {
		font-size: 16px;
		margin-right: 6px;
	}
}

@media(min-width: 1200px) {

	.testimonials {
		padding: 150px 0 170px;
	}

	.testimonials-wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.testimonials-tabs {
		display: block;
		width: 486px;
		padding-right: 30px;
		position: relative;
		z-index: 1;
	}

	.testimonials-tabs::before {
		content: '';
		position: absolute;
		right: 0;
		top: -50px;
		width: 462px;
		height: 590px;
		background-image: url(../image/testimonials-lisg-bg-image.png);
		background-repeat: no-repeat;
		background-size: 100% 100%;
		z-index: -1;
	}

	.testimonials-tab_container {
		width: calc(100% - 486px);
		padding: 0 0px 0 50px;
	}

	.tab_drawer_heading {
		display: none;
	}

	.testimonials-list-item {
		margin-bottom: 20px;
		padding: 26px 28px;
		cursor: pointer;
	}

	.testimonials-tabs li.active .testimonials-list-item {
		box-shadow: 2px 9px 10px rgba(125, 206, 132, 0.30);
	}

	.testimonials-tabs li:last-child .testimonials-list-item {
		margin-bottom: 0;
	}

	.testimonial-tab-content {
		padding: 0 0;
		background: transparent;
	}

	.testimonials .heading-for-all {
		padding: 0px 0px 90px;
	}

	.testimonial-tab-content p {
		font-size: 16px;
		padding: 0 0 20px;
	}

	.testimonial-author-content p {
		font-size: 12px;
		padding: 0;
	}

	.testimonial-author {
		margin: 10px 0 25px;
	}
}

/* testimonial end */


/* gallery */

.gallery-section {
	padding: 50px 0;
}

.cd-main-content {
	position: relative;
}

.gallery_menu_area {
	position: relative;
	width: 100%;
	margin: 0 auto;
	z-index: 1;
}

.gallery_menu_area ul {
	margin: 0;
	padding: 0;
	height: 50px;
	position: relative;
	background-color: #FD226A;
}

.gallery_menu_area ul::after {
	content: '\f078';
	font-family: 'fontawesome';
	position: absolute;
	top: 18px;
	right: 20px;
	font-size: 10px;
	color: #fff;
}

.gallery_menu li {
	display: none;
}

.gallery_menu li a {
	width: 100%;
	height: 51px;
	display: flex;
	text-align: left;
	background-color: #00398D;
	align-items: center;
	padding: 0 29px;
	font-size: 19px;
	color: #fff;
}

.gallery_menu li:first-child {
	display: block;
}

.gallery_menu_area a.selected {
	color: #ffffff;
	opacity: 1;
}

.placeholder {
	background-color: transparent;
}

.gallery_menu li.placeholder {
	opacity: 1;
}

.gallery_menu_area.is-open ul li {
	display: block;
}

.gallery_menu_area.is-open .placeholder a {
	opacity: .4;
}

.gallery_menu li {
	display: inline-block;
}

.gallery_menu li.placeholder {
	display: none !important;
}

.gallery {
	margin-top: 30px;
}

.gallery ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
}

.gallery li {
	width: 50%;
	display: none;
	padding: 0 5px;
	margin: 0 0 10px;
}

.wrap-all-cards {
	overflow: hidden;
	position: relative;
	border-radius: 20px;
	background: beige;
	display: flex;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.10);
	align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery li.gap {
	opacity: 0;
	height: 0;
	display: inline-block;
}

.gallery img {
	display: block;
	width: 100%;
	height: 240px;
	object-fit: contain;
	transition: all 0.3s ease-in-out;
	scale: 1;
}

.gallery-image-text {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
    justify-content: center;
    padding: 11px 10px 10px;
	background: linear-gradient(0deg, rgba(0,129,99,1) 0%, rgba(0,70,134,1) 61%, rgba(0,57,141,1) 74%);
	border-radius: 10px 10px 0 0;
	opacity: 0;
}

.gallery-image-text i {
	font-size: 34px;
	color: #ffffff;
}

.gallery-image-text h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #A5BDDD;
}

.gallery-image-text h3 {
	color: #FFFFFF;
	font-size: 15px;
	display: none;
}

.gallery li:hover .gallery-image-text {
	opacity: 1;
	bottom: 0px;
}
.gallery li:hover img{
    scale: 1.2;
}


.gallery-section-btn {
	text-align: center;
	margin-top: 25px;
}

@media(min-width: 768px) {

	.gallery_menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.gallery_menu_area ul::after {
		display: none;
	}

	.gallery_menu_area ul {
		height: auto;
		background-color: transparent;
	}

	.gallery_menu li  {
		border-bottom: 1px solid #EEEEEE;
	}

	.gallery_menu li a {
		height: 41px;
		display: flex;
		text-align: left;
		text-transform: uppercase;
		background: #FFF;
		align-items: center;
		color: #545454;
		padding: 0 0px;
		margin: 0 10px;
		font-size: 15px;
		border-radius: 0px;
		position: relative;
	}

	.gallery_menu li a::before {
		content: '';
		position: absolute;
		bottom: -1px;
		left: -10px;
		width: 0%;
		height: 3px;
		background-color: #00398D;
		transition: all 0.3s ease-in-out;
	}

	.gallery_menu li a.selected {
	    font-weight: 800;
		color: #00398D;
	}

	.gallery_menu li a.selected::before {
		width: 100%;
	}

	.gallery li {
		width: 33.33%;
	}

	.gallery-section {
		padding: 70px 0;
	}
}

@media(min-width: 1200px) {

	.gallery-section {
		padding: 70px 0 120px;
	}

	.gallery ul {
		margin: 0 -10px;
	}

	.gallery li {
		height: 235px;
		padding: 0 10px;
		margin-bottom: 20px;
	}

	.gallery {
		margin-top: 30px;
	}

	.gallery-image-text p,
	.gallery-image-text h4 {
		display: block;
	}

	.gallery-image-text {
		padding: 24px 40px;
		border-radius: 20px 20px 0 0;
		bottom: -100%;
	}

	.gallery_menu li a {
		font-size: 16px;
	}

	.gallery-image-text h3 {
		font-size: 16px;
		display: block;
	}

	.gallery-image-text h4 {
		padding: 0 0 5px;
	}

	.gallery li:hover .gallery-image-text {
		bottom: 0;
	}

	.gallery-section .heading-for-all {
		padding: 0 0 35px;
	}
}


@media screen and (min-width :300px) and (max-width:767px) {
	.gallery_menu li {
		display: none
	}

	.gallery_menu.is-open li {
		display: block
	}

	.gallery_menu li.placeholder {
		display: block !important;
	}
}

/* gallery end */


/* footer */

.page-footer {
	background-color: #00398D;
	padding: 30px 0 0;
	position: relative;
}

.footer-logo {
	margin-bottom: 17px;
}

.page-footer h4 {
	font-size: 16px;
	color: #ffffff;
	line-height: 16px;
	padding: 0 0 10px;
	font-weight: 600;
}

.footer-links {
	margin-top: 20px;
}

.footer-links ul li a {
	display: inline-block;
	font-size: 16px;
    color: #C7D2E2;
	line-height: 16px;
}

.footer-social {
	margin-top: 20px;
}

.footer-col-logo p {
	font-size: 16px;
	padding: 10px 0 0;
	color: #ffffff;
}

.footer-social ul {
	display: flex;
}

.footer-social ul li a {
	color: #FFFFFF;
	display: inline-block;
	margin-right: 8px;
}

.footer-bottom {
	border-top: 1px solid #285CA8;
	padding: 8px 0;
	text-align: center;
	margin-top: 15px;
}

.footer-bottom p {
	font-size: 16px;
	color: #8DAAD4;
}

.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 22px;
    z-index: 9999;
    width: 30px;
}

@media(min-width: 768px) {

	.footer-top {
		display: flex;
		flex-wrap: wrap;
	}

	.footer-social,
	.footer-links,
	.footer-col-logo {
		width: 50%;
	}
}

@media(min-width: 1200px) {

	.page-footer::before {
		content: '';
		position: absolute;
		top: -226px;
		left: 0;
		width: 100%;
		height: 226px;
		background-color: #00398D;
		z-index: -1;
	}

	.footer-top {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 48px 0;
		position: relative;
	}

	.footer-social,
	.footer-links {
		width: max-content;
		margin: 0;
	}

	.footer-col-logo {
		width: 278px;
		z-index: 2;
	}

	.page-footer {
		padding: 0px 0 0;
	}

	.footer-bottom {
		margin-top: 0px;
	}

	.footer-social ul li a:hover,
	.footer-links ul li a:hover {
		color: #68F076;
	}

	.back-to-top {
		bottom: 50px;
		right: 50px;
		width: auto;
	}

	.footer-social,
	.footer-links {
		margin-top: 10px;
	}

	.footer-top::before {
		content: '';
		position: absolute;
		width: 257px;
		height: 257px;
		background-color: #043E94;
		border-radius: 50%;
		top: -210px;
		right: 0px;
		z-index: 1;
	}

	.footer-top::after {
		content: '';
		position: absolute;
		width: 257px;
		height: 257px;
		background-color: #043E94;
		border-radius: 50%;
		top: -103px;
		left: -140px;
		z-index: 1;
	}
	
}

/* footer end */


/* text-form */

.text-form {
	padding: 55px 0 0;
	position: relative;
	z-index: 2;
	background-color: #00398D;
}

.text-form-wrap {
	position: relative;
}

.text-form-wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #68F076;
	border-bottom: 6px solid #fff;
	border-radius: 20px;
	z-index: -1;
}

.text-form-image {
	padding: 0 22px;
}

.text-form-form h5 {
	color: #D9FFDD;
}

.text-form-form .heading-for-all {
	padding: 0 0 10px;
}

.text-form-form {
	padding: 20px 22px;
}

.formm-col {
	margin-top: 10px;
}

.text-form-wrap > .row {
	flex-direction: column-reverse;
}

.text-form-form .heading-for-all h2 {
	font-weight: 700;
}

.small-right-form,
.small-left-form {
	display: none;
}

@media(min-width: 1200px) {

	.text-form {
		background-color: transparent;
	}

	.text-form-form {
		padding: 0px 0 43px;
		margin-top: 90px;
		padding-right: 60px;
	}

	.text-form-image {
		padding-left: 74px;
	}

	.text-form-image img {
		margin-bottom: 6px;
	}

	.text-right {
		text-align: right;
	}

	.text-form-wrap .row {
		align-items: end;
	}

	.text-form-form .heading-for-all {
		padding: 0;
	}

	.text-form-wrap > .row {
		flex-direction: row;
	}

	.text-form-wrap::after {
		height: calc(100% - 50px);
	}

	.text-form-form h5 {
		padding: 0 0 7px;
	}

	.small-left-form {
		display: block;
		position: absolute;
		top: 204px;
		left: -30px;
	}

	.small-right-form {
		display: block;
		position: absolute;
		top: 100px;
		right: -30px;
	}

}

/* text-form end */

/* icon-cards */

.icon-cards {
	padding: 50px 0 0;
}

.icon-cards-row {
	background-color: #FAFCFF;
	padding: 0px 22px;
	border-radius: 20px;
}

.icon-card-link {
	display: flex;
	width: 100%;
	flex-direction: column;
	border-bottom: 1px solid #BDD8FF;
	padding: 30px 0;
}

.icon-card-link:last-child {
	border-bottom: none;
}

.icon-card-info h4 {
	font-size: 16px;
	line-height: 16px;
	padding: 0 0 7px;
	color: #393939;
	text-transform: uppercase;
}

.icon-card-info p {
	color: #464646;
	font-size: 12px;
}

.icon-card-info {
	margin-top: 17px;
	position: relative;
}

.icon-card-info img {
	position: absolute;
    top: -10px;
	right: 0;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.icon-card-link:hover .icon-card-info img {
	opacity: 1;
	top: -40px;
}

.round-icon-left ,
.round-icon-right {
	display: none;
}

@media(min-width: 768px) {

	.icon-cards-row {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		padding: 22px;
	}

	.icon-card-link {
		padding: 30px 22px;
		width: 50%;
	}

	.icon-card-link:nth-child(2n) {
		border-left: 1px solid #BDD8FF;
	}

	:nth-last-child(-n+2 of .icon-card-link) {
		border-bottom: none !important;
	}

}

@media(min-width: 1200px) {

	.icon-cards {
		padding: 0px 0px 0;
	}

	.icon-card-link:nth-child(2n) {
		border-left: none;
	}

	.icon-cards-row {
		justify-content: center;
		padding: 50px;
	}

	.icon-card-link {
		padding: 30px 22px;
		width: 25%;
		border: none;
		border-bottom: 1px solid #BDD8FF;
		border-right: 1px solid #BDD8FF;
		position: relative;
		z-index: 1;
		transition: all 0.3s ease-in-out;
	}

	:nth-child(-n+4 of .icon-card-link) {
		padding-top: 0;
	}

	:nth-last-child(-n+4 of .icon-card-link) {
		padding-bottom: 0;
		border-bottom: none !important;
	}

	.icon-card-link:nth-child(4n) {
		border-right: none !important;
	}

	.icon-card-link::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translate(-50% , 0);
		width: calc(100% + 1px);
		transition: all 0.3s ease-in-out;
		height: calc(100% + 1px);
		background-color: #ffffff;
		border: 1px solid #00398D;
		opacity: 0;
		z-index: -1;
	}

	.icon-card-link:hover::after {
		opacity: 1;
	}

	.icon-card-link:nth-child(-n+4)::after {
		bottom: -1px;
	}

	.icon-card-link:nth-last-child(-n+4)::after {
		bottom: unset;
		top: 0;
	}

	.icon-card-link:nth-child(-n+4):hover::after {
		height: calc(100% + 40px);
		border-radius: 20px 20px 0 0;
	}

	.icon-card-link:nth-last-child(-n+4):hover::after {
		height: calc(100% + 40px);
		border-radius: 0 0 20px 20px;
		bottom: unset;
		top: 0;
	}

	.icon-cards .heading-for-all {
		padding: 0 0 50px;
	}

	.round-icon-left ,
	.round-icon-right {
		display: block;
	}

	.round-icon-images {
		width: 100%;
		position: relative;
	}

	.round-icon-left {
		position: absolute;
		bottom: 19px;
		left: -23px;
	}

	.round-icon-right {
		position: absolute;
		top: 19px;
		right: -23px;
	}
}
/* icon-cards end */

/* privacy */
.content_text{
    width: 100%;
    padding-block: 140px 0px;
}
.inner_content_text{
    width: 100%;
    margin-block-start: 40px;
}

.content_text h3{
    margin-block-start: 10px;
    margin-block-end: 20px;
}
.content_text ul{
    padding-inline-start: 20px;
    margin-block-end: 20px;
}
.content_text ul li{
    list-style: disc;
    margin-top: 6px;
}
/* privacy */

/* image-text */

.image-text {
	padding: 50px 0;
}

.image-text-content-wrap {
	background-color: #00398D;
	padding: 30px 22px;
}

.image-text-content h5 {
	color: #93BEFF;
}

.image-text-content h2 {
	color: #FFFFFF;
	padding: 0 0 20px;
}

.image-text-content h2 span {
	color: #68F076;
}

.image-text-content p {
	color: #D2D2D2;
}

.image-text-round-image {
	display: none;
}

.image-text-content-wrap-btns .btn-primary {
	box-shadow: 0px 0px 0px 1px #ffffff;
	margin-left: 20px;
}

@media(min-width: 768px) {
	.image-text-content-wrap {
		padding: 52px;
	}
}

@media(min-width: 1200px) {

	.image-text {
		padding: 120px 0px;
	}

	.image-text-wrap {
		width: 100%;
		display: flex;
		align-items: end;
	}
	
	.image-text-image {
		width: calc(100% - 252px);
		position: relative;
	}

	.image-text-image > img {
		border-radius: 20px;
	}

	.image-text-content {
		width: 252px;
	}

	.image-text-content-wrap {
		width: calc(100% + 256px);
		margin-left: -256px;
		border-radius: 20px;
		padding: 80px 50px;
		position: relative;
		z-index: 2;
		margin-bottom: -85px;
	}

	.image-text-content p {
		font-size: 16px;
	}

	.image-text-content h2 {
		padding: 0 0 25px;
	}

	.image-text-round-image {
		display: block;
		position: absolute;
		bottom: -25px;
		left: -12px;
	}

	.inner-image-text .image-text-wrap {
		flex-wrap: wrap;
	}

	.inner-image-text .image-text-image {
		width: calc(100%);
		height: 566px;
	}

	.inner-image-text .image-text-content {
		width: 100%;
		padding: 0 45px;
		margin-top: -169px;
	}

	.inner-image-text .image-text-content-wrap {
		width: calc(100%);
		margin-left: 0;
		position: relative;
		z-index: 2;
		margin-bottom: 0px;
	}

	.inner-image-text {
		padding: 0px 0px 40px;
	}
}
/* image-text end */


/* header */

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
  }
  
  .page-header {
	padding: 15px 0;
	width: 100%;
	position: fixed;
	transition: all 0.3s ease-in-out;
	top: 0;
	left: 0;
	z-index: 999;
  }
  
  .page-header.active {
	background: #FFF;
	box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.05); 
  }
  
  .header__wrap  {
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
  
  .header__wrap .logo {
	width: 200px;
  }
  
  .header-right {
	display: block;
	width: 300px;
	position: fixed;
	right: -100%;
	opacity: 0;
	top: 0px;
	transition: all 0.3s ease-in-out;
	height: 100%;
	background-color: #fff;
	padding: 84px 29px 20px;
	box-shadow: -20px 3px 28px 0px #0000000f;
  }
  
  .header-right.active {
	right: 0;
	opacity: 1;
  }
  
  .nav-primary ul li {
	line-height: 1em;
	text-align: right;
	margin: 0 0 15px;
  }
  
  .nav-primary ul li a {
	display: inline-block;
	color: #000; 
	text-transform: uppercase;
	letter-spacing: 0.32px; 
	font-size: 14px; 
	font-weight: 500;
  }
  
  .header-social-icon {
	margin-top: 50px;
  }
  
  .header-social-icon ul {
	display: flex;
	align-items: center;
	justify-content: end;
  }
  
  .header-social-icon ul li a {
	display: inline-block;
	font-size: 15px;
	color: #2C2847;
	margin-left: 15px;
  }
  
  /* toggle-menu */
  
  .toggle-menu {
	width: 30px;
	height: 25px;
	position: relative;
	transition: .5s ease-in-out;
	cursor: pointer;
  }
  
  .toggle-menu span {
	display: block;
	position: absolute;
	height: 3px;
	width: 50%;
	background: #000;
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
  }
  
  .toggle-menu span:nth-child(even) {
	left: 50%;
	border-radius: 0 9px 9px 0;
  }
  
  .toggle-menu span:nth-child(odd) {
	left:0px;
	border-radius: 9px 0 0 9px;
  }
  
  .toggle-menu span:nth-child(1), .toggle-menu span:nth-child(2) {
	top: 0px;
  }
  
  .toggle-menu span:nth-child(3), .toggle-menu span:nth-child(4) {
	top: 11px;
  }
  
  .toggle-menu span:nth-child(5), .toggle-menu span:nth-child(6) {
	top: 22px;
  }
  
  .toggle-menu.open span:nth-child(1),.toggle-menu.open span:nth-child(6) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
  }
  
  .toggle-menu.open span:nth-child(2),.toggle-menu.open span:nth-child(5) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
  }
  
  .toggle-menu.open span:nth-child(1) {
	left: 5px;
	top: 8px;
  }
  
  .toggle-menu.open span:nth-child(2) {
	left: calc(50% - 5px);
	top: 8px;
  }
  
  .toggle-menu.open span:nth-child(3) {
	left: -50%;
	opacity: 0;
  }
  
  .toggle-menu.open span:nth-child(4) {
	left: 100%;
	opacity: 0;
  }
  
  .toggle-menu.open span:nth-child(5) {
	left: 5px;
	top: 13px;
  }
  
  .toggle-menu.open span:nth-child(6) {
	left: calc(50% - 5px);
	top: 13px;
  }

  .header-right-btn {
	text-align: right;
	margin-top: 40px;
  }
  
  @media(min-width: 768px) {
	.page-header {
	  padding: 20px 0;
	}
  
	.header__wrap .logo {
	  width: 220px;
	}
  
	.header-right {
	  top: 0px;
	  padding: 150px 45px 30px;
	}
  }
  
  @media(min-width: 1200px) {
  
	.page-header {
	  padding: 0px 0;
	}
	
	.header-right-btn {
		margin-top: 0;
	}

	.toggle-menu {
	  display: none;
	}
  
	.header__wrap .logo {
	  width: 200px;
	}
  
	.header-right {
	  width: calc(100% - 200px);
	  position: relative;
	  right: 0%;
	  opacity: 1;
	  top: 0;
	  height: auto;
	  padding: 0;
	  background-color: transparent;
	  box-shadow: none;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  padding-left: 70px;
	}
  
	.nav-primary {
	  display: flex;
	  width: 100%;
	  justify-content: space-between;
	  align-items: center;
	}
  
	.nav-primary ul {
	  display: flex;
	  margin: 0;
	  padding: 36px 0;
	}
  
	.nav-primary ul li {
	  text-align: center;
	  overflow: hidden;
	  position: relative;
	  z-index: 1;
	  margin: 0;
	}
  
	.nav-primary ul li.active a {
	  color: #00398D;
	}
  
	.header-social-icon {
	  margin-top: 0px;
	}
  
	.nav-primary ul li a {
	  font-size: 16px;
	  margin: 0 25px;
	  padding: 8px 0;
	  font-weight: 600;
	  position: relative;
	  transform: translate(0 , 25px);
	}
  
	.nav-primary ul li a::before {
	  content: attr(data-text);
	  position: absolute;
	  top: -16px;
	  left: 50%;
	  transform: translate(-50%, 0%);
	  width: max-content;
	  transition: all 0.3s ease-in-out;
	}
  
	.nav-primary ul li a:hover {
	  transform: translate(0 , 0px);
	}
  
	.nav-primary ul li a:hover::before {
	  opacity: 0;
	}
  
	.header-social-icon ul li a:hover,
	.nav-primary ul li a:hover {
	  color: #00398D;
	}
  
	.nav-primary ul li.active::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50% , -50%);
		background-color: #CCFFD1;
		width: calc(100% - 20px);
		height: calc(100% + 5px);
		border-radius: 38px;
		z-index: -1;
	}	
	
  }

  
/* banner */

.banner {
	position: relative;
	z-index: 1;
  }
  
  .home-banner {
	padding: 120px 0 20px;
  }
  
  .banner-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	object-fit: cover;
	z-index: -1;
  }
  
  .content-banner h1 {
	color: #292929; 
	font-weight: 800; 
	margin: 0;
	font-size: 35px;
	padding: 0 0 13px;
	line-height: 1.12em;
  }

  .content-banner h1 span {
	color: #00398D;
  }
  
  .content-banner p {
	margin: 0;
	padding: 0 0 20px;
	font-weight: 500;
	color: #2C2C2C;
  }
  
  .banner-image {
	margin-top: 25px;
  }

  .social-icon-banner {
	margin-top: 20px;
  }

  .social-icon-banner p {
	padding-bottom: 8px;
  }

  .social-icon-banner ul {
	display: flex;
	align-items: center;
  }

  .image-text-content-wrap-btns {
	margin-top: 25px;
  }

  .social-icon-banner ul li a {
	display: inline-block;
	font-size: 18px;
	margin-right: 10px;
	color: #00398D;
  }
  
  @media(min-width: 768px) {
	.home-banner {
	  padding: 140px 0 60px;
	}
  }
  
  @media(min-width: 1200px) {
  
	.home-banner {
	  padding: 105px 0 150px;
	}
  
	.content-banner h1 {
	  font-size: 48px;
	  line-height: 59px;
	  padding: 0 0 24px;
	}
  
	.content-banner p {
	  font-size: 16px; 
	  padding: 0 0 35px;
	}
  
	.home-banner .row {
	  align-items: center;
	}
  
	.banner-image img {
		max-height: 588px;
		object-fit: contain;
	}

	.banner-image {
		width: 100%;
		max-width: 457px;
		margin: 0 0 0 auto;
	}

	.content-banner {
		padding-right: 52px;
	}

	.social-icon-banner {
		margin-top: 30px;
	}

	.social-icon-banner p {
		padding-bottom: 12px;
		font-weight: 600;
	}

	.social-icon-banner ul li a {
		font-size: 20px;
		margin-right: 15px;
	}

	.social-icon-banner ul li a:hover {
		color: #68F076;
	}
  
  }

  
  /* banner end */

  
/* contact-page */

.map-address {
	margin-top: 50px;
}

.contact-address-item {
	margin-bottom: 20px;
}

.contact-address-col {
	display: flex;
	flex-direction: column;
    background-color: #f0f3f342;
	border: 1px solid;
    border-radius: 4px;
    border-image-slice: 1;
    border-image-source: linear-gradient(31deg, rgba(255,255,255,1) 0%, rgba(165,201,255,1) 58%);
	padding: 22px;
}

.contact-address-col h4 {
	color: #000000;
	font-size: 18px;
	font-weight: 600;
	margin-top: 13px;
}

.contact-address-item p {
	font-size: 16px;
	font-weight: 400;
	padding: 10px 0 0;
	color: #2C2C2C;
}

.map-wrap {
	height: 250px;
	border: 5px solid #00388D;
}

.map-wrap iframe {
	width: 100%;
	height: 100%;
}

.map-address {
	padding: 50px 0;
	position: relative;
	background-color: #FFFFFF;
	z-index: 1;
}

@media(min-width: 768px) {
	.contact-address-col {
		flex-direction: row;
		align-items: center;
	}

	.contact-address-col h4 {
		margin-top: 0px;
		padding-left: 15px;
	}

	.contact-address-item p {
		padding: 20px 0 0;
	}
	
}

@media(min-width: 1200px) {
	.contact-address-item {
		margin-bottom: 0px;
	}

	.map-wrap {
		height: 600px;
		position: relative;
	}


	.map-address {
		padding: 80px 0;
		margin-top: 0px;
	}

	.map-address::after {
		clip-path: polygon(0 25%, 100% 0%, 100% 75%, 0% 100%);
	}

	.map-wrap::before {
		content: '';
		position: absolute;
		top: -51px;
		left: 3px;
		width: 36px;
		height: 92px;
		background-image: url(../image/cards-icon-dots.png);
		background-repeat: no-repeat;
		background-size: 100% 100%;
		transform: rotate(90deg);
		z-index: -1;
	  }

	  .map-address .heading-for-all {
		padding-bottom: 30px;
	  }
	
}

/* contact-page end*/

/* services */

.services {
	padding: 0 0 40px;
}

.service-card-link {
	display: flex;
	flex-direction: column;
	background-color: #FAFCFF;
	border: 1px solid #BDD8FF;
	border-radius: 20px;
	padding: 30px 22px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.service-card-link::before {
	content: '';
	position: absolute;
	top: 33px;
	right: -40px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-color: #F1F7FF;
	z-index: -1;
}

.service-card-image {
	height: 50px;
	margin-bottom: 15px;
}

.service-card-image img {
	height: 100%;
}

.service-card-info h4 {
	text-transform: uppercase;
	font-size: 18px;
	line-height: 1em;
	color: #000000;
	padding: 0 0 10px;
}

.service-card-info p {
	color: #2C2C2C;
}

.service-card-info ul {
	display: flex;
	flex-wrap: wrap;
}

.service-card-info ul li {
	font-weight: 700;
	color: #737373;
	padding: 0 10px;
	line-height: 1em;
	position: relative;
}

.service-card-info ul li::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #737373;
}

.service-card-info ul li:first-child {
	padding-left: 0;
}

.service-card-info ul li:last-child:before {
	display: none;
}

.service-card-info-btn {
	padding: 15px 0 0;
	text-align: right;
}

.service-card-info-btn .btn {
	box-shadow: none;
	border: 1px solid #00398D;
}

.service-card-info-btn .btn:hover {
	background: #00398D;
	color: #ffffff;
}

.service-card-info-btn .btn:hover::before {
	display: none;
}

.service-card-link:hover .btn {
	background: #00398D;
	color: #ffffff;
}

.service-card-link:hover {
	box-shadow: 4px 9px 26px rgba(137, 181, 245, 0.46);
}

.service-item {
	margin-top: 15px;
}

@media(min-width: 768px) {
	.heading-for-all {
		padding: 0 0 30px;
	}

	.services {
		padding: 0 0 60px;
	}
}

@media(min-width: 1200px) {

	.services {
		padding: 0 0 80px;
	}

	.heading-for-all {
		padding: 0 0 30px;
	}

	.service-card-link {
		padding: 50px;
	}

	.service-card-info h4 {
		text-transform: uppercase;
		font-size: 24px;
	}

	.service-card-info ul li {
		font-size: 16px;
	}

	.service-card-info p {
		font-size: 16px;
	}

	.service-item {
		margin-top: 25px;
	}

	.service-item:nth-child(2n) {
		margin-top: 0;
	}
}

/* services end */

.inner-gallery-section .gallery li {
	width: 100%;
	margin: 0 0 20px;
	height: auto;
}

.project-image-text {
	background-color: #F8FAFE;
	padding: 22px;
	border: 1px solid #00398D57;
	border-radius: 20px;
	transition: all 0.3s ease-in-out;
}

.project-image-text-content h4 {
	color: #00398D;
	font-weight: 800;
	font-size: 18px;
	padding: 0 0 10px;
}

.website-skills-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -5px;
}

.website-skills-list p {
	font-size: 12px;
	color: #818181;
	background-color: #FFFFFF;
	border-radius: 10px;
	border: 1px solid #00388d48;
	padding: 4px 13px 5px;
	margin: 5px;
}

.project-image-text-info {
	padding: 10px 0 0;
}

.project-image-text-info h3 {
	font-size: 18px;
	color: #00398D;
	font-weight: 600;
	padding: 0 0 5px;
}

.project-image-text-info > p {
	font-size: 12px;
	color: #2C2C2C;
	padding: 0;
}

.project-image-text-info-list {
	padding: 15px 0 10px;
}

.project-image-text-info-list p {
	padding: 0 0 0 20px;
	font-weight: 600;
	color: #4A4A4A;
	font-size: 14px;
	line-height: 1em;
	position: relative;
	margin: 0 0 10px;
}

.project-image-text-info-list p::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 11px;
	height: 11px;
	background-color: #4EF25F;
	border-radius: 50%;
}

.project-image-text > .row {
	flex-direction: column-reverse;
}

.project-image-text-content {
	padding: 20px 0 0;
}

@media(min-width: 1200px) {
	.project-image-text > .row {
		flex-direction: row;
	}

	.project-image-text {
		padding: 40px;
	}

	.project-image-text-content {
		padding: 0px;
	}

	.project-image-text-info-list {
		padding: 15px 0 30px;
		column-count: 2;
	}

	.project-image-text-info h3 {
		padding: 0 0 11px;
	  }

	  .project-image-text:hover {
		border-color: #00398D;
	  }

	  .inner-gallery-section {
		padding: 0px 0 120px;
	  }
}

.banner-mobile-none {
	display: none;
}

@media(min-width: 1200px) {

	.banner-mobile-none {
		display: block;
	}

	.banner-animation {
		animation: banner 10s linear infinite alternate;
	}

	@-webkit-keyframes banner {
		from {
			opacity: 1;
		}
		to {
			opacity: 0;
		}
	  }

	.round-icon-left-animation {
		animation: my2move 13s linear infinite alternate;
	}

	@-webkit-keyframes my2move {
		from {
		  transform: rotate(0deg);
		}
		to {
			transform: rotate(-180deg);
		}
	  }

	.round-icon-right-animation {
		animation: mymove 13s linear infinite alternate;
	}

	@-webkit-keyframes mymove {
		from {
		  transform: rotate(0deg);
		}
		to {
			transform: rotate(180deg);
		}
	  }
}