/* Core Stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding-top: 100px;
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    color: #606d6e;
}

/* Typography Enhancements */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

 p {
    font-size: 1.5rem; /* 24px */
    margin-bottom: 1.25rem;
}

 h1 {
    font-size: 4rem; /* 64px */
    font-weight: 700;
    margin-bottom: 1rem;
}

 h2 {
    font-size: 3.5rem; /* 56px */
    font-weight: 600;
    margin-bottom: 0.75rem;
}

 h3 {
    font-size: 3rem; /* 48px */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

 h4 {
    font-size: 2.5rem; /* 40px */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

 h5 {
    font-size: 2rem; /* 32px */
    font-weight: 500;
    margin-bottom: 0.4rem;
}

 h6 {
    font-size: 1.75rem; /* 28px */
    font-weight: 500;
    margin-bottom: 0.4rem;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #454B4D;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6 {
    color: white;
}

a {
    color: #1F8CD6;
    text-decoration: none;
}

a:hover {
    color: #175E91;
}

pre {
    background: #F0F0F0;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
    margin: 0 3rem;
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Content Styling */
.header .padding {
    padding: 1rem 0;
}

.header {
    background-color: #1F8DD6;
    color: #eee;
}

.header a {
    color: #fff;
}

.header .logo {
    font-size: 1.7rem;
    text-transform: uppercase;
}

.footer {
    background-color: #eee;
}

/* Menu Settings */
.main-nav ul {
    text-align: center;
    letter-spacing: -1em;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    display: inline-block;
    letter-spacing: normal;
}

.main-nav ul li a {
    position: relative;
    display: block;
    line-height: 45px;
    color: #fff;
    padding: 0 20px;
    white-space: nowrap;
}

.main-nav > ul > li > a {
    border-radius: 2px;
}

/*Active dropdown nav item */
.main-nav ul li:hover > a {
    background-color: #175E91;
}

/* Selected Dropdown nav item */
.main-nav ul li.selected > a {
    background-color: #fff;
    color: #175E91;
}

/* Dropdown CSS */
.main-nav ul li {position: relative;}

.main-nav ul li ul {
    position: absolute;
    background-color: #1F8DD6;
    min-width: 100%;
    text-align: left;
    z-index: 999;

    display: none;
}
.main-nav ul li ul li {
    display: block;
}

/* Dropdown CSS */
.main-nav ul li ul ul {
    left: 100%;
    top: 0;
}

/* Active on Hover */
.main-nav li:hover > ul {
    display: block;
}

/* Child Indicator */
.main-nav .has-children > a {
    padding-right: 30px;
}
.main-nav .has-children > a:after {
    font-family: FontAwesome;
    content: '\f107';
    position: absolute;
    display: inline-block;
    right: 8px;
    top: 0;
}

.main-nav .has-children .has-children > a:after {
    content: '\f105';
}

.bg-hero {
    background-image: url('https://images.unsplash.com/photo-1529119368496-2dfda6ec2804?q=80&w=5340&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
}

/* Hero Section Font Sizes for Improved Readability */
.hero h1 {
    font-size: 4rem; /* 64px */
    line-height: 1.2;
}

.hero p {
    font-size: 2rem; /* 32px */
    line-height: 1.6;
}


/* Calendly Wrapper Specific Styling */
.calendly-wrapper {
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 100%;
}

.calendly-wrapper .calendly-inline-widget {
    margin: 0 !important;
    padding: 0 !important;
}

.calendly-inline-widget > iframe > #root > div > div > div

.button,
.btn,
.cta {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: white;
    background-color: #1F8CD6;
    border: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    min-height: 64px;
    line-height: 64px;
}
