:root {
	--white-color: #ffffff;
	--primary-color: #554a91;
	--secondary-color: #41b6d9;
	--section-bg-color: #f0f8ff;
	--custom-btn-bg-color: #554a91;
	--custom-btn-bg-hover-color: #41b6d9;
	--dark-color: #000000;
	--p-color: #9c9c9c;
	--border-color: #554a91;
	--link-hover-color: #554a91;
	--grad: linear-gradient(315deg, #554a91 13%, #41b6d9 73%);
	--body-font-family: "Poppins", sans-serif;
	--title-font-family: "Roboto", sans-serif;

	--h1-font-size: 58px;
	--h2-font-size: 46px;
	--h3-font-size: 32px;
	--h4-font-size: 28px;
	--h5-font-size: 24px;
	--h6-font-size: 22px;
	--p-font-size: 16px;
	--menu-font-size: 14px;

	--border-radius-large: 16px;
	--border-radius-medium: 9px;
	--border-radius-small: 4px;

	--font-weight-light: 300;
	--font-weight-normal: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;
	--light: #ffffff;
	--dark: #000;
}

body {
	background-color: var(--white-color);
	font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
	color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--title-font-family);
	font-weight: var(--font-weight-semibold);
}

h1 {
	font-size: var(--h1-font-size);
	font-weight: var(--font-weight-bold);
	font-family: var(--body-font-family);
}
h1 span {
	color: var(--primary-color);
}
h2 {
	font-size: var(--h2-font-size);
	font-weight: var(--font-weight-bold);
}

h3 {
	font-size: var(--h3-font-size);
}

h4 {
	font-size: var(--h4-font-size);
}

h5 {
	font-size: var(--h5-font-size);
}

h6 {
	font-size: var(--h6-font-size);
}

p {
	color: var(--p-color);
	font-size: var(--p-font-size);
	font-weight: var(--font-weight-light);
}

ul li {
	color: var(--p-color);
	font-size: var(--p-font-size);
	font-weight: var(--font-weight-light);
}

a,
button {
	touch-action: manipulation;
	transition: all 0.3s;
}

a { 
	color: var(--primary-color);
	text-decoration: none;
}

a:hover {
	color: var(--link-hover-color);
}

b,
strong {
	font-weight: var(--font-weight-bold);
}

