/* :root {
    --color-primary: #2F5AA8;
    --color-secondary: #00dbb0;
    --text-color: #1f2531;
    --para-color: #797e89;
    --third-color: #00bbee;
    --font-title: "Inter", sans-serif;
    --font-content: "Nunito", sans-serif;
    --special-text: "Roboto", sans-serif;
  } */
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    color: var(--text-color);
	position: relative;
}

/* Loader styles */
.loader-wrapper {
	position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(250 249 249 / 97%);
    z-index: 1999;
}

.wrapperanimate{
    width:200px;
    height:80px;
    position: fixed;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
	text-align: center;
	z-index: 99;
}
.wrapperanimate img {
	width: 150px;
    height: 150px;
    object-fit: cover;
}

.circle{
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background-color: var(--third-color);
    left:15%;
    transform-origin: 50%;
    animation: circle 0.6s alternate infinite ease;
}

@keyframes circle{
    0%{
        top:60px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40%{
        height:20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top:0%;
    }
}
.circle:nth-child(2){
    left:45%;
    animation-delay: .2s;
}
.circle:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.shadow{
    width:20px;
    height:4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top:62px;
    transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow{
    0%{
        transform: scaleX(1.5);
    }
    40%{
        transform: scaleX(1);
        opacity: .7;
    }
    100%{
        transform: scaleX(.2);
        opacity: .4;
    }
}
.shadow:nth-child(4){
    left: 45%;
    animation-delay: .2s
}
.shadow:nth-child(5){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.wrapperanimate span{
    position: absolute;
    top:85px;
    font-family: var(--primary-font);
    font-size: 20px;
    letter-spacing: 12px;
    color: #000;
    left:15%;
}


/* header */
.main-header {
    font-family: var(--font-title);
    background-color: transparent;
    position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1030;
    transition: all 0.3s ease-in-out ;
}

.main-header.fixed-header {
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(2, 59, 109, 0.1);
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 100px;
	display: inline-block;
	flex-shrink: 0;
}

.navbar-brand img {
    width: 100%;
	height: auto;
}

/* .navbar-nav {
    align-items: center;
} */
/* .navbar-nav {
	flex-direction: row;
} */

.offcanvas-header {
	padding: 20px 50px; 
}

.offcanvas-body {
	padding: 50px;
}

.nav-item {
    font-weight: 500;
    font-size: 16px;
	font-family: var(--primary-font);
}

.navbar-nav .nav-link {
	display: inline-block;
    position: relative;
	margin: 0 5px;
    color: #fff;
	transition: 0.3s;
	font-size:14px;
}

.page-template-homepage-template .navbar-nav .nav-link {
	color: var(--text-color);
}
.single-industry .navbar-nav .nav-link {
	color: var(--text-color);
}

.navbar-nav .nav-link.active {
    color: #fff;
}

.homepage-header .navbar-menu-icon .iconline {
    background-color: var(--text-color);
}

.fixed-header .navbar-nav .nav-link {
	 color: var(--text-color);
}

.fixed-header .navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

.nav-link::before {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    margin: 0 auto;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 10px;
    transition: 0.3s;
}

.fixed-header .navbar-nav .nav-link::before {
    background-color: var(--color-primary);
}

.navbar-nav .nav-link:hover {
	color: var(--color-primary);
}

.nav-link.active::before {
    width: calc(100% - 16px);
}

.fixed-header .navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.navbar-nav .nav-link:hover.nav-link::before {
    width: calc(100% - 16px);
}

.main-btn {
	flex-shrink: 0;
}
.main-btn a {
    font-family: var(--primary-font);
    display: inline-block;
    background-color: var(--color-secondary);
    background-image: linear-gradient(70deg, var(--color-secondary) 50%, var(--color-primary) 50%);
    background-position: 100% 0;
    background-size: 230% 100%;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 7px 8px;
    border-radius: 8px 8px 8px 0;
    transition: all 0.4s cubic-bezier(.3,1,.8,1);
}

.main-btn a.button-primary {
	background-image: linear-gradient(70deg, var(--color-secondary) 50%, var(--color-primary) 50%);
	border: 1px solid var(--color-primary);
}
.main-btn a.button-secondary {
	background-image: linear-gradient(70deg, var(--color-primary) 50%, var(--color-secondary) 50%);
	border: 1px solid var(--color-secondary);
}
.main-btn a:hover {
    background-position: 0 0;
}

/* .navbar .main-btn {
	margin-top: 20px;
} */

#offcanvasNavbar {
	--bs-offcanvas-width: 50%;
}

.navbar-toggler {
    border: none;
    outline: none;
    padding: 4px;
}

.navbar-menu-icon {
	display: inline-block;
    width: 20px;
}

.navbar-menu-icon .iconline {
	width: 100%;
	height: 3px;
	border-radius: 5px;
	background-color: #fff;
}

.navbar-menu-icon .iconline2 {
	margin: 5px 0;
	position: relative;
	right: -7px;
	transition: 0.5s;
}

.navbar-menu-icon:hover .iconline2 {
	right: 0;
}

.fixed-header .navbar-menu-icon .iconline {
    background-color: var(--text-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-close {
    opacity: 0.8;
	background-color: var(--color-secondary);
}

/* navbar submenu */
.menu-item.dropdown::after {
  content: '';
  position: absolute;
  top: 100%; 
  left: 0;
  width: 100%;
  height: 50px; 
}
.menu-item.dropdown:hover .dropdown-menu,
.menu-item.dropdown:hover::after {
  display: block;
}

.navbar-nav .dropdown-menu {
    padding: 15px;
    background: #fff;
    border: 1px solid #a7becb;
	border-radius: 20px 20px 20px 0;
	position: absolute;
	top: 68px;
	min-width: 300px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-menu .nav-item {
	font-size: 16px;
	font-weight: 500;
}

.navbar-nav .dropdown-menu .nav-item .nav-link {
	color: var(--text-color);
}
.navbar-nav .dropdown-menu .nav-item .nav-link:hover {
	color: var(--color-primary);
}

.navbar-nav .dropdown-menu .nav-link:hover.nav-link::before {
	height: 2px;
}


/* banner section */
.banner-sec {
    display: flex;
    padding: 70px 0;
    min-height: 100vh;
	align-items: center;
    position: relative;
}

/* .banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6) url(../images/hero-bg.webp);
	background-blend-mode: darken;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
} */

.typewriter {
    font-family: var(--primary-font);
    font-size: 65px;
    display: flex;
    align-items: center;
  }

.typewriter #text .main-text {
	color: var(--color-primary);
	font-weight: 500;
}

.typewriter #text .main-text:nth-child(6), .typewriter #text .main-text:nth-child(7), .typewriter #text .main-text:nth-child(8), .typewriter #text .main-text:nth-child(9) {
	color: var(--color-secondary);
}

.typewriter #text .second-text {
	font-weight: 400;
}

.typewriter #text .third-text {
	font-weight: 700;
}
  
  .typewriter #text {
    white-space: pre; /* Preserve whitespace and line breaks */
  }
  
  .cursor {
    border-left: 2px solid #fff;
    margin-left: 2px;
  }

