/*!
Theme Name: Metrol
Theme URI: https://metrol.bslthemes.com/
Author: bslthemes
Author URI: https://bslthemes.com/
Description: Metrol - Factory & Industry WordPress Theme
Requires at least: 5.0
Requires PHP: 7.4
Tested up to: 6.9
Version: 1.0.0
License: General Public License
License URI: http://www.gnu.org/licenses/gpl.html
Text Domain: metrol
Tags: full-width-template, editor-style, featured-images, sticky-post, threaded-comments, translation-ready, theme-options
*/

/*--------------------------------------------

1. starter
    - default
    - page scale
    - flex
    - font family
    - text align
    - font size
    - line height
    - colors
    - spaces
    - section space
2. hero
    - hero 1
    - hero 2
    - hero 3
    - hero 4
    - hero 5
    - hero inner 1
    - hero inner 2
    - hero inner 3
    - dodecahedron
    - circle text

3. components
    - top panel
    - menu button
    - iconbox
    - about
    - counters
    - popup
    - contact
    - services
    - steps
    - reviews
    - brands 
    - blog 
    - projects
    - accordion (faq)
    - price
    - footer

4. common
    - typography
    - buttons
    - faces
    - breadcrumbs

--------------------------------------------*/

/* -------------------------------------------

colors

------------------------------------------- */
/* -------------------------------------------

space basic

------------------------------------------- */
/* -------------------------------------------

trasition

------------------------------------------- */
/* -------------------------------------------

default

------------------------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}
*:focus,
*:before:focus,
*:after:focus {
  outline: inherit;
}

*::-moz-selection {
  color: #0F1214;
  background-color: #FFBD24;
}

*::selection {
  color: #0F1214;
  background-color: #FFBD24;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: #0F1214;
}

::-webkit-scrollbar-thumb {
  background: #FFBD24;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  padding: 0;
  margin: 0;
  height: auto;
}

input[type=text],
input[type=email],
input[type=tel] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 10px;
}

a {
  text-decoration: inherit;
  color: inherit;
}

/* -------------------------------------------

page scale old


html {
  font-size: 9px;
}
@media (max-width: 1600px) {
  html {
    font-size: 8px;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 7px;
  }
}
------------------------------------------- */

/* -------------------------------------------

page scale

------------------------------------------- */
html {
  font-size: 10px;
}
@media (min-width: 2400px) {
  html {
    font-size: 11px;
  }
}
@media (max-width: 1920px) {
  html {
    font-size: 9px;
  }
}
@media (max-width: 1600px) {
  html {
    font-size: 8px;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 7px;
  }
}

/* -------------------------------------------

page transitions

------------------------------------------- */
.mil-relative {
  position: relative;
}

/* -------------------------------------------

flex

------------------------------------------- */
.mil-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mil-hidden {
  display: none;
}

