:root {
	--primary-font: "Libre Franklin", sans-serif;
	--secondary-font: "Libre Baskerville", serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	outline: none;
}

/* Works on Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: red;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 8px;
	padding: 10px;
}

*::-webkit-scrollbar-track {
	background: red;
}

*::-webkit-scrollbar-thumb {
	background-color: #000;
}

::-moz-selection {
	color: #fff;
	background: #000;
	text-shadow: none;
}

::selection {
	color: #fff;
	background: #000;
	text-shadow: none;
}

html {
	font-size: 62.5%;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	line-height: 1;
	font-family: var(--primary-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-size: inherit;
	margin: 0;
}

ol,
ul,
li {
	list-style: none;
}

a {
	outline: none;
	color: inherit;
	background-color: transparent;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	-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;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

main {
	display: block;
}

section {
	display: flex;
	width: 100%;
	padding: 1rem;
	height: 100vh;
}

img {
	border-style: none;
}

.img-res {
	width: 100%;
	max-width: 100%;
	height: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: bottom;
}

/* ! Global css */
.cnt {
	width: 100%;
	margin: 0 auto;
}

/* ! Header */
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	padding: 5rem 6% 1rem;
	z-index: 999;
	transition: top 0.3s;
}

.header_logo {
	width: 29.8rem;
}

/* ! Footer */

/* ! Main */

.intro_left {
	width: 50%;
	padding: 18rem 3% 3rem 6%;
}

.intro_txt {
	color: #000;
	font-size: 1.7rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.3rem;
}

.intro_txt strong {
	font-weight: 600;
}

.intro_txt ul {
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
}

.intro_txt ul li {
	position: relative;
	padding-left: 3rem;
	margin-bottom: 1rem;
}

.intro_txt ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 2rem;
	height: 2rem;
	background: url(../assets/images/bullet.png) center center no-repeat;
}

.intro_right {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.intro_right img {
	border-radius: 8px;
}

.intro_right_txt {
	position: absolute;
	left: 8%;
	bottom: 10%;
}

.intro_right_txt strong {
	color: #fff;
	font-size: 8rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -1.6px;
}

.intro_right_contact {
	display: flex;
	align-items: center;
	border-radius: 99px;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.5) 0%,
		rgba(255, 255, 255, 0) 100%
	);
	gap: 3rem;
	padding: 2rem 3.5rem;
	margin-bottom: 2rem;
}

.intro_right_contact a {
	display: flex;
	color: #fff;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 600;
	line-height: 2.4rem;
	gap: 1rem;
	align-items: center;
}

.intro_right_contact a:hover {
	color: #0d5aa8;
}

.fillblue {
	fill: #fff;
	transition: all 0.3s ease-in-out;
}

.intro_right_contact a:hover .fillblue {
	fill: #0d5aa8;
}
