* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  box-sizing: border-box;
  color: #333;
  font: 300 16px "Figtree", sans-serif;
  font-optical-sizing: auto;
  min-height: 100%;
  padding-bottom: 453px;
  position: relative;
}

h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 1em;
  text-transform: uppercase;
}

h2 {
  font-size: 60px;
  font-weight: 300;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

h2 span {
  color: #1771ad;
  font-weight: 700;
}

h3 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 0.75em;
}

h4 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

h5 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 0.6em;
  text-transform: uppercase;
}

h6 {
  font-size: 24px;
  font-weight: 700;
  margin: 1.2em 0 1em;
}

p {
  line-height: 1.6em;
  margin: 1em 0;
}

p:first-of-type { margin-top: 0; }

p:last-of-type { margin-bottom: 0; }

p.larger {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
}

img { vertical-align: middle; }

a { transition: 300ms; }

a.button {
	background-color: #1771ad;
	color: #fff !important;
	display: inline-block;
  font-weight: 700;
	padding: 15px 20px;
	text-decoration: none;
	text-transform: uppercase;
}

a.button:hover { background-color: #125991; }

a.button.white {
  background-color: #fff;
  color: #000 !important;
}

a.button.large { font-size: 18px; }

.button-wrapper { margin-top: 2em; }

.hide { opacity: 0; }

.divider {
  margin: 120px 0;
  padding: 0 20px;
  text-align: center;
}

ul.checkmark {
  list-style: none;
  margin: 1.5em 0;
  text-align: left;
}

ul.checkmark li,
ul.checkmark1 li {
  background: url("../images/checkmark.png") left top no-repeat;
  line-height: 22px;
  margin-bottom: 0.75em;
  margin-left: 0 !important;
  padding-left: 32px; 
}

ul.checkmark1 {
  margin: -1em 0 0 !important;
  text-align: left;
}

ul.checkmark1 li { background: url("../images/checkmark1.png") left top no-repeat; }

.pull-right {
  float: right;
  margin: 0 0 40px 40px;
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
  padding: 40px;
  position: absolute;
    top: 0;
    right: 0;
    left: 0;
  z-index: 100;
}

nav {
  display: grid;
  gap: 30px 20px;
  grid-template-columns: max-content 1fr;
  place-items: start end;
}

nav a {
  color: #fff;
  text-decoration: none;
}

.logo img { max-width: 100%; }

header .contact,
#menu-main-menu {
  display: flex;
  flex-flow: row wrap;
  gap: 20px 60px;
  list-style: none;
}

header .contact {
  color: #fff;
  font-size: 18px;
}

header .contact .fa-solid { margin-right: 10px; }

#menu-main-menu a {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

#menu-main-menu a::after {
  border-bottom: 3px solid #1771ad;
  content: '';
  display: block;
  padding-bottom: 7px;
  transform: scaleX(0);
  transition: transform 300ms ease-in-out;
}

#menu-main-menu a:hover::after { transform: scaleX(0.9); }

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

#mainMenu {
  background-color: #1f1f1f;
  height: 100vh;
  overflow-x: hidden;
  position: fixed;
    top: 0;
    right: 0;
  transition: 1s;
  width: 0;
  z-index: 998;
}

#mainMenu.show { width: 100%; }

#mainMenu ul { list-style: none; }

#mainMenu .mobile-menu { margin: 0 30px; }

#mainMenu .mobile-menu:first-child { margin-top: 30px; }

.mobile-menu li ul {
  display: none;
  margin-bottom: 15px;
}

.mobile-menu a {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0;
  text-decoration: none;
  white-space: nowrap;
}

/* ==========================================================================
    Mobile Menu Toggle
   ========================================================================== */
  
#openMenu {
  background-color: #1f1f1f;
  display: none;
  padding: 20px 15px;
  position: fixed;
    top: 0;
    right: 0;
  transition: .5s;
  width: 41px;
  z-index: 999;
}

#openMenu.open {
  background-color: #1f1f1f;
  color: #fff;
}

#menuTitle {
  position: relative;
  text-align: center;
  transition: .5s;
}
  
/* ==========================================================================
    Mobile Menu Icon Transition Effect
   ========================================================================== */
  
#btn {
  cursor: pointer;
  display: block;
  height: 30px;
  position: relative;
  transition: .5s;
  z-index: 200;
}

