/*!
Theme Name: HeavenMark LTD
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Reset
2. Variables
3. Custom CSS

*/
/*******************************************************
 *
 * 1. Reset
 *
 *******************************************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease-in;
}

a:hover,
a:focus {
  color: var(--accent-second);
}

/*** Root font-size ***/
html {
  font-size: 16px;
  overflow-x: hidden;
}

.transition,
.site-branding a,
.header-banner,
header#masthead,
a,
input[type="submit"],
#nav > li > .sub-menu,
button {
  transition: all 0.3s ease-in-out;
}

*:focus {
  outline: none;
}

*:focus:before,
*:focus:after {
  outline: none;
}

/*******************************************************
 *
 * 2. Variables
 *
 *******************************************************/
:root {
  /** Font default */
  --font-family-default: "Poppins", sans-serif;
  --accent-main: #0f4aae;
  --accent-second: #7cbc20;
  --accent-hvr: #e9a77b;
}

/*******************************************************
 *
 * 3. Custom CSS
 *
 *******************************************************/
/* Global */
body {
  font-family: var(--font-family-default);
  margin: 0;
  overflow: hidden;
  margin-top: 50px;
  font-weight: 400;
  line-height: 1.6;
  color: #665;
  font-size: 1.25rem;
  background: #fff;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

p,
ol li,
ul li {
  font-size: 16px !important;
  font-weight: 300;
  text-transform: none !important;
  margin: 15px auto;
  line-height: 1.6;
}

ol li,
ul li {
  margin: 25px auto;
}
ol li strong,
ul li strong {
  font-weight: 700;
  display: block;
}

.lead {
  font-size: 1.25rem !important;
}

strong {
  font-weight: 700;
}

img {
  max-width: 100%;
  border-radius: 5px;
}

/*** Heading ***/
h1 {
  font-size: 54px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: var(--font-family-title);
}

h2 {
  color: var(--accent-main);
  text-transform: none;
  margin-bottom: 6px;
  font-family: var(--font-family-title);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1em;
}

h3 {
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--font-family-title);
  line-height: 1.2;
}

/*** Buttons ***/
.link-pill {
  display: inline-block;
  background-color: #fff;
  padding: 4px 14px;
  border-radius: 60px;
  color: var(--secolor);
  margin-right: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.link-pill:hover,
.link-pill:focus {
  text-decoration: none;
  background-color: #e9a77b;
  color: #fff;
}

section {
  position: relative;
  padding: 70px 0;
}

/*** Contact Form ***/

.cf7-theme-form form {
  position: relative;
}

.cf7-theme-form form .wpcf7-form-control-wrap {
  display: block;
}

.cf7-theme-form form .wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: 0;
}

.cf7-theme-form form .wpcf7-response-output {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 15px 0 !important;
  text-align: center;
  color: #000;
  line-height: 1.5;
  font-size: 0.7rem;
}

.cf7-theme-form form .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  width: initial;
  display: inline-block;
  font-size: 12px;
}

.cf7-theme-form {
  margin-bottom: 80px;
}

.cf7-theme-form input:not([type="submit"]),
.cf7-theme-form textarea {
  height: 45px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  margin: 15px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.cf7-theme-form textarea {
  height: 150px;
  resize: none;
  padding-top: 10px;
}

.cf7-theme-form input[type="submit"] {
  display: inline-block;
  font-size: 20px;
  padding: 20px 35px;
  border: none;
  border-radius: 35px;
  color: #fff;
  background: var(--accent-main);
}

.cf7-theme-form input[type="submit"]:hover,
.cf7-theme-form input[type="submit"]:focus {
  background: #444;
}

/*** Mobile Header ***/
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.mobile-header .navbar-brand {
  color: #000;
  font-family: var(--font-family-default);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.mobile-header .navbar-brand img {
  max-width: 100px;
  margin-right: 10px;
}

.navbar-nav {
  margin: 7.5px 0;
}

.mobile-header .navbar-brand span:first-of-type {
  color: #000;
}

div#collapsibleNavbar {
  padding: 0;
}

#mobile-menu {
  width: 100%;
}
#mobile-menu a {
  color: #fff;
  display: block;
  padding: 10px 0;
}
#mobile-menu a:hover,
#mobile-menu a:focus {
  color: #fff;
  background: #333;
  text-decoration: none;
}
#mobile-menu .sub-menu {
  margin-left: 20px;
  display: none;
}
#mobile-menu .sub-menu a {
  margin: 10px;
}