.banner-detail {
	z-index: 1;
}

.banner-detail p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
/* 	color: #fff; */
}

.banner-img {
	animation: move-img 3s linear infinite;
}

@keyframes move-img {
	0% { transform: translateY(0); }
    15% { transform: translateY(-10px); }
    85% { transform: translateY(10px); }
	100% { transform: translateY(0); }
}

.banner-img img {
    width: 100%;
}

.themebg-triangle {
	display: none;
	position: absolute;
	left: 25%;
	top: -85px;
	width: 0;
	height: 0;
	border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 125px solid var(--color-secondary);
	transform: rotate(0deg);
	animation: move-triangle 30s infinite ease-in-out;
}

.themebg-circle {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 90px;
	height: 180px;
	border-top-left-radius: 90px;
	border-bottom-left-radius: 90px;
	background-color: var(--color-primary);
	animation: move-circle 15s infinite ease-in-out;
}

.themebg-rectangle {
	position: absolute;
	left: 0;
	width: 35px;
	height: 240px;
	background-color: var(--third-color);
	animation: move-circle 15s infinite ease-in-out;
}

@keyframes move-triangle {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(90deg);
	}
	50% {
		transform: rotate(180deg);
	}
	75% {
		transform: rotate(270deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes move-circle {
	0% {
		transform: translateY(0);
	}
	25% {
		transform: translatey(-60px)
	}
	50% {
		transform: translateY(0);
	}
	75% {
		transform: translatey(60px)
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes move-rect {
	0% {
    transform: translateX(0px);
	}
	25% {
		transform: translateX(60px);
	}
	50% {
		transform: translateX(0px);
	}
	75% {
		transform: translateX(-60px);
	}
	100% {
		transform: translateX(0px);
	}
}

/* sevices section */
.services {
    display: flex;
    padding: 100px 0;
}

.main-heading {
    display: flex;
    justify-content: center;
}

.main-heading h2 {
    width: 40%;
    font-family: var(--primary-font);
    text-align: center;
    position: relative;
}

.service-subheading {
    font-size: 70px;
    line-height: 1;
    position: absolute;
    font-weight: 800;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #1f2531;
    opacity: 0.3;
    white-space: nowrap;
    padding: 0;
    vertical-align: top;
    left: 0;
    right: 0;
    top: -30px;
}

.heading-text {
    font-size: 42px;
    font-weight: 700;
}

.underlined-text {
    position: relative;
    z-index: 2;
}

.underlined-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 8px; 
    background-color: var(--color-secondary);
    z-index: -1;
}

.service-row {
    margin-top: 70px;
}

.service-box {
    height: 100%;
    padding: 40px 30px;
    border-radius: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 0;
    transition: 0.3s;
}

.service-box1 {
    background-color: rgba(0, 187, 238, 0.07);
}
.service-box2 {
    background-color: #F7F3FD;
}
.service-box3 {
    background-color: #EDFCF9;
}
.service-box4 {
    background-color: rgba(0, 187, 238, 0.07);
}
.service-box5 {
    background-color: #F7F3FD;
}
.service-box6 {
    background-color: #EDFCF9;
}

.service-box:hover {
    box-shadow: 0 18px 43px rgba(0, 0, 0, .05);
    top: -10px;
}

.service-box h3 {
    font-family: var(--primary-font);
    font-size: 28px;
    font-weight: 600;
    text-align: center;
	margin-top: 20px;
}

.service-box p {
    font-family: var(--primary-font);
    color: #797e89;
    text-align: center;
	margin-bottom: 0;
}

.service-img {
    width: 80px;
}

.service-img img {
    width: 100%;
}

.service-btn {
	margin-top: 30px;
}

.service-btn a {
	background-color: var(--color-secondary);
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	padding: 4px 5px;
	border-radius: 5px;
	transition: 0.3s;
}

.service-btn a:hover {
	background-color: var(--third-color);
}

/* about section */
.about {
    display: flex;
    padding: 100px 0;
    background-color: #f2f5fa;
}

.about-img {
    position: relative;
}

.about-img .about-img1 {
    border-radius: 5px 5px 5px 64px;
    width: 100%;
}

.about-img .about-img2 {
    position: absolute;
    bottom: -61px;
    left: 0;
}

.about-detail {
    margin-left: 40px;
}

.about-detail .main-heading {
    justify-content: start;
    margin-bottom: 30px;
}

.about-detail .main-heading h2 {
    width: 100%;
    text-align-last: left;
}

.about-detail p {
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-row2 {
    margin-top: 80px;
}

.about-col3 {
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 18px 43px 15px rgba(0, 0, 0, .05);
}

.about-what-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-what-para {
    margin-bottom: 0;
    font-weight: 500;
}

/* team section */
.team {
    display: flex;
    padding: 100px 0;
    background-color: #f2f5fa;
}
.team-wrapper .service-box {
    padding: 0px 0px 40px 0px;
	border: 1px solid #a7becb;
}

.team-wrapper .team-img {
    width: 100%;
    text-align: center;
    padding: 50px 0px 0px 0px;
}

.team-wrapper .team-img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
	border: 4px solid #2387cd;
}
/* steps section */
.steps {
    display: flex;
    padding: 80px 0 50px;
}

.step-box {
    height: 100%;
    padding: 40px 30px 40px 34px;
    border-radius: 25px 25px 25px 0;
    position: relative;
}

.step-box1 {
    background-color: rgba(0, 187, 238, 0.07);
}

.step-box2 {
    background-color: #F7F3FD;
}

.step-box3 {
    background-color: var(--color-primary);
}

.step-box4 {
    background-color: #EDFCF9;
}

.step-count {
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 700;
}

.step-count1 {
    color: var(--color-secondary);
}
.step-count2 {
    color: #884ee0;
}
.step-count3 {
    color: #fff;
}
.step-count4 {
    color: var(--color-secondary);
}

.step-box3 h3, .step-box.step-box3 p {
    color: #fff;
}

.step-box h3 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 700;
    line-height: 2;
}

.step-box p {
    color: var(--para-color);
    margin-bottom: 0;
}

.step-bg-number {
    font-size: 70px;
    font-family: var(--primary-font);
    color: #fff;
    font-weight: 800;
    position: absolute;
    bottom: -30px;
    right: 25px;
}

.step-box3 .step-bg-number {
    opacity: 0.3;
}

/* creative section */
.creative {
    display: flex;
    padding: 100px 0;
    position: relative;
}

.creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/creative-bg.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.creative-box {
    display: flex;
    justify-content: right;
}

.creative-text {
    font-family: var(--primary-font);
    text-align: right;
    font-size: 130px;
    line-height: 1.2;
    background-image: url('../images/text-bg-2.jpg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    font-weight: 800;
    background-clip: text;
    display: inline-block;
    -webkit-text-fill-color: transparent;
}

/* industries section */
.industries {
	display: flex;
	padding: 80px 0;
}

.industry-row {
	margin-top: 70px;
}

.industry-box {
	height: 100%;
    padding: 40px 30px 50px;
    border-radius: 20px 20px 20px 0;
	position: relative;
}

.industry-box .industry-title {
	font-size: 20px;
	font-family: var(--primary-font);
	font-weight: 700;
	margin-bottom: 15px;
}

.industry-box .industry-detail {
	color: var(--para-color);
	margin-bottom: 0;
}

/* support section */
.support {
    display: flex;
    padding: 100px 0;
    /* background-image: url(../images/support-bg.jpg); */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    color: #fff;
    background: var(--color-primary);
}

.support-overlay {
    width: 100%;
    height: 100%;
    background-color: #293C5F;
    opacity: 0.5;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.support-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.support-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.support-detail p {
    font-size: 20px;
}

.call-icon {
    background-color: #fff;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.call-icon i {
    font-size: 26px;
    color: var(--color-secondary);
}

.support-call {
    font-weight: 700;
}

.support-number {
    font-size: 30px;
    font-family: var(--primary-font);
    font-weight: 700;
	margin-bottom: 20px;
}

/* testimonials section */
.testimonials {
	background-color: #f2f5fa;
    display: flex;
    padding: 80px 0 80px 0;
}

.testimonials .main-heading {
	margin-bottom: 70px;
}

.testimonial-slider .slick-slide {
	padding: 0 10px;
}
.testimonial-box {
	height: 100%;
	background-color: #fff;
	border-radius: 25px 25px 25px 0;
	padding: 40px;
	max-width: 800px;
	margin: 0 auto;
}

/* .testimonial-box.testimonial-box-1711 {
	background-color: var(--color-primary);
	color: #fff;
} */

.author-box {
    display: flex;
	flex-direction: column;
    align-items: start;
	justify-content: center;
    margin-bottom: 20px;
	position: relative;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .testimonial-box.testimonial-box-1711 .author-img {
	transform: scale(1.5);
} */

.author-img img {
    width: 135%;
}

/* .testimonial-box.testimonial-box-1711 .author-info {
	margin-top: 40px;
} */

.author-info {
	margin-top: 10px;
}

.author-name {
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 700;
}

.author-position {
    font-size: 14px;
    color: var(--color-secondary);
    font-weight: 600;
}
.author-box .quote-icon {
	color: var(--color-secondary);
	font-size: 24px;
	position: absolute;
	top: 0;
	right: 0;
}

.author-review p {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.1px;
	font-weight: 500;
	margin-bottom: 0;
}

/* contact section */
.contact {
    display: flex;
    padding: 100px 0;
    margin-bottom: -368px;
}

.contact-box {
    background-color: #fff;
    padding: 85px 140px;
    box-shadow: 0px 8px 57px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.contact-box .contact-row {
    margin: 0 -15px;
}

.contact-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-col {
    padding: 30px;
}

.contact-col p {
    line-height: 1.8;
	font-weight: 500;
}

.contact-services {
	list-style: none;
	padding: 0;
	color: #7a7a7a;
}

.contact-services li {
	margin-bottom: 7px;
}

.contact-services li i {
	font-size: 18px;
	margin-right: 2px;
	color: var(--color-secondary);
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-top: 27px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-text1 {
    font-weight: 600;
    margin-bottom: 7px;
}

.contact-text2 {
    color: var(--para-color);
}

.contact-col.contact-col2 {
	background-color: #e8edf6;
    border-radius: 10px;
}
.message-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.message-form div.wpforms-container-full label {
	font-weight: 500;
}
.message-form .wpforms-container .wpforms-field-row.wpforms-field-medium {
	max-width: 100%;
}
.message-form .wpforms-container .wpforms-field .wpforms-field-row .wpforms-one-half {
	width: 100%;
	padding: 0;
}
.message-form .wpforms-container .wpforms-field .wpforms-field-row .wpforms-one-half:first-child {
	margin-bottom: 15px;
}
.message-form .wpforms-container input.wpforms-field-medium {
	max-width: 100%;
}
.message-form div.wpforms-container-full input[type=text],
.message-form div.wpforms-container-full input[type=email],
.message-form div.wpforms-container-full textarea {
	width: 100%;
    height: 50px;
    background-color: #fff;
    padding: 8px 18px;
    border-radius: 5px;
    outline: none;
    transition: none;
}
.message-form div.wpforms-container-full textarea {
	height: 100px;
}

.message-form div.wpforms-container-full input[type=text]:focus,
.message-form div.wpforms-container-full input[type=email]:focus,
.message-form div.wpforms-container-full textarea:focus {
	background-color: #fff;
	border: 2px solid var(--color-primary);
	box-shadow: none;
}
.message-form div.wpforms-container-full input[type=text]:focus:invalid,
.message-form div.wpforms-container-full input[type=email]:focus:invalid {
	border: 2px solid var(--color-primary);
	box-shadow: none;
}
.message-form div.wpforms-container-full button[type=submit] {
    display: inline-block;
	background: var(--color-secondary) linear-gradient(70deg, var(--color-primary) 50%, var(--color-secondary) 50%) 100% 0 / 230% 100% no-repeat;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 7px 8px;
    border: none;
    line-height: 1.5;
    border-radius: 8px 8px 8px 0;
    transition: all 0.4s cubic-bezier(.3,1,.8,1);
}
.message-form div.wpforms-container-full button[type=submit]:hover {
	background: var(--color-secondary) linear-gradient(70deg, var(--color-primary) 50%, var(--color-secondary) 50%) 0 0 / 230% 100% no-repeat;
}

.message-input {
    margin-top: 20px;
}

.message-input input, .message-input textarea {
    width: 100%;
    height: 50px;
    background-color: #e8edf6;
    border: 2px solid #e8edf6;
    padding: 8px 18px;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

.message-input textarea {
    height: 100px;
}

.message-input input:focus, .message-input textarea:focus {
    background-color: #fff;
}

.message-form .main-btn {
    margin-top: 30px;
}

.wpcf7-form .main-btn p {
    margin-bottom: 0;
}

.main-btn input.wpcf7-submit {
    display: inline-block;
    background-color: var(--color-secondary);
    background-image: linear-gradient(70deg, #00bbee 50%, #00dbb0 50%);
    background-position: 100% 0;
    background-size: 230% 100%;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 7px 8px;
    border: none;
    line-height: 1.5;
    border-radius: 8px 8px 8px 0;
    transition: all 0.4s cubic-bezier(.3,1,.8,1);
}

.main-btn input.wpcf7-submit:hover {
    background-position: 0 0;
}

.contact-bg {
    display: flex;
    min-height: 268px;
    background-color: var(--text-color);
}

/* footer */
.page-footer {
    display: flex;
    flex-direction: column;
    background-color: var(--text-color);
    color: #fff;
    padding-top: 100px;
}

.footer-row1 {
    padding-bottom: 65px;
}

.footer-logo {
    width: 120px;
    display: block;
}

.footer-logo img {
    width: 100%;
}

.footer-col p {
    color: #aeb3bd;
    margin-top: 20px;
    line-height: 1.8;
}

.social-links {
    margin-top: 30px;
    display: flex;
}

.links-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-primary);
    margin-right: 12px;
    transition: 0.3s;
    text-decoration: none;
}

.links-icon i {
    color: #fff;
}

.links-icon:hover {
    background-color: var(--color-secondary);
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0 20px 0 0;
	margin-left: 0;
}

.footer-links li {
    margin-top: 10px;
    color: #aeb3bd;
}

.footer-links li a {
    color: #aeb3bd;
    text-decoration: none;
    line-height: 1.8;
    transition: 0.2s;
}

.footer-links li a::after {
    content: '';
    height: 2px;
    width: 0;
    background-color: var(--color-secondary);
    display: block;
    transition: 0.2s ease-in-out;
}

.footer-links li a:hover::after {
    width: 30px;
}

.footer-links li a:hover {
    color: #fff;
}

.email-box {
    display: flex;
    align-items: center;
}

.email-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-primary);
    margin-right: 12px;
}
.email-icon a {
	color: #fff;
}

.email-heading {
    font-weight: 600;
}

.email-address a {
    color: #aeb3bd;
    text-decoration: none;
}

/* copyright section */
.copyright {
    display: flex;
    padding: 25px 0;
    border-top: 1px solid #2d3340;
}

.copy-text p {
    margin: 0;
    color: #aeb3bd;
    text-align: center;
}

.back-to-top {
	position: fixed;
    bottom: 8px;
    right: 30px;
    z-index: 999;
	opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
	animation: move 2s linear infinite;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top button {
	background-color: transparent;
    width: 30px;
    height: 50px;
	border: none;
	transition: 0.3s;
}

.back-to-top button img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover
}

@keyframes move {
	0% { transform: translateY(0); }
    15% { transform: translateY(-5px); }
    85% { transform: translateY(5px); }
	100% { transform: translateY(0); }
}

#wpaq_wrapper {
	display: none;
}
    .navbar-expand-lg .offcanvas .offcanvas-body {
      
        justify-content: flex-end;
    }
.footer-links ul {
    list-style: none;
    padding: 0 20px 0 0;
    margin-left: 0;
}