::selection {
	background-color: var(--primary-color);
	color: var(--white-color);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-title-wrap {
	position: relative;
}

.section-title-wrap::after {
	content: "";
	background: var(--section-bg-color);
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.section-title { 
	border-radius: var(--border-radius-small);
	display: inline-block;
	position: relative;
	z-index: 2;
	margin-bottom: 0;
	padding: 10px 25px;
	color: white;
}

.section-padding {
	padding: 40px 0px;
}

main {
	position: relative;
	z-index: 1;
}

.section-bg {
	background-color: var(--section-bg-color);
}

.section-overlay {
	background-color: var(--primary-color);
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	width: 100%;
	height: 100%;
	opacity: 0.85;
}

.section-overlay + .container {
	position: relative;
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
	color: var(--primary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
	background: var(--custom-btn-bg-color);
	border: 2px solid transparent;
	border-radius: var(--border-radius-small);
	color: var(--white-color);
	font-family: var(--title-font-family);
	font-size: var(--p-font-size);
	font-weight: var(--font-weight-semibold);
	line-height: normal;
	transition: all 0.3s;
	padding: 10px 20px;
	-webkit-border-radius: var(--border-radius-small);
	-moz-border-radius: var(--border-radius-small);
	-ms-border-radius: var(--border-radius-small);
	-o-border-radius: var(--border-radius-small);
}

.custom-btn:hover {
	background: var(--custom-btn-bg-hover-color);
	color: var(--white-color);
}

.custom-border-btn {
	background: transparent;
	border: 2px solid var(--custom-btn-bg-color);
	color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
	background: var(--custom-btn-bg-color);
	border-color: transparent;
	color: var(--primary-color);
}

.custom-btn-bg-white {
	border-color: var(--white-color);
	color: var(--white-color);
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
	background-image: url("../images/templatemo-wave-header.jpg"), linear-gradient(#348cd2, #ffffff);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 480px;
	position: relative;
}

.site-header h2 {
	color: var(--white-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
	background-color: transparent;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 9;
	padding-top: 20px;
	padding-bottom: 20px;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
	color: var(--white-color);
}

.navbar .logo-image {
	width: 100px;
}

.logo-image {
	width: 120px;
	height: auto;
}

.navbar-brand,
.navbar-brand:hover {
	font-size: var(--h3-font-size);
	font-weight: var(--font-weight-bold);
	display: inline-block;
}

.navbar-brand span {
	font-family: var(--title-font-family);
}

.navbar-nav .nav-link {
	display: inline-block;
	color: var(--section-bg-color);
	font-family: var(--title-font-family);
	font-size: var(--menu-font-size);
	font-weight: var(--font-weight-medium);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	padding-top: 15px;
	padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
	padding-right: 18px;
	padding-left: 18px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
	color: var(--secondary-color);
}

.navbar .dropdown-menu {
	background: var(--white-color);
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
	border: 0;
	display: inherit;
	opacity: 0;
	min-width: 9rem;
	margin-top: 20px;
	padding: 13px 0 10px 0;
	transition: all 0.3s;
	pointer-events: none;
}

.navbar .dropdown-menu::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 15px solid var(--white-color);
	position: absolute;
	top: -10px;
	left: 10px;
}

.navbar .dropdown-item {
	display: inline-block;
	color: var(--p-bg-color);
	font-family: var(--title-font-family);
	font-size: var(--menu-font-size);
	font-weight: var(--font-weight-medium);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
	background: transparent;
	color: var(--secondary-color);
}

.navbar .dropdown-toggle::after {
	content: "\f282";
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-size: var(--menu-font-size);
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -0.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	left: 2px;
	border: 0;
}

@media screen and (min-width: 992px) {
	.navbar .dropdown:hover .dropdown-menu {
		opacity: 1;
		margin-top: 0;
		pointer-events: auto;
	}
}

.navbar .custom-border-btn {
	border-color: var(--white-color);
	color: var(--white-color);
}

.navbar .custom-border-btn:hover {
	background: var(--white-color);
	color: var(--primary-color);
	border-radius: var(--border-radius-large);
	-webkit-border-radius: var(--border-radius-large);
	-moz-border-radius: var(--border-radius-large);
	-ms-border-radius: var(--border-radius-large);
	-o-border-radius: var(--border-radius-large);
}

.navbar-toggler {
	border: 0;
	padding: 0;
	cursor: pointer;
	margin: 0;
	width: 30px;
	height: 35px;
	outline: none;
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
	transition: top 300ms 50ms ease, transform 300ms 350ms ease;
	transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
	top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
	background: var(--white-color);
	transition: background 10ms 300ms ease;
	display: block;
	width: 30px;
	height: 2px;
	position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
	transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
	transition: top 300ms 350ms ease, transform 300ms 50ms ease;
	transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
	position: absolute;
	right: 0;
	left: 0;
	background: var(--white-color);
	width: 30px;
	height: 2px;
	content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
	top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
	top: 8px;
}

/*---------------------------------------
  CAROUSEL        
-----------------------------------------*/
.hero-section {
	background-image: url("../images/templatemo-wave-banner.jpg");
	background-repeat: no-repeat;
	background-size: 108% 78%;
	background-position: top;
	padding-top: 200px;
}

.owl-carousel {
	text-align: center;
}

.owl-carousel-image {
	display: block;
}

.owl-carousel .owl-item .owl-carousel-verified-image {
	display: inline-block;
	width: 30px;
	height: auto;
	position: relative;
	right: 5px;
}

.verified-image {
	display: inline-block;
	width: 20px;
	height: auto;
}

.owl-carousel .owl-item {
	opacity: 0.35;
}

.owl-carousel .owl-item.active.center {
	opacity: 1;
}

.owl-carousel-info-wrap {
	border-radius: var(--border-radius-small);
	position: relative;
	overflow: hidden;
	text-align: left;
	-webkit-border-radius: var(--border-radius-small);
	-moz-border-radius: var(--border-radius-small);
	-ms-border-radius: var(--border-radius-small);
	-o-border-radius: var(--border-radius-small);
}

.owl-carousel-info {
	background-color: #53a3a385;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 14px;
}

.badge {
	background-color: var(--custom-btn-bg-color);
	font-family: var(--title-font-family);
	border-radius: 4px !important;
	color: var(--white-color);
	padding-bottom: 5px;
	-webkit-border-radius: 4px !important;
	-moz-border-radius: 4px !important;
	-ms-border-radius: 4px !important;
	-o-border-radius: 4px !important;
	margin: 4px;
	padding: 9px;
}
.custom-carousel .owl-dots,
.owl-carousel .owl-dots {
	background-color: var(--white-color);
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
	border-radius: var(--border-radius-large);
	display: inline-block;
	margin: auto;
	margin-top: 40px;
	padding: 15px 25px;
	padding-bottom: 7px;
}
.custom-carousel .owl-nav.disabled + .owl-dots,
.owl-theme .owl-nav.disabled + .owl-dots {
	margin-top: 40px;
}
.custom-carousel .owl-dots .owl-dot .active span,
.custom-carousel .owl-dots .owl-dot:hover span .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--primary-color);
	width: 18px;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
	color: var(--primary-color) !important;
}
/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
	border: 2px solid var(--primary-color);
	border-radius: var(--border-radius-medium);
	position: relative;
	overflow: hidden;
	padding: 30px;
	transition: all 0.3s ease;
	margin: 12px auto;
	border-radius: 4px;
}

.custom-block:hover {
	background: var(--white-color);
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
	border-color: transparent;
	transform: translateY(-3px);
}
.custom-block:hover .custom-block-info h5 {
	color: var(--primary-color);
}
.custom-block:hover .custom-block-info ::after {
	content: icon;
}

.custom-block:hover .custom-block-info .background {
	right: 20px;
	top: 20px;
}

.custom-block:hover .custom-block-info .background object {
	font-size: 48px;
	width: 300px;
	height: 300px;
	filter: grayscale(0);
	-webkit-filter: grayscale(0);
	opacity: 0.35;
}
.custom-block-info {
	display: block;
	padding: 10px 20px;
	padding-bottom: 0;
}

.custom-block-info .background {
	position: absolute;
	top: 0;
	right: -20px;
	transition: all 0.3s ease;
	z-index: -20;
}
.custom-block-info .background object {
	font-size: 48px;
	filter: grayscale(0.8);
	-webkit-filter: grayscale(0.8);
	width: 0px;
	height: 300px;
}
/*---------------------------------------
  PROIFLE BLOCK               
-----------------------------------------*/
.profile-block {
	margin-top: 10px;
}

.profile-block-image {
	border-radius: var(--border-radius-large);
	width: 50px;
	height: 50px;
	object-fit: cover;
	margin-right: 10px;
}

.profile-block p strong {
	display: block;
	font-family: var(--title-font-family);
}

.profile-detail-block {
	border: 1px solid #dee2e6;
	border-radius: var(--border-radius-large);
	padding: 25px 35px;
}

.profile-detail-block p {
	margin-bottom: 0;
}

/*---------------------------------------
  ABOUT & TEAM SECTION               
-----------------------------------------*/
.about-image {
	border-radius: var(--border-radius-medium);
	display: block;
}

.team-thumb {
	border-radius: var(--border-radius-medium);
	position: relative;
	overflow: hidden;
}

.team-info {
	background-color: var(--white-color);
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 30px;
}

/*---------------------------------------
  PAGINATION               
-----------------------------------------*/
.pagination {
	border: 1px solid #dee2e6;
	border-radius: var(--border-radius-large);
	padding: 20px;
}

.page-link {
	border: 0;
	border-radius: var(--border-radius-small);
	color: var(--p-color);
	font-family: var(--title-font-family);
	margin: 0 5px;
	padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
	background-color: var(--secondary-color);
	color: var(--white-color);
}

.page-item:first-child .page-link {
	margin-right: 10px;
}

.active > .page-link,
.page-link.active {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-info p strong {
	font-family: var(--title-font-family);
	min-width: 90px;
}

.contact-info p a {
	color: var(--p-color);
	border-bottom: 1px solid;
	padding-bottom: 3px;
}

.contact-info p a:hover {
	color: var(--secondary-color);
}

.google-map {
	border-radius: var(--border-radius-medium);
}

.contact-form .form-floating > textarea {
	border-radius: var(--border-radius-medium);
	height: 150px;
}

/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
	border: 1px solid var(--white-color);
	border-radius: var(--border-radius-small);
	width: 80%;
	position: relative;
	top: 12px;
	padding: 35px;
}

.subscribe-form-wrap h6 {
	background: var(--white-color);
	border-radius: var(--border-radius-medium);
	color: var(--primary-color);
	text-align: center;
	position: relative;
	bottom: 55px;
	margin-bottom: -25px;
	padding: 8px;
}

.subscribe-form #subscribe-email {
	border: 0;
	border-radius: 10px 10px 0 0;
	margin-bottom: 0;
}

