@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Prompt:wght@400;500;600;700&display=swap');

:root {
	--company-primary-color: #ef425a;
	--company-secondary-color: #35c5af;
	--company-body-font-family: 'Roboto', sans-serif;
	--company-heading-font-family: 'Prompt', sans-serif;
	--company-body-font-color: #474747;
	--company-heading-font-color: #222222;
	--company-body-font-weight: 400;
	--company-heading-font-weight: 500;
	--company-body-font-size: 16px;
	--company-body-line-height: 1.6;
}



/* Reset */
[data-animate] {
	opacity: 0;
	visibility: hidden;
}
[data-animate].animate__animated {
	visibility: visible;
	opacity: 1;
}

html {
	touch-action: manipulation; /* Çift tıklama zoom'u engeller, kaydırma/pinch zoom çalışır */
}

html {
	scroll-padding-top: 72px; /* header-wrapper.header-fixed yüksekliğine eşit verilir */
}

body {
	overflow-x: hidden;
	font-family: var(--company-body-font-family);
	color: var(--company-body-font-color);
	font-weight: var(--company-body-font-weight);
	font-size: var(--company-body-font-size);
	line-height: var(--company-body-line-height);
	font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--company-heading-font-family);
	color: var(--company-heading-font-color);
	font-weight: var(--company-heading-font-weight);
	line-height: 1.2;
	font-style: normal;
	margin-top: 0px;
	margin-bottom: .7rem;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}
h1 {
	font-size: 40px;
}
h2 {
	font-size: 35px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}

img {
	max-width: 100%;
}

a,
button {
	text-decoration: none;
	color: #333333;
}
a:hover {
	text-decoration: none;
	color: var(--company-primary-color);
}

.py-padd {
	padding-top: 70px;
	padding-bottom: 70px;
}
.pt-padd {
	padding-top: 70px;
}
.pb-padd {
	padding-bottom: 70px;
}

.btn-company-primary,
.btn-company-secondary {
	border-radius: 0px;
	padding: 9px 24px;
}
.btn-company-primary {
	background-color: var(--company-primary-color);
	color: #ffffff;
}
.btn-company-secondary {
	border-width: 2px;
	border-color: var(--company-secondary-color);
	color: #222222;
}
.btn-company-primary:hover,
.btn-company-secondary:hover {
	background-color: var(--company-secondary-color);
	color: #ffffff;
}