#btn .icon,
#btn .icon::before,
#btn .icon::after {
  background: #fff;
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  transition: top ease .5s .5s, transform ease .5s;
  width: 41px;
}

#btn .icon {
  top: 14px;
  left: 2px;
}

#btn .icon::before { top: -8px; }

#btn .icon::after { top: 8px; }

#btn.active .icon { background: transparent; }

#btn.active .icon::before { transform: rotate(45deg); }

#btn.active .icon::after { transform: rotate(-45deg); }

#btn.active .icon::before,
#btn.active .icon::after {
  background-color: #fff;
  top: 0;
  transition: top ease .5s, transform ease .5s .5s;
}

/* ==========================================================================
   Banner
   ========================================================================== */

.banner {
  position: relative;
  z-index: 0;
}

.banner img { max-width: 100%; }

.banner h1 {
  font-size: 72px !important;
  font-weight: 300;
}

.banner h1 strong { font-weight: 700; }

.banner .banner-overlay p {
  font-size: 24px !important;
  font-weight: 300;
  line-height: 1.5em !important;
  margin: 0.8em 0 1em !important;
}

.banner .button {
  font-size: 18px !important;
  padding: 15px 20px !important;
}

div.banner-overlay {
  max-width: 1400px;
  text-align: center !important;
}

/* ==========================================================================
   Content
   ========================================================================== */

.content {
  margin: 120px auto;
  max-width: 1600px;
  padding: 0 20px;
}

.content a { color: #1771ad; }

.content img { max-width: 100%; }

.content ul {
  margin: 1em 0;
  overflow: hidden;
}

.content li {
  line-height: 1.5em;
  margin: 0 0 0.5em 1em;
}

.content li:last-child { margin-bottom: 0; }

.content strong { font-weight: 600; }

.intro {
  margin-bottom: 80px;
  text-align: center;
}

.intro h2 { margin-bottom: 0.4em !important; }

.intro.smaller {
  margin: 0 auto 80px;
  max-width: 1200px;
}

.left-image {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 5fr 12fr;
  margin-bottom: 80px;
}

.right-image {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 12fr 5fr;
  margin-bottom: 80px;
}

.left-image img,
.right-image img { max-width: 100%; }

.content .section1 { padding: 0; }

.content .section1 .grid { gap: 40px; }

.content .border {
  border: 1px solid #e1e1e1;
  padding: 30px;
}

.content .section1 .grid-item ul.checkmark {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
}

.content .section1 h3:last-child { margin-bottom: 0; }

.content .image.border { padding: 0; }

.grid-item ul:last-child { margin-bottom: 0; }

.content .section1 .grid.col3 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }

.content .section1 .grid ul { margin: 2em 0; }

.content .section1 .grid ul:last-child { margin-bottom: 0; }

.content .logo { margin-bottom: 20px; }

.content .g1 .grid-item {
  padding-bottom: 79px;
  position: relative;
}

.content .g1 h3 {
  position: absolute;
	right: 0;
	bottom: 30px;
	left: 0;
}

.content .section1 .grid.g2 { gap: 20px; }

.content .grid.g3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin: 2em 0;
  text-align: center;
}

.content .grid.g3 .icon {
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}

.content .grid.g3 .icon img {
  position: relative;
  z-index: 1;
}

.content .grid.g3 .icon::after {
  border: 50px solid rgba(23,113,173,0.15);
  border-radius: 50px;
  content: ' ';
  position: absolute;
    top: 10px;
    left: -10px;
  z-index: 0;
}

.content .grid.g3 p,
.content .grid.g3 ul { text-align: left; }

.content .section1 .g1.mod .grid-item ul.checkmark {
  justify-content: start;
  margin: 1em 0 2em;
  text-align: left;
}

.content .g1.mod p,
.content .g1.mod h6 { text-align: left; }

.content .g1.mod h6 {
  font-size: 20px;
  margin-bottom: 0.8em;
}

.content .g1.mod p:last-of-type { margin-bottom: 1em; }

/* ==========================================================================
   Forms
   ========================================================================== */

.fm_empty_margin { margin-top: 0 !important; }

.fm-form-container.fm-theme1 .fm-form,
input[type="text"],
textarea { font-family: 'Figtree', sans-serif !important; }

.fm-form-container.fm-theme1 .fm-form .button-submit {
  font: 700 16px 'Figtree', sans-serif;
  text-transform: uppercase;
}

.iti { display: block !important; }

.fm-form .wd-flex {
  display: block !important;
  text-align: center;
}

.fm-form .fm-header-bg, .fm-form .wdform-field:not([type="type_hidden"]) { padding: 10px !important; }

.wdform_section,
.wdform-element-section { margin: 0 !important; }

.wdform_footer { display: none; }

/* ==========================================================================
   Section 1
   ========================================================================== */

.section1 {
  margin: 120px auto;
  max-width: 1600px;
  padding: 0 20px;
  text-align: center;
}

.section1 h2 { margin-bottom: 1em; }

.section1 h3 { font-size: 24px; }

.section1 .grid {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.section1 .icon {
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}

.section1 .icon img {
  position: relative;
  z-index: 1;
}

.section1 .icon::after {
  border: 50px solid rgba(23,113,173,0.15);
  border-radius: 50px;
  content: ' ';
  position: absolute;
    top: 10px;
    left: -10px;
  z-index: 0;
}

/* ==========================================================================
   Section 2
   ========================================================================== */

.section2 {
  margin: 120px auto;
  max-width: 1600px;
  padding: 0 20px;
}

.section2 img { border: 1px solid #e1e1e1; }

/* ==========================================================================
   Section 3
   ========================================================================== */

.section3-wrapper { padding: 0 20px; }

.section3 {
  background-color: #f1f1f1;
  box-sizing: border-box;
  margin: 120px auto;
  max-width: 1600px;
  padding: 80px 60px;
  text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-wrapper {
  background-color: #212121;
  color: #fff;
  position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.footer-wrapper a {
  color: #fff;
  text-decoration: none;
}

.footer-wrapper a:hover { color: #1771ad; }

.footer {
  display: grid;
  gap: 30px 120px;
  grid-template-columns: 1fr max-content;
  margin: 0 auto;
  max-width: 1600px;
  padding: 60px 20px;
}

.footer .menu {
  line-height: 1.5em;
  list-style: none;
}

.footer .tagline {
  font-size: 18px;
  margin-top: 20px;
}

.copyright {
  border-top: 1px solid #424242;
  padding: 20px;
  text-align: center;
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media only screen  
and (max-width : 1399px) {

body { padding-bottom: 0; }

h1, h2 { font-size: 48px; }

h3 { font-size: 35px; }

h4 { font-size: 29px; }

h5 { font-size: 22px; }

nav {
  grid-template-columns: auto;
  grid-template-rows: repeat(3, auto);
  justify-items: center;
}

.logo { grid-row: auto; }

#menu-main-menu { gap: 20px 40px; }

header {
  background: url("/wp-content/themes/numacorp/images/banner.jpg") center center no-repeat;
  background-size: cover;
  padding: 40px 20px;
  position: relative;
}

.banner { display: none; }

div [class*="section"],
.content { margin: 80px auto; }

.intro { margin-bottom: 60px; }

.left-image,
.right-image {
  gap: 30px 60px;
  margin-bottom: 60px;
}

.section1 p { font-size: 20px; }

.section2 p { font-size: 16px; }

.section3 {
  grid-template-columns: auto;
  text-align: center;
}

.footer-wrapper { position: relative; }

.footer {
  gap: 30px 60px;
  grid-template-columns: repeat(4, auto);
}

}

@media only screen  
and (max-width : 1023px) {

.pull-right {
  float: none;
  margin: 1em 0;
}
	
a.button.large { font-size: 16px; }

#menu-main-menu { display: none; }

header .contact {
  gap: 20px;
  justify-content: center;
}

/*#openMenu { display: block; }*/

.left-image,
.right-image { grid-template-columns: auto; }

.left-image .image,
.right-image .image { grid-row: 1; }

.section1 {
  grid-template-columns: auto;
  text-align: center;
}

.section2 .grid { grid-template-columns: auto; }

.footer { grid-template-columns: repeat(2, auto); }

}

@media only screen  
and (max-width : 767px) {

h1, h2 { font-size: 36px; }

h3 { font-size: 28px; }

h4 { font-size: 24px; }

div [class*="section"],
.content { margin: 60px auto; }

.intro {
  font-size: 16px;
  margin-bottom: 40px;
}

.left-image,
.right-image { margin-bottom: 40px; }

.section1 p { font-size: 16px; }

.section2 p { display: none; }

.section2 .button-wrapper { margin-top: 0; }

.section3,
.section5 { padding: 60px 20px; }

.footer { grid-template-columns: auto; }

}