.mil-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.mil-row-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.mil-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mil-column-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.mil-jcs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.mil-jcc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mil-jce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.mil-jcb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mil-ais {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.mil-aic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mil-aie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 1200px) {
  .mil-lg-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mil-lg-hidden {
    display: none;
  }
  .mil-lg-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mil-lg-row-r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .mil-lg-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mil-lg-column-r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .mil-lg-jcs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .mil-lg-jcc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mil-lg-jce {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .mil-lg-jcb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mil-lg-ais {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .mil-lg-aic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mil-lg-aie {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (max-width: 992px) {
  .mil-md-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mil-md-hidden {
    display: none;
  }
  .mil-md-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mil-md-row-r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .mil-md-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mil-md-column-r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .mil-md-jcs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .mil-md-jcc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mil-md-jce {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .mil-md-jcb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mil-md-ais {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .mil-md-aic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mil-md-aie {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (max-width: 768px) {
  .mil-sm-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mil-sm-hidden {
    display: none;
  }
  .mil-sm-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mil-sm-row-r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .mil-sm-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mil-sm-column-r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .mil-sm-jcs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .mil-sm-jcc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mil-sm-jce {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .mil-sm-jcb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .mil-sm-ais {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .mil-sm-aic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mil-sm-aie {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
/* -------------------------------------------

font family

------------------------------------------- */
.mil-ff-1 {
  font-family: "Anton", sans-serif;
}

.mil-ff-2 {
  font-family: "Outfit", serif;
}

.mil-ff-3 {
  font-family: "Audiowide", sans-serif;
}

.mil-ff-4 {
  font-family: "Reenie Beanie", serif;
}

/* -------------------------------------------

text align

------------------------------------------- */
.mil-tac {
  text-align: center;
}

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

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

@media (max-width: 992px) {
  .mil-md-tac {
    text-align: center;
  }
  .mil-md-tar {
    text-align: right;
  }
  .mil-md-tal {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .mil-sm-tac {
    text-align: center;
  }
  .mil-sm-tar {
    text-align: right;
  }
  .mil-sm-tal {
    text-align: left;
  }
}
/* -------------------------------------------

font size

------------------------------------------- */
.mil-fs-24 {
  font-size: 2.4rem;
}

.mil-fs-36 {
  font-size: 3.6rem;
}

.mil-fs-40 {
  font-size: 4rem;
}

.mil-fs-52 {
  font-size: 5.2rem;
}

.mil-fs-62 {
  font-size: 6.2rem;
}

.mil-fs-68 {
  font-size: 6.8rem;
}

.mil-fs-72 {
  font-size: 7.2rem;
}

.mil-fs-92 {
  font-size: 9.2rem;
}

.mil-fs-20 {
  font-size: 2rem;
}

.mil-fs-18 {
  font-size: 1.8rem;
}

.mil-fs-16 {
  font-size: 1.6rem;
}

.mil-fs-14 {
  font-size: 1.4rem;
}

.mil-fs-12 {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .mil-sm-fs-52 {
    font-size: 5.2rem;
  }
  .mil-sm-fs-68 {
    font-size: 6.8rem;
  }
  .mil-sm-fs-72 {
    font-size: 7.2rem;
  }
  .mil-sm-fs-18 {
    font-size: 1.8rem;
  }
  .mil-sm-fs-16 {
    font-size: 1.6rem;
  }
  .mil-sm-fs-14 {
    font-size: 1.4rem;
  }
}
/* -------------------------------------------

line height

------------------------------------------- */
.mil-lh-100 {
  line-height: 100%;
}

.mil-lh-110 {
  line-height: 110%;
}

.mil-lh-120 {
  line-height: 120%;
}

.mil-lh-130 {
  line-height: 130%;
}

.mil-lh-140 {
  line-height: 140%;
}

.mil-lh-150 {
  line-height: 150%;
}

.mil-lh-160 {
  line-height: 160%;
}

.mil-lh-170 {
  line-height: 170%;
}

.mil-lh-180 {
  line-height: 180%;
}

/* -------------------------------------------

colors

------------------------------------------- */
.mil-c-m-1 {
  color: #0F1214 !important;
}

.mil-c-m-2 {
  color: #1a1f23 !important;
}

.mil-c-m-3 {
  color: rgba(15, 18, 20, 0.5) !important;
}

.mil-c-m-4 {
  color: #E7EAEC !important;
}

.mil-c-m-5 {
  color: #f0f1f3 !important;
}

.mil-c-m-6 {
  color: rgba(240, 241, 243, 0.5) !important;
}

.mil-c-a-1 {
  color: #FFBD24 !important;
}

.mil-c-a-2 {
  color: #3187DD !important;
}

.mil-bg-m-1 {
  background-color: #0F1214 !important;
}

.mil-bg-m-2 {
  background-color: #1a1f23 !important;
}

.mil-bg-m-3 {
  background-color: rgba(15, 18, 20, 0.5) !important;
}

.mil-bg-m-4 {
  background-color: #E7EAEC !important;
}

.mil-bg-m-5 {
  background-color: #f0f1f3 !important;
}

.mil-bg-m-6 {
  background-color: rgba(240, 241, 243, 0.5) !important;
}

.mil-bg-a-1 {
  background-color: #FFBD24 !important;
}

/* -------------------------------------------

spaces

------------------------------------------- */
.mil-mr-0 {
  margin-right: 0;
}

.mil-mb-10 {
  margin-right: 1rem;
}

.mil-mr-15 {
  margin-right: 1.5rem;
}

.mil-mr-20 {
  margin-right: 2rem;
}

.mil-mr-30 {
  margin-right: 3rem;
}

.mil-mr-40 {
  margin-right: 4rem;
}

.mil-mt-45 {
  margin-right: 4.5rem;
}

.mil-mr-60 {
  margin-right: 6rem;
}

.mil-mr-f {
  margin-right: 10rem;
}

.mil-ml-0 {
  margin-left: 0;
}

.mil-ml-10 {
  margin-left: 1rem;
}

.mil-ml-15 {
  margin-left: 1.5rem;
}

.mil-ml-20 {
  margin-left: 2rem;
}

.mil-ml-30 {
  margin-left: 3rem;
}

.mil-ml-40 {
  margin-left: 4rem;
}

.mil-ml-45 {
  margin-left: 4.5rem;
}

.mil-ml-60 {
  margin-left: 6rem;
}

.mil-ml-f {
  margin-left: 10rem;
}

.mil-mt-0 {
  margin-top: 0;
}

.mil-mt-10 {
  margin-top: 1rem;
}

.mil-mt-15 {
  margin-top: 1.5rem;
}

.mil-mt-20 {
  margin-top: 2rem;
}

.mil-mt-30 {
  margin-top: 3rem;
}

.mil-mt-40 {
  margin-top: 4rem;
}

.mil-mt-45 {
  margin-top: 4.5rem;
}

.mil-mt-60 {
  margin-top: 6rem;
}

.mil-mt-f {
  margin-top: 10rem;
}

.mil-mb-0 {
  margin-bottom: 0;
}

.mil-mb-10 {
  margin-bottom: 1rem;
}

.mil-mb-15 {
  margin-bottom: 1.5rem;
}

.mil-mb-20 {
  margin-bottom: 2rem;
}

.mil-mb-30 {
  margin-bottom: 3rem;
}

.mil-mb-40 {
  margin-bottom: 4rem;
}

.mil-mb-45 {
  margin-bottom: 4.5rem;
}

.mil-mb-60 {
  margin-bottom: 6rem;
}

.mil-mb-f {
  margin-bottom: 10rem;
}

@media (max-width: 992px) {
  .mil-md-mr-0 {
    margin-right: 0;
  }
  .mil-md-mb-10 {
    margin-right: 1rem;
  }
  .mil-md-mr-15 {
    margin-right: 1.5rem;
  }
  .mil-md-mr-20 {
    margin-right: 2rem;
  }
  .mil-md-mr-30 {
    margin-right: 3rem;
  }
  .mil-md-mr-40 {
    margin-right: 4rem;
  }
  .mil-md-mt-45 {
    margin-right: 4.5rem;
  }
  .mil-md-mr-60 {
    margin-right: 6rem;
  }
  .mil-md-mr-f {
    margin-right: 10rem;
  }
  .mil-md-ml-0 {
    margin-left: 0;
  }
  .mil-md-ml-10 {
    margin-left: 1rem;
  }
  .mil-md-ml-15 {
    margin-left: 1.5rem;
  }
  .mil-md-ml-20 {
    margin-left: 2rem;
  }
  .mil-md-ml-30 {
    margin-left: 3rem;
  }
  .mil-md-ml-40 {
    margin-left: 4rem;
  }
  .mil-md-ml-45 {
    margin-left: 4.5rem;
  }
  .mil-md-ml-60 {
    margin-left: 6rem;
  }
  .mil-md-ml-f {
    margin-left: 10rem;
  }
  .mil-md-mt-0 {
    margin-top: 0;
  }
  .mil-md-mt-10 {
    margin-top: 1rem;
  }
  .mil-md-mt-15 {
    margin-top: 1.5rem;
  }
  .mil-md-mt-20 {
    margin-top: 2rem;
  }
  .mil-md-mt-30 {
    margin-top: 3rem;
  }
  .mil-md-mt-40 {
    margin-top: 4rem;
  }
  .mil-md-mt-45 {
    margin-top: 4.5rem;
  }
  .mil-md-mt-60 {
    margin-top: 6rem;
  }
  .mil-md-mt-f {
    margin-top: 10rem;
  }
  .mil-md-mb-0 {
    margin-bottom: 0;
  }
  .mil-md-mb-10 {
    margin-bottom: 1rem;
  }
  .mil-md-mb-15 {
    margin-bottom: 1.5rem;
  }
  .mil-md-mb-20 {
    margin-bottom: 2rem;
  }
  .mil-md-mb-30 {
    margin-bottom: 3rem;
  }
  .mil-md-mb-40 {
    margin-bottom: 4rem;
  }
  .mil-md-mb-45 {
    margin-bottom: 4.5rem;
  }
  .mil-md-mb-60 {
    margin-bottom: 6rem;
  }
  .mil-md-mb-f {
    margin-bottom: 10rem;
  }
}
@media (max-width: 768px) {
  .mil-sm-mr-0 {
    margin-right: 0;
  }
  .mil-sm-mb-10 {
    margin-right: 1rem;
  }
  .mil-sm-mr-15 {
    margin-right: 1.5rem;
  }
  .mil-sm-mr-20 {
    margin-right: 2rem;
  }
  .mil-sm-mr-30 {
    margin-right: 3rem;
  }
  .mil-sm-mr-40 {
    margin-right: 4rem;
  }
  .mil-sm-mt-45 {
    margin-right: 4.5rem;
  }
  .mil-sm-mr-60 {
    margin-right: 6rem;
  }
  .mil-sm-mr-f {
    margin-right: 10rem;
  }
  .mil-sm-ml-0 {
    margin-left: 0;
  }
  .mil-sm-ml-10 {
    margin-left: 1rem;
  }
  .mil-sm-ml-15 {
    margin-left: 1.5rem;
  }
  .mil-sm-ml-20 {
    margin-left: 2rem;
  }
  .mil-sm-ml-30 {
    margin-left: 3rem;
  }
  .mil-sm-ml-40 {
    margin-left: 4rem;
  }
  .mil-sm-ml-45 {
    margin-left: 4.5rem;
  }
  .mil-sm-ml-60 {
    margin-left: 6rem;
  }
  .mil-sm-ml-f {
    margin-left: 10rem;
  }
  .mil-sm-mt-0 {
    margin-top: 0;
  }
  .mil-sm-mt-10 {
    margin-top: 1rem;
  }
  .mil-sm-mt-15 {
    margin-top: 1.5rem;
  }
  .mil-sm-mt-20 {
    margin-top: 2rem;
  }
  .mil-sm-mt-30 {
    margin-top: 3rem;
  }
  .mil-sm-mt-40 {
    margin-top: 4rem;
  }
  .mil-sm-mt-45 {
    margin-top: 4.5rem;
  }
  .mil-sm-mt-60 {
    margin-top: 6rem;
  }
  .mil-sm-mt-f {
    margin-top: 10rem;
  }
  .mil-sm-mb-0 {
    margin-bottom: 0;
  }
  .mil-sm-mb-10 {
    margin-bottom: 1rem;
  }
  .mil-sm-mb-15 {
    margin-bottom: 1.5rem;
  }
  .mil-sm-mb-20 {
    margin-bottom: 2rem;
  }
  .mil-sm-mb-30 {
    margin-bottom: 3rem;
  }
  .mil-sm-mb-40 {
    margin-bottom: 4rem;
  }
  .mil-sm-mb-45 {
    margin-bottom: 4.5rem;
  }
  .mil-sm-mb-60 {
    margin-bottom: 6rem;
  }
  .mil-sm-mb-f {
    margin-bottom: 10rem;
  }
}
/* -------------------------------------------

section space

------------------------------------------- */
.mil-p-f-f {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.mil-p-f-60 {
  padding-top: 10rem;
  padding-bottom: 4rem;
}

.mil-p-0-f {
  padding-top: 0;
  padding-bottom: 10rem;
}

.mil-p-f-0 {
  padding-top: 10rem;
  padding-bottom: 0;
}

.mil-p-f-15 {
  padding-top: 10rem;
  padding-bottom: 8.5rem;
}

.mil-p-0-60 {
  padding-bottom: 4rem;
}

/* -------------------------------------------

preloader

------------------------------------------- */
.mil-preloader-frame {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(36, 47, 53, 0.6);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10rem;
  pointer-events: all;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-preloader-frame .mil-logo {
  margin-top: 5rem;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-preloader-frame .mil-preloader {
  text-align: center;
  -webkit-transform: scale(0.7) translateY(100%);
          transform: scale(0.7) translateY(100%);
  opacity: 0;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-preloader-frame .mil-preloader .mil-mil-preloader-line-frame {
  background-color: rgba(163, 169, 171, 0.4);
  height: 0.5rem;
  width: 25rem;
  border-radius: 1rem;
  overflow: hidden;
}
.mil-preloader-frame .mil-preloader .mil-mil-preloader-line-frame .mil-mil-preloader-line {
  height: 100%;
  width: 0;
  background-color: #FFBD24;
  -webkit-transform: 0.4s cubic-bezier(0, 0, 0.3642, 1);
          transform: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-preloader-frame.mil-loading .mil-logo {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.mil-preloader-frame.mil-loading .mil-preloader {
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  opacity: 1;
}
.mil-preloader-frame.mil-ready {
  opacity: 0;
  pointer-events: none;
}
.mil-preloader-frame .mil-counter {
  font-weight: 800;
  font-size: 4.6rem; 
}
.mil-preloader-frame .mil-sub-text-1 {
  font-weight: 800;
  font-size: 2.4rem;
}
.mil-preloader-frame .mil-logo {
  display: block;
  width: 12rem;
}
.mil-preloader-frame .mil-logo img {
  width: 100%;
}

/* -------------------------------------------

hero 1

------------------------------------------- */
.mil-hero-1 .mil-left-frame {
  float: right;
  width: calc(50vw + 12rem);
}
@media (max-width: 1920px) {
  .mil-hero-1 .mil-left-frame {
    width: calc(50vw + 13rem);
  }
}
@media (max-width: 1600px) {
  .mil-hero-1 .mil-left-frame {
    width: calc(50vw + 14rem);
  }
}
.mil-hero-1 .mil-left-frame .mil-top-box {
  position: relative;
  height: calc(100vh - 20rem);
  padding: 10rem;
  background: linear-gradient(340.66deg, #0F1214 38.13%, #1a1f23 98%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.mil-hero-1 .mil-left-frame .mil-top-box:before {
  content: "";
  width: 100%;
  height: 20rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(15, 18, 20, 0)), to(#0f1214));
  background: linear-gradient(0deg, rgba(15, 18, 20, 0) 0%, #0f1214 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-hero-1 .mil-left-frame .mil-top-box .mil-animation-frame {
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
}
@media (min-width: 1920px) {
  .mil-hero-1 .mil-left-frame .mil-top-box .mil-animation-frame {
    -webkit-transform: scale(2.6);
            transform: scale(2.6);
  }
}
.mil-hero-1 .mil-left-frame .mil-bottom-box {
  position: relative;
  height: 20rem;
  padding: 0 10rem;
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1a1f23;
}
.mil-hero-1 .mil-right-frame {
  width: calc(50vw - 11rem);
}
.mil-hero-1 .mil-right-frame .mil-top-box {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 20rem);
}
.mil-hero-1 .mil-right-frame .mil-top-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.mil-hero-1 .mil-right-frame .mil-top-box .mil-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 18, 20, 0.3)), to(rgba(15, 18, 20, 0.2)));
  background: linear-gradient(180deg, rgba(15, 18, 20, 0.3) 0%, rgba(15, 18, 20, 0.2) 100%);
}
.mil-hero-1 .mil-right-frame .mil-bottom-box {
  height: 20rem;
  padding: 0 10rem;
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #E7EAEC;
}
.mil-hero-1 .mil-right-frame .mil-bottom-box .mil-box-content {
  width: 100%;
}
@media (max-width: 992px) {
  .mil-hero-1 .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  .mil-hero-1 .mil-left-frame {
    width: 100vw;
  }
  .mil-hero-1 .mil-left-frame .mil-top-box {
    padding: 30rem 4rem 10rem;
    height: calc(var(--vh, 1vh) * 100);
  }
  .mil-hero-1 .mil-left-frame .mil-bottom-box {
    height: auto;
    padding: 4rem 4rem 1rem;
  }
  .mil-hero-1 .mil-right-frame {
    width: 100vw;
  }
  .mil-hero-1 .mil-right-frame .mil-top-box {
    height: auto;
    padding-bottom: 50%;
  }
  .mil-hero-1 .mil-right-frame .mil-top-box img {
    -o-object-position: center;
       object-position: center;
  }
  .mil-hero-1 .mil-right-frame .mil-bottom-box {
    height: auto;
    padding: 4rem 4rem 1rem;
  }
}
@media (max-width: 768px) {
  .mil-hero-1 .mil-left-frame .mil-top-box .mil-animation-frame {
    right: -10rem;
    top: -10rem;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .mil-hero-1 .mil-right-frame .mil-top-box {
    padding-bottom: 80%;
  }
  .mil-hero-1 .mil-right-frame .mil-top-box img {
    -o-object-position: center;
       object-position: center;
  }
}

/* -------------------------------------------

hero 2

------------------------------------------- */
.mil-hero-2 {
  position: relative;
  overflow: hidden;
}
.mil-hero-2 .mil-video-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.mil-hero-2 .mil-video-bg video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mil-hero-2 .mil-left-frame {
  float: right;
  width: calc(50vw + 12rem);
}
@media (max-width: 1920px) {
  .mil-hero-2 .mil-left-frame {
    width: calc(50vw + 13rem);
  }
}
@media (max-width: 1600px) {
  .mil-hero-2 .mil-left-frame {
    width: calc(50vw + 14rem);
  }
}
.mil-hero-2 .mil-left-frame .mil-main-box {
  position: relative;
  height: 100vh;
  padding: 10rem;
  background-color: rgba(15, 18, 20, 0.8);
  -webkit-backdrop-filter: blur(4rem);
          backdrop-filter: blur(4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.mil-hero-2 .mil-left-frame .mil-main-box:before {
  content: "";
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(15, 18, 20, 0)), to(#0f1214));
  background: linear-gradient(0deg, rgba(15, 18, 20, 0) 0%, #0f1214 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-hero-2 .mil-left-frame .mil-main-box .mil-circle-text-position {
  position: static;
}
.mil-hero-2 .mil-right-frame {
  width: calc(50vw - 11rem);
}
.mil-hero-2 .mil-right-frame .mil-top-box {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 20rem);
}
.mil-hero-2 .mil-right-frame .mil-top-box .mil-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 18, 20, 0.3)), to(rgba(15, 18, 20, 0.2)));
  background: linear-gradient(180deg, rgba(15, 18, 20, 0.3) 0%, rgba(15, 18, 20, 0.2) 100%);
}
.mil-hero-2 .mil-right-frame .mil-bottom-box {
  position: relative;
  height: 20rem;
  padding: 0 10rem;
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFBD24;
}
.mil-hero-2 .mil-right-frame .mil-bottom-box .mil-box-content {
  width: 100%;
}
@media (max-width: 992px) {
  .mil-hero-2 .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  .mil-hero-2 .mil-left-frame {
    width: 100vw;
  }
  .mil-hero-2 .mil-left-frame .mil-main-box {
    padding: 30rem 4rem 10rem;
    height: calc(var(--vh, 1vh) * 100);
  }
  .mil-hero-2 .mil-right-frame {
    width: 100vw;
  }
  .mil-hero-2 .mil-right-frame .mil-top-box {
    height: auto;
    padding-bottom: 50%;
  }
  .mil-hero-2 .mil-right-frame .mil-top-box img {
    -o-object-position: center;
       object-position: center;
  }
  .mil-hero-2 .mil-right-frame .mil-bottom-box {
    height: auto;
    padding: 4rem 4rem 1rem;
  }
}

/* -------------------------------------------

hero 3

------------------------------------------- */
.mil-hero-3 .mil-left-frame {
  float: right;
  width: calc(50vw + 12rem);
}
@media (max-width: 1920px) {
  .mil-hero-3 .mil-left-frame {
    width: calc(50vw + 13rem);
  }
}
@media (max-width: 1600px) {
  .mil-hero-3 .mil-left-frame {
    width: calc(50vw + 14rem);
  }
}
.mil-hero-3 .mil-left-frame .mil-main-box {
  position: relative;
  height: 100vh;
  padding: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.mil-hero-3 .mil-left-frame .mil-main-box:before {
  content: "";
  width: 100%;
  height: 30rem;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(240, 241, 243, 0)), color-stop(90%, #f0f1f3));
  background: linear-gradient(0deg, rgba(240, 241, 243, 0) 10%, #f0f1f3 90%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-hero-3 .mil-left-frame .mil-main-box .mil-animation-frame {
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
}
@media (min-width: 1920px) {
  .mil-hero-3 .mil-left-frame .mil-main-box .mil-animation-frame {
    -webkit-transform: scale(2.6);
            transform: scale(2.6);
  }
}
.mil-hero-3 .mil-right-frame {
  width: calc(50vw - 11rem);
  position: relative;
}
.mil-hero-3 .mil-right-frame .mil-top-box {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.mil-hero-3 .mil-right-frame .mil-top-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.mil-hero-3 .mil-right-frame .mil-top-box .mil-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mil-hero-3 .mil-right-frame .mil-bottom-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.mil-hero-3 .mil-right-frame .mil-bottom-box .row {
  height: 100%;
}
.mil-hero-3 .mil-right-frame .mil-bottom-box .mil-bb-card {
  padding: 4rem;
  height: 100%;
}
.mil-hero-3 .mil-right-frame .mil-bottom-box .mil-circle-text-position {
  position: static;
}
@media (max-width: 992px) {
  .mil-hero-3 .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  .mil-hero-3 .mil-left-frame {
    width: 100vw;
  }
  .mil-hero-3 .mil-left-frame .mil-main-box {
    padding: 30rem 4rem 10rem;
    height: calc(var(--vh, 1vh) * 100);
  }
  .mil-hero-3 .mil-right-frame {
    width: 100vw;
  }
  .mil-hero-3 .mil-right-frame .mil-top-box {
    height: auto;
    padding-bottom: 50%;
  }
  .mil-hero-3 .mil-right-frame .mil-bottom-box {
    position: static;
  }
}
@media (max-width: 768px) {
  .mil-hero-3 .mil-left-frame .mil-main-box .mil-animation-frame {
    right: -10rem;
    top: -10rem;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .mil-hero-3 .mil-right-frame .mil-top-box {
    padding-bottom: 80%;
  }
  .mil-hero-3 .mil-right-frame .mil-top-box img {
    -o-object-position: center;
       object-position: center;
  }
}

/* -------------------------------------------

hero 4

------------------------------------------- */
.mil-hero-4 {
  background-color: #E7EAEC;
  overflow: hidden;
  position: relative;
}
.mil-hero-4 .mil-main-box {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 10rem;
}
.mil-hero-4 .mil-main-box .mil-main-title {
  position: relative;
  z-index: 2;
  width: auto;
}
.mil-hero-4 .mil-circle-text-position {
  background-color: #f0f1f3;
  padding: 1.5rem;
  width: 18rem;
  border-radius: 50%;
  bottom: -8rem;
  top: auto;
  left: -8rem;
}
.mil-hero-4 .mil-logo-iconbox {
  position: absolute;
  top: 30%;
  right: -13rem;
  background-color: #f0f1f3;
  padding: 3rem;
  width: 21rem;
}
.mil-hero-4 .mil-logo-iconbox img {
  width: 4rem !important;
  max-width: none;
}
.mil-hero-4 .mil-hero-images-frame {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
}
.mil-hero-4 .mil-hero-images-frame .container {
  height: 100%;
}
.mil-hero-4 .mil-hero-images-frame .mil-hero-image-1 {
  position: absolute;
  top: 5.5rem;
  left: 0;
  width: 20%;
}
@media (min-width: 2400px) {
  .mil-hero-4 .mil-hero-images-frame .mil-hero-image-1 {
    top: 8.5rem;
  }
}
.mil-hero-4 .mil-hero-images-frame .mil-hero-image-1 .mil-h-image {
  width: 100%;
}
.mil-hero-4 .mil-hero-images-frame .mil-hero-image-2 {
  position: absolute;
  top: 20rem;
  right: 15%;
  width: 16%;
}
.mil-hero-4 .mil-hero-images-frame .mil-hero-image-2 .mil-h-image {
  width: 100%;
}
.mil-hero-4 .mil-hero-images-frame .mil-hero-image-3 {
  position: absolute;
  bottom: 10rem;
  left: -20%;
  width: 35%;
}
.mil-hero-4 .mil-hero-images-frame .mil-hero-image-3 .mil-h-image {
  width: 100%;
}
.mil-hero-4 .mil-hero-images-frame .mil-hero-image-4 {
  position: absolute;
  bottom: 10rem;
  right: -16%;
  width: 27%;
}
.mil-hero-4 .mil-hero-images-frame .mil-hero-image-4 .mil-h-image {
  width: 100%;
}

.mil-hero-404 {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}
.mil-hero-404 .mil-hero-content {
    position: relative;
    width: 100%;
    padding-bottom: 5rem;
}
.mil-hero-404 .mil-overlay.mil-overlay-placeholder {
  background: linear-gradient(340.66deg, #0F1214 38.13%, #1a1f23 98%);
}

@media (max-width: 992px) {
  .mil-hero-4 .mil-main-box {
    height: calc(var(--vh, 1vh) * 100);
  }
  .mil-hero-4 .mil-hero-images-frame .mil-hero-image-1 {
    position: absolute;
    margin-top: -4rem;
  }
  .mil-hero-4 .mil-hero-images-frame .mil-logo-iconbox {
    display: none;
  }
  .mil-hero-4 .mil-hero-images-frame .mil-faces {
    display: none;
  }
}
@media (max-width: 768px) {
  .mil-hero-4 .mil-main-box .mil-animation-frame {
    right: -20rem;
    top: -10rem;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* -------------------------------------------

hero 5

------------------------------------------- */
.mil-hero-5 {
  position: relative;
  overflow: hidden;
}
.mil-hero-5 .mil-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mil-hero-5 .mil-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(256.35deg, rgba(15, 18, 20, 0.2) 44.24%, rgba(15, 18, 20, 0.9) 68.03%);
}
.mil-hero-5 .mil-left-frame {
  float: right;
  width: calc(50vw + 12rem);
}
@media (max-width: 1920px) {
  .mil-hero-5 .mil-left-frame {
    width: calc(50vw + 13rem);
  }
}
@media (max-width: 1600px) {
  .mil-hero-5 .mil-left-frame {
    width: calc(50vw + 14rem);
  }
}
.mil-hero-5 .mil-left-frame .mil-top-box {
  position: relative;
  height: calc(100vh - 20rem);
  padding: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20rem;
}
.mil-hero-5 .mil-left-frame .mil-top-box .mil-animation-frame {
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
}
@media (min-width: 1920px) {
  .mil-hero-5 .mil-left-frame .mil-top-box .mil-animation-frame {
    -webkit-transform: scale(2.6);
            transform: scale(2.6);
  }
}
.mil-hero-5 .mil-left-frame .mil-bottom-box {
  position: relative;
  height: 20rem;
  padding: 0 10rem;
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1a1f23;
}
.mil-hero-5 .mil-right-frame {
  width: calc(50vw - 11rem);
  position: relative;
}
.mil-hero-5 .mil-right-frame .mil-top-box {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 20rem);
}
.mil-hero-5 .mil-right-frame .mil-top-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.mil-hero-5 .mil-right-frame .mil-top-box .mil-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 18, 20, 0.3)), to(rgba(15, 18, 20, 0.2)));
  background: linear-gradient(180deg, rgba(15, 18, 20, 0.3) 0%, rgba(15, 18, 20, 0.2) 100%);
}
.mil-hero-5 .mil-right-frame .mil-bottom-box {
  height: 20rem;
  padding: 0 10rem;
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #E7EAEC;
}
.mil-hero-5 .mil-right-frame .mil-bottom-box .mil-box-content {
  width: 100%;
}
@media (max-width: 992px) {
  .mil-hero-5 .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  .mil-hero-5 .mil-left-frame {
    width: 100vw;
  }
  .mil-hero-5 .mil-left-frame .mil-top-box {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 30rem 4rem 10rem;
    height: calc(var(--vh, 1vh) * 100);
  }
  .mil-hero-5 .mil-left-frame .mil-bottom-box {
    height: auto;
    padding: 4rem 4rem 1rem;
  }
  .mil-hero-5 .mil-right-frame {
    width: 100vw;
  }
  .mil-hero-5 .mil-right-frame .mil-top-box {
    height: auto;
    padding-bottom: 50%;
    display: none;
  }
  .mil-hero-5 .mil-right-frame .mil-top-box img {
    -o-object-position: center;
       object-position: center;
  }
  .mil-hero-5 .mil-right-frame .mil-bottom-box {
    height: auto;
    padding: 4rem 4rem 1rem;
  }
}
@media (max-width: 768px) {
  .mil-hero-5 .mil-left-frame .mil-top-box .mil-animation-frame {
    right: -10rem;
    top: -10rem;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .mil-hero-5 .mil-right-frame .mil-top-box {
    padding-bottom: 80%;
  }
  .mil-hero-5 .mil-right-frame .mil-top-box img {
    -o-object-position: center;
       object-position: center;
  }
}

/* -------------------------------------------

hero inner 1

------------------------------------------- */
.mil-hero-inner-1 .mil-left-frame {
  float: right;
  width: 100%;
}
.mil-hero-inner-1 .mil-left-frame .mil-main-box {
  position: relative;
  height: 75vh;
  padding: 10rem;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.mil-hero-inner-1 .mil-left-frame .mil-main-box:before {
  content: "";
  width: 100%;
  height: 30rem;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(240, 241, 243, 0)), color-stop(90%, #f0f1f3));
  background: linear-gradient(0deg, rgba(240, 241, 243, 0) 10%, #f0f1f3 90%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-hero-inner-1 .mil-left-frame .mil-main-box .mil-animation-frame {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  top: -5%;
  right: -10%;
}
@media (min-width: 1920px) {
  .mil-hero-inner-1 .mil-left-frame .mil-main-box .mil-animation-frame {
    -webkit-transform: scale(2.6);
            transform: scale(2.6);
  }
}
.mil-hero-inner-1 .mil-right-frame {
  width: calc(50vw - 11rem);
  position: relative;
}
.mil-hero-inner-1 .mil-right-frame .mil-top-box {
  position: relative;
  overflow: hidden;
  height: calc(75vh - 20rem);
}
.mil-hero-inner-1 .mil-right-frame .mil-top-box iframe {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-filter: contrast(0.95) brightness(0.95);
          filter: contrast(0.95) brightness(0.95);
}
.mil-hero-inner-1 .mil-right-frame .mil-top-box .mil-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mil-hero-inner-1 .mil-right-frame .mil-bottom-box {
  height: 20rem;
  padding: 0 10rem;
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFBD24;
}
.mil-hero-inner-1 .mil-right-frame .mil-bottom-box .mil-box-content {
  width: 100%;
}
@media (max-width: 992px) {
  .mil-hero-inner-1 .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  .mil-hero-inner-1 .mil-left-frame {
    width: 100vw;
  }
  .mil-hero-inner-1 .mil-left-frame .mil-main-box {
    padding: 19rem 4rem 10rem;
    height: auto;
  }
  .mil-hero-inner-1 .mil-right-frame {
    width: 100vw;
  }
  .mil-hero-inner-1 .mil-right-frame .mil-top-box {
    height: auto;
    padding-bottom: 50%;
  }
  .mil-hero-inner-1 .mil-right-frame .mil-top-box iframe {
    top: 0px;
  }
  .mil-hero-inner-1 .mil-right-frame .mil-bottom-box {
    height: auto;
    padding: 4rem 4rem 1rem;
  }
}
@media (max-width: 768px) {
  .mil-hero-inner-1 .mil-left-frame .mil-main-box .mil-animation-frame {
    right: -10rem;
    top: -10rem;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .mil-hero-inner-1 .mil-right-frame .mil-top-box {
    padding-bottom: 80%;
  }
  .mil-hero-inner-1 .mil-right-frame .mil-top-box img {
    -o-object-position: center;
       object-position: center;
  }
}

/* -------------------------------------------

hero inner 2

------------------------------------------- */
.mil-hero-inner-2 .mil-left-frame {
  float: right;
  width: 100%;
}
.mil-hero-inner-2 .mil-left-frame .mil-main-box {
  position: relative;
  height: 75vh;
  padding: 10rem;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.mil-hero-inner-2 .mil-left-frame .mil-main-box:before {
  content: "";
  width: 100%;
  height: 30rem;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(240, 241, 243, 0)), color-stop(90%, #f0f1f3));
  background: linear-gradient(0deg, rgba(240, 241, 243, 0) 10%, #f0f1f3 90%);
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-hero-inner-2 .mil-left-frame .mil-main-box .mil-animation-frame {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  top: -5%;
  right: -10%;
}
@media (min-width: 1920px) {
  .mil-hero-inner-2 .mil-left-frame .mil-main-box .mil-animation-frame {
    -webkit-transform: scale(2.6);
            transform: scale(2.6);
  }
}
.mil-hero-inner-2 .mil-right-frame {
  width: calc(50vw - 11rem);
}
.mil-hero-inner-2 .mil-right-frame .mil-top-box {
  position: relative;
  overflow: hidden;
  height: 75vh;
}
.mil-hero-inner-2 .mil-right-frame .mil-top-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.mil-hero-inner-2 .mil-right-frame .mil-top-box .mil-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 18, 20, 0.3)), to(rgba(15, 18, 20, 0.2)));
  background: linear-gradient(180deg, rgba(15, 18, 20, 0.3) 0%, rgba(15, 18, 20, 0.2) 100%);
}
@media (max-width: 992px) {
  .mil-hero-inner-2 .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  .mil-hero-inner-2 .mil-left-frame {
    width: 100vw;
  }
  .mil-hero-inner-2 .mil-left-frame .mil-main-box {
    padding: 19rem 4rem 10rem;
    height: auto;
  }
  .mil-hero-inner-2 .mil-right-frame {
    width: 100vw;
  }
  .mil-hero-inner-2 .mil-right-frame .mil-top-box {
    height: auto;
    padding-bottom: 50%;
  }
}
@media (max-width: 768px) {
  .mil-hero-inner-2 .mil-left-frame .mil-main-box .mil-animation-frame {
    right: -10rem;
    top: -10rem;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .mil-hero-inner-2 .mil-right-frame .mil-top-box {
    padding-bottom: 80%;
  }
  .mil-hero-inner-2 .mil-right-frame .mil-top-box img {
    -o-object-position: center;
       object-position: center;
  }
}

/* -------------------------------------------

hero inner 3

------------------------------------------- */
.mil-hero-inner-3 .mil-left-frame {
  float: right;
  width: 100%;
}
.mil-hero-inner-3 .mil-left-frame .mil-main-box {
  width: 100%;
  position: relative;
  height: auto;
  padding: 10rem 0;
  padding-top: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.mil-hero-inner-3 .mil-left-frame .mil-main-box .mil-animation-frame {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  top: -5%;
  right: -10%;
}
@media (min-width: 1920px) {
  .mil-hero-inner-3 .mil-left-frame .mil-main-box .mil-animation-frame {
    -webkit-transform: scale(2.6);
            transform: scale(2.6);
  }
}
@media (max-width: 992px) {
  .mil-hero-inner-3 .mil-left-frame .mil-main-box {
    padding: 19rem 0 10rem;
    height: auto;
  }
}
@media (max-width: 768px) {
  .mil-hero-inner-3 .mil-left-frame .mil-main-box .mil-animation-frame {
    right: -10rem;
    top: -10rem;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.mil-main-title {
  width: 100%;
}

/* -------------------------------------------

dodecahedron

------------------------------------------- */
.mil-animation-frame {
  width: 300px;
  height: 300px;
  padding-left: 100px;
  padding-top: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.mil-animation-frame .mil-dodecahedron {
  position: relative;
  width: 100px;
  height: 223px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-animation: rotate 50s infinite linear;
          animation: rotate 50s infinite linear;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotateX(0deg) rotateY(360deg) rotateZ(360deg);
            transform: rotateX(0deg) rotateY(360deg) rotateZ(360deg);
  }
  to {
    -webkit-transform: rotateX(360deg) rotateY(0deg) rotateZ(-360deg);
            transform: rotateX(360deg) rotateY(0deg) rotateZ(-360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotateX(0deg) rotateY(360deg) rotateZ(360deg);
            transform: rotateX(0deg) rotateY(360deg) rotateZ(360deg);
  }
  to {
    -webkit-transform: rotateX(360deg) rotateY(0deg) rotateZ(-360deg);
            transform: rotateX(360deg) rotateY(0deg) rotateZ(-360deg);
  }
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon {
  position: absolute;
  width: 100px;
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(1) {
  -webkit-transform: rotateY(0.2turn) translateZ(69px) rotateX(26.5deg);
          transform: rotateY(0.2turn) translateZ(69px) rotateX(26.5deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(6) {
  bottom: 0;
  -webkit-transform: rotateY(0.2turn) translateZ(-69px) rotateX(206.5deg);
          transform: rotateY(0.2turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(2) {
  -webkit-transform: rotateY(0.4turn) translateZ(69px) rotateX(26.5deg);
          transform: rotateY(0.4turn) translateZ(69px) rotateX(26.5deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(7) {
  bottom: 0;
  -webkit-transform: rotateY(0.4turn) translateZ(-69px) rotateX(206.5deg);
          transform: rotateY(0.4turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(3) {
  -webkit-transform: rotateY(0.6turn) translateZ(69px) rotateX(26.5deg);
          transform: rotateY(0.6turn) translateZ(69px) rotateX(26.5deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(8) {
  bottom: 0;
  -webkit-transform: rotateY(0.6turn) translateZ(-69px) rotateX(206.5deg);
          transform: rotateY(0.6turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(4) {
  -webkit-transform: rotateY(0.8turn) translateZ(69px) rotateX(26.5deg);
          transform: rotateY(0.8turn) translateZ(69px) rotateX(26.5deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(9) {
  bottom: 0;
  -webkit-transform: rotateY(0.8turn) translateZ(-69px) rotateX(206.5deg);
          transform: rotateY(0.8turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(5) {
  -webkit-transform: rotateY(1turn) translateZ(69px) rotateX(26.5deg);
          transform: rotateY(1turn) translateZ(69px) rotateX(26.5deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(10) {
  bottom: 0;
  -webkit-transform: rotateY(1turn) translateZ(-69px) rotateX(206.5deg);
          transform: rotateY(1turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(11) {
  -webkit-transform: translateZ(69px) rotateX(-90deg);
          transform: translateZ(69px) rotateX(-90deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon:nth-child(12) {
  bottom: 0;
  -webkit-transform: translateZ(-69px) rotateX(90deg);
          transform: translateZ(-69px) rotateX(90deg);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon div {
  position: absolute;
  width: 100px;
  height: 69px;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  border-top: 1px solid rgba(231, 234, 236, 0.1);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon div:nth-child(1) {
  -webkit-transform: rotate(0.2turn);
          transform: rotate(0.2turn);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon div:nth-child(2) {
  -webkit-transform: rotate(0.4turn);
          transform: rotate(0.4turn);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon div:nth-child(3) {
  -webkit-transform: rotate(0.6turn);
          transform: rotate(0.6turn);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon div:nth-child(4) {
  -webkit-transform: rotate(0.8turn);
          transform: rotate(0.8turn);
}
.mil-animation-frame .mil-dodecahedron .mil-pentagon div:nth-child(5) {
  -webkit-transform: rotate(1turn);
          transform: rotate(1turn);
}
.mil-animation-frame .mil-dodecahedron.mil-dark .mil-pentagon div {
  border-top: 1px solid rgba(15, 18, 20, 0.1);
}

/* -------------------------------------------

circle text

------------------------------------------- */
.mil-circle-text-position {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 15rem;
}
.mil-circle-text-position .mil-circle-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 15rem;
  height: 15rem;
}
.mil-circle-text-position .mil-circle-text.mil-infinite-rotate {
  -webkit-animation: circle-text 10s infinite linear;
          animation: circle-text 10s infinite linear;
}
.mil-circle-text-position .mil-circle-text svg {
  -webkit-transform: scale(2);
          transform: scale(2);
  width: 15rem;
  height: 15rem;
}
.mil-circle-text-position .mil-circle-text svg text {
  fill: rgba(240, 241, 243, 0.5);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.1rem;
}
.mil-circle-text-position .mil-circle-text svg text.mil-m-3 {
  fill: rgba(15, 18, 20, 0.5);
}
.mil-circle-text-position .mil-circle-text svg text.mil-m-2 {
  fill: #1a1f23;
}
.mil-circle-text-position .mil-circle-text.mil-c-m-2 svg text {
  fill: #1a1f23;
}
.mil-circle-text-position .mil-circle-text.mil-c-m-3 svg text {
  fill: rgba(15, 18, 20, 0.5);
}
.mil-circle-text-position a {
  position: absolute;
  width: 8rem;
  height: 8rem;
  font-size: 1.6rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 576px) {
  .mil-circle-text-position {
    display: none;
  }
}

.mil-up-text {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
}

@-webkit-keyframes circle-text {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circle-text {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* -------------------------------------------

top panel

------------------------------------------- */
.mil-top-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.admin-bar .mil-top-panel {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .mil-top-panel {
    top: 46px;
  }
}

.mil-top-panel > div {
  width: 100%;
}
.mil-top-panel .row {
  width: 100%;
}
.elementor-widget-metrol-header-menu,
.elementor-widget-metrol-header-menu .mil-header-menu-wrap {
  height: 100%;
}

.mil-top-panel .mil-left, 
.mil-wrapper-header .mil-left {
  height: 100%;
  padding: 0 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 10rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  float: right;
  width: calc(50vw + 12rem);
}
.mil-top-panel .col-lg-9 .mil-left, 
.mil-wrapper-header .col-lg-9 .mil-left {
  width: calc(50vw + 34rem);
}
.mil-top-panel .col-lg-9 .mil-left.mil-left-default, 
.mil-wrapper-header .col-lg-9 .mil-left.mil-left-default {
  background-color: #E7EAEC;
}

@media (max-width: 1920px) {
  .mil-top-panel .mil-left, 
  .mil-wrapper-header .mil-left {
    width: calc(50vw + 13rem);
  }
  .mil-top-panel .col-lg-9 .mil-left, 
  .mil-wrapper-header .col-lg-9 .mil-left {
    width: calc(50vw + 35rem);
  }
}
@media (max-width: 1600px) {
  .mil-top-panel .mil-left, 
  .mil-wrapper-header .mil-left {
    width: calc(50vw + 14rem);
  }
  .mil-top-panel .col-lg-9 .mil-left, 
  .mil-wrapper-header .col-lg-9 .mil-left {
    width: calc(50vw + 36rem);
  }
}
.mil-top-panel .mil-left .mil-logo, 
.mil-wrapper-header .mil-logo {
  width: 10rem;
  position: relative;
  display: block;
}
.mil-top-panel .mil-left .mil-logo img,
.mil-wrapper-header .mil-logo img {
  width: 100%;
}
.mil-top-panel .mil-left .mil-logo img.mil-dark-logo,
.mil-wrapper-header .mil-logo img.mil-dark-logo {
  position: absolute;
  left: 0;
  opacity: 0;
}

.mil-top-panel .mil-left .mil-logo.mil-logo-default {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  letter-spacing: 0.02rem;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: #1a1f23;
  font-weight: 500;
}
.mil-top-panel .mil-left .mil-logo.mil-logo-default:after {
  content: ".";
  display: block;
  position: relative;
  margin-left: 1rem;
  font-size: 5.6rem;
  top: -2.8rem;
  line-height: 1.4rem;
  font-weight: 500;
  color: #FFBD24;
}

.mil-top-panel .mil-left nav,
.mil-wrapper-header nav {
  margin-left: 4rem;
  height: 100%;
}
.mil-top-panel .mil-left nav ul,
.mil-wrapper-header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.mil-top-panel .mil-left nav ul li, 
.mil-wrapper-header nav ul li {
  list-style-type: none;
  margin-right: 6rem;
  height: 100%;
}
.mil-top-panel .mil-left nav ul li a,
.mil-wrapper-header nav ul li a {
  font-size: 1.1rem;
  color: #E7EAEC;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-top-panel .mil-left nav ul li:last-child,
.mil-wrapper-header nav ul li:last-child {
  margin-right: 0;
}
.mil-top-panel .mil-left nav ul li ul,
.mil-wrapper-header nav ul li ul {
  height: auto;
  opacity: 0;
  background-color: #1a1f23;
  position: absolute;
  margin-left: -4rem;
  top: 10rem -0.1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 4rem 4rem 2rem;
  pointer-events: none;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-top-panel .mil-left nav ul li ul li ul,
.mil-wrapper-header nav ul li ul li ul {
  left: 100%;
  margin-left: 0;
  background-color: #0F1214;
  top: 0;
  margin-top: -4rem;
}
.mil-top-panel .mil-left nav ul li ul li, 
.mil-wrapper-header nav ul li ul li {
  margin-bottom: 2rem;
  margin-right: 0;
  padding-right: 6rem;
  position: relative;
  white-space: nowrap;
}
.mil-top-panel .mil-left nav ul li ul li a,
.mil-wrapper-header nav ul li ul li a {
  color: #E7EAEC;
}
.mil-top-panel .mil-left nav ul li:hover > a,
.mil-wrapper-header nav ul li:hover > a {
  color: #FFBD24;
}
.mil-top-panel .mil-left nav ul li:hover > ul,
.mil-wrapper-header nav ul li:hover > ul {
  opacity: 1;
  pointer-events: all;
}
.mil-top-panel .mil-right, 
.mil-wrapper-header .mil-right {
  height: 100%;
  width: calc(50vw - 11rem);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.elementor-widget-metrol-header-menu-btn {
  width: 100%;
}
.elementor-widget-metrol-header-menu-btn .elementor-widget-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mil-top-panel .mil-right .mil-phone, 
.mil-top-panel .mil-right .mil-contact, 
.mil-top-panel .mil-right .mil-burger,
.mil-wrapper-header .mil-phone, 
.mil-wrapper-header .mil-contact, 
.mil-wrapper-header .mil-burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-top-panel .mil-right .mil-phone .mil-sec-icon, 
.mil-top-panel .mil-right .mil-contact .mil-sec-icon, 
.mil-top-panel .mil-right .mil-burger .mil-sec-icon,
.mil-wrapper-header .mil-phone .mil-sec-icon, 
.mil-wrapper-header .mil-contact .mil-sec-icon, 
.mil-wrapper-header .mil-burger .mil-sec-icon {
  background-color: #1a1f23;
  height: 10rem;
  width: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFBD24;
  font-size: 2rem;
  border: solid 0.1rem rgba(240, 241, 243, 0.1);
  border-top: none;
}
.mil-top-panel .mil-right .mil-phone p, 
.mil-top-panel .mil-right .mil-contact p, 
.mil-top-panel .mil-right .mil-burger p,
.mil-wrapper-header .mil-phone p, 
.mil-wrapper-header .mil-contact p, 
.mil-wrapper-header .mil-burger p {
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  white-space: nowrap;
}
.mil-top-panel .mil-right .mil-phone p,
.mil-wrapper-header .mil-phone p {
  background-color: rgba(231, 234, 236, 0.2);
  -webkit-backdrop-filter: blur(4rem);
          backdrop-filter: blur(4rem);
  border: solid 0.1rem rgba(240, 241, 243, 0.1);
  border-left: none;
  border-top: none;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-top-panel .mil-right .mil-contact .mil-sec-icon, 
.mil-wrapper-header .mil-contact .mil-sec-icon {
  border-right: none;
}
.mil-top-panel .mil-right .mil-burger,
.mil-wrapper-header .mil-burger {
  display: none;
}
.mil-top-panel.mil-hidden {
  -webkit-transform: translateY(-10rem);
          transform: translateY(-10rem);
}
.mil-top-panel.mil-hidden .mil-left nav ul li ul {
  pointer-events: none;
}
.mil-top-panel.mil-scroll .mil-left {
  background-color: rgba(15, 18, 20, 0.9);
  -webkit-backdrop-filter: blur(4rem);
          backdrop-filter: blur(4rem);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  border: solid 0.1rem rgba(240, 241, 243, 0.1);
}
.mil-top-panel.mil-scroll .mil-left:before {
  display: none;
}
.mil-top-panel.mil-scroll .mil-right .mil-phone p {
  background-color: rgba(15, 18, 20, 0.9);
  color: #E7EAEC;
}
@media (max-width: 1200px) {
  .mil-top-panel .mil-left,
  .mil-wrapper-header .mil-left {
    padding-right: 6rem;
  }
}
@media (max-width: 992px) {
  .mil-top-panel {
    background-color: #1a1f23;
  }
  .mil-top-panel .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  .mil-top-panel .mil-left, 
  .mil-wrapper-header .mil-left {
    padding: 0 4rem;
    width: auto;
  }
  .mil-top-panel .mil-left nav, 
  .mil-wrapper-header nav {
    border-top: solid 0.1rem rgba(240, 241, 243, 0.1);
    border-bottom: solid 0.1rem rgba(240, 241, 243, 0.1);
    background-color: rgba(26, 31, 35, 0.95);
    -webkit-backdrop-filter: blur(4rem);
            backdrop-filter: blur(4rem);
    width: 100%;
    position: absolute;
    top: 10rem;
    left: -4rem;
    right: 0;
    height: auto;
    padding: 4rem 4rem 1rem;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  }
  .mil-top-panel .mil-left nav ul,
  .mil-wrapper-header nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mil-top-panel .mil-left nav ul li,
  .mil-wrapper-header nav ul li {
    margin: 0;
    margin-bottom: 0;
  }
  .mil-top-panel .mil-left nav ul li a, 
  .mil-wrapper-header nav ul li a {
    margin-bottom: 4rem;
  }
  .mil-top-panel .mil-left nav ul li ul, 
  .mil-wrapper-header nav ul li ul {
    background-color: rgba(15, 18, 20, 0.3);
    padding: 0;
    padding-left: 4rem;
    position: static;
    overflow: hidden;
    max-height: 0;
    opacity: 1;
    margin: 0;
  }
  .mil-top-panel .mil-left nav ul li ul li, 
  .mil-wrapper-header nav ul li ul li {
    margin: 0;
  }
  .mil-top-panel .mil-left nav ul li ul li:first-child, 
  .mil-wrapper-header nav ul li ul li:first-child {
    margin-top: 4rem;
  }
  .mil-top-panel .mil-left nav ul li ul li:last-child, 
  .mil-wrapper-header nav ul li ul li:last-child {
    margin-bottom: 4rem;
  }
  .mil-top-panel .mil-left nav ul li ul li:last-child a, 
  .mil-wrapper-header nav ul li ul li:last-child a {
    margin: 0;
  }
  .mil-top-panel .mil-left nav ul li:hover ul, 
  .mil-wrapper-header nav ul li:hover ul {
    max-height: 40rem;
    margin-bottom: 4rem;
  }
  .mil-top-panel .mil-left nav.mil-active, 
  .mil-wrapper-header nav.mil-active {
    opacity: 1;
    pointer-events: all;
  }
  .mil-top-panel .mil-right, 
  .mil-wrapper-header .mil-right {
    width: auto;
  }
  .mil-top-panel .mil-right .mil-phone .mil-sec-icon, 
  .mil-top-panel .mil-right .mil-contact .mil-sec-icon, 
  .mil-top-panel .mil-right .mil-burger .mil-sec-icon, 
  .mil-wrapper-header .mil-phone .mil-sec-icon, 
  .mil-wrapper-header .mil-contact .mil-sec-icon, 
  .mil-wrapper-header .mil-burger .mil-sec-icon {
    font-size: 2.4rem;
  }
  .mil-top-panel .mil-right .mil-phone p, 
  .mil-wrapper-header .mil-phone p {
    background-color: rgba(15, 18, 20, 0.9);
    color: #E7EAEC;
  }
  .mil-top-panel .mil-right .mil-burger, 
  .mil-wrapper-header .mil-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 768px) {
  .mil-top-panel .mil-right .mil-phone p, 
  .mil-top-panel .mil-right .mil-contact p, 
  .mil-wrapper-header .mil-phone p, 
  .mil-wrapper-header .mil-contact p {
    display: none;
  }
}
@media (max-width: 576px) {
  .mil-top-panel .mil-right, 
  .mil-wrapper-header .mil-right {
    padding-right: 4rem;
  }
  .mil-top-panel .mil-right .mil-phone .mil-sec-icon, 
  .mil-top-panel .mil-right .mil-contact .mil-sec-icon, 
  .mil-top-panel .mil-right .mil-burger .mil-sec-icon, 
  .mil-wrapper-header .mil-phone .mil-sec-icon, 
  .mil-wrapper-header .mil-contact .mil-sec-icon, 
  .mil-wrapper-header .mil-burger .mil-sec-icon {
    margin-left: 4rem;
    border: none;
    width: auto;
    background-color: transparent;
  }
}

.mil-light-priority .mil-top-panel .mil-left .mil-logo img {
  opacity: 0;
}
.mil-light-priority .mil-top-panel .mil-left .mil-logo img.mil-dark-logo {
  opacity: 1;
}
.mil-light-priority .mil-top-panel .mil-left nav ul li a {
  color: #1a1f23;
}
.mil-light-priority .mil-top-panel .mil-left nav ul li ul li a {
  color: #E7EAEC;
}
.mil-light-priority .mil-top-panel .mil-right .mil-phone p {
  background-color: rgba(15, 18, 20, 0.8);
  color: #E7EAEC;
}
.mil-light-priority .mil-top-panel.mil-scroll .mil-left {
  background-color: #E7EAEC;
}
@media (max-width: 992px) {
  .mil-light-priority .mil-top-panel .mil-left .mil-logo img {
    opacity: 1;
  }
  .mil-light-priority .mil-top-panel .mil-left .mil-logo img.mil-dark-logo {
    opacity: 0;
  }
  .mil-light-priority .mil-top-panel .mil-left nav ul li a {
    color: #E7EAEC;
  }
  .mil-light-priority .mil-top-panel .mil-left nav ul li ul li a {
    color: #E7EAEC;
  }
}

.mil-sec-icon {
  background-color: #1a1f23;
  height: 10rem;
  width: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFBD24;
  font-size: 2rem;
}

/* -------------------------------------------

munu button

------------------------------------------- */
.mil-menu-btn {
  border-radius: 50%;
  height: 2.2px;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-menu-btn span, .mil-menu-btn span:after, .mil-menu-btn span:before {
  content: "";
  pointer-events: none;
  display: block;
  border-radius: 0.1rem;
  width: 2.2rem;
  height: 1px;
  background-color: #FFBD24;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: inherit;
  transition: inherit;
}
.mil-menu-btn span {
  position: relative;
}
.mil-menu-btn span:after, .mil-menu-btn span:before {
  position: absolute;
}
.mil-menu-btn span:before {
  top: -0.7rem;
}
.mil-menu-btn span:after {
  top: 0.7rem;
}
.mil-menu-btn.mil-active span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mil-menu-btn.mil-active span:before {
  -webkit-transform: translate(0px, 0.7rem) rotate(-90deg);
          transform: translate(0px, 0.7rem) rotate(-90deg);
}
.mil-menu-btn.mil-active span:after {
  -webkit-transform: translate(0px, -0.7rem) rotate(-90deg);
          transform: translate(0px, -0.7rem) rotate(-90deg);
}
@media (max-width: 992px) {
  .mil-menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* -------------------------------------------

iconbox

------------------------------------------- */
.mil-iconbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mil-iconbox.mil-type-1 img {
  width: 5rem;
  margin-right: 2rem;
  max-width: none;
}
.mil-iconbox.mil-type-2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mil-iconbox.mil-type-2 img {
  width: 5rem;
  max-width: none;
}

.mil-faces-frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mil-faces-frame .mil-faces {
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .mil-faces-frame {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.mil-logo-iconbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mil-logo-iconbox img {
  width: 4rem;
  margin-right: 10px;
  max-width: none;
}

/* -------------------------------------------

about

------------------------------------------- */
.elementor-widget-metrol-about-image,
.elementor-widget-metrol-about-image-2 {
  height: 100%;
}
.mil-image-frame-1 {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.mil-image-frame-1 .mil-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mil-image-frame-1 .mil-image-counter {
  position: absolute;
  top: 10rem;
  left: 10rem;
  color: #f0f1f3;
}
.mil-image-frame-1 .mil-image-counter.mil-type-2 {
  top: 6rem;
  left: 6rem;
}
.mil-image-frame-1 .mil-bottom-box {
  padding: 0 10rem;
  height: 10rem;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(15, 18, 20, 0.8);
  -webkit-backdrop-filter: blur(4rem);
          backdrop-filter: blur(4rem);
}
.mil-image-frame-1 .mil-bottom-box img {
  width: 9rem;
  max-width: none;
}
@media (max-width: 992px) {
  .mil-image-frame-1 {
    height: auto;
    padding-bottom: 140%;
  }
  .mil-image-frame-1 .mil-image-counter {
    top: 4rem;
    left: 4rem;
  }
  .mil-image-frame-1 .mil-image-counter.mil-type-2 {
    top: 4rem;
    left: 4rem;
  }
  .mil-image-frame-1 .mil-bottom-box {
    padding: 0 4rem;
  }
}

.mil-founder img {
  width: 18rem;
  max-width: none;
}

.mil-founder-2 img {
  width: 9rem;
  max-width: none;
  border-radius: 50% !important;
}

.mil-about-pad {
  position: relative;
  height: 100%;
  padding: 10rem;
}
.mil-about-pad:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10rem;
  right: 0;
  width: 10rem;
  height: 10rem;
  background-color: #E7EAEC;
}
@media (max-width: 992px) {
  .mil-about-pad {
    padding: 4rem;
  }
}

/* -------------------------------------------

counters

------------------------------------------- */
.mil-counters-pad {
  position: relative;
  padding: 10rem 0;
  background-color: #E7EAEC;
}
.mil-counters-pad:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100rem;
  height: 100%;
  width: 100rem;
  background-color: inherit;
}

.mil-counters-pad-2 {
  position: relative !important;
  padding: 10rem 0;
  padding-left: 10rem;
}
.mil-counters-pad-2:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background-color: #FFBD24;
}
@media (max-width: 992px) {
  .mil-counters-pad-2 {
    padding: 4rem 0;
  }
  .mil-counters-pad-2:after {
    left: -30vw;
    width: 160vw;
  }
}

.mil-counters-pad-3 {
  position: relative;
  padding: 10rem 0;
}
.mil-counters-pad-3:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -100rem;
  height: 100%;
  width: 100vw;
  background-color: #E7EAEC;
}
@media (max-width: 1200px) {
  .mil-counters-pad-3:after {
    width: 150vw;
  }
}
@media (max-width: 992px) {
  .mil-counters-pad-3:after {
    left: -30vw;
    width: 160vw;
  }
}

/* -------------------------------------------

popup

------------------------------------------- */
.mil-phone-popup-frame {
  padding: 0 4rem;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 31, 35, 0.1);
  -webkit-backdrop-filter: blur(6rem);
          backdrop-filter: blur(6rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.mil-phone-popup-frame .mil-phone-popup {
  -webkit-transform: scale(0.9) translateY(4rem);
          transform: scale(0.9) translateY(4rem);
  opacity: 0;
  position: relative;
  width: 100%;
  max-width: 900px;
  background-color: #f0f1f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 40rem 5rem rgba(26, 31, 35, 0.2);
          box-shadow: 0 0 40rem 5rem rgba(26, 31, 35, 0.2);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.mil-phone-popup-frame .mil-phone-popup .mil-close-popup {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  background-color: #1a1f23;
  color: #E7EAEC;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  cursor: pointer;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-phone-popup-frame .mil-phone-popup .mil-close-popup::before {
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-phone-popup-frame .mil-phone-popup .mil-close-popup:hover {
  color: #FFBD24;
}
.mil-phone-popup-frame .mil-phone-popup .mil-close-popup:hover::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.mil-phone-popup-frame .mil-phone-popup .row {
  width: 100%;
}
.mil-phone-popup-frame .mil-phone-popup .mil-form-frame {
  padding: 10rem;
  padding-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mil-phone-popup-frame .mil-phone-popup .mil-form-frame .mil-sec-icon {
  background-color: #E7EAEC;
  height: 10rem;
  width: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1a1f23;
  font-size: 2rem;
}
.mil-phone-popup-frame .mil-phone-popup .mil-form-frame .mil-send-frame {
  width: 100%;
}
.mil-phone-popup-frame .mil-phone-popup .mil-image-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.mil-phone-popup-frame .mil-phone-popup .mil-image-frame img, .mil-phone-popup-frame .mil-phone-popup .mil-image-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mil-phone-popup-frame.mil-active {
  opacity: 1;
  pointer-events: all;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.mil-phone-popup-frame.mil-active .mil-phone-popup {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0rem);
          transform: scale(1) translateY(0rem);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media (max-width: 992px) {
  .mil-phone-popup-frame .mil-phone-popup .mil-form-frame {
    padding: 6rem 4rem;
  }
  .mil-phone-popup-frame .mil-phone-popup .mil-form-frame .mil-sec-icon {
    display: none;
  }
}
@media (max-width: 768px) {
  .mil-phone-popup-frame .mil-phone-popup .mil-image-frame img {
    display: none;
  }
}

/* -------------------------------------------

contact

------------------------------------------- */
.mil-contact-sec {
  overflow: hidden !important;
  position: relative !important;
  height: auto !important;
}

.elementor-widget-metrol-bg-scale-image {
  position: initial !important;
}

.mil-section-bg {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 992px) {
  .mil-section-bg {
    /*
    display: none;
    */
  }
}

.mil-form-frame {
  position: relative;
  z-index: 2;
  background-color: #f0f1f3;
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (max-width: 992px) {
  .mil-form-frame {
    padding-left: 0;
    padding-right: 0;
  }
}

.mil-title-pad {
  background-color: #E7EAEC;
  width: 100vw;
  position: relative;
}
.mil-title-pad:after {
  content: "";
  width: 50vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50vw;
  background-color: inherit;
}
.mil-title-pad:before {
  content: "" !important;
  width: 100vw !important;
  height: 100% !important;
  position: absolute !important;
  top: 0 !important;
  left: 100% !important;
  background-color: inherit !important;
}

input {
  padding-left: 3rem;
  background-color: #E7EAEC;
  height: 6rem;
  border: none;
  width: 100%;
  font-family: "Outfit", serif;
  font-size: 1.4rem;
  color: #1a1f23;
}
input::-webkit-input-placeholder {
  color: rgba(15, 18, 20, 0.5);
}
input::-moz-placeholder {
  color: rgba(15, 18, 20, 0.5);
}
input:-ms-input-placeholder {
  color: rgba(15, 18, 20, 0.5);
}
input::-ms-input-placeholder {
  color: rgba(15, 18, 20, 0.5);
}
input::placeholder {
  color: rgba(15, 18, 20, 0.5);
}
input:focus {
  outline: inherit;
}

textarea {
  padding: 2.5rem 0 0 3rem;
  background-color: #E7EAEC;
  height: 22rem;
  border: none;
  width: 100%;
  font-family: "Outfit", serif;
  font-size: 1.4rem;
  color: #1a1f23;
}
textarea::-webkit-input-placeholder {
  color: rgba(15, 18, 20, 0.5);
}
textarea::-moz-placeholder {
  color: rgba(15, 18, 20, 0.5);
}
textarea:-ms-input-placeholder {
  color: rgba(15, 18, 20, 0.5);
}
textarea::-ms-input-placeholder {
  color: rgba(15, 18, 20, 0.5);
}
textarea::placeholder {
  color: rgba(15, 18, 20, 0.5);
}
textarea:focus {
  outline: inherit;
}

/* -------------------------------------------

services

------------------------------------------- */
.mil-services {
  position: relative;
  overflow: hidden;
}
.mil-services .mil-section-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.mil-services .mil-service-card {
  position: relative;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-services .mil-service-card .mil-card-content {
  padding: 6rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-services .mil-service-card .mil-card-content .mil-arrow {
  height: 4rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-services .mil-service-card .mil-card-content .mil-icon {
  width: 5rem;
}
.mil-services.mil-type-1 .mil-service-card {
  display: block;
  padding-bottom: 130%;
  -webkit-backdrop-filter: blur(0rem);
          backdrop-filter: blur(0rem);
}
.mil-services.mil-type-1 .mil-service-card .mil-card-content {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 18, 20, 0.1)), color-stop(69%, rgba(15, 18, 20, 0.8)));
  background: linear-gradient(180deg, rgba(15, 18, 20, 0.1) 0%, rgba(15, 18, 20, 0.8) 69%);
  border-left: 1px solid rgba(231, 234, 236, 0.05);
}
.mil-services.mil-type-1 .mil-service-card .mil-card-content .mil-number {
  color: rgba(240, 241, 243, 0.5);
}
.mil-services.mil-type-1 .mil-service-card .mil-card-content .mil-arrow {
  background-color: #1a1f23;
  color: #FFBD24;
}
.mil-services.mil-type-1 .mil-service-card .mil-card-content p {
  max-height: 0;
  opacity: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1), max-height 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s, margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
  transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1), max-height 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s, margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
}
.mil-services.mil-type-1 .mil-service-card:hover {
  -webkit-backdrop-filter: blur(2rem);
          backdrop-filter: blur(2rem);
}
.mil-services.mil-type-1 .mil-service-card:hover .mil-card-content {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 18, 20, 0.2)), color-stop(69%, rgba(15, 18, 20, 0.9)));
  background: linear-gradient(180deg, rgba(15, 18, 20, 0.2) 0%, rgba(15, 18, 20, 0.9) 69%);
}
.mil-services.mil-type-1 .mil-service-card:hover .mil-card-content .mil-arrow {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
}
.mil-services.mil-type-1 .mil-service-card:hover .mil-card-content p {
  margin-top: 2rem;
  opacity: 1;
  max-height: 4.6rem;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1) 0.2s, max-height 0.2s cubic-bezier(0, 0, 0.3642, 1), margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1) 0.2s, max-height 0.2s cubic-bezier(0, 0, 0.3642, 1), margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-services.mil-type-2 .mil-service-card {
  display: block;
  padding-bottom: 130%;
}
.mil-services.mil-type-2 .mil-service-card .mil-card-content {
  background-color: #E7EAEC;
  border-left: 1px solid rgba(231, 234, 236, 0.05);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-services.mil-type-2 .mil-service-card .mil-card-content .mil-number {
  color: rgba(15, 18, 20, 0.5);
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-services.mil-type-2 .mil-service-card .mil-card-content .mil-arrow {
  background-color: #1a1f23;
  color: #FFBD24;
}
.mil-services.mil-type-2 .mil-service-card .mil-card-content h3 {
  color: #1a1f23;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-services.mil-type-2 .mil-service-card .mil-card-content p {
  max-height: 0;
  opacity: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1), max-height 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s, margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
  transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1), max-height 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s, margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
}
.mil-services.mil-type-2 .mil-service-card:hover .mil-card-content {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 18, 20, 0.1)), color-stop(69%, rgba(15, 18, 20, 0.9)));
  background: linear-gradient(180deg, rgba(15, 18, 20, 0.1) 0%, rgba(15, 18, 20, 0.9) 69%);
}
.mil-services.mil-type-2 .mil-service-card:hover .mil-card-content .mil-number {
  color: rgba(240, 241, 243, 0.5);
}
.mil-services.mil-type-2 .mil-service-card:hover .mil-card-content .mil-arrow {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
}
.mil-services.mil-type-2 .mil-service-card:hover .mil-card-content h3 {
  color: #E7EAEC;
}
.mil-services.mil-type-2 .mil-service-card:hover .mil-card-content p {
  margin-top: 2rem;
  opacity: 1;
  max-height: 4.6rem;
  color: rgba(240, 241, 243, 0.5);
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1) 0.2s, max-height 0.2s cubic-bezier(0, 0, 0.3642, 1), margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1) 0.2s, max-height 0.2s cubic-bezier(0, 0, 0.3642, 1), margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
@media (max-width: 992px) {
  .mil-services.mil-type-2 .mil-service-card:hover .mil-card-content {
    background: #E7EAEC;
  }
  .mil-services.mil-type-2 .mil-service-card:hover .mil-card-content .mil-number {
    color: rgba(15, 18, 20, 0.5);
  }
  .mil-services.mil-type-2 .mil-service-card:hover .mil-card-content h3 {
    color: #1a1f23;
  }
  .mil-services.mil-type-2 .mil-service-card:hover .mil-card-content p {
    color: rgba(15, 18, 20, 0.5);
  }
}
.mil-services.mil-type-3 .mil-service-card {
  display: block;
  padding-bottom: 100%;
}
.mil-services.mil-type-3 .mil-service-card .mil-card-content {
  border-left: 1px solid rgba(231, 234, 236, 0.05);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-services.mil-type-3 .mil-service-card .mil-card-content .mil-number {
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-services.mil-type-3 .mil-service-card .mil-card-content .mil-arrow {
  background-color: #1a1f23;
  color: #FFBD24;
}
.mil-services.mil-type-3 .mil-service-card .mil-card-content p {
  max-height: 0;
  opacity: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1), max-height 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s, margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
  transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1), max-height 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s, margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
}
.mil-services.mil-type-3 .mil-service-card:hover .mil-card-content .mil-arrow {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1) 0.2s;
}
.mil-services.mil-type-3 .mil-service-card:hover .mil-card-content p {
  margin-top: 2rem;
  opacity: 1;
  max-height: 4.6rem;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1) 0.2s, max-height 0.2s cubic-bezier(0, 0, 0.3642, 1), margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: opacity 0.4s cubic-bezier(0, 0, 0.3642, 1) 0.2s, max-height 0.2s cubic-bezier(0, 0, 0.3642, 1), margin-top 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
@media (max-width: 992px) {
  .mil-services.mil-type-1 .mil-service-card, .mil-services.mil-type-2 .mil-service-card, .mil-services.mil-type-3 .mil-service-card {
    -webkit-backdrop-filter: blur(1rem);
            backdrop-filter: blur(1rem);
    padding-bottom: 0;
    height: auto;
  }
  .mil-services.mil-type-1 .mil-service-card .mil-card-content, .mil-services.mil-type-2 .mil-service-card .mil-card-content, .mil-services.mil-type-3 .mil-service-card .mil-card-content {
    position: static;
    padding: 4rem;
  }
  .mil-services.mil-type-1 .mil-service-card .mil-card-content p, .mil-services.mil-type-2 .mil-service-card .mil-card-content p, .mil-services.mil-type-3 .mil-service-card .mil-card-content p {
    height: auto;
    max-height: 50rem;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    margin-top: 2rem;
  }
  .mil-services.mil-type-1 .mil-service-card:hover .mil-card-content, .mil-services.mil-type-2 .mil-service-card:hover .mil-card-content, .mil-services.mil-type-3 .mil-service-card:hover .mil-card-content {
    position: static;
  }
  .mil-services.mil-type-1 .mil-service-card:hover .mil-card-content p, .mil-services.mil-type-2 .mil-service-card:hover .mil-card-content p, .mil-services.mil-type-3 .mil-service-card:hover .mil-card-content p {
    height: auto;
    max-height: 50rem;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    margin-top: 2rem;
  }
}

.mil-service-card-details {
  padding-right: 10rem;
  display: block;
}
.mil-service-card-details .mil-icon {
  width: 5rem;
}
@media (max-width: 768px) {
  .mil-service-card-details {
    padding-right: 0;
  }
}

.mil-list li {
  list-style-type: none;
  margin-bottom: 3rem;
  color: #1a1f23;
}
.mil-list li:last-child {
  margin-bottom: 0;
}

.mil-divider {
  border-bottom: dotted 0.2rem rgba(15, 18, 20, 0.2);
}
.mil-divider.mil-c-m-6 {
  border-bottom: dotted 0.2rem rgba(240, 241, 243, 0.2);
}

.attr-icon-false .mil-service-card-details .mil-icon {
  display: none !important;
}
.attr-title-false .mil-service-card-details .mil-fs-24 {
  display: none !important;
}
.attr-short-false .mil-service-card-details .mil-fs-16 {
  display: none !important;
}
.attr-list-false .mil-service-card-details .mil-list {
  display: none !important;
}

/* -------------------------------------------

steps

------------------------------------------- */
.mil-steps-item .mil-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mil-steps-item .mil-item-head h3 {
  white-space: nowrap;
}
.mil-steps-item .mil-item-head .mil-dots {
  border-bottom: dotted 0.2rem rgba(15, 18, 20, 0.2);
  width: 80%;
  margin: 0 4rem;
  height: 2rem;
}

.mil-image-frame-2 {
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: 100%;
}
.mil-image-frame-2 .mil-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mil-image-frame-2 .mil-side-box {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mil-image-frame-2 .mil-side-box .mil-sec-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.mil-image-frame-2 .mil-side-box div {
  background-color: #E7EAEC;
  height: 10rem;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mil-image-frame-2 .mil-side-box div p {
  white-space: nowrap;
}
.mil-image-frame-2 .mil-side-box.mil-type-2 {
  bottom: auto;
  top: 0;
}
.mil-image-frame-2 .mil-side-box.mil-type-2 div {
  background-color: #f0f1f3;
}
@media (max-width: 992px) {
  .mil-image-frame-2 {
    height: auto;
    padding-bottom: 100%;
  }
  .mil-image-frame-2 .mil-bottom-box {
    padding: 0 4rem;
  }
}

.mil-steps-pad {
  padding: 6rem;
  padding-left: 0;
  position: relative;
}
.mil-steps-pad:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -20rem;
  height: 100%;
  width: 20rem;
  background-color: #E7EAEC;
}
.mil-steps-pad:after {
  content: "";
  display: block;
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 10rem;
  height: 10rem;
  background-color: #E7EAEC;
}
@media (max-width: 768px) {
  .mil-steps-pad {
    padding-right: 0;
  }
  .mil-steps-pad:before {
    width: 120vw;
    left: -20vw;
  }
  .mil-steps-pad:after {
    display: none;
  }
}

.mil-steps-pad-2 {
  padding: 6rem 0;
  padding-bottom: 0;
  position: relative;
}
.mil-steps-pad-2:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100rem;
  height: 100%;
  width: 100rem;
  background-color: #E7EAEC;
}
@media (max-width: 768px) {
  .mil-steps-pad-2:after {
    width: 120vw;
    left: -20vw;
  }
}

.mil-steps-pad-3 {
  padding: 6rem 0;
  position: relative;
}
.mil-steps-pad-3:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -20rem;
  height: 100%;
  width: 100vw;
  background-color: #E7EAEC;
}
@media (max-width: 768px) {
  .mil-steps-pad-3 {
    padding-right: 0;
  }
  .mil-steps-pad-3:after {
    width: 120vw;
    left: -20vw;
  }
}

.mil-steps-pad-4 {
  padding: 10rem;
  padding-left: 0;
  position: relative;
}
.mil-steps-pad-4:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -50rem;
  height: 100%;
  width: 50rem;
  background-color: #E7EAEC;
}
.mil-steps-pad-4:after {
  content: "";
  display: block;
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 10rem;
  height: 10rem;
  background-color: #E7EAEC;
}
@media (max-width: 768px) {
  .mil-steps-pad-4 {
    padding-right: 0;
  }
  .mil-steps-pad-4:before {
    width: 120vw;
    left: -20vw;
  }
  .mil-steps-pad-4:after {
    display: none;
  }
}

.mil-steps-sec {
  padding-right: 6rem;
}
@media (max-width: 768px) {
  .mil-steps-sec {
    padding: 0;
  }
}

/* -------------------------------------------

reviews

------------------------------------------- */
.mil-reviews-slider .swiper-slide {
  height: 100%;
}

.mil-review-card {
  padding: 6rem;
  height: 100%;
  display: block;
}
.mil-review-card .mil-card-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.mil-review-card .mil-card-content .mil-card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mil-review-card .mil-card-content .mil-card-head img, .mil-review-card .mil-card-content .mil-card-head i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.mil-review-card .mil-card-content .mil-card-head i {
  border-radius: 0;
  padding-left: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  color: #1a1f23;
  background-color: #FFBD24;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-review-card .mil-card-content .mil-card-head i:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.mil-review-card.mil-video {
  position: relative;
  overflow: hidden;
}
.mil-review-card.mil-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.mil-review-card.mil-video .mil-overlay {
  background: linear-gradient(180.07deg, rgba(15, 18, 20, 0.3) 59.4%, rgba(15, 18, 20, 0.95) 92.13%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 992px) {
  .mil-review-card {
    padding: 4rem;
  }
}

.elementor-widget-metrol-carousel-nav .elementor-widget-container {
  display: flex;
  align-items: end;
}

.mil-slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mil-slider-nav .mil-slider-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFBD24;
  height: 8rem;
  width: 8rem;
  font-size: 1.6rem;
  border: none;
  color: #1a1f23;
  cursor: pointer;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-slider-nav .mil-slider-btn.mil-md {
  height: 6rem;
}
.mil-slider-nav .mil-slider-btn:hover {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}
.mil-slider-nav .mil-slider-btn.swiper-button-disabled {
  background-color: #E7EAEC !important;
  color: rgba(26, 31, 35, 0.2) !important;
}

.fancybox__content {
  padding: 0;
}

video:focus {
  outline: inherit;
}

.is-close-btn {
  background-color: #1a1f23;
  top: 0 !important;
  right: 0 !important;
  border-radius: 0;
  width: 4rem;
  height: 4rem;
  padding: 1.2rem !important;
  opacity: 1 !important;
}
.is-close-btn svg {
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.is-close-btn:hover {
  background-color: #1a1f23 !important;
}
.is-close-btn:hover svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.is-close-btn:hover svg path {
  stroke: #FFBD24 !important;
}

/* -------------------------------------------

brands

------------------------------------------- */
.mil-brands img {
  width: 80%;
  max-width: none;
}

.mil-brands-pad {
  padding: 6rem 0;
  position: relative;
}
.mil-brands-pad:after {
  content: "";
  height: 100%;
  width: 100vw;
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100vw;
  background-color: inherit;
}
@media (max-width: 768px) {
  .mil-brands-pad:after {
    width: 150vw;
    left: -50vw;
  }
}

/* -------------------------------------------

blog

------------------------------------------- */
.mil-blog-card {
  display: block;
}
.mil-blog-card .mil-cover {
  position: relative;
  overflow: hidden;
  padding-bottom: 130%;
}
.mil-blog-card .mil-cover img {
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-blog-card .mil-cover .mil-overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 18, 20, 0)), color-stop(90%, rgba(15, 18, 20, 0.8)));
  background: linear-gradient(180deg, rgba(15, 18, 20, 0) 0%, rgba(15, 18, 20, 0.8) 90%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mil-blog-card .mil-cover .mil-category {
  background-color: #FFBD24;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.5rem 1rem;
  color: #1a1f23;
}
.attr-category-false .mil-blog-card .mil-cover .mil-category {
  display: none !important;
}
.mil-blog-card .mil-cover .mil-pub-title {
  padding: 4rem;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-blog-card .mil-cover .mil-pub-title .mil-arrow {
  height: 4rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.attr-more-false .mil-blog-card .mil-cover .mil-pub-title .mil-arrow {
  display: none !important;
}
.attr-title-false .mil-blog-card .mil-cover .mil-pub-title h3.mil-fs-24 {
  display: none !important;
}
.mil-blog-card .mil-descr {
  padding: 0 4rem;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mil-blog-card .mil-descr p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
.mil-blog-card:hover .mil-cover img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.mil-blog-card:hover .mil-cover .mil-pub-title {
  -webkit-backdrop-filter: blur(2rem);
          backdrop-filter: blur(2rem);
}
.mil-blog-card:hover .mil-cover .mil-pub-title .mil-arrow {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (max-width: 992px) {
  .mil-blog-card:hover .mil-cover .mil-pub-title {
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
  }
}
.attr-details-false .mil-blog-card .mil-descr .mil-descr-top {
  display: none !important;
}
.attr-author-false .mil-blog-card .mil-descr .mil-author {
  display: none !important;
}
.attr-date-false .mil-blog-card .mil-descr .mil-time {
  display: none !important;
}
.attr-text-false .mil-blog-card .mil-descr .mil-text {
  display: none !important;
}

.mil-post-card {
  display: block;
}
.mil-post-card .mil-cover {
  position: relative;
  overflow: hidden;
  padding-bottom: 60%;
}
.mil-post-card .mil-cover img {
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-post-card .mil-cover .mil-overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 18, 20, 0)), color-stop(90%, rgba(15, 18, 20, 0.8)));
  background: linear-gradient(180deg, rgba(15, 18, 20, 0) 0%, rgba(15, 18, 20, 0.4) 90%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mil-post-card .mil-cover .mil-category {
  background-color: #FFBD24;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.5rem 1rem;
  color: #1a1f23;
}
.mil-post-card .mil-cover .mil-pub-title {
  padding: 4rem;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-post-card .mil-cover .mil-arrow {
  height: 4rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-post-card .mil-descr-top {
  border-bottom: dashed 1px rgba(15, 18, 20, 0.2);
  padding-bottom: 2rem;
}
.mil-post-card .mil-descr {
  padding: 0;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mil-post-card .mil-descr p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
.mil-post-card:hover .mil-cover img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.mil-post-card:hover .mil-cover .mil-arrow {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (max-width: 992px) {
  .mil-post-card:hover .mil-cover .mil-pub-title {
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
  }
}

.mil-pub-cover {
  position: relative;
  overflow: hidden;
  padding-bottom: 65%;
}
.mil-pub-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100% !important;
}

.mil-descr-top .mil-author img {
  width: 4rem;
  height: 4rem !important;
  border-radius: 50%;
  max-width: none;
}
.mil-descr-top .mil-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 2rem;
}
.mil-descr-top .mil-time i {
  border-radius: 50%;
  color: #1a1f23;
  background-color: #E7EAEC;
  height: 4rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* -------------------------------------------

projects

------------------------------------------- */
.mil-project-card {
  display: block;
}
.mil-project-card .mil-cover {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}
.mil-project-card .mil-cover img {
  width: 100%;
  height: 100% !important;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-project-card .mil-cover .mil-overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(15, 18, 20, 0)), color-stop(90%, rgba(15, 18, 20, 0.8)));
  background: linear-gradient(180deg, rgba(15, 18, 20, 0) 0%, rgba(15, 18, 20, 0.8) 90%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.mil-project-card .mil-cover .mil-category {
  background-color: #FFBD24;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.5rem 1rem;
  color: #1a1f23;
}
.attr-category-false .mil-project-card .mil-cover .mil-category {
  display: none !important;
}
.mil-project-card .mil-cover .mil-pub-title {
  padding: 4rem;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.attr-title-false .mil-project-card .mil-cover .mil-pub-title .mil-fs-24 {
  display: none !important;
}
.mil-project-card .mil-cover .mil-pub-title .mil-arrow {
  height: 4rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.attr-button-false .mil-project-card .mil-cover .mil-pub-title .mil-arrow {
  display: none !important;
}
.mil-project-card:hover .mil-cover img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.mil-project-card:hover .mil-cover .mil-pub-title {
  -webkit-backdrop-filter: blur(2rem);
          backdrop-filter: blur(2rem);
}
.mil-project-card:hover .mil-cover .mil-pub-title .mil-arrow {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (max-width: 992px) {
  .mil-project-card:hover .mil-cover .mil-pub-title {
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
  }
}

.mil-projects-side {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (max-width: 992px) {
  .mil-projects-side {
    height: auto;
    background-color: #E7EAEC;
    margin-bottom: 10rem;
  }
  .mil-projects-side:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: -10vw;
    height: 100%;
    width: 160vw;
    background-color: #E7EAEC;
  }
}

.mil-side-pad {
  background-color: #E7EAEC;
  position: relative;
  padding-top: 10rem;
}
.mil-side-pad:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100vw;
  height: 100%;
  width: 160vw;
  background-color: #E7EAEC;
}

.mil-projects-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #E7EAEC;
}
.mil-projects-nav a {
  color: #1a1f23;
}
.mil-projects-nav .mil-prjct-arrow i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFBD24;
  height: 8rem;
  width: 8rem;
  font-size: 1.6rem;
  border: none;
  color: #1a1f23;
  cursor: pointer;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-projects-nav .mil-prjct-arrow i:hover {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}
.mil-projects-nav .mil-prjct-arrow.mil-disabled {
  pointer-events: none;
}
.mil-projects-nav .mil-prjct-arrow.mil-disabled i {
  background-color: rgba(26, 31, 35, 0.05);
}
.mil-projects-nav .mil-prjct-arrow.mil-disabled i:before {
  opacity: 0.4;
}
.mil-projects-nav .mil-prjct-arrow.mil-disabled span {
  opacity: 0.4;
}
@media (max-width: 768px) {
  .mil-projects-nav {
    background-color: #1a1f23;
  }
  .mil-projects-nav .mil-prjct-arrow span {
    display: none;
  }
}

/* -------------------------------------------

accordion (faq)

------------------------------------------- */
.mil-accordion {
  text-align: left;
  background-color: transparent;
  width: 100%;
  min-height: 9rem;
  border: none;
  outline: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-accordion span:first-child {
  width: calc(100% - 12rem);
  text-transform: uppercase;
}
.mil-accordion .mil-icon {
  width: 9rem;
  height: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 3rem;
  font-size: 2rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-top: -0.2rem;
  color: #1a1f23 !important;
  background-color: rgba(26, 31, 35, 0.05);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-accordion:hover .mil-icon {
  background-color: #FFBD24;
}
.mil-accordion.mil-active {
  margin-bottom: 1.5rem;
}
.mil-accordion.mil-active .mil-icon {
  background-color: #FFBD24;
}
.mil-accordion.mil-active .mil-icon .mil-icon {
  background-color: #FFBD24;
}

.mil-panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: max-height 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-panel p {
  padding: 3rem;
  padding-left: 0;
  margin: 0;
}

/* -------------------------------------------

price

------------------------------------------- */
.mil-price-card {
  padding: 6rem;
}
.mil-price-card .mil-price {
  font-family: "Anton", sans-serif;
  font-size: 2.4rem;
  color: #E7EAEC;
}
/* -------------------------------------------

footer

------------------------------------------- */
footer .mil-footer-top {
  /*
  padding-top: 10rem;
  padding-bottom: 6rem;
  */
}
footer .mil-footer-bottom {
  /*
  padding-top: 6rem;
  padding-bottom: 4rem;
  */
}
footer .mil-logo,
.mil-wrapper-footer .mil-logo {
  display: block;
  width: 10rem;
  position: relative;
}
footer .mil-logo img,
.mil-wrapper-footer .mil-logo img {
  width: 100%;
}
footer .mil-logo img.mil-dark-logo,
.mil-wrapper-footer .mil-logo img.mil-dark-logo {
  position: absolute;
  left: 0;
  opacity: 0;
}
.mil-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #E7EAEC;
  font-size: 1.8rem;
}
.mil-social li {
  list-style-type: none;
  margin-right: 2rem;
}
.mil-social li:last-child {
  margin: 0;
}
.mil-social li a {
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-social li a:hover {
  color: #FFBD24;
}
footer .mil-menu, 
.mil-wrapper-footer .mil-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .mil-menu li, 
.mil-wrapper-footer .mil-menu li {
  list-style-type: none;
  margin-right: 4rem;
}
footer .mil-menu li:last-child,
.mil-wrapper-footer .mil-menu li:last-child {
  margin: 0;
}
footer .mil-menu li a, 
.mil-wrapper-footer .mil-menu li a {
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
footer .mil-menu li a:hover,
.mil-wrapper-footer .mil-menu li a:hover {
  color: #FFBD24;
}
footer .mil-additional,
.mil-wrapper-footer .mil-additional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .mil-additional li, 
.mil-wrapper-footer .mil-additional li {
  list-style-type: none;
  margin-right: 2rem;
}
footer .mil-additional li:last-child,
.mil-wrapper-footer .mil-additional li:last-child {
  margin: 0;
}
footer .mil-additional li a,
.mil-wrapper-footer .mil-additional li a {
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
footer .mil-additional li a:hover, 
.mil-wrapper-footer .mil-additional li a:hover {
  color: #FFBD24;
}

.mil-footer-default .mil-footer-bottom {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* -------------------------------------------

typography

------------------------------------------- */
body {
  background-color: #f0f1f3;
  font-family: "Outfit", serif;
  font-size: 1.4rem;
  color: rgba(15, 18, 20, 0.5);
  font-weight: 400;
}

.mil-page-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  color: #E7EAEC;
  font-weight: 500;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.widget h1,
.widget h2,
.widget h3,
.widget h4,
.widget h5,
.widget h6,
.single-post-text h1, 
.single-post-text h2,
.single-post-text h3,
.single-post-text h4,
.single-post-text h5,
.single-post-text h6 {
  color: #1a1f23;
}

.mil-link-style {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2rem;
}

.mil-upper {
  text-transform: uppercase;
}

.mil-shortened-80 {
  width: 80%;
}

.mil-shortened-90 {
  width: 90%;
}

@media (max-width: 768px) {
  .mil-shortened-80 {
    width: 100%;
  }
  .mil-shortened-90 {
    width: 100%;
  }
}
/* -------------------------------------------

buttons

------------------------------------------- */
.mil-btns {
  display: flex;
}

.mil-btn {
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFBD24;
  height: 8rem;
  padding: 0 4rem;
  font-size: 1.1rem;
  border: none;
  color: #0F1214;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2rem;
  cursor: pointer;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-btn.mil-md {
  height: 6rem;
}
.mil-btn:hover {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

.mil-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  font-size: 1.1rem;
  color: #E7EAEC;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2rem;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-link:hover {
  color: #FFBD24;
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}
.mil-link.mil-c-m-2 {
  color: #1a1f23;
}

.mil-text-link {
  color: #FFBD24;
  position: relative;
}
.mil-text-link:before {
  content: "";
  width: 100%;
  background-color: #FFBD24;
  height: 0.2rem;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-text-link:hover:before {
  width: 100%;
}

/*text box*/

.mil-text p,
.mil-text-xl p,
.mil-text-lg p,
.mil-text-md p,
.mil-text-sm p,
.mil-text-xs p {
    margin-bottom: 1.5rem;
}

.mil-text p:last-child,
.mil-text-xl p:last-child,
.mil-text-lg p:last-child,
.mil-text-md p:last-child,
.mil-text-sm p:last-child,
.mil-text-xs p:last-child {
    margin-bottom: 0
}

.mil-text a,
.mil-text-xl a,
.mil-text-lg a,
.mil-text-md a,
.mil-text-sm a,
.mil-text-xs a {
  color: #1a1f23;
  position: relative;
}
.mil-text a:hover,
.mil-text-xl a:hover,
.mil-text-lg a:hover,
.mil-text-md a:hover,
.mil-text-sm a:hover,
.mil-text-xs a:hover {
  color: #FFBD24;
  position: relative;
}
.mil-text a:before,
.mil-text-xl a:before,
.mil-text-lg a:before,
.mil-text-md a:before,
.mil-text-sm a:before,
.mil-text-xs a:before {
    content: "";
    width: 100%;
    background-color: #FFBD24;
    height: 0.2rem;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-text a:hover:before,
.mil-text-xl a:hover:before,
.mil-text-lg a:hover:before,
.mil-text-md a:hover:before,
.mil-text-sm a:hover:before,
.mil-text-xs a:hover:before {
    width: 100%;
}

/* -------------------------------------------

faces

------------------------------------------- */
.mil-faces {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 1rem;
}
.mil-faces div {
  width: 4rem;
  height: 5rem;
}
.mil-faces div img {
  width: 5.3rem;
  height: 5.3rem !important;
  max-width: none;
  border-radius: 50%;
  border: solid 3px #1a1f23;
}
.mil-faces.mil-type-2 div {
  width: 4rem;
  height: 5rem;
}
.mil-faces.mil-type-2 div img {
  width: 5.3rem;
  height: 5.3rem !important;
  max-width: none;
  border-radius: 50%;
  border: solid 3px #E7EAEC;
}

/* -------------------------------------------

breadcrumbs

------------------------------------------- */
.mil-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mil-breadcrumbs li {
  list-style-type: none;
}
.mil-breadcrumbs li:after {
  content: "/";
  margin: 0 1.5rem;
}
.mil-breadcrumbs li a {
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: #1a1f23;
}
.mil-breadcrumbs li:last-child {
  cursor: not-allowed;
}
.mil-breadcrumbs li:last-child:after {
  display: none;
}
.mil-breadcrumbs li:last-child a {
  color: rgba(15, 18, 20, 0.5);
  pointer-events: none;
}

/***************************

content

***************************/

.mil-transition-frame {
  min-height: 100vh;
}

.single-post-title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
}

.single-post-text ul {
  padding: 0;
  margin: 0;
}
.single-post-text h1 {
  font-size: 48px;
}
.single-post-text h2 {
  font-size: 36px;
}
.single-post-text h3 {
  font-size: 24px;
}
.single-post-text h4 {
  font-size: 17px;
}
.single-post-text h5 {
  font-size: 16px;
}
.single-post-text h6 {
  font-size: 15px;
}
.single-post-text ul > li,
.single-post-text ol > li {
  margin-bottom: 0.75rem;
}
.single-post-text ul ul,
.single-post-text ol ol,
.single-post-text ul ol,
.single-post-text ol ul {
  margin-top: 0.75rem;
}
.single-post-text ul > li {
  display: block;
  line-height: 150%;
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}
.single-post-text ul > li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #FFBD24;
}
.single-post-text ol {
  padding: 0;
  margin: 0 0 0 1.25rem;
}
.single-post-text ol > li {
  line-height: 150%;
  list-style-type: decimal;
}
.single-post-text ol > li::marker {
  color: #1a1f23;
  font-size: 90%;
}
.single-post-text p, 
.single-post-text ul, 
.single-post-text ol, 
.single-post-text h1, 
.single-post-text h2, 
.single-post-text h3, 
.single-post-text h4, 
.single-post-text h5, 
.single-post-text h6, 
.single-post-text iframe,
.single-post-text table, 
.single-post-text object, 
.single-post-text blockquote {
  margin-bottom: 30px;
}
.single-post-text p:last-child, 
.single-post-text ul:last-child, 
.single-post-text ol:last-child, 
.single-post-text h1:last-child, 
.single-post-text h2:last-child, 
.single-post-text h3:last-child, 
.single-post-text h4:last-child, 
.single-post-text h5:last-child, 
.single-post-text h6:last-child, 
.single-post-text iframe:last-child, 
.single-post-text table:last-child, 
.single-post-text object:last-child, 
.single-post-text blockquote:last-child {
  margin-bottom: 0;
}

.sigle-post-text input,
.single-post-text textarea {
  color: #1a1f23;
}

/***************************

swiper

***************************/
.mil-content .swiper, 
.mil-content .swiper-container {
  overflow: visible;
}

/*-------------------------
widgets
--------------------------*/
.widget-area .widget-title {
	position: relative;
	font-size: 2rem;
}

.widget-area .widget-title i {
	position: absolute;
  right: 0;
	bottom: 4px;
  font-family: "Font Awesome 5 Free";
  color: rgba(15, 18, 20, 0.5);
  font-size: 1rem;
  opacity: 0.5;
  font-weight: 900;
  transform: scale(1);
}

.widget-area .widget_block h2 {
  line-height: 120%;
  font-size: 2rem;
  position: relative;
  margin-bottom: 3rem;
}

.widget-area .widget_block h2:before {
  content: "\f063";
  position: absolute;
  right: 0;
  font-family: "Font Awesome 5 Free";
  color: rgba(15, 18, 20, 0.5);
  font-size: 1rem;
  opacity: 0.5;
  font-weight: 900;
}

.widget-area .widget {
  margin-bottom: 5rem;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}

.widget-area ul,
.widget-area ol {
	padding: 0;
	margin: 0;
  list-style: none;
}

.widget-area ul li,
.widget-area ol li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  padding: 15px 0;
  border-bottom: solid 1px rgba(0,0,0,.1);
  color: rgba(15, 18, 20, 0.5);
}

.widget-area ul li:first-child,
.widget-area ol li:first-child {
  border-top: solid 1px rgba(0,0,0,.1);
}

.widget-area ul li a,
.widget-area ol li a {
  display: block;
  text-decoration: none;
  color: #1a1f23;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}

.widget-area ul li a:hover,
.widget-area ol li a:hover {
  text-decoration: none;
  color: #FFBD24;
}

.widget-area .widget_categories ul ul,
.widget-area ul li.page_item_has_children ul,
.widget-area .widget_nav_menu ul ul,
.widget-area ul.wp-block-categories-list ul {
  border-left: 1px solid rgba(0,0,0,.1);
}
.widget-area .widget_categories ul li,
.widget-area ul li.page_item_has_children,
.widget-area .widget_nav_menu ul li,
.widget-area .widget_recent_comments ul li,
.widget-area ol.wp-block-latest-comments li,
.widget-area .widget_rss ul li,
.widget-area ul.wp-block-categories-list li {
  display: block;
}
.widget-area .widget_categories ul li a,
.widget-area ul li.page_item_has_children a,
.widget-area .widget_nav_menu ul li a,
.widget-area .widget_recent_comments ul li a,
.widget-area ol.wp-block-latest-comments li a,
.widget-area ul.wp-block-categories-list li a {
  display: inline-block;
}
.widget-area .widget_categories ul li li,
.widget-area ul li.page_item_has_children li,
.widget-area .widget_nav_menu ul li li,
.widget-area ul.wp-block-categories-list li li {
  border-bottom: none;
  padding-bottom: 0;
  padding-left: 15px;
  position: relative;
}
.widget-area .widget_categories ul li li:after,
.widget-area ul li.page_item_has_children li:after,
.widget-area .widget_nav_menu ul li li:after,
.widget-area ul.wp-block-categories-list li li:after {
  content: '';
  position: absolute;
  left: 0px;
  top: 26px;
  width: 10px;
  height: 1px;
  background: rgba(0,0,0,.1);
}
.widget-area .widget_categories ul li li:first-child,
.widget-area ul li.page_item_has_children li:first-child,
.widget-area .widget_nav_menu ul li li:first-child,
.widget-area ul.wp-block-categories-list li li:first-child {
  border-top: none;
}

.widget-area .widget_recent_comments ul li .comment-author-link,
.wp-block-latest-comments__comment-author {
	font-weight: 500;
}

.widget-area .widget_rss .rss-date {
  display: inline-block;
  padding: 2px 5px;
  background-color: rgba(0,0,0,.1);
  font-size: 1.4rem;
  font-weight: 400;
  color: #1a1f23;
}

.widget-area .widget_rss ul li a {
  transform: none;
  font-weight: 500;
  margin-bottom: 4px;
}

.wp-block-search,
.widget-area .widget_search .search-form {
	position: relative;
  max-width: 300px;
}

.wp-block-search label,
.widget-area .widget_search label {
  margin: 0;
}

.wp-block-search input[type=text],
.wp-block-search input[type=search],
.widget-area .widget_search input.search-field, 
.widget-area select, 
.single-post-text select {
  height: 50px;
  line-height: 50px;
  position: relative;
  padding: 0 60px 0 20px;
  margin-bottom: 0;
  font-size: 1.6rem;
  background-color: #f0f1f3;
  display: block;
  width: 100%;
  border: none;
  font-weight: normal;
  text-transform: initial;
  letter-spacing: 1px;
  color: #1a1f23;
}
.single-post-text select,
.single-post-text .wp-block-search input[type=search] {
	background-color: rgba(0, 0, 0, 0.1);
  color: #1a1f23;
}

.single-post-text .wp-block-file__button {
  background: #1a1f23;
  color: #f0f1f3;
  text-decoration: none;
}

.widget-area .widget_search input.search-submit,
.wp-block-search .wp-block-search__button {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  border: none;
  background-color: #FFBD24;
  transition: 0.3s ease-in-out;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40%;
  background-image: url(assets/img/icons/search.svg);
  font-size: 0px;
  color: transparent;
}

.widget_rss a.rss-widget-feed {
  margin-right: 3px;
  display: inline-block;
  vertical-align: baseline;
}

.widget_rss .rss-date,
.widget_rss cite {
  margin: 5px 0 10px 0;
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.8;
}

.widget_rss cite {
  margin: 5px 0 20px 0;
  font-style: normal;
}

.widget-area .widget_text img {
  max-width: 100%;
  height: auto;
}

.widget-area .widget_text p {
  margin: 15px 0;
}

.post-text-bottom .tags-links,
.wp-block-tag-cloud .tagcloud,
.widget-area .widget_tag_cloud .tagcloud {
  font-size: 0px;
}

.post-text-bottom .tags-links a,
.wp-block-tag-cloud .tag-cloud-link,
.widget-area .widget_tag_cloud .tag-cloud-link {
  margin: 0 5px 5px 0;
  display: inline-block;
  vertical-align: top;
  padding: 0 7px;
  font-size: 1.6rem !important;
  background-color: #FFBD24;
  padding: 2px 5px;
  color: #1a1f23;
  transition: 0.3s ease-in-out;
}

.post-text-bottom .tags-links a:hover,
.wp-block-tag-cloud .tag-cloud-link:hover,
.widget-area .widget_tag_cloud .tag-cloud-link:hover {
  filter: brightness(110%);
}

.widget-area table {
  width: 100%;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  background: #f0f1f3;
  border: 1px solid rgba(15, 18, 20, 0.5);
}

.widget-area table caption {
	padding: 5px;
	font-weight: 600;
	font-size: 1.4rem;
	border-bottom: none;
	background: rgba(15, 18, 20, 0.5);
	text-align: center;
	color: rgba(240, 241, 243, 0.5);
}

.widget-area th {
	padding: 5px 0;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	border: none;
}

.widget-area td {
	border: none;
	padding: 5px 0;
	font-size: 1.4rem;
	background: none;
	text-align: center;
	border: none;
}

.widget-area tfoot td {
	border: none;
}

.widget-area td.pad {
	background: none;
}

.widget-area td#today {
	background: #FFBD24;
	color: #1a1f23 !important;
}

.wp-block-latest-comments__comment-date {
  padding-top: 0.5rem;
}

/*-------------------------
global classes
--------------------------*/

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

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

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

.pull-right {
	float: right !important;
}

.pull-left {
	float: left !important;
}

.pull-none {
	float: none !important;
}

.alignright {
	margin-left: 20px !important;
	margin-bottom: 10px !important;
	float: right !important;
	max-width: 50% !important;
}

img.alignright {
  clear: right;
}

.alignleft {
	margin-right: 20px !important;
	margin-bottom: 10px !important;
	float: left !important;
	max-width: 50% !important;
}

img.alignleft {
  clear: left;
}

.aligncenter {
	margin-left: auto !important;
	margin-right: auto !important;
	display: block;
}

.full-width {
	max-width: 100%;
	width: 100%;
}

.full-max-width {
	max-width: 100%;
	width: auto;
}

.centrize {
	display: table !important;
	table-layout: fixed !important;
	height: 100% !important;
	position: relative !important;
	top: 0;
	left: 0;
	z-index: 2;
}

.vertical-center {
	display: table-cell !important;
	vertical-align: middle !important;
}

form input[type="checkbox"] {
	display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
	width: auto;
	height: auto;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

iframe,
object {
	max-width: 100%;
}

.sticky {
	position: relative;
}

.sticky:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: transparent;
  border: 1.5px solid rgba(15, 18, 20, 0.1);
	z-index: -1;
}

.sticky.mil-post-card {
  padding: 2rem;
}

.post-edit-link {
	text-decoration: underline;
  color: #1a1f23;
}

.post-edit-link:hover {
	text-decoration: none;
}

.edit-link {
	margin-top: 3rem;
	display: block;
}

/*-------------------------
single post
--------------------------*/

.single-post-text > *:first-child,
.single-post-text > div > *:first-child {
	margin-top: 0;
}
.single-post-text > *:last-child {
	margin-bottom: 0;
}

.single-post-text ul,
.single-post-text ol {
  line-height: 2;
}

.single-post-text ul {
  display: block;
  list-style-type: disc;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

.single-post-text ul > li {
  list-style-type: disc;
}

.single-post-text li {
  display: list-item;
  text-align: -webkit-match-parent;
}

.single-post-text strong,
.mil-text strong {
	color: #1a1f23;
}

.single-post-text ol {
  display: block;
  list-style-type: decimal;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 2.5rem;
}

.single-post-text ol > li {
  list-style-type: decimal;
}

.single-post-text p {
	margin-top: 30px;
	margin-bottom: 30px;
}

.single-post-text img {
	max-width: 100%;
}

.single-post-text img+figure {
	margin-top: 30px;
}

.single-post-text table {
	width: 100%;
	margin: 0;
	padding: 0;
	border-collapse: collapse;
	background: none;
	border: 1px solid rgba(0, 0, 0, 0.3);
}

.single-post-text table th {
  padding: 15px 20px;
	font-size: 1.5rem;
	font-weight: 700;
	background: #E7EAEC;
	border: 1px solid rgba(15, 18, 20, 0.5);
	text-align: left;
}

.single-post-text table tbody th {
	background: #E7EAEC;
}

.single-post-text table td {
	border: none;
	padding: 10px;
	font-size: 1.6rem;
	background: #E7EAEC;
	border: 1px solid rgba(15, 18, 20, 0.5);
}

.single-post-text table td#today{
	background: rgba(0, 0, 0, 0.3);
	font-weight: 700;
}

.single-post-text table caption {
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 1.5rem;
	font-weight: 600;
  caption-side: top;
  text-align: center;
}

@media screen and (max-width: 720px) {
	.single-post-text table th {
		padding: 10px;
		font-size: 1.4rem;
	}
	.single-post-text table td {
		padding: 10px;
		font-size: 1.4rem;
	}
}

.single-post-text {
	line-height: 1.75;
	word-wrap: break-word;
  font-size: 1.6rem;
  color: rgba(15, 18, 20, 0.5);
}

.single-post-text:after {
	content: '';
	position: relative;
	clear: both;
	display: block;
}

.single-post-text img {
	max-width: 100%;
	height: auto;
}

.single-post-text dt {
	margin-bottom: 5px;
	font-weight: 700;
  color: #1a1f23;
}

.single-post-text dd {
	margin-top: 0;
	margin-bottom: 20px;
	margin-left: 20px;
}

.single-post-text blockquote p {
	margin-bottom: 0.5rem!important;
	font-style: normal;
	font-weight: 400;
}

.single-post-text blockquote p:first-child {
	margin-top: 0;
}

.single-post-text blockquote cite {
	font-size: 1.6rem;
	font-style: normal;
  font-weight: 600;
}

.single-post-text blockquote cite:before {
	margin-right: 5px;
	content: '-';
}

.single-post-text blockquote cite br {
	display: none;
}

.single-post-text blockquote.has-text-align-right cite:before {
	display: none;
}

.single-post-text blockquote.has-text-align-right cite:after {
	margin-left: 5px;
	content: '-';
}

.wp-block-file__button {
	padding: 0 1rem;
}

.single-post-text figure {
	margin-bottom: 30px;
	max-width: 100%;
	overflow: auto;
}

.single-post-text figure .wp-caption-text,
.gallery-caption {
	font-style: italic;
}

.bypostauthor strong {
  	font-weight: 500;
}

.gallery {
	margin: 30px -10px;
}

.single-post-text .gallery {
	margin-bottom: 0;
}

.single-post-text h1,
.single-post-text h2,
.single-post-text h3,
.single-post-text h4,
.single-post-text h5,
.single-post-text h6 {
	margin-top: 30px;
	margin-bottom: 30px;
}

.single-post-text h1+h2,
.single-post-text h2+h3,
.single-post-text h3+h4,
.single-post-text h4+h5,
.single-post-text h5+h6,
.single-post-text h6 {
	margin-top: 30px;
}

.single-post-text pre.wp-block-code,
.single-post-text pre {
	padding: 20px;
	overflow: auto;
	white-space: pre-wrap;
	background: linear-gradient(159deg, rgb(0, 0, 0) 0%, #1a1f23 100%);
	background: -webkit-linear-gradient(159deg, rgb(0, 0, 0) 0%, #1a1f23 100%);
	color: #E7EAEC;
	font-size: 1.5rem;
  margin: 30px 0;
}

.single-post-text blockquote {
	margin: 30px 0;
	color: #1a1f23;
	background: transparent;
	padding: 30px 30px 30px 40px;
	font-style: italic;
	position: relative;
}

.single-post-text blockquote p:last-child {
  margin-bottom: 0px!important;
}

.single-post-text blockquote:before {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f10d";
	font-size: 1.6rem;
	opacity: .3;
	color: #1a1f23;
	top: 0px;
	left: 10px;
}

.single-post-text blockquote:after {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f10d";
	font-size: 1.6rem;
	opacity: .3;
	color: #1a1f23;
	bottom: 0px;
	right: 0px;
	transform: rotate(180deg);
}

.single-post-text footer {
	width: auto;
}

.gallery .gallery-item {
	margin: 0;
	padding: 10px;
	display: inline-block;
	vertical-align: top;
	width: 100%;
	text-align: center;
}

.gallery .gallery-item img {
	max-width: 100%;
	height: auto;
}

.gallery.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery.gallery-columns-3 .gallery-item {
	width: 33.333%;
}

.gallery.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery.gallery-columns-6 .gallery-item {
	width: 16.666%;
}

.gallery.gallery-columns-7 .gallery-item {
	width: 14.28%;
}

.gallery.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery.gallery-columns-9 .gallery-item {
	width: 11.111%;
}

.post-text-bottom {
  color: rgba(15, 18, 20, 0.5);
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px dashed rgba(15, 18, 20, 0.5);
  font-size: 1.6rem;
}

.post-text-bottom > span {
	margin-bottom: 3rem;
	display: block;
}

.post-text-bottom .cat-links {
  line-height: 175%;
}

.post-text-bottom .social-share {
  line-height: 20px;
}

.post-text-bottom .share-btn {
	position: relative;
	display: inline-block;
	top: 1px;
	margin-left: 7px;
	margin-right: 7px;
	font-size: 1.6rem;
}

.social-share strong {
	font-weight: 400;
}

.social-share a {
	margin-right: 15px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	color: #1a1f23;
	transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-moz-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-webkit-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
	-o-transition: all 0.7s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.social-share a .icon {
	color: #1a1f23;
	font-size: 1.6rem;
}

.social-share a:hover, 
.social-share a:hover .icon {
	color: #FFBD24;
}

.social-share a:last-child {
	margin-right: 0;
}

.social-share span {
	line-height: 28px;
}

.page-links {
	margin-top: 30px;
	clear: both;
}

.page-links a,
.page-links span {
	display: inline-block;
	margin: 0 10px;
}

.post-text-bottom span.cat-links a, 
.page-links a {
	color: #1a1f23;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}

.post-text-bottom span.cat-links a:after, 
.page-links a:after {
  content: "";
  width: 0;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFBD24;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}

.post-text-bottom span.cat-links a:hover, 
.page-links a:hover {
	color: #FFBD24;
  text-decoration: none;
}

.post-text-bottom span.cat-links a:hover:after, 
.page-links a:hover:after {
	width: 100%;
}

.post-text-bottom .tags-links {
	margin: 3rem 0;
	display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.6rem;
}

.post-text-bottom .tags-links a {
  	margin-top: 2.5px;
  	margin-bottom: 2.5px;
}

.post-text-bottom .tags-links *:nth-child(1) {
	margin-left: 5px;
}

.mil-post-navigation {
    margin-top: 5rem;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed rgba(15, 18, 20, 0.5);
    padding-top: 5rem;
}

@media (max-width: 767px) {
	.mil-post-navigation > a > span,
  .mil-post-navigation > span > span {
		display: none !important;
	}
}

.mil-post-navigation a,
.mil-post-navigation > span {
    font-size: 1.6rem;
    font-weight: 600;
}

.mil-post-navigation i:last-child {
    margin-left: 7px
}

.mil-post-navigation i:first-child {
    margin-right: 7px
}

.mil-post-navigation > span {
    opacity: .5;
    cursor: default
}

.mil-post-navigation a span {
    transition: .3s ease 0s;
    display: inline-block
}

.mil-post-navigation a:hover i + span {
    transform: translateX(5px)
}

.mil-post-navigation a:hover span {
    transform: translateX(-5px)
}

.mil-text .mil-el-more {
	margin-top: 30px;
}

.mil-el-more {
	display: block;
}

/* Text */

.mil-text a,
.single-post-text a {
  color: #1a1f23;
  position: relative;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-text a:after,
.single-post-text a:after {
  content: "";
  width: 0;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFBD24;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-text a:hover,
.single-post-text a:hover {
  color: #FFBD24;
}
.mil-text a:hover:after,
.single-post-text a:hover:after {
  width: 100%;
}

/*-------------------------
sidebar
--------------------------*/

.mil-sidebar-frame {
	width: 100%;
	padding: 30px;
  background: #E7EAEC;
}
  
.mil-sidebar-frame .mil-sidebar {
	padding: 15px;
}
  
@media (max-width: 992px) {
	.mil-sidebar-frame.mil-pad-type-1 {
	  margin-top: 60px;
	  margin-bottom: 60px;
	}
	.mil-sidebar-frame.mil-pad-type-2 {
	  margin-top: 90px;
	  margin-bottom: 0;
	}
}
  
@media (max-width: 767px) {
	.mil-sidebar-frame .mil-sidebar {
	  border: none;
	  padding: 0;
	}
}

/*-------------------------
comments
-------------------------*/

.mil-comments-list {
	padding: 0;
	margin-top: 30px;
	position: relative;
}

.mil-comments-list + .form-comment {
  margin-top: 90px;
}

.mil-comments-list + .mil-text {
  margin-top: 60px;
}

.mil-comments-list:before {
	content: '';
	width: 1px;
	height: 100%;
	position: absolute;
	left: 32px;
	top: 0;
}

.mil-comments-list>li {
	list-style-type: none;
	position: relative;
}

.mil-comments-list>li:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	width: 0;
}

.mil-comments-list .mil-comment-avatar {
	width: 65px;
	height: 65px;
	position: relative;
	z-index: 99;
	float: left;
	border-radius: 50%;
	overflow: hidden;
}

.mil-comments-list .mil-comment-avatar img {
	width: 100%;
	height: 100% !important;
}

.mil-comments-list .children {
	padding-left: 88px;
	clear: both;
	margin-top: 15px;
	list-style: none;
}

.mil-comments-list .comment {
	list-style: none;
}

.comment-info {
	padding: 15px 0 0 0;
	color: rgba(15, 18, 20, 0.5);
}

.comment-info span.comment-reply {
	position: absolute;
	top: 0;
	right: 0;
}

.comment-reply-link {
	font-size: 1.4rem;
	font-weight: 600;
}

.comment-reply-link:after {
	content: '';
	margin-left: 8px;
	content: '\f3e5';
	display: inline-block;
	vertical-align: middle;
	font-family: 'Font Awesome 5 Free';
	font-size: 1.4rem;
	line-height: 1.4rem;
	opacity: 0.8;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}

.comment-reply-link:hover:after {
  opacity: 1;
  transform: translate3d(2.5px, 0, 0);
}

.post-comments .title h5 {
	margin-bottom: 30px;
}

.comment-respond {
	position: relative;
	margin-top: 2rem;
	margin-bottom: 4rem;
	margin-left: 90px;
}

.form-comment .comment-respond {
	margin-top: 0;
	margin-left: 0;
}

.trackback .mil-comment-avatar,
.pingback .mil-comment-avatar {
	display: none;
}

.comment-respond .small,
.comment-respond small {
	font-size: 1.4rem;
  font-weight: 400;
  margin-left: 1rem;
}

.comment-respond .mil-h4 small {
	position: absolute;
	top: 10px;
	left: auto;
	right: 0;
	display: block;
	font-size: 1.4rem;
	white-space: nowrap;
}

.comment-respond .mil-h4 small a {
	text-decoration: none;
}

.comment-respond .mil-h4 small a:hover {
	text-decoration: underline;
  color: #FFBD24;
}

.comment:after {
	content: '';
	position: relative;
	display: block;
	clear: both;
}

.comment-reply {
	margin-top: 20px;
}

.mil-comment-box {
	width: calc(100% - 90px);
	float: right;
	position: relative;
  padding: 3.5rem 6rem 3.5rem 3.5rem;
  background-color: #f0f1f3;
}

.mil-comment-box .mil-comment-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 20px;
}

.mil-comment-box .mil-comment-head h6 {
	font-size: 1.5rem;
	line-height: 1.5;
}

.mil-comment-box .mil-comment-head .mil-date {
  padding: 2px 5px;
  background-color: rgba(15, 18, 20, 0.5);
  font-size: 1.4rem;
  font-weight: 400;
  color: #E7EAEC;
}

.mil-comments-list.mil-reply-list>li:last-child .mil-comment-box {
	margin-bottom: 30px !important;
}

@media (max-width: 790px) {
	.mil-comments-list:before {
		left: 17px;
	}
	.mil-comments-list .mil-comment-avatar {
		width: 35px;
		height: 35px;
	}
	.mil-reply-list {
		padding-left: 50px;
	}
	.mil-reply-list>li:before {
		top: 17px;
		left: -33px;
	}
	.mil-comment-box {
		width: calc(100% - 50px);
	}
}

.comment-form-cookies-consent label {
	display: inline;
}

.title.comment-reply-title,
.post-comments .title {
	margin: 0 0 30px 0;
	font-size: 1.8rem;
	font-weight: 600;
}

.post-comments > .form-comment > .comment-respond {
	margin-bottom: 0;
}

@media (max-width: 480px) {
	.comment-respond .title_inner small {
		position: relative;
		top: 0;
		left: 0;
	}
}

@media (max-width: 1160px) {
	.post-comments .post-comment .image {
		width: 60px;
		height: 60px;
	}
	.post-comments .post-comment .desc {
		margin-left: 80px;
	}
	.post-comments .post-comment.pingback .desc {
		margin-left: 0;
	}
	.post-comments ul.children {
		padding: 20px 20px 0 80px;
	}
	.post-comments ul.children ul.children {
		padding: 20px 0 0 20px;
	}
	.post-comments ul.children ul.children ul.children ul.children {
		padding: 20px 0 0 10px;
	}
}

@media (max-width: 840px) {
	.post-comments ul.children {
		padding: 20px 20px 0 20px;
	}
	.post-comments ul.children ul.children {
		padding: 20px 0 0 20px;
	}
	.post-comments ul.children ul.children ul.children {
		padding: 20px 0 0 20px;
	}
	.post-comments ul.children ul.children ul.children ul.children {
		padding: 20px 0 0 10px;
	}
}

@media (max-width: 480px) {
	.post-comments ul.children {
		padding: 15px 15px 15px 15px;
	}
	.post-comments ul.children ul.children {
		padding: 15px 0 0 10px;
	}
	.post-comments ul.children ul.children ul.children {
		padding: 15px 0 0 5px;
	}
	.post-comments ul.children ul.children ul.children ul.children {
		padding: 15px 0 0 5px;
	}
	.post-comments .post-comment .image {
		width: 40px;
		height: 40px;
	}
	.post-comments .post-comment .desc {
		margin-left: 55px;
	}
	.post-comments .post-comment.pingback .desc {
		margin-left: 0;
	}
	.gallery .gallery-item {
		width: 100%;
	}
	.gallery.gallery-columns-1 .gallery-item {
		width: 100%;
	}
	.gallery.gallery-columns-2 .gallery-item {
		width: 100%;
	}
	.gallery.gallery-columns-3 .gallery-item {
		width: 100%;
	}
	.gallery.gallery-columns-4 .gallery-item {
		width: 100%;
	}
	.gallery.gallery-columns-5 .gallery-item {
		width: 100%;
	}
	.gallery.gallery-columns-6 .gallery-item {
		width: 100%;
	}
	.gallery.gallery-columns-7 .gallery-item {
		width: 100%;
	}
	.gallery.gallery-columns-8 .gallery-item {
		width: 100%;
	}
	.gallery.gallery-columns-9 .gallery-item {
		width: 100%;
	}
}

/*-------------------------
WP Block
-------------------------*/

.wp-caption-text,
.wp-block-image figcaption,
.wp-block-video figcaption,
.wp-block-embed figcaption {
	max-width: 100%;
	margin: 0;
	padding: 5px 10px 0 10px;
	text-align: center;
	font-size: 1.4rem;
	font-style: italic;
	color: rgba(15, 18, 20, 0.5);
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
	padding: 0;
}

.wp-block-gallery .blocks-gallery-image:before,
.wp-block-gallery .blocks-gallery-item:before {
	display: none;
}

.wp-block-cover,
.wp-block-cover-image {
	margin: 30px 0;
}

.wp-block-cover.alignleft,
.wp-block-cover-image.alignleft,
.wp-block-cover.alignright,
.wp-block-cover-image.alignright {
	margin-bottom: 30px!important;
}

.wp-block-cover p a:hover,
.wp-block-cover-image p a:hover {
	text-decoration: underline;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
	padding: 30px 40px !important;
}

.wp-block-pullquote {
	padding-top: 0;
	padding-bottom: 0;
}

.wp-block-pullquote blockquote {
	padding-bottom: 30px;
	border-left: none;
	border-bottom: 2px solid #FFBD24;
}

.wp-block-pullquote.is-style-solid-color {
	background-color: transparent;
	border: none;
}

.wp-block-pullquote.is-style-solid-color blockquote {
	border: none;
}

.wp-block-calendar,
.wp-block-archives,
.wp-block-categories {
	margin: 30px 0;
	max-width: 480px;
}

.wp-block-search .wp-block-search__label {
	display: none;
}

.wp-block-group.has-background {
	padding: 20px;
	color: #1a1f23;
}

.wp-block-group.has-background p:first-child {
	margin-top: 0;
}

.wp-block-group.has-background p:last-child {
	margin-bottom: 0;
}

.wp-block-media-text.has-background {
	color: #1a1f23;
}

.wp-block-media-text.has-background .has-large-font-size {
	line-height: 1.7;
}

hr.wp-block-separator {
	margin: 30px 0;
	border: none;
	border-bottom: 1px solid rgba(15, 18, 20, 0.5);
	max-width: 50px;
}

hr.wp-block-separator.is-style-wide {
	max-width: 100%;
}

.wp-block-separator.is-style-dots:before {
	color: rgba(15, 18, 20, 0.5);
}

.wp-block-button {
	margin-bottom: 30px;
}

.wp-block-button a.wp-block-button__link {
	padding: 13px 35px;
	background: #FFBD24;
	color: #1a1f23;
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	border-radius: 46px;
	-webkit-border-radius: 46px;
}

.wp-block-button a.wp-block-button__link:hover {
	color: #1a1f23;
}

.wp-block-button a.wp-block-button__link:after {
  display: none;
}

.wp-block-button.is-style-outline a.wp-block-button__link {
	padding-top: 11px;
	padding-bottom: 11px;
	border: 2px solid #FFBD24;
	color: #FFBD24;
	background: none;
}

.wp-block-button.is-style-squared a.wp-block-button__link {
	border-radius: 0;
	-webkit-border-radius: 0;
}

.wp-block-columns {
	margin-bottom: 0;
}

.wp-calendar-nav:after {
	content: '';
	position: relative;
	display: block;
	clear: both;
}

.wp-calendar-nav span.wp-calendar-nav-prev {
	float: left;
}

.wp-calendar-nav span.wp-calendar-nav-next {
	float: right;
}

.wp-block-latest-comments__comment {
  line-height: 1.5;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
	padding: 0;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt a,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a {
	font-weight: 600;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
	margin-top: 8px;
	margin-bottom: 22px;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background: rgba(15, 18, 20, 0.5);
}

ul.blocks-gallery-grid {
	margin: 0 !important;
}

body .wp-block-cover-image-text,
body .wp-block-cover-image-text a,
body .wp-block-cover-image-text a:active,
body .wp-block-cover-image-text a:focus,
body .wp-block-cover-image-text a:hover,
body .wp-block-cover-text,
body .wp-block-cover-text a,
body .wp-block-cover-text a:active,
body .wp-block-cover-text a:focus,
body .wp-block-cover-text a:hover,
body section.wp-block-cover-image h2,
body section.wp-block-cover-image h2 a,
body section.wp-block-cover-image h2 a:active,
body section.wp-block-cover-image h2 a:focus,
body section.wp-block-cover-image h2 a:hover {
	color: #f0f1f3 !important;
}

.wp-block-archives-dropdown .nice-select,
.wp-block-categories-dropdown .nice-select {
	max-width: 390px;
	float: none;
	display: block;
}

.wp-block-calendar,
.wp-block-archives,
.wp-block-categories {
	max-width: 390px;
}

.wp-block-calendar table {
	background: #f0f1f3;
  border: 1px solid rgba(15, 18, 20, 0.5);
}
.wp-calendar-table tr th {
	padding-left: 5px;
	padding-right: 5px;
	text-align: center!important;
}

.post-password-form {
  max-width: 640px;
}
.post-password-form label {
	display: inline-block;
	vertical-align: bottom;
}
.post-password-form input[type="password"] {
  color: #1a1f23;
}
.post-password-form input[type="submit"] {
	display: inline-block;
	vertical-align: bottom;
	width: 220px;
}

.itemGallery__box {
	margin-bottom: 30px;
	position: relative;
	background-color: white;
	-webkit-box-shadow: 0 5px 10px 0 rgb(26 47 51 / 15%);
	box-shadow: 0 5px 10px 0 rgb(26 47 51 / 15%);
	border-radius: 5px;
}
.itemGallery__box a {
	position: relative;
	overflow: hidden;
	display: block;
}
.itemGallery__box a:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
	opacity: 0;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.itemGallery__box img.cover {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 5px;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.itemGallery__details {
	padding: 30px;
	pointer-events: none;
	position: absolute;
	left: 0;
	bottom: 0;
	color: #f0f1f3;
	opacity: 0;
	-webkit-transition: 0.6s ease-in-out;
	transition: 0.6s ease-in-out;
}
.itemGallery__box:hover a:after {
	opacity: 1;
}
.itemGallery__box:hover img.cover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
.itemGallery__box:hover .itemGallery__details {
	opacity: 1;
}

@media (max-width: 992px) {
	.sticky:before {
		left: -1.25rem;
		width: 2px;
	}
}

@media (max-width: 720px) {
	.single-post-text table th {
		padding: 8px;
	}
	.single-post-text table td {
		padding: 8px;
	}
	.post-comments ul.children ul.children ul.children {
		padding: 15px 0 0 10px;
	}
}

@media (max-width: 767px) {
	.blocks-gallery-grid.alignleft,
	.blocks-gallery-grid.alignright,
	.wp-block-gallery.alignleft,
	.wp-block-gallery.alignright {
		width: 100%!important;
		max-width: 100%!important;
		margin-right: 0!important;
		float: none!important;
	}
}

@media (max-width: 767px) {
	.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
		font-size: 1.2em;
		font-style: italic;
		line-height: 1.4;
	}
	.wp-block-pullquote.is-style-solid-color blockquote {
		max-width: 100%;
	}
	.wp-block-pullquote p {
		font-size: 1.75em;
		line-height: 1.4;
	}
	.single-post-text table th {
		font-size: 1.4rem;
	}
	form.post-password-form label input {
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.post-password-form label {
		display: block;
	}
	.post-password-form input[type="submit"] {
		width: 100%;
	}
	.comment-respond {
		margin-left: 50px;
	}
	.single-post-text table th {
		font-size: 1.4rem;
		letter-spacing: 2px;
	}
	nav.wp-calendar-nav {
		margin-top: 10px;
	}
	.wp-block-categories-list li:last-child, .wp-block-archives-list li:last-child, .widget.widget_nav_menu ul li:last-child, .widget.widget_pages ul li:last-child, .widget_categories ul li:last-child {
		margin-bottom: 0;
	}
}

/*
  Fix intro
*/
.mil-small-banner .mil-image-frame {
  max-height: 580px;
}

/*
  Fix zoom
*/
.mil-image-frame a, 
.elementor .mil-image-frame a {
  height: 100%;
}
.elementor .mil-image-frame img {
  height: 100% !important;
}

/*
  Elementor widgets show and hide params
*/
.attr-featured-false .mil-blog-card .mil-cover,
.attr-title-false .mil-blog-card .mil-head4,
.attr-title-false .mil-blog-card .mil-head3,
.attr-details-false .mil-blog-card .mil-cover .mil-badges,
.attr-date-false .mil-blog-card .mil-cover .mil-badges div.mil-date,
.attr-category-false .mil-blog-card .mil-cover .mil-badges div.mil-category,
.attr-more-false .mil-blog-card .mil-stylized-btn,
.attr-featured-false .mil-portfolio-item .mil-cover-frame,
.attr-title-false .mil-portfolio-item h5,
.attr-title-false .mil-portfolio-item .mil-h5,
.attr-details-false .mil-portfolio-item .mil-labels,
.attr-date-false .mil-portfolio-item .mil-label:not(.mil-accent),
.attr-category-false .mil-portfolio-item .mil-label.mil-accent
{
  display: none !important;
}

.attr-text-false .mil-blog-card .mil-post-text p {
  font-size: 0px !important;
  line-height: 1;
}
.attr-text-false .mil-blog-card .mil-post-text p .mil-el-more {
  margin-top: 0px;
}

/*fix menu-btn fix*/
.mil-menu-btn {
  float: right;
}

/*menu dropdown fix*/
.mil-main-menu ul li.mil-has-children ul.mil-active {
  max-height: 1000px;
}

/*swiper fix*/
body .swiper-container:not(.swiper-container-initialized)>.swiper-wrapper, 
body .swiper:not(.swiper-initialized)>.swiper-wrapper {
  overflow: visible;
}

/*x-icon*/
.fab.fa-twitter.x-icon:before {
  display: none
}
.fab.fa-twitter.x-icon svg {
  width: 18px;
  display: inline-block;
  vertical-align: top
}
.mil-social-icons a:hover svg path {
  fill: #FFBD24;
}

/*dropdown arrows*/
.mil-main-menu ul li > a {
  display: inline;
}
.mil-main-menu ul li > a:before {
  top: 50%;
  margin-top: -5px;
}
.mil-has-children .arrow-dropdown {
  display: inline-block;
  margin-left: 10px;
  color: #f0f1f3;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
.mil-has-children > a.mil-active + .arrow-dropdown {
  transform: rotate(180deg);
}

/*metform errors tip*/
.mf-input-wrapper .mf-error-message {
  position: relative;
  padding-top: 5px;
  font-size: 1rem;
  font-style: italic;
}
.mf-input-wrapper .mf-error-message:before {
  content: '';
  position: relative;
  display: inline-block;
  vertical-align: middle;
  top: -1px;
  height: 1px;
  width: 8px;
  margin-right: 10px;
  background: #f00;
}

/*metform button hover*/
.metform-btn {
  box-shadow: none !important;
}
.metform-btn:hover {
  box-shadow: none !important;
}

/*met form input icons classes*/
.mil-input-name .mf-input-wrapper::after,
.mil-input-email .mf-input-wrapper::after,
.mil-input-text .mf-input-wrapper::after,
.mil-input-tel .mf-input-wrapper::after {
  position: absolute;
  top: 2.8rem;
  right: 2.8rem;
  font-family: "Line Awesome Free";
  transform: scale(1.35);
  font-weight: 900;
  content: "\f007";
  color: #1a1f23;
  font-size: 1.4rem;
}
.mil-input-email .mf-input-wrapper::after {
    content: "\f1fa";
}
.mil-input-text .mf-input-wrapper::after {
    content: "\f0e0";
}
.mil-input-tel .mf-input-wrapper::after {
    content: "\f10b";
}

/*met form input padding rewrite*/
.mil-content .mf-input-wrapper input,
.mil-content .mf-input-wrapper textarea {
    height: 7rem !important;
    padding: 0 7rem 0 3rem !important;
}
.mil-content .mf-input-wrapper textarea {
    height: 18rem !important;
    padding-top: 2.5rem !important;
}

/* met form info window button */
.mil-info-window .metform-btn {
  background: none !important;
  padding: 1rem 0 !important;
}
.mil-info-window .metform-btn svg {
  transform: rotate(45deg);
  margin: 0 0 0 2rem;
  position: relative;
  top: 2px;
}
.mil-info-window .metform-btn:hover svg {
  -webkit-transform: rotate(0) scale(1.05);
  transform: rotate(0) scale(1.05);
}

/*blog single info*/
.mil-single-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 120px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: dashed 1px rgba(15, 18, 20, 0.5);
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  list-style: none;
  color: rgba(15, 18, 20, 0.5);
}
.mil-single-info .mil-dark {
  color: #1a1f23;
  font-weight: 500;
}
.col-lg-10:first-child .mil-single-info {
  height: auto;
  padding-bottom: 5rem;
}

@media (max-width: 767px) {
  .mil-single-info {
    border-top: dashed 1px rgba(15, 18, 20, 0.5);
    flex-direction: column;
    padding: 30px 0;
    height: auto;
  }
  .mil-single-info > div {
    margin: 0 0 20px 0;
  }
  .mil-single-info > div:last-child {
    margin: 0;
  }
}

/*comments*/
.title.comment-reply-title, 
.post-comments .title {
  margin: 0 0 30px;
  font-size: 1.6rem;
  font-weight: 600;
}
.comment-respond .small, 
.comment-respond small {
  font-size: 1.4rem;
}
.form-comment .mil-input-frame textarea {
  max-width: 900px;
  height: 180px;
  color: #1a1f23;
  background-color: #f0f1f3;
}
.form-comment .mil-input-frame input {
  color: #1a1f23;
  background-color: #f0f1f3;
}
.form-comment-submit {
  margin-top: 30px;
}
.comment-form-cookies-consent label {
  display: inline;
}

/*pagination*/
.mil-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mil-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mil-pagination ul li,
.mil-pagination a,
.mil-pagination > span {
  margin-right: 15px;
  list-style-type: none;
}
.mil-pagination ul li:last-child,
.mil-pagination a:last-child,
.mil-pagination > span:last-child {
  margin-right: 0;
}
.mil-pagination ul li a,
.mil-pagination a,
.mil-pagination > span {
  color: #1a1f23;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #E7EAEC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  line-height: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-pagination.mil-pagination-soft ul li a,
.mil-pagination.mil-pagination-soft a,
.mil-pagination.mil-pagination-soft > span {
  background-color: #f0f1f3;
}
.mil-pagination ul li a i,
.mil-pagination a i {
  font-size: 1.4rem;
}
.mil-pagination ul li a:hover,
.mil-pagination a:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-filter: brightness(95%);
          filter: brightness(95%);
}
.mil-pagination.mil-pagination-soft ul li a:hover,
.mil-pagination.mil-pagination-soft a:hover {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
  background-color: #1a1f23;
  color: #FFBD24;
}
.mil-pagination ul li.mil-active a,
.mil-pagination > span,
.mil-pagination.mil-pagination-soft ul li.mil-active a,
.mil-pagination.mil-pagination-soft > span {
  background-color: #FFBD24;
}
.mil-pagination > span.dots {
  background-color: transparent;
  cursor: default;
}