.btn-offer {
	padding: 10px 20px 10px 60px;
	position: relative;
	border-radius: 0px;
}
.btn-offer:hover {
	background-color: var(--company-secondary-color);
	color: #ffffff;
}
.offer-icon {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 40px;
	background-color: rgba(0, 0, 0, 0.15);
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sticky-wrapper {
	position: relative;
}
.sticky-content {
	position: sticky;
	top: calc(72px + 30px); /* header-wrapper.header-fixed yüksekliğinden biraz fazla verilir */
}
/* Reset end */



/* Preloader */
.preloader {
	--preloader-size: 90px;
	--preloader-stroke-width: 4px;
	--preloader-bg-color: #ffffff;
	--preloader-progress-color: var(--company-secondary-color);
	--preloader-progress-bg: #eeeeee;

	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-color: var(--preloader-bg-color);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preloader .spinner {
	width: var(--preloader-size);
	height: var(--preloader-size);
	border: var(--preloader-stroke-width) solid var(--preloader-progress-bg);
	border-top: var(--preloader-stroke-width) solid var(--preloader-progress-color);
	border-radius: 50%;
	animation: spinner_anm 1s linear infinite;
}

@keyframes spinner_anm {
	0%	 { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.preloader.hidden {
	opacity: 0;
	visibility: hidden;
}
/* Preloader end */



/* Scroller */
.scroller {
	--scroller-size: 50px;
	--scroller-stroke-width: 4px;
	--scroller-bg-color: rgba(255, 255, 255, 0.4);
	--scroller-progress-color: var(--company-secondary-color);
	--scroller-progress-bg: #eeeeee;

	position: fixed;
	bottom: 25px;
	right: 25px;
	width: var(--scroller-size);
	height: var(--scroller-size);
	border: none;
	cursor: pointer;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 1000;
	padding: 0px;
}

.scroller.visible {
	opacity: 1;
	transform: translateY(0);
}

.scroller svg {
	display: block;
	width: 100%;
	height: 100%;
	transform: rotate(0deg);
	transition: transform 0.2s ease;
}

.scroller .bg-circle {
	fill: var(--scroller-bg-color);
	stroke: var(--scroller-progress-bg);
	stroke-width: var(--scroller-stroke-width);
}

.scroller .progress-circle {
	fill: none;
	stroke: var(--scroller-progress-color);
	stroke-width: var(--scroller-stroke-width);
	stroke-linecap: square;
	stroke-dasharray: 283;
	stroke-dashoffset: 283;
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
}

.scroller .up-icon {
	color: var(--scroller-progress-color);
}

.scroller:active {
	transform: scale(0.95) translateY(0);
}
/* Scroller end */





.editor-toolbar {
	position: fixed;
	left: 0px;
	bottom: 0px;
	z-index: 999970;
	display: flex;
	flex-direction: row;
	gap: 0;
}
.editor-toolbar .btn {
	border-radius: 0;
}






/* Header */
.header-added {
	display: block;
	height: 140px; /* header-wrapper yüksekliğine eşit verilir */
}
.header-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	height: 140px;

	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}
.header-absolute-wrapper { /* header-add tagını geçersiz kılar */
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 90;
}
.header-wrapper.header-fixed {
	position: fixed;
	width: 100%;
	height: 72px; /* nav-wrapper yüksekliğine eşit veya büyük verilir */
	left: 0;
	top: 0;
	z-index: 90;
	background: #ffffff;
	-webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
	-webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
}
.nav-toggler {
	background-color: var(--company-secondary-color);
	color: #ffffff;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 120%;
	cursor: pointer;
}
/* Header end */



/* Desk Menu */
.nav-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.logo-header img {
	max-height: 75px;
}

.header-fixed .logo-header img {
	max-height: 50px;
}

.nav-navbar ul {
	display: flex;
	flex-direction: row;
	margin: 0 auto 0;
	padding: 0;
}
.nav-navbar ul li {
	list-style: none;
	display: block;
	position: relative;
}
.nav-navbar ul li a {
	font-size: 16px;
	font-weight: 600;
	color: var(--company-body-font-color);
	padding: 28px 30px;
	display: block;
	line-height: 1;
	position: relative;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	text-decoration: none;
	z-index: 1;
}

/* Efekt */
.nav-navbar ul ul li a:before {
	content:'';
	position:absolute;
	top:calc(50% - 1px);
	height:1px;
	width:0;
	background-color: var(--company-primary-color);
	transition:all 300ms ease-out 0ms;
	left:10px;
}
.nav-navbar ul ul li:hover a {
	padding-left:50px !important;
}
.nav-navbar ul ul li:hover a:before {
	width:30px;
}
/* Efekt end */

.nav-wrapper ul li.has-children .dropdown-btn { /* Dinamik olarak ekleniyor */
	display: block;
	position: absolute;
	right: 7px;
	top: 50%;
	transform: translateY(-50%);
}
.nav-navbar ul li .sub-menu {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	min-width: 230px;
	/* border: 1px solid #eee; */
	background: #17354f;
	margin: 0;
	transform: translateY(20px);
	transform-origin: 0 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
	-moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
	box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
	border-radius: 0;
	padding: 18px 0;
	display: block;
	visibility: hidden;
	opacity: 0;
	z-index: 9;
}
.nav-navbar ul li .sub-menu li {
	margin-left: 0;
	text-align: left;
	display: block;
}
.nav-navbar ul li .sub-menu li a {
	padding: 9px 15px 9px 25px;
	line-height: 1.4;
	color: #ffffff;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.nav-navbar ul li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.nav-navbar ul li:hover > a {
	color: var(--company-primary-color);
}
.nav-navbar ul li .sub-menu li:hover > a {
	color: var(--company-primary-color);
}
/* Desk Menu end */



/* Mobile Menu */
.mobile-menu {
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	padding-right: 30px;
	max-width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
	border-radius: 0px;
	transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-webkit-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}
.mobile-menu .navbar-collapse {
	display: block !important;
}
.mobile-menu .menu-header {
	position: relative;
	padding: 15px 25px;
	text-align: left;
}
.mobile-menu .menu-footer {
	padding: 25px 25px 0px 25px;
}
.logo-mobile img {
	max-height: 50px;
}

.mobile-menu-visible {
	overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}
.nav-backdrop {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 98;
	transition: all .3s linear;
	-moz-transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	opacity: 0;
	visibility: hidden;
	background: #000;
}
.mobile-menu-visible .nav-backdrop {
	opacity: 0.65;
	visibility: visible;
}
.mobile-menu .nav-menu {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	background: #fff;
	padding: 0px 0px;
	z-index: 5;
	box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}
.mobile-menu-visible .mobile-menu .nav-menu {
	opacity: 1;
	visibility: visible;
}
.menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.menu-header .close-btn {
	color: #333333;
}
.menu-header .close-btn:hover {
	color: var(--company-primary-color);
}
.menu-header .close-btn svg {
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.mobile-menu .close-btn {
	width: 35px;
	/* background-color: yellow; */
	padding: 5px 0;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all 0.9s ease;
	-o-transition: all 0.9s ease;
	transition: all 0.9s ease;
}
.mobile-menu-visible .mobile-menu .close-btn {
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
.mobile-menu .menu-outer ul {
	position: relative;
	display: block;
	width: 100%;
	float: none;
	margin: 0;
	padding: 0;
}
.mobile-menu .menu-outer ul li {
	position: relative;
	list-style: none;
	display: block;
	border-top: 1px solid rgb(0 0 0 / 05%);
}
.mobile-menu .menu-outer ul:last-child {
	border-bottom: 1px solid rgb(0 0 0 / 05%);
}
.mobile-menu .menu-outer ul li > ul > li:first-child {
	border-top: 1px solid rgb(0 0 0 / 05%);
}
.mobile-menu .menu-outer ul li > a {
	position: relative;
	display: block;
	line-height: 24px;
	padding: 10px 60px 10px 25px;
	font-size: 15px;
	font-weight: 500;
	color: #222;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	text-decoration: none;
	border: none;
}
.mobile-menu .menu-outer ul li ul {
	margin: 0;
	padding: 0;
}
.mobile-menu .menu-outer ul li ul li {
	list-style: none;
}
.mobile-menu .menu-outer ul li ul li > a {
	font-size: 15px;
	margin-left: 20px;
}
.mobile-menu .menu-outer ul li ul li ul li a {
	margin-left: 40px;
}
.mobile-menu .menu-outer ul li ul li ul li ul li a {
	margin-left: 60px;
}
.mobile-menu .menu-outer ul li > a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.mobile-menu .menu-outer ul li.has-children .dropdown-btn {
	position: absolute;
	right: 15px;
	top: 6px;
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	color: #222;
	background: #efefef;
	color: #fff;
	background: var(--company-secondary-color);
	cursor: pointer;
	border-radius: 2px;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 5;
}
.mobile-menu .menu-outer ul li.has-children .dropdown-btn.open {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.mobile-menu .menu-outer ul li > ul,
.mobile-menu .menu-outer ul li > ul > li > ul {
	display: none;
}
/* Mobile Menu end */



/* Banner */
.banner-wrapper {
	padding: 25px 0px;
	background-color: #f5f5f5;

	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

	position: relative;

	user-select: none;
}
.banner-wrapper .banner-backdrop {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;

	background-color: rgba(255, 255, 255, 0.370);
}
.banner-wrapper.banner-dark .banner-backdrop {
	background-color: rgba(0, 0, 0, 0.370);
}
.banner-wrapper.banner-dark {
	background-color: #333333;
}
.banner-wrapper.banner-dark h2,
.banner-wrapper.banner-dark p {
	color: #ffffff;
}
.banner-wrapper .row {
	min-height: 70vh;
}
.banner-content {
	max-width: 500px;
}
.banner-wrapper .banner-nav {
	display: flex;
	align-items: center;
	gap: 10px;
}
.banner-wrapper .btn-banner-primary,
.banner-wrapper .btn-banner-secondary {
	border-radius: 0px;
	padding: 9px 24px;
}
.banner-wrapper .btn-banner-primary {
	background-color: var(--company-primary-color);
	color: #ffffff;
}
.banner-wrapper .btn-banner-secondary {
	border-width: 2px;
	border-color: var(--company-primary-color);
	color: #222222;
}
.banner-wrapper.banner-dark .btn-banner-secondary {
	color: #ffffff;
}
.banner-wrapper .btn-banner-primary:hover,
.banner-wrapper .btn-banner-secondary:hover {
	background-color: var(--company-secondary-color);
	border-color: transparent;
	color: #ffffff;
}

@media (max-width: 768px) {

	.banner-wrapper .banner-nav {
		justify-content: center;
	}

} /* 768px */
/* Banner end */



/* About */
.about-wrapper {
	background-color: #ffffff;
}
.about-image-wrapper {
	position: relative;
	max-width: 570px;
}
.about-image-wrapper h3 {
	display: inline-block;
	position: absolute;
	right: 20px;
	bottom: -40px;
	background-color: var(--company-secondary-color);
	color: #ffffff;
	margin: 0px!important;

	padding: 20px;
	font-size: 36px;
	font-weight: 700;
}

@media (max-width: 768px) {

	.about-image-wrapper h3 {
		padding: 15px;
		font-size: 20px;
		bottom: auto;
		top: -40px;
	}

} /* 768px */
/* About end */



/* Service */
.service-wrapper {
	background-color: #ffffff;
}
.service-content {
	padding-top: 15px;
}
.service-content h3 {
	margin-bottom: 5px;
}

.service-wrapper.service-dark {
	background-color: #383838;
	color: #ffffff;
}
.service-wrapper.service-dark h2,
.service-wrapper.service-dark h3 {
	color: #ffffff;
}

.service-wrapper .btn-service-nav {
	border: solid 1px #666666;
	border-radius: 0px;
	color: #666666;
	width: 45px;
	height: 45px;

	display: flex;
	justify-content: center;
	align-items: center;
}
.service-wrapper .btn-service-nav:hover {
	border-color: var(--company-primary-color);
	color: var(--company-primary-color);
}
.service-wrapper .btn-service-nav i {
	font-size: 150%;
}
/* Service end */



/* Portfolio */
.portfolio-wrapper {
	background-color: #ffffff;
}
.portfolio-content {
	position: relative;
	padding-top: 15px;
}
.portfolio-content h3 {
	margin-bottom: 5px;
}

.portfolio-content a {
	position: absolute;
	right: 0px;
	top: 0px;
	border-radius: 0px;
	background-color: #eeeeee;
}

.portfolio-wrapper.portfolio-dark {
	background-color: #383838;
	color: #ffffff;
}
.portfolio-wrapper.portfolio-dark h2,
.portfolio-wrapper.portfolio-dark h3 {
	color: #ffffff;
}
/* Portfolio end */



/* Feature */
.feature-svg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	/* border-radius: 50%; */
	padding: 16px;
	border: solid 1px var(--company-secondary-color);
}
.feature-wrapper.feature-rounded .feature-svg {		
	border-radius: 50%;
}
.feature-svg svg {
	color: var(--company-secondary-color);
}

@media (max-width: 768px) {

	.feature-svg {
		width: 48px;
		height: 48px;
		padding: 8px;
	}

} /* 768px */

/* Feature end */



/* FAQ */
.accor-item {
	border-top: 1px solid #eaeaea;
	overflow: hidden;
}
.accor-item:first-child {
	border-top: none;
}
.accor-header {
	padding: 20px 0px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	color: #222222;
	font-weight: 500;
	font-size: 110%;
	user-select: none;
}
.accor-header::after {
	content: '\ea57';
	display: inline-block;
	font: normal normal normal 22px / 1 Yedeq;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	transition: transform 0.3s;
}
.accor-item.active .accor-header::after {
	transform: rotate(180deg);
}
.accor-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}
.accor-body {
	padding: 20px 0px;
	color: #777777;
}

.faq-wrapper {
	position: relative;
}
.faq-background {
	position: absolute;
	width: calc(50% - 40px);
	height: 100%;
	left: 0;
	top: 0;
	background-color: #444444;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.faq-parallax {
	background-attachment: fixed;
}
.faq-content {
	padding: 30px 0px;
}

@media (max-width: 768px) { /* md */

	.faq-wrapper {
		display: flex;
		flex-direction: column-reverse;
	}

	.faq-background {
		position: relative;
		width: 100%;
		height: 270px;
		left: auto;
		top: auto;
		background-color: #444444;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.faq-content {
		padding: 0px 0px 15px 0px;
	}

} /* 768px */

/* FAQ end */




/* Video */
.video-wrapper {
	background-color: #444444;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.video-parallax {
	background-attachment: fixed;
}
.video-wrapper .video-content {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50vh;
}

.video {
	position: relative;
	text-align: center;
	display: inline-block;
	z-index: 4;
}
.video a {
	position: relative;
	background: var(--company-secondary-color);
	font-size: 20px;
	z-index: 1;
	color: #ffffff;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-pulse::after,
.video-pulse::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border: 1px solid #ffffff;
	left: 0;
	top: 0;
	border-radius: 50%;
	animation-duration: 2.5s;
	animation-timing-function: linear;
	animation-name: video-animation;
	animation-iteration-count: infinite;
}
.video-pulse::before {
	animation-delay: 1s;
}

@keyframes video-animation {
	0% {
		opacity: 0.5;
		transform: scale(1);
	}
	50% {
		opacity: 0.2;
		transform: scale(1.5);
	}
	100% {
		opacity: 0;
		transform: scale(2);
	}	
}

@media (max-width: 768px) { /* md */

	.fancybox-slide--iframe .fancybox-content {
		width: 100%;
		height: 70%;
		max-width: calc(100% - 30px);
	}

} /* 768px */

/* Video end */



/* Footer */
.footer-wrapper {
	padding-top: 50px;
	background-color: #17354f;
	color: #ffffff;
}
.footer-wrapper a {
	color: #ffffff;
}
.footer-wrapper h2,
.footer-wrapper h3,
.footer-wrapper h4,
.footer-wrapper h5 {
	color: #ffffff;
}
.logo-footer img {
	max-height: 65px;
}

.social-links {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5em;
}
.social-links a {
	display: block;
	width: 40px;
	height: 40px;
	/* background-color: var(--company-primary-color); */
	border: solid 1px #ffffff;
	font-size: 120%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 500ms;
	border-radius: 50%;
}
.social-links a:hover {
	background-color: var(--company-secondary-color);
	border-color: transparent;
}

.footer-menu li {
	padding: 0.25rem 0;
}
.footer-menu a {
	display: flex;
	align-items: center;
	gap: 0.5em;
}

.footer-contact li {
	padding: 0.25rem 0;
}
.footer-contact a {
	display: flex;
	align-items: center;
	gap: 0.5em;
}
.footer-contact a i {
	padding: 10px 0;
	margin-right: 10px;
	width: 40px;
	height: 40px;
	text-align: center;
	background-color: var(--company-primary-color);
	border-radius: 50%;
	transition: 500ms;
}
.footer-contact a:hover i {
	background-color: var(--company-secondary-color);
}

.copy-wrapper {
	padding: 20px 0;
	border-top: solid 1px rgba(0, 0, 0, 0.05);
	font-size: 85%;
}
/* Footer end */