.subscribe-form #submit {
	border-radius: 0 0 10px 10px;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
	border-radius: var(--border-radius-small);
	color: var(--p-color);
	font-family: var(--title-font-family);
	font-size: var(--p-font-size);
	margin-bottom: 24px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	outline: none;
}

.form-floating > label {
	padding-left: 20px;
}

.custom-form button[type="submit"] {
	background: var(--custom-btn-bg-color);
	border: none;
	border-radius: var(--border-radius-large);
	color: var(--white-color);
	font-family: var(--title-font-family);
	font-size: var(--p-font-size);
	font-weight: var(--font-weight-semibold);
	transition: all 0.3s;
	margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
	background: var(--custom-btn-bg-hover-color);
	border-color: transparent;
}

/*---------------------------------------
  SEARCH FORM               
-----------------------------------------*/
.search-form .form-control {
	border: 0;
	margin-bottom: 0;
}

.search-form button[type="submit"] {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	max-width: 50px;
	height: 100%;
	padding-left: 15px;
}

.search-form button[type="submit"]:hover {
	background: var(--primary-color);
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.footer-section {
	background: #151414;
	position: relative;
}
.footer-cta {
	border-bottom: 1px solid #373636;
}
.single-cta i {
	color: var(--white-color);
	font-size: 30px;
	float: left;
	margin-top: 8px;
	background: var(--secondary-color);
	padding: 6px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
}
.cta-text {
	padding-left: 15px;
	display: inline-block;
}
.cta-text h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
}
.cta-text span {
	color: #757575;
	font-size: 15px;
}
.footer-content {
	position: relative;
	z-index: 2;
}
.footer-pattern img {
	position: absolute;
	top: 0;
	left: 0;
	height: 330px;
	background-size: cover;
	background-position: 100% 100%;
}
.footer-logo {
	margin-bottom: 30px;
}
.footer-logo img {
	max-width: 200px;
}
.footer-text p {
	margin-bottom: 14px;
	font-size: 14px;
	color: #7e7e7e;
	line-height: 28px;
}
.footer-social-icon span {
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	margin-bottom: 20px;
}
.footer-social-icon a {
	color: #fff;
	font-size: 44px;
	margin: 15px;
	background: var(--secondary-color);
	padding: 6px 12px;
	border-radius: 4px;
}
.footer-social-icon i {
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 38px;
	border-radius: 50%;
}
.facebook-bg {
	background: #3b5998;
}
.twitter-bg {
	background: #55acee;
}
.google-bg {
	background: #dd4b39;
}
.footer-widget-heading h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 40px;
	position: relative;
}
.footer-widget-heading h3::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -15px;
	height: 2px;
	width: 50px;
	background: var(--secondary-color);
}
.footer-widget ul li {
	display: inline-block;
	float: left;
	width: 50%;
	margin-bottom: 12px;
}
.footer-widget ul li a:hover {
	color: var(--secondary-color);
}
.footer-widget ul li a {
	color: #878787;
	text-transform: capitalize;
}
.subscribe-form {
	position: relative;
	overflow: hidden;
}
.subscribe-form input {
	width: 100%;
	padding: 14px 28px;
	background: #2e2e2e;
	border: 1px solid #2e2e2e;
	color: #fff;
}
.subscribe-form button {
	position: absolute;
	right: 0;
	background: var(--primary-color);
	padding: 13px 20px;
	border: 1px solid var(--secondary-color);
	top: 0;
}
.subscribe-form button i {
	color: #fff;
	font-size: 22px;
	transform: rotate(-6deg);
}
.copyright-area {
	background: #202020;
	padding: 25px 0;
}
.copyright-text p {
	margin: 0;
	font-size: 14px;
	color: #878787;
}
.copyright-text p a {
	color: #ff5e14;
}
.footer-menu li {
	display: inline-block;
	margin-left: 20px;
}
.footer-menu li:hover a {
	color: #ff5e14;
}
.footer-menu li a {
	font-size: 14px;
	color: #878787;
}
/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
	margin: 0;
	padding: 0;
}

