/* ---------------- Fonts ------------------ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


@font-face {
    font-family: 'Squad';
    src: url('../fonts/FONTSPRINGDEMO-SquadBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Squad';
    src: url('../fonts/FONTSPRINGDEMO-SquadRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Squad';
    src: url('../fonts/FONTSPRINGDEMO-SquadSemiBoldRegular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}





/* ---------------- Basic css ------------------ */

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

html{
	font-size: 62.5%;
}

:root {
	scroll-behavior: unset;

	/* colors */
	--dark: #000000;
	--blue: #004aad;
}


/* body */
body {
	font-family: 'Squad';
	color: var(--dark);
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.25;
	background-color: #FFFFFF;
}


/* container */

.container{
	width: 100%;
	max-width: 100%;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	margin-left: auto;
	margin-right: auto;
}



/* --------------------- Hero Section --------------------- */

.hero_section {
  padding: 7.5rem 0 7.2rem; 
}

.hero_content_box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16.7rem;
}

.hero_section .title_box p {
    color: var(--blue);
	font-size: 17px;
}

.hero_section .title_box h3 {
	font-size: 3.3rem;
	line-height: 1.01;
	padding-top: 1.7rem;
	font-weight: 400;
}

.site_information {
    padding-top: 7rem;
}

.site_information a {
	outline: none;
}

.site_information .logo {
	width: 46.4rem;
}

.site_information .site_link {
	padding: 3.6rem 0 1.5rem;
	font-weight: 700;
}

.site_information .site_link a {
	font-size: 3.2rem;
	color: #004aad;
	text-decoration: none;
    font-weight: 700;
	letter-spacing: 1px;
}

.site_information .purple_color a {
	color: #8846da;
}

.site_information .gray_color a {
	color: #404040;
}

.site_information p {
    font-size: 2.2rem;
}

.paragraph2 {
	padding-top: 2.7rem;
}


/* button */

.button{
	display: inline-block;
	text-align: center;
	font-weight: 700;
	font-family: var(--secodaryFont);
	font-size: 2.4rem;
	line-height: 1.6;
	padding: 1.4rem 4.6rem;
	border: none;
	color: rgb(255, 255, 255);
	background: #004aad;
	text-decoration: none;
    margin-top: 7rem;
	transition: all 300ms ease;
}

.button:hover{
	background-color: #8846da;
}

.btn_gap {
	margin-top: 3rem;
}

.click_domina {
	padding-top: 5.2rem;
}

.click_domina a {
	font-size: 2.3rem;
	color: #004aad;
	font-weight: 700;
	text-decoration: underline;
}

.click_domina a:hover {
	color: #8846da;
}


/* --------------------- Subscribe Section --------------------- */

.subscribe_section {
	padding: 1rem 0 3rem;
}

.subscribe_box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	padding-right: 5rem;
}

.subscribe_content p {
    max-width: 45rem;
	font-size: 2.4rem;
	line-height: 1.3;
	font-weight: 700;
	color: var(--dark);
}

.subscribe_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.subscribe_info input {
    width: 34.5rem;
	height: 7.4rem;
	font-size: 2.1rem;
	display: block;
	line-height: normal;
	background: transparent;
    border: .2rem solid #ddd;
    border-radius: 1.5rem;
    padding: 0 2rem;
	outline: none;
}

.subscribe_info input:focus {
	border: .4rem solid #ddd;
}

.subscribe_btn button {
    background: red;
    color: #FFF;
    height: 7.4rem;
    padding: 0 5rem;
    font-size: 2.4rem;
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
}

.subscribe_btn button:hover {
	background-color: #ff4f4f;
}


.font-number {
	font-family: "DM Sans", serif !important;
}