@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,400&display=swap");
/**
 * CUSTOM
 * COLOR
 */

:root {
	--color-shape-primary: #2E2D2C;
	--color-shape-secondary: #C1733C;
	--color-shape-darker: rgba(255, 255, 255, 0.1);
	--color-shape-hover: #ffe192;
	--color-text-primary: #363636;
	--color-text-secondary: #ffffff;
	--color-text-darker: #e55443;
	--color-text-hover: #e55443;
}




/* HEADER */

.company-navbar,
.company-navset {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.company-toggler {
	display: none;
}

@media (max-width: 991.98px) {

	.company-desknav,
	.company-deskadd {
		display: none;
	}
	.company-toggler {
		display: block;
	}

} /* 991.98px */


/* sticky ANM */

.company-header.sticky-topANM.sticky-top {
	animation: topANM 0.35s ease-out;
}
@keyframes topANM {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

/* HEADER end */











/* NAVBAR */

.company-desknav ul,
.company-phonenav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.company-desknav a,
.company-phonenav a {
	display: block;
	white-space: nowrap;
	text-decoration: none;
	overflow: hidden;
}


/* DESK MENU */

.company-desknav > ul {
	display: flex;
	align-items: center;
}


/* SUBMENU */

.company-desknav .company-submenu {
	position: relative;
}
.company-desknav .company-submenu > ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0px;
	min-width: 200px;
	z-index: 990;
}
.company-desknav .company-submenu:hover > ul {
	display: block;
}

/* bkz ANM */
.company-desknav.company-navUP .company-submenu > ul {
	opacity: 0;
}
.company-desknav.company-navUP .company-submenu:hover > ul {
	animation-name: navUP;
	animation-duration: 300ms;
	opacity: 1;
}
@keyframes navUP {
	from {
		-webkit-transform: translateY(15px);
		transform: translateY(15px);
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}


/* PHONE */

.company-phonenav .company-submenu ul {
	display: none;
}
/* bkz ANM
.company-phonenav .company-submenu.company-navON ul {
	display: block;
}
*/
.company-phonenav .company-submenu span {
	float: right;
}

/* NAVBAR end */











/* BANNER */

.company-banner .company-banner-item {
	position: relative;
	user-select: none;
	height: 100vh;
}
.company-banner.company-banner-boxed .company-banner-item {
	height: auto; /* bkz TEK FARK */
}
.company-banner .company-banner-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
.company-banner .company-banner-content {
	position: absolute;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 0px 15px;
}
.company-banner .company-banner-boxed {
	max-width: 1320px; /* bkz XXL */
}
.company-banner .company-banner-center {
	text-align: center;
}
.company-banner .company-banner-start {
	text-align: left;
}
.company-banner .company-banner-end {
	text-align: right;
}

.company-banner .owl-nav {
	position: absolute;
	z-index: 60;
	display: flex;
	justify-content: space-between;

	top: 50%;
	width: 100%;
	transform: translateY(-50%);
}
.company-banner .owl-nav .owl-prev,
.company-banner .owl-nav .owl-next {
	border: none;
	border-radius: 0px;
	cursor: pointer;
	opacity: 0.90;
}
.company-banner .owl-nav .owl-prev.disabled,
.company-banner .owl-nav .owl-next.disabled {
	cursor: default;
	opacity: 0.45;
}

.company-banner .owl-dots {
	position: absolute;
	z-index: 60;

	width: 100%;
	bottom: 30px;
	text-align: center;
}

.company-banner .owl-dots .owl-dot {
	display: inline-block;
	vertical-align: top;
	margin: 6px;
	padding: 6px 0px !important; /* bkz TOLERANS */

	opacity: 0.5;
}
.company-banner .owl-dots .owl-dot span {
	display: block;
	width: 40px;
	height: 4px;

	background-color: #ffffff;
}
.company-banner .owl-dots .owl-dot.active {
	opacity: 1.0;
}

/* BANNER end */











/**
 * CUSTOM
 * THEME
 */









/* WOW */
html {
	height: 100%;
}
body {
	min-height: 100%;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}






/* FONT */

body {
	font-family: "Poppins", sans-serif;
}
section h2 {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
}









/* CUSTOM */

a {
	text-decoration: none;
	color: #222222;
}

.gx-6 {
	--bs-gutter-x: 6rem;
}

.py-6 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.company-lightbrown {
	background-color: #f9f3e3;
}


.company-btn1 {
	border-radius: 2px;
	border: solid 2px #dddddd;
	background-color: transparent;
	color: #333333;
	padding: 0.75rem 2rem;
}
.company-btn1:hover {
	background-color: #dddddd;
}
.company-btn2 {
	border-radius: 2px;
	border: solid 2px transparent;
	background-color: #C1733C;
	color: #ffffff;
	padding: 0.75rem 2rem;
}
.company-btn2:hover {
	background-color: transparent;
	border-color: #C1733C;
	color: #333333;
}
.company-btn3 {
	border-radius: 2px;
	border: solid 2px rgba(255,255,255,0.5);
	background-color: rgba(255,255,255,0.05);
	color: #fff;
	padding: 0.75rem 2rem;
}
.company-btn3:hover {
	background-color: transparent;
	border-color: #CD8B45;
	color: #ffffff;
}
.company-btn4 {
	border-radius: 2px;
	border: solid 2px transparent;
	background-color: #CD8B45;
	color: #ffffff;
	padding: 0.75rem 2rem;
}
.company-btn4:hover {
	background-color: transparent;
	border-color: #CD8B45;
	color: #ffffff;
}




/* HEADER THEME */

.company-topnav {
	font-size: 14px;
}

.topnav-hr {
	width: 96%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.15);
	margin: 0 auto;
}

.company-topnav a,
.company-deskadd a,
.company-phoneadd a {
	text-decoration: none;
	color: #ffffff;
}
.company-topnav a:hover,
.company-deskadd a:hover,
.company-phoneadd a:hover {
	text-decoration: underline;
	color: #ffffff;
}

.company-navoff.offcanvas-start {
	border-right: none;
}

.company-header {
	background-color: rgba(0, 0, 0, 0.64);
}

.company-desknav ul ul {
	box-shadow: 6px 6px 0px 0px rgb(0,0,0,0.25);
}

.company-phoneadd {
	margin-top: 30px;
}

.company-desknav > ul {
	gap: 0px 7px;
}


.company-desknav ul a {
	color: #ffffff;
	padding: 50px 7px;
}
.company-desknav ul ul a {
	padding: 14px 12px;
}


.company-header .company-brand a {
	display: inline-block;
	vertical-align: top;
	/* margin-top: -30px; */
}
.company-header .company-brand img {
	max-height: 120px;
}
.company-header.sticky-top .company-brand a {
	margin-top: 0px;
}
.company-header.sticky-top .company-brand img {
	max-height: 90px;
}


.company-header.downed {
	background-color: #2E2D2C;
}
.company-header.downed .company-brand img {
	max-height: 80px;
}
.company-header.downed .company-desknav ul a {
	padding: 35px 7px;
}
.company-header.downed .company-desknav ul ul a {
	padding: 14px 12px;
}


.company-desknav li:hover a {
	background-color: #383736;
}

.company-header.sticky-top .company-desknav ul a {
	padding: 35px 7px;
}
.company-header.sticky-top .company-desknav ul ul a {
	padding: 14px 12px;
}

.company-phonenav .company-submenu ul {
	margin-left: 1.5rem;
}
.company-desknav .company-submenu ul a {
	background-color: #383736;
}
.company-desknav .company-submenu ul a {
	padding: 14px 12px;
}
.company-desknav .company-submenu li:hover a {
	background-color: #CD8B45;
	color: #ffffff;
}



.company-toggler {
	background-color: transparent;
	border: solid 1px #ffffff;
	color: #ffffff;
	padding: 10px;
	font-weight: bold;
}

.company-phonenav a {
	color: #222222;
	padding: 16px 16px;
	box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid #f5f5f5;
	background-color: #ffffff;
}
.company-phonenav .company-submenu.company-navON > a {
	border-bottom: none !important;
}

.company-phonenav .company-submenu ul {
	border-left: solid 2px #f5f5f5;
	/* margin-bottom: 15px; */
}
.company-phonenav ul li.company-navON > a {
	background-color: #CD8B45;
	color: #ffffff;
}
.company-phonenav ul ul li.company-navON a {
	background-color: #D7C991;
	color: #222222;
}

.company-phonenav .company-submenu.company-navON span {
	transform: rotate(180deg);
}


















/* BANNER THEME */

.company-banner .company-banner-item {
	background-color: #999999;
	color: #ffffff;
}
.company-banner .company-banner-ov25 {
	background-color: rgba(0, 0, 0, 0.25);
}
.company-banner .company-banner-ov50 {
	background-color: rgba(0, 0, 0, 0.5);
}
.company-banner .company-banner-ov75 {
	background-color: rgba(0, 0, 0, 0.75);
}

.company-banner .owl-nav span {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: var(--color-shape-primary);
	color: #ffffff;
	opacity: 0.7;
	/* display: block; */
	display: flex;
	justify-content: center;
	align-items: center;
}
.company-banner .owl-nav span i {
	font-size: 30px;
	line-height: 30px;
}


.company-banner-max {
	display: inline-block;
	/* background-color: #444444; */
	width: 50%;
}
.company-banner-item h2 {
	font-size: 48px;
	line-height: 60px;
}
.company-banner-item p {
	padding-top: 1rem;
	padding-bottom: 0.5rem;
	font-size: 20px;
	line-height: 20px;
}


.company-banner .company-banner-content {
	position: absolute;
	width: 100%;
	left: 50%;
	top: auto;
	bottom: 15%;
	transform: translate(-50%, 0%);
	padding: 0px 15px;
}

@media (max-width: 991.98px) {

	.company-banner .company-banner-content {
		position: absolute;
		width: 100%;
		left: 50%;
		bottom: auto;
		top: 50%;
		transform: translate(-50%, -50%);
		padding: 0px 15px;
	}

	.company-header {
		background-color: #2E2D2C;
	}
	
	/* bug */
	.company-banner {
		margin-top: 150px;
	}

	.company-banner .owl-nav {
		display: none;
	}

	.company-banner-max {
		width: 75%;
	}
	.company-banner-item h2 {
		font-size: 24px;
		line-height: 24px;
	}
	.company-banner-item p {
		font-size: 14px;
		line-height: 14px;
	}

} /* 991.98px */







/* FOOTER THEME */

.company-footer {
	background-color: var(--color-shape-primary);
	color: #ffffff;
}
.company-copy {
	background-color: var(--color-shape-darker);
	color: #ffffff;
}
.company-footer a {
	color: #ffffff;
}

.company-footer {
	padding-top: 3rem;
}
.company-footer-part {
	padding-bottom: 2rem;
}
.company-footer a {
	text-decoration: none;
}


.company-footer .company-brand {
	margin-top: -30px;
}

.company-footer .company-brand img {
	max-height: 120px;
	opacity: 0.75;
	transition: 300ms;
}
.company-footer .company-brand img:hover {
	opacity: 1.0;
	transform: scale(1.15);
}


/* LINKER THEME */

.company-linker {
	list-style: none;
	margin: 0;
	padding: 0;
}
.company-linker li {
	padding: 7px 0px;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.company-linker li i {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}


/* LINKER check */

.company-linker-check li i {
	width: 15px;
	height: 20px;
	margin-right: 1px;
	justify-content: flex-start;
}
.company-linker-check li a:hover {
	color: var(--color-text-hover);
}


/* LINKER external */

.company-linker-external li i {
	width: 20px;
	height: 20px;
	margin-left: 7px;
}
.company-linker-external li a:hover {
	color: var(--color-text-hover);
}


/* LINKER social */

.company-linker-social li {
	padding: 5px 0px;
}
.company-linker-social li i {
	width: 40px;
	height: 40px;
	margin-right: 7px;
	background-color: var(--color-shape-secondary);
	border: solid 2px transparent;
	border-radius: 50%;
	font-size: 135%;
	color: #ffffff;
}
.company-linker-social li a:hover {
	color: var(--color-text-hover);
}
.company-linker-social li a:hover i {
	background-color: transparent;
	border-color: var(--color-shape-secondary);
	color: var(--color-shape-secondary);
}






/* PRODUCT */

.company-product-image {
	overflow: hidden;
	background-color: #ffffff;
}
.company-product-item h5 {
	padding-top: 1rem;
}
.company-product-item img {
	transform-origin: 0% 50%;
	transition: 300ms;
}
.company-product-item:hover img {
	transform: scale(0.9, 0.8);
}
.company-product-item .company-product-image {
	background-color: #babd87;
}




/* ABOUT */

.about-text {
	position: absolute; width: 300px; left: -50px; bottom: 50px; background-color: #e55443; color: #ffffff; padding: 50px; font-size: 200%;
}

@media (max-width: 768px) {
	.about-text {
		left: -15px; padding: 25px; font-size: 150%;
	}
}

/* ABOUT end */




/* PAGE */
.company-pagehead {
	height: 154px;
}

@media (max-width: 768px) {
	.company-pagehead {
		height: 0px;
	}
}




/* BLOG */

.company-blogger-item h5 {
	font-weight: normal;
	margin-top: 1rem;
}






/* GALLERY */
.gallery-shower div {
	display: inline-block;
	vertical-align: top;
	width: 25%;
	padding: 1px;
}
.gallery-shower span {
	display: block;
	border: solid 1px #eeeeee;
	/* padding-top: 56.25%; */
	padding-top: 75%;
	position: relative;
}
.gallery-shower div:hover span {
	border-color: #999999;
}
.gallery-shower img {
	position: absolute;
	width: auto;
	height: auto;
	max-width: calc(100% - 4px);
	max-height: calc(100% - 4px);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
	.gallery-shower div {
		width: 50%;
	}
}



/* WHATSAPP */
.wa-link {
	position: fixed;
	z-index: 75;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	background-clip: padding-box;
	background-color: #075e54; /* bkz */
	color: #ffffff;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
	-ms-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}
.wa-link a {
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	font-size: 20px;
	font-weight: 300;
	color: #ffffff;
}
.wa-link .wa-phone {
	display: none;
}
.wa-link .wa-desk {
	display: block;
}
@media (max-width: 768px) {
	.wa-link .wa-phone {
		display: block;
	}
	.wa-link .wa-desk {
		display: none;
	}
}





/* MAPS */
.company-maps {
	min-height: 50vh;
	background-color: #eeeeee;
	position: relative;
}
.company-maps iframe {
	display: block;
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	left: 0px;
	top: 0px;
}









/* ESNEK */

.company-esnek-hold {
	width: 100vw;
	overflow: hidden;
}
.company-esnek-off {
	width: 125%;
	margin-left: -12.5%;
}

.company-esnek-text {
	position: relative;
	padding-right: 60px;
}

.company-esnek-text h5 {
	margin: 0px;
	padding: 15px 0px 5px 0px;
}

.company-esnek-text a {
	position: absolute;
	right: 0px;
	top: 5px;
	border-radius: 0px;
	background-color: #f7f7f7;
}

.company-esnek-item {
	padding-bottom: 60px;
}

@media (max-width: 991.98px) {

	.company-esnek-off {
		width: 200%;
		margin-left: -50%;
	}

} /* 991.98px */

/* ESNEK end */








/* SERVICE */

.service-item {
	padding: 40px 15px 30px 15px;
	border: solid 1px #ddd;

	margin-top: 30px;
	position: relative;
}

.service-item .top-line {
	position: absolute;
	width: 70%;
	height: 1px;
	background-color: #e55443;
	bottom: -1px;
	left: 15%;
}

.service-item a:hover {
	text-decoration: none;
}
.service-item img {
	width: 250px;
	max-width: 100%;
}
.service-item h3 {
	margin: 0;
	padding: 40px 0 0 0;
	font-weight: normal;
	font-size: 24px;
	color: #333333;
}
.service-item p {
	margin: 0;
	padding: 15px 0;
	font-size: 13px;
}

/* SERVICE end */





/* PRELOADER */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2E2D2C;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.my_loader {
    border: 8px solid #383736;
    border-top: 8px solid #e55443;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* PRELOADER end */







/* WHY */

.video-link {
	display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;

    transform: translate(-50%, -50%);

    opacity: 0.95;

    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;

    font-size: 24px;
    line-height: 68px;
    font-weight: 700;
    text-align: center;
    display: none;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 99;
}
.video-link:hover {
	opacity: 1.0;

    background-color: var(--company-color);
    border-color: transparent;
    color: #ffffff;
}

.whyus-content {
	padding: 0 0 125px 50px;
}


.whyus-item {
	padding: 15px 0;
	width: 100%;
}
.whyus-item .whyus-icon {
	display: inline-block;
	vertical-align: top;
	width: 30px;
	font-size: 150%;
}
.whyus-item .whyus-desc {
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 30px);
	padding-left: 15px;
	font-size: 14px;
	padding-top: 5px;
}

.whyus-bottom {
	width: 70%;
	margin: 0 auto;
	margin-top: -70px;
	color: #ffffff;
}

.whyus-box {
	aspect-ratio: 16 / 9;
	position: relative;
	background-color: var(--company-extra);
	background-size: cover;
}
.whyus-box-text {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 50px;
}

.whyus-box-text h3 {
	margin: 0;
	padding: 0;
}
.whyus-box-text p {
	margin: 0;
	padding: 0;
	font-size: 13px;
}

.whyus-table {
	margin-top: 15px;
}

.whyus-table td {
	vertical-align: middle;
	padding-right: 10px;
	padding-top: 10px;
}
.whyus-table i {
	display: inline-block;
	vertical-align: middle;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border: solid 1px rgba(255,255,255,0.4);
	border-radius: 50%;
}
.whyus-table a {
	color: #ffffff;
	font-size: 17px;
}
.whyus-table a:hover {
	color: #ffffff;
	text-decoration: none;
}



.whyus2-content {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 650px;
	text-align: left;
	padding: 15px 15px;
}
.whyus2-image:before{
	/* malum_url */
	content:"";
	position:absolute;
	left:-65px;
	top:25px;
	bottom:25px;
	width:70px;
	z-index:-1;

	display: block; /* bkz beyaz.svg block */
}
.video-link2 {
	display: block;
    position: absolute;
    left: 0px; /* bkz beyaz.svg left:0 */
    bottom: 0px;
    width: 72px;
    height: 72px;

    opacity: 0.95;
    background-color: #cd8b45;
    border: 2px solid #cd8b45;
    color: #ffffff;

    font-size: 24px;
    line-height: 68px;
    font-weight: 700;
    text-align: center;
    display: none;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 99;
}
.video-link2:hover {
	opacity: 1.0;
    background-color: rgba(255,255,255,0.25);
    border: 2px solid #cd8b45;
    color: #222222;
}


.why-svg-holder {
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.why-svg-image {
	position: absolute;
	height: 100%;
	width: auto;
	right: 0px; /* bkz beyaz.svg right:0 */
	top: 0px;
}


@media (max-width: 768px) {

	.whyus-box {
		aspect-ratio: 4 / 3;
	}

	.whyus-content {
		padding: 15px 0px;
	}

	.whyus-bottom {
		width: 100%;
		margin-top: 0px;
	}

	.why-svg-image {
		display: none;
	}

} /* 768px */

/* WHY end */





/* ANM */

.anm-wrapper {
	position: relative;
	pointer-events: none;
	width: 100%;
	z-index: -1;
}

.anm-title {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    font-size: 200px;
    font-weight: 800;
    color: #f7f7f7;

    /*
    color:  transparent;
	-webkit-text-stroke: 2px #f7f7f7;
	text-stroke: 2px #f7f7f7;
	*/

    text-transform: uppercase;
    line-height: 220px;
    -webkit-animation:linear infinite alternate;
    -webkit-animation-name: anmrun;
    -webkit-animation-duration: 25s;
    -ms-animation:linear infinite alternate;
    -ms-animation-name: anmrun;
    -ms-animation-duration: 25s;
    -moz-animation:linear infinite alternate;
    -moz-animation-name: anmrun;
    -moz-animation-duration: 25s;
    text-align: center;
}

@-webkit-keyframes anmrun {
    0% { left: -20%;}
    50%{ left : 0%;}
    100%{ left: 20%;}
}

@-moz-keyframes anmrun {
    0% { left: -20%;}
    50%{ left : 0%;}
    100%{ left: 20%;}
}     

/* ANM end */





/* PROCESS */

.process-section-four {
  position: relative;
  /* padding: 120px 0 90px; */
  padding-top: 90px;
}
.process-section-four .bg-four {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .process-section-four {
    padding-bottom: 0;
  }
}
.process-section-four .bg-four {
  background-color: #19305A;
  height: 450px;
}
.process-section-four .sec-title {
  margin-bottom: 60px;
  color: #ffffff;
}
.process-section-four .sec-title .sub-title {
  padding-left: 0;
}
.process-section-four .sec-title .sub-title:before {
  display: none;
}
.process-block-four {
  position: relative;
  margin-bottom: 30px;
}
.process-block-four .inner-box {
  position: relative;
  padding: 40px;
  box-shadow: 0 0 18px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  transition: all 300s ease;
  z-index: 10;
}
@media (max-width: 1199.98px) {
  .process-block-four .inner-box {
    padding: 20px;
  }
}
.process-block-four .inner-box:hover:before {
  transform: scale(1);
}
.process-block-four .inner-box:hover .icon-box {
  transform: scaleX(-1);
}
.process-block-four .inner-box .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 50px;
  border-bottom: 1px solid #f0f0f0;
}
.process-block-four .inner-box .title-box .title {
  margin: 0;
}
@media (max-width: 1199.98px) {
  .process-block-four .inner-box .title-box .title {
    font-size: 22px;
  }
}
.process-block-four .inner-box .icon-box {
  display: inline-block;
  margin-bottom: 19px;
  transition: all 0.3s ease;
  text-align: left;
}
.process-block-four .inner-box .icon-box .icon {
  position: relative;
  color: #e53134;
  font-size: 65px;
}
.process-block-four .inner-box .text {
  margin-bottom: 21px;

  min-height: 50px;
}
.process-block-four .inner-box .read-more {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.process-block-four .inner-box .read-more:hover {
  color: #e53134;
}

/* PROCESS end */









