/*
Theme Name: Genesis Block Theme Child
Theme URI: https://yourwebsite.com/genesis-block-theme-child
Description: Child theme for the Genesis Block Theme.
Author: Your Name
Author URI: https://yourwebsite.com
Template: genesis-block-theme
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../genesis-block-theme/style.css");

html {
	scroll-behavior: smooth;
}

#page {
    padding: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

#primary {
    max-width: 100%;
    width: 100%;
}

#content {
    padding: 0;
}

body {
    overflow: unset !important;
}

/* global CSS */
:root {
    /* colors */
    --white: #fff;
    --black: #000;
    --dark-grey: #042A2D;
    --dark-blue: #012A49;
    --blue: #0091FF;
    --brown: #201E1E;

    /* Gradient */
    --blue-liner-gradient: linear-gradient(180deg, #0265AF 0%, #012A49 100%);

    /* font-family */
    --font-primary: Roboto, sans-serif;
    --font-seconday: Manrope, sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0px auto;
    padding: 0px;
}

.container::before,
.container::after {
	display: none;
}

section {
    padding: 80px 20px;
}

h1 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 62px;
    font-style: normal;
    font-weight: 300;
    line-height: 73px;
}

h2 {
    color: var(--dark-blue);
    font-family: var(--font-primary);
    font-size: 50px;
    font-style: normal;
    font-weight: 300;
    line-height: 59px;
}

p {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
	margin-bottom: 0px;
}

a {
    text-decoration: none;
}

.eyebrow {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: 1.4px;
}

.btn {
    padding: 13.5px 44.335px 12.5px 42.665px;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.btn.btn-primary {
    background: var(--white);
    color: var(--dark-blue);
    border: 1px solid var(--white);
}

.btn.btn-primary:hover {
    color: var(--white);
    border: 1px solid var(--white);
    background: transparent;
}

.btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-blue);
}

.btn.btn-tertiary {
    background: var(--dark-blue);
    color: var(--white);
    border: 1px solid var(--dark-blue);
}

.btn.btn-tertiary:hover {
    color: var(--dark-blue);
    background: transparent;
}