.social-icon-item {
	list-style: none;
	display: inline-block;
	vertical-align: top;
}

.social-icon-link {
	background: var(--secondary-color);
	border-radius: var(--border-radius-large);
	color: var(--white-color);
	font-size: var(--p-font-size);
	display: block;
	margin-right: 10px;
	text-align: center;
	width: 40px;
	height: 40px;
	line-height: 40px;
	transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 2160px) {
	.hero-section {
		background-size: 100% 90%;
		/* T o o p l a t e . c o m   C u s t o m i z e d */
	}
}

@media screen and (min-width: 1600px) {
	.site-footer {
		padding-top: 250px;
	}
}

@media screen and (max-width: 1240px) {
	.hero-section {
		background-size: 116%;
		/* T o o p l a t e . c o m   C u s t o m i z e d */
	}
}

@media screen and (max-width: 991px) {
	h1 {
		font-size: 48px;
	}

	h2 {
		font-size: 36px;
	}

	h3 {
		font-size: 32px;
	}

	h4 {
		font-size: 28px;
	}

	h5 {
		font-size: 20px;
	}

	h6 {
		font-size: 18px;
	}

	.hero-section {
		background-size: 160% 66%;
		/* T o o p l a t e . c o m   C u s t o m i z e d */
	}

	.section-padding {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.navbar-nav {
		background-color: var(--primary-color);
		border-radius: var(--border-radius-medium);
		padding: 30px;
	}

	.navbar-nav .nav-link {
		padding: 5px 0;
	}

	.navbar-nav .dropdown-menu {
		position: relative;
		left: 10px;
		opacity: 1;
		pointer-events: auto;
		max-width: 155px;
		margin-top: 10px;
		margin-bottom: 15px;
	}

	.navbar-expand-lg .navbar-nav {
		padding-bottom: 20px;
	}

	.nav-tabs .nav-link:first-child {
		margin-right: 5px;
	}

	.nav-tabs .nav-link {
		font-size: var(--copyright-font-size);
		padding: 10px;
	}

	.copyright-text {
		text-align: center;
	}

	.site-footer {
		margin-top: -200px;
		padding-top: 200px;
		padding-bottom: 100px;
	}
}

@media screen and (max-width: 540px) {
	.hero-section {
		background-size: 180% 65%;
		/* T o o p l a t e . c o m   C u s t o m i z e d */
	}

	.custom-block .custom-block-top {
		flex-direction: column;
	}

	.custom-block .custom-block-top small:last-child {
		margin-top: 10px;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 480px) {
	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 26px;
	}

	h4 {
		font-size: 22px;
	}

	h5 {
		font-size: 20px;
	}
}

@media screen and (max-width: 414px) {
	.search-form {
		max-width: 200px;
	}
}

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */

/* -------- title style ------- */
.line-title {
	position: relative;
	width: 400px;
}
.line-title::before,
.line-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	border-radius: 2px;
}
.line-title::before {
	width: 100%;
	background: #f2f2f2;
}
.line-title::after {
	width: 64px;
	background: var(--grad);
}
/* -------- services  ------- */
/* --------- Card Animation ---------- */
.card:not(:empty):hover,
.card:not(:empty):focus {
	z-index: 1;
	color: #fff;
	background: #ea124f;
	opacity: 1;
	transform: scale(1.1) rotateZ(0deg);
	cursor: pointer;
	-webkit-transform: scale(1.1) rotateZ(0deg);
	-moz-transform: scale(1.1) rotateZ(0deg);
	-ms-transform: scale(1.1) rotateZ(0deg);
	-o-transform: scale(1.1) rotateZ(0deg);
}
.card:not(:empty):hover:after,
.card:not(:empty):focus:after {
	opacity: 1;
}
.card:not(:empty):hover:before,
.card:not(:empty):focus:before {
	opacity: 0;
}

.card {
	padding: 10px 7px;
	background: rgb(35, 36, 57);
	border-radius: 4px;
	opacity: 0.8;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
	transition-property: all;
	transition-property: background, transform, color, opacity;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}
.card:not(:empty):before {
	box-shadow: -2px 2px 8px 2px rgba(0, 0, 0, 0.2);
}
.card:empty {
	opacity: 0.3;
}
.card:before,
.card:after {
	content: "";
	position: absolute;
	border-radius: 0.7em;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.card:after {
	box-shadow: -20px 20px 12px 6px rgba(0, 0, 0, 0.2);
	opacity: 0;
}
.card img {
	width: 64px;
	margin: 14px;
}
.modal {
	background-color: #23232375;
}
/* --------- Grid ---------- */
.grid {
	width: 100%;
	height: 80dvh;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-gap: 14px;
}

.item1 {
	grid-area: 1/1/3/3;
}

.item2 {
	grid-area: 1/3/3/4;
}
.item2.card:hover,
.item2.card:focus {
	background: var(--secondary-color);
}

.item3 {
	grid-area: 3/1/4/4;
}

.item4 {
	grid-area: 1/4/2/6;
}

.item5 {
	grid-area: 3/4/3/5;
}

.item6 {
	grid-area: 2/4/3/5;
	border-radius: 9px;
}

.item7 {
	grid-area: 3/4/5/5;
}

.item8 {
	grid-area: 2/5/4/6;
}
.item8.card:hover,
.item8.card:focus {
	background: #f57b51;
}

.item9 {
	grid-area: 2/5/3/6;
}

.item10 {
	grid-area: 3/5/4/6;
}

.item11 {
	grid-area: 4/5/5/6;
}
.item11.card:hover,
.item11.card:focus {
	background: #00a8cc;
	transition: 0.3ms ease-in-out;
	-webkit-transition: 0.3ms ease-in-out;
	-moz-transition: 0.3ms ease-in-out;
	-ms-transition: 0.3ms ease-in-out;
	-o-transition: 0.3ms ease-in-out;
}

.service .card:hover .static {
	opacity: 0;
}
.service .card:hover .active {
	opacity: 1;
}
.card .active {
	border: 3ps solid var(--primary-color);
	border-radius: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	-ms-border-radius: 9px;
	-o-border-radius: 9px;
	opacity: 0;
}
.static {
	position: absolute;
}

.content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 24px;
}

/*--------- Layout -------- */

.service {
	font-family: var(--title-font-family);
	background: #ead9ff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact h2,
.service h2 {
	font-size: 3.052em;
	color: var(--primary-color);
	font-weight: 750;
}
.service h4 {
	color: white;
	text-align: center;
}
.service p {
	line-height: 1.3;
}
.modal.show .modal-dialog {
	min-width: 75dvw;
	border: 3px solid var(--primary-color);
	border: 4px;
}
.logos {
	display: flex;
	flex-wrap: wrap;
}
.logos img {
	max-width: 170px;
	border: 1px solid #23232350;
	margin: 4px 9px;
	border-radius: 3px;
	background: linear-gradient(45deg, rgb(85, 74, 145) 16%, rgb(65, 182, 217) 87%);
	padding: 14px;
}
.modal-title {
	text-align: center;
	margin: auto 53px;
	color: var(--primary-color);
}
/* --------- Responsive ---------- */
@media only screen and (max-width: 600px) {
	.grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(6, minmax(auto, 300px));
		overflow-y: scroll;
	}

	.item1 {
		grid-area: 1/1/2/3;
	}

	.card {
		grid-area: auto;
		text-align: left;
	}
	.card:empty {
		display: none;
	}
}
/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {
	h2 {
		margin-bottom: 32px;
	}
	h3 {
		margin: 0 0 8px;
		font-size: 24px;
		line-height: 32px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	h2 {
		margin-bottom: 32px;
	}
	h3 {
		margin: 0 0 8px;
		font-size: 24px;
		line-height: 32px;
	}
	.line-title {
		width: 330px;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 14px;
	}
	h2 {
		margin-bottom: 20px;
	}
	h3 {
		margin: 0 0 8px;
		font-size: 19px;
		line-height: 24px;
	}
	.line-title {
		width: 250px;
	}
}
/* -------- canvas background  ------- */
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.gallary {
	background: rgb(67, 69, 112);
	background: radial-gradient(circle, rgba(67, 69, 112, 1) 3%, rgba(35, 36, 57, 1) 60%);
	overflow: hidden;
	min-height: 80dvh;
	padding: 20px 60px;
}

.desktop_7 .text-blk {
	margin: 0px;
	padding: 10px;
	line-height: 25px;
}

.desktop_7 .responsive-container-block {
	min-height: 75px;
	height: fit-content;
	width: 100%;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 0px auto;
	justify-content: flex-start;
}

.desktop_7 .responsive-container-block.bigContainer {
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 30px;
}

.desktop_7 .responsive-container-block.Container {
	max-width: 980px;
	flex-direction: column;
	padding-top: 10px 0px;
	margin-top: 80px auto 50px auto;
}

.desktop_7 .text-blk.headingText {
	font-size: 36px;
	line-height: 50px;
	font-weight: 750;
	color: white;
}

.desktop_7 .text-blk.active {
	font-size: 20px;
	line-height: 34px;
	font-weight: 400;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #03a9f4;
}

.desktop_7 .text-blk.list {
	font-size: 20px;
	line-height: 34px;
	cursor: pointer;
	color: white;
}

.desktop_7 .text-blk.all {
	margin-right: 20px;
	margin-left: 0px;
}

.desktop_7 .text-blk.list {
	margin-left: 0px;
	margin-right: 20px;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
}

.desktop_7 .text-blk.list.active {
	padding-top: 10px 15px;
	font-weight: 550;
}

.desktop_7 .squareImg {
	border-radius: 6px;
	width: 225px;
	height: 225px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}

.desktop_7 .responsive-container-block.imageContainer {
flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0px;
  min-width: 85dvw;
  border-radius: 4px;
}

.desktop_7 .responsive-container-block.optionsContainer {
	margin-bottom: 10px;
	min-height: auto;
}

.desktop_7 .project {
	display: inline-block;
	margin-bottom: 20px;
}

.desktop_7 button {
	cursor: pointer;
}

.desktop_7 img {
	cursor: pointer;
}

.desktop_7 img:hover {
	transform: scale(1.02);
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
	transition-property: all;
}

.desktop_7 .hdImg {
	display: none;
}

.desktop_7 .btn-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	border: 2px solid black;
	border-radius: 4px;
	background: #554a919c;
}

.desktop_7 .project:hover .btn-box {
	display: block;
}

.desktop_7 .imageContainer {
	background-image: initial;
	background-position-x: initial;
	background-position-y: initial;
	background-size: initial;
	background-repeat-x: initial;
	background-repeat-y: initial;
	background-attachment: initial;
	background-origin: initial;
	background-clip: initial;
	background-color: white;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.desktop_7 .project {
	position: relative;
	background-image: initial;
	background-position-x: initial;
	background-position-y: initial;
	background-size: initial;
	background-repeat-x: initial;
	background-repeat-y: initial;
	background-attachment: initial;
	background-origin: initial;
	background-clip: initial;
}

.desktop_7 .overlay {
	position: fixed;
	background-image: initial;
	background-position-x: initial;
	background-position-y: initial;
	background-size: initial;
	background-repeat-x: initial;
	background-repeat-y: initial;
	background-attachment: initial;
	background-origin: initial;
	background-clip: initial;
	background-color: rgba(71, 69, 69, 0.7);
	height: 100%;
	width: 100%;
	max-height: 100%;
	top: 0px;
	left: 0px;
	z-index: 100;
	display: none;
}

.desktop_7 .overlay-inner {
	top: 50%;
	right: 0px;
	bottom: 0px;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: initial;
	background-position-x: initial;
	background-position-y: initial;
	background-size: initial;
	background-repeat-x: initial;
	background-repeat-y: initial;
	background-attachment: initial;
	background-origin: initial;
	background-clip: initial;
	background-color: white;
	padding-top: 25px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	position: relative;
	opacity: 1;
	width: fit-content;
	max-width: 50%;
	max-height: 85%;
}

.desktop_7 .close {
	position: absolute;
	top: 3px;
	right: 10px;
	background-image: none;
	background-position-x: initial;
	background-position-y: initial;
	background-size: initial;
	background-repeat-x: initial;
	background-repeat-y: initial;
	background-attachment: initial;
	background-origin: initial;
	background-clip: initial;
	background-color: initial;
	outline-color: initial;
	outline-style: initial;
	outline-width: 0px;
	color: #474545;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: initial;
	border-right-style: initial;
	border-bottom-style: initial;
	border-left-style: initial;
	border-top-color: initial;
	border-right-color: initial;
	border-bottom-color: initial;
	border-left-color: initial;
	border-image-source: initial;
	border-image-slice: initial;
	border-image-width: initial;
	border-image-outset: initial;
	border-image-repeat: initial;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.desktop_7 .overlay-inner .hdImgs {
	width: fit-content;
	height: calc(85% - 55px);
	display: flex;
}

.desktop_7 .overlay-inner img {
	max-height: 80dvh;
	max-width: 100%;
	transform: none;
}

.desktop_7 .squareImg.one,
.desktop_7 .squareImg.four,
.desktop_7 .squareImg.three,
.desktop_7 .squareImg.two {
	padding: 5px 10px;
	margin: 0px;
}

@media (max-width: 1024px) {
	.desktop_7 .Container {
		width: 690px;
	}

	.desktop_7 .squareImg {
		width: 170px;
		height: 170px;
	}

	.desktop_7 .squareImg.one {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}

	.desktop_7 .squareImg.two {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}

	.desktop_7 .squareImg.three {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}

	.desktop_7 .squareImg.four {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}

	.desktop_7 .squareImg.five {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}

	.desktop_7 .overlay-inner {
		margin-top: 20px;
		margin-right: 20px;
		margin-bottom: 20px;
		margin-left: 20px;
		padding-top: 25px;
		padding-right: 20px;
		padding-bottom: 20px;
		padding-left: 20px;
		width: 80%;
	}

	.desktop_7 .close {
		font-size: 14px;
		top: 2px;
		right: 5px;
	}

	.desktop_7 .overlay {
		padding-top: 10px;
		padding-right: 30px;
		padding-bottom: 10px;
		padding-left: 30px;
	}
}

@media (max-width: 768px) {
	.desktop_7 .squareImg {
		width: 225px;
		height: 225px;
	}

	.desktop_7 .responsive-container-block.Container {
		max-width: 450px;
	}

	.desktop_7 .responsive-container-block.optionsContainer {
		max-width: 380px;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 10px;
		margin-left: auto;
	}

	.desktop_7 .text-blk.list {
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
	}

	.desktop_7 .text-blk.list.all.active {
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 0px;
		margin-left: auto;
	}

	.desktop_7 .text-blk.headingText {
		text-align: center;
	}

	.desktop_7 .text-blk.list {
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 10px;
		margin-left: auto;
	}

	.desktop_7 .text-blk.list.all.active {
		margin-top: 0px;
		margin-right: 14.4219px;
		margin-bottom: 10px;
		margin-left: 14.4219px;
	}

	.desktop_7 .responsive-container-block.bigContainer {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}
}

@media (max-width: 500px) {
	.desktop_7 .text-blk.list.all.active {
		font-size: 14px;
		padding-top: 10px;
		padding-right: 15px;
		padding-bottom: 0px;
		padding-left: 15px;
		line-height: 34px;
	}

	.desktop_7 .text-blk.list {
		font-size: 14px;
	}

	.desktop_7 .responsive-container-block.optionsContainer {
		min-height: auto;
	}

	.desktop_7 .responsive-container-block.imageContainer {
		padding-top: 10px;
		padding-right: 5px;
		padding-bottom: 10px;
		padding-left: 5px;
	}

	.desktop_7 .responsive-container-block.optionsContainer {
		max-width: 330px;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 10px;
		margin-left: auto;
	}

	.desktop_7 .text-blk.list.all.active {
		font-size: 17px;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 10px;
		margin-left: auto;
	}

	.desktop_7 .text-blk.list {
		font-size: 17px;
		margin-top: 0px;
		margin-right: auto;
		margin-bottom: 10px;
		margin-left: auto;
	}

	.desktop_7 .squareImg {
		width: 100%;
		height: 25%;
	}

	.desktop_7 .project {
		padding: 0px 10px;
		width: 100%;
		height: 25%;
	}

	.desktop_7 .overlay-inner {
		margin-top: 20px;
		margin-right: auto;
		margin-bottom: 20px;
		margin-left: auto;
		padding-top: 25px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
		width: 100%;
	}

	.desktop_7 .overlay {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}

	.desktop_7 .responsive-container-block.bigContainer {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}

	.desktop_7 .overlay-inner hdImgs {
		width: 90%;
	}
}
/*the preloader  */
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
}

#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 7px solid transparent;
	border-top-color: var(--primary-color);
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 2s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
	z-index: 2001;
}