.navbar.bg-dark {
  border-radius: 0;
  background: var(--accent-main) !important;
}

.mobile-header .navbar-brand {
  filter: invert(1);
}

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

.navbar-brand {
  padding: 0;
  margin: 0;
  height: initial;
  float: none;
  font-family: var(--font-family-title);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

/*** Header ***/
header#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 100;
  z-index: 100;
  background: #fff;
}
header#masthead .pill-w a {
  color: #fff !important;
  text-align: center;
  display: inline-block;
  padding: 12px 40px 12px 40px !important;
  font-weight: 500;
  border-radius: 55px;
  font-size: 16px !important;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  position: relative;
  overflow: hidden;
  background: var(--accent-main);
}
header#masthead .pill-w a:hover,
header#masthead .pill-w a:focus {
  text-decoration: none;
  background: var(--accent-hvr);
  color: #fff;
}

.header-banner {
  background: var(--accent-main);
  padding: 10px 0;
  overflow: hidden;
  max-height: 54px;
  color: #fff;
  font-size: 14px;
}

.header-banner .link-pill {
  color: #665;
}

header#masthead.fixed .header-banner {
  max-height: 0;
  padding: 0;
}

.site-branding a {
  color: var(--accent-main);
  font-size: 26px;
  text-transform: capitalize;
  font-weight: 700;
  opacity: 0;
}
.site-branding a:hover,
.site-branding a:focus {
  text-decoration: none;
}

#nav {
  display: flex;
  justify-content: flex-end;
}
#nav li {
  margin: 0;
}
#nav a {
  text-decoration: none;
  align-items: center;
  letter-spacing: 0.05em;
  color: var(--accent-main);
  font-size: 15px;
  padding: 13px 25px;
  margin: 13px 0;
  font-weight: 500;
  display: block;
}
#nav a:hover,
#nav a:focus {
  color: var(--accent-hvr);
}

.display-4 {
  font-size: 3rem;
}

.header-banner li {
  margin: 0;
}

.hb-contact a {
  color: #fff;
  font-size: 14px;
  display: inline-block;
}
.hb-contact a:first-of-type {
  margin-right: 20px;
}
.hb-contact a i {
  margin-right: 5px;
}
.hb-contact a:hover,
.hb-contact a:focus {
  text-decoration: none;
  color: var(--accent-hvr);
}

/*** Main ***/
main {
  margin-top: 137px;
}

#hero {
  padding-top: 120px;
}
#hero h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: var(--font-family-title);
  background-image: linear-gradient(60deg, var(--accent-main), #0ba2e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#hero p {
  font-size: 17px;
  color: #535772;
  max-width: 600px;
  margin: 0;
}

.hero-img {
  margin-right: calc((950px - 100vw) / 2);
}

.hero-img img {
  width: 100%;
  height: auto;
}

/*** Services ***/
#services {
  background: #e6e6e6;
  padding: 100px 0;
}
#services h3 {
  color: #2c2c2c;
}

.tab-container {
  display: flex;
}

.tab-container h2 {
  white-space: nowrap;
}

.tab-container .nav {
  padding-right: 50px;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
  position: relative;
  text-decoration: none;
  padding: 22px 22px 21.5px 0px;
  font-size: 20px;
  font-weight: 500;
  color: #59595e;
  display: block;
  transition: all 0.5s ease;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--accent-hvr);
  background-color: transparent;
}

#about img {
  margin-bottom: 30px;
}

/*** Drive ***/
#drive {
  background: var(--accent-main);
}

.drive-list {
  display: flex;
  flex-flow: row wrap;
  margin-top: 40px;
}

.drive-item {
  width: 25%;
  margin: 25px 0;
  padding: 0 15px;
}
.drive-item h3 {
  font-size: 22px;
}
.drive-item h3:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(images/check-icon.png) no-repeat;
  margin-bottom: 20px;
}

/*** Footer ***/
footer {
  font-size: 14px;
  padding-top: 50px;
  background: #f0f0f0;
}
footer h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
footer a {
  color: #665;
}
footer a:hover,
footer a:focus {
  color: var(--accent-hvr);
  text-decoration: none;
}
footer li {
  margin: 5px 0;
}

#footer-nav a {
  color: #665;
}
#footer-nav a:hover,
#footer-nav a:focus {
  color: var(--accent-hvr);
}

.copyright {
  background: #444;
  padding: 20px 0;
  font-size: 14px;
  margin-top: 30px;
}

/*** Inner page ***/
span.posted-on time:not(:last-of-type) {
  display: none;
}

.single .entry-meta {
  margin-bottom: 30px;
}

.single .entry-meta,
.single .entry-meta a {
  font-size: 14px;
  color: #ccc;
}

.single h1.entry-title {
  margin-bottom: 10px;
  position: relative;
  text-align: center;
  padding: 0 15px;
  color: #fff;
}

.post-thumbnail img {
  height: auto;
}

.archive header.page-header {
  text-align: center;
}

.archive header.page-header h1 {
  font-size: 0;
}

.archive header.page-header h1 span {
  font-size: 40px;
}

.article-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.article-list article {
  width: 33.33%;
  padding: 20px;
  margin: 15px 0;
}

.archive h2.entry-title a {
  font-size: 25px;
}

/*** Inner Page Custom ***/
.entry-content {
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

header.entry-header {
  padding: 100px 0;
  margin-bottom: 50px;
  background-size: cover !important;
  position: relative;
}
header.entry-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

header.entry-header > div {
  position: relative;
}

.entry-content ul {
  list-style: disc;
  margin-left: 25px;
}

.article-list header.entry-header {
  padding: 0;
  margin-bottom: 0;
}

.article-list .entry-content {
  padding: 0;
}

.article-list header.entry-header:before {
  display: none;
}

.article-list header.entry-header h2 a {
  color: #333;
  line-height: 1;
}

.article-list header.entry-header h2 {
  margin-bottom: 0 !important;
}

/*** Media Queries ***/
@media only screen and (min-width: 991px) {
  .mobile-header {
    display: none;
  }
  body {
    margin-top: 0;
  }
  #masthead {
    display: block;
  }
}
@media only screen and (max-width: 1199px) {
  #hero h1 {
    font-size: 40px;
  }
  .nav-pills .nav-link {
    padding: 10px 22px 10px 0px;
  }
}
@media only screen and (max-width: 991px) {
  .collapse:not(.show) {
    display: none !important;
  }
  #masthead {
    display: none !important;
  }
  .navbar-nav > li {
    margin: 5px auto;
  }
  body {
    margin-top: 48px;
  }
  section {
    text-align: center;
  }
  main {
    margin-top: 0;
  }
  .tab-container {
    flex-direction: column;
  }
  .tab-container .nav {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .nav-pills .nav-link {
    padding: 10px 22px;
  }
  .drive-item {
    width: 50%;
  }
  .drive-item h3:before {
    margin: 0 auto 20px;
  }
  .hero-img {
    margin-right: 0;
  }
  #services h3 {
    margin-top: 20px;
  }
  .drive-item {
    width: 100%;
  }
  #hero {
    padding-top: 70px;
  }

  .article-list article {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  footer h3 {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 480px) {
  h1,
  h2 {
    font-size: 30px;
  }
  p,
  ol li {
    font-size: 1rem !important;
  }
} /*# sourceMappingURL=style.css.map */
