/* ------------------------------------------------------------------
   BASE STYLES
   - General style
   - Typography
   - Form elements
   - Utility classes
------------------------------------------------------------------- */

/* ======= General style ======= */
html,
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
body {
  font-family: var(--font-syne), sans-serif;
  color: #868a9b;
  font-size: 16px;
  line-height: 1.75em;
  font-weight: 400;
  background: #f4f5f7;
}
img {
  width: 100%;
  height: auto;
}
/* typography */
/* headings */
h1 {
  font-size: 60px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 30px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 21px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #868a9b;
  font-family: var(--font-syne), sans-serif;
  font-weight: 700;
  line-height: 1.25em;
}
/* paragraph */
p {
  font-family: var(--font-syne), sans-serif;
  font-size: 16px;
  line-height: 1.75em;
  margin: 0 0 20px;
  color: #868a9b;
  font-weight: 400;
}
/* lists */
ul {
  list-style-type: none;
}
/* links */
a {
  color: #18191d;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #18191d;
}
a:link {
  text-decoration: none;
}
a:focus {
  outline: none;
}
img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
/* form element */
button,
input,
optgroup,
select,
textarea {
  font-family: var(--font-syne), sans-serif;
}
input[type='password']:focus,
input[type='email']:focus,
input[type='text']:focus,
input[type='file']:focus,
input[type='radio']:focus,
input[type='checkbox']:focus,
textarea:focus {
  outline: none;
}
input[type='password'],
input[type='email'],
input[type='text'],
input[type='file'],
textarea {
  max-width: 100%;
  margin-bottom: 20px;
  padding: 15px 0;
  height: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 2px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 1.5em;
  font-family: var(--font-syne), sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #868a9b;
  background-image: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
input:focus,
textarea:focus {
  border-bottom-width: 2px;
  border-color: #18191d;
}
/* submit and alert success  */
input[type='submit'],
input[type='reset'],
input[type='button'],
button {
  font-family: var(--font-syne), sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1.75em;
  -webkit-transition: background-color 0.15s ease-out;
  transition: background-color 0.15s ease-out;
  border: none;
  color: #868a9b;
  background: #18191d;
  padding: 17px 34px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
input[type='submit']:hover,
input[type='reset']:hover,
input[type='button']:hover {
  background: #18191d;
  color: #fff;
  border: none;
}

button.mfp-close:hover,
button.mfp-arrow:hover {
  background: transparent;
}
.alert-success {
  background: transparent;
  color: #868a9b;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 0px;
}
select {
  padding: 10px;
  border-radius: 5px;
}
th,
tr,
td {
  padding: 10px 0;
}
input[type='radio'],
input[type='checkbox'] {
  display: inline;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #868a9b;
  font-size: 16px;
  font-weight: 400;
}
:-moz-placeholder {
  color: #868a9b;
}
::-moz-placeholder {
  color: #868a9b;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #868a9b;
}
/* important css */
.bg-whit {
  background-color: #fff;
}
.bg-drknavy {
  background-color: #18191d;
}
.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.pb-0 {
  padding-bottom: 0px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.mt-25 {
  margin-top: 25px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-60 {
  margin-bottom: 60px;
}
.bg-fixed {
  background-attachment: fixed;
  z-index: 1;
}
.bg-img {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  .bg-fixed {
    background-attachment: scroll;
  }
  .bg-img {
    background-size: cover;
    background-position: center;
  }
}

.bg-img-position-top {
  background-position: top;
}
.ontop {
  position: relative;
  z-index: 7;
}
.rest {
  padding: 0 !important;
  margin: 0 !important;
}
.d-flex {
  display: flex !important;
}
.full-width {
  width: 100% !important;
}
/* list style */
.ullist {
  display: grid;
  font-size: 16px;
}
.ullist ul {
  position: relative;
  float: left;
  padding: 0px;
}
.ullist ul li {
  position: relative;
  line-height: 1.5em;
  margin-bottom: 10px;
  padding-left: 25px;
}
.ullist ul li:before {
  content: '\e64c';
  font-family: 'Themify';
  position: absolute;
  left: 0;
  top: -1px;
  color: #18191d;
  font-weight: 400;
  font-size: 13px;
}

/* ======= CSS-only animations (no JS required) ======= */
/* These animate on page load without hiding content first */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Base animation class - always visible, animates on load */
.anim {
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

/* Animation types */
.anim-fadeInUp { animation-name: fadeInUp; }
.anim-fadeIn { animation-name: fadeIn; }

/* Staggered delays */
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }
.anim-delay-6 { animation-delay: 0.6s; }