#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 7px solid transparent;
	border-top-color: var(--secondary-color);
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 3s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #f9c922;
	animation: spin 1.5s linear infinite;

	-webkit-animation: spin 1.5s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: #232332;
	z-index: 2000;
	/* Chrome, Opera 15+, Safari 3.1+ */
	/* IE 9 */
	transform: translateX(0);
	/* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
	left: 0;
}

#loader-wrapper .loader-section.section-right {
	right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
	/* Chrome, Opera 15+, Safari 3.1+ */
	/* IE 9 */
	transform: translateX(-100%);
	/* Firefox 16+, IE 10+, Opera */
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
	/* Chrome, Opera 15+, Safari 3.1+ */
	/* IE 9 */
	transform: translateX(100%);
	/* Firefox 16+, IE 10+, Opera */
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
	opacity: 0;
	transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
	visibility: hidden;
	/*Chrome,Opera15+,Safari3.1+*/ /*IE9*/
	transform: translateY(-100%);
	/*Firefox16+,IE10+,Opera*/
	transition: all 0.3s 1s ease-out;
	-webkit-transition: all 0.3s 1s ease-out;
	-moz-transition: all 0.3s 1s ease-out;
	-ms-transition: all 0.3s 1s ease-out;
	-o-transition: all 0.3s 1s ease-out;
}
.clients {
	margin: 15px auto;
}

.client {
	display: flex;
	flex-wrap: wrap;
	width: auto;
	margin: 10px auto;
	justify-content: center;
}
.client img {
	width: 240px;
	border: 3px solid black;
	border-radius: 4px;
	background: var(--white-color);
	box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.175);
	border-color: transparent;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
      margin: 50px auto;
}
.contact .info {
	width: 100%;
	background: #fff;
}
.contact .box{
    border: 1px solid #1313132e;
  padding: 18px 24px;
  border-radius: 4px;
  box-shadow: 0 0.5rem 0.25rem rgba(0, 0, 0, 0.175);
}

.contact .info i {
	font-size: 32px;
	color: var(--primary-color);
	float: left;
	line-height: 1;
}
.contact .info i:hover{
background: var(--primary-color);
  color: var(--secondary-color);
}
.contact .info h4 {
padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 750;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 6px;
	font-size: 14px;
	color: #5b5b5b;
}

.contact .info .email,
.contact .info .phone {
	margin-top: 40px;
}

.contact .php-email-form {
	width: 100%;
	background: #fff;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .sent-message br + br {
	margin-top: 25px;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
border: 1.5px solid var(--primary-color);
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
	min-height:calc(4.5em + 11.75rem + 2px);
}

.contact .php-email-form button[type="submit"] {
	background: var(--pri-color);
  border: 0;
  padding: 10px 30px;
  color: white;
  transition: 0.4s;
  border-radius: 4px;
  background-color: var(--primary-color);
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--p-color);
  color: var(--primary-color);
  font-weight: 750;
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}