@charset "UTF-8";
/* -------------------------------------------

Name: 		Courtney (dark mode)
Version:    1.0
Developer:	Nazar Miller (millerDigitalDesign)
Portfolio:  https://themeforest.net/user/millerdigitaldesign/portfolio?ref=MillerDigitalDesign

p.s. I am available for Freelance hire (UI design, web development). email: miller.themes@gmail.com

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

1. common
    - main
    - typography
    - button
    - link 
    - divider
    - section title
    - spaces
2. components
    - preloader
    - scrollbar
    - frame
    - right banner
    - content banner
    - about
    - circle text
    - skills
    - iconbox
    - blog
    - reviews
    - puplication details
    - subscribe form
    - breadcrumbs
    - pagination
    - story timeline
    - categories
    - portfolio item
    - carousel navigation
    - contact form
    - prices
    - accordion
    - footer
    - page transitions

--------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Fraunces:ital,wght@0,600;1,400&display=swap');
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css);
/* -------------------------------------------

main

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

html,
body {
  padding: 0;
  margin: 0;
  /* font-family: 'Fraunces', Georgia, serif; */
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(32, 33, 36, 0.5);
  line-height: 170%;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  background-color: rgb(253, 253, 253);
}
@media screen and (max-width: 768px) {
  html,
body {
    font-size: 14px;
  }
}

.mil-wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}

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

typography

------------------------------------------- */
h1,
.mil-h1,
h2,
.mil-h12,
h3,
.mil-h3,
h4,
.mil-h4,
h5,
.mil-h5,
h6,
.mil-h6 {
  font-family: 'Lato', sans-serif;
  color: rgb(32, 33, 36);
  font-weight: 600;
  line-height: 120%;
}

h1,
.mil-h1 {
  font-size: 92px;
  line-height: 100%;
}
h1.mil-h1-sm,
.mil-h1.mil-h1-sm {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  h1.mil-h1-sm,
.mil-h1.mil-h1-sm {
    font-size: 38px;
  }
}
h1.mil-h1-md,
.mil-h1.mil-h1-md {
  font-size: 70px;
}
@media screen and (max-width: 768px) {
  h1.mil-h1-md,
.mil-h1.mil-h1-md {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  h1,
.mil-h1 {
    font-size: 60px;
  }
}

h2,
.mil-h2 {
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  h2,
.mil-h2 {
    font-size: 26px;
  }
}

h3,
.mil-h3 {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  h3,
.mil-h3 {
    font-size: 22px;
  }
}

h4,
.mil-h4 {
  font-size: 18px;
}

h5,
.mil-h5 {
  font-size: 16px;
}

h6,
.mil-h6 {
  font-size: 14px;
}

.mil-404 {
  font-size: 182px;
}
@media screen and (max-width: 768px) {
  .mil-404 {
    font-size: 122px;
  }
}

blockquote {
  padding: 60px;
  background-color: rgba(32, 33, 36, 0.05);
  font-size: 17px;
  color: rgb(32, 33, 36);
  font-style: italic;
  border-left: solid 4px rgb(244, 67, 54);
}
@media screen and (max-width: 768px) {
  blockquote {
    padding: 30px;
    font-size: 15px;
  }
}

.mil-text-sm {
  font-size: 14px;
}

.mil-text-lg {
  font-size: 17px;
  line-height: 200%;
}

.mil-text-xl {
  font-size: 19px;
  line-height: 200%;
}

.mil-shortened {
  width: 80%;
}

.mil-bold {
  font-weight: 600;
}

.mil-thin {
  font-weight: 500;
}

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

.mil-accent {
  color: rgb(244, 67, 54);
}

.mil-light {
  color: rgb(255, 255, 255) !important;
}
.mil-light a {
  color: rgb(255, 255, 255) !important;
}

.mil-dark {
  color: rgb(32, 33, 36);
}

.mil-light-soft {
  color: rgba(255, 255, 255, 0.5);
}
.mil-light-soft a {
  color: #2563eb !important;
}

.mil-dark-soft {
  color: rgba(32, 33, 36, 0.5);
}

.mil-marker {
  background-color: rgb(244, 67, 54);
  padding: 0 5px;
}

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

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

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

.mil-upper {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

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

button

------------------------------------------- */
.mil-btn {
  white-space: nowrap;
  background-color: rgb(244, 67, 54);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
  padding: 0 60px;
  text-transform: uppercase;
  font-size: 12px;
  border: none;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgb(255, 255, 255);
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-btn.mil-sm-btn {
  height: 70px;
  padding: 0 50px;
}
.mil-btn:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

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

link

------------------------------------------- */
.mil-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(32, 33, 36) !important;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}
.mil-link svg {
  border-radius: 50%;
  margin-left: 15px;
  width: 40px;
  height: 40px;
  background-color: rgb(244, 67, 54);
  padding: 11px;
  color: rgb(255, 255, 255);
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-link:hover svg {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.mil-link.mil-icon-link svg {
  margin: 0;
}
.mil-link.mil-icon-link:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.mil-link.mil-icon-link.mil-sm-link svg {
  padding: 5px;
  width: 25px;
  height: 25px;
}
.mil-link.mil-dark-icon svg {
  background-color: rgb(32, 33, 36);
}

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

divider

------------------------------------------- */
.mil-divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: rgb(233, 233, 233);
}
.mil-divider:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: rgb(244, 67, 54);
  border-radius: 50%;
}
.mil-divider:after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  background-color: rgb(244, 67, 54);
  border-radius: 50%;
}

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

section title

------------------------------------------- */
.mil-section-title {
  position: relative;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mil-section-title h3 {
  white-space: nowrap;
  display: block;
  padding: 0 30px;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  position: absolute;
  top: 1px;
  background-color: rgb(253, 253, 253);
}
.mil-section-title.mil-left h3 {
  white-space: nowrap;
  text-align: left;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  margin-left: 0;
  padding: 0;
  padding-right: 30px;
}

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

spaces

------------------------------------------- */
.mil-mb-5 {
  margin-bottom: 5px !important;
}

.mil-mb-15 {
  margin-bottom: 15px !important;
}

.mil-mb-30 {
  margin-bottom: 30px !important;
}

.mil-mb-60 {
  margin-bottom: 60px !important;
}

.mil-mb-90 {
  margin-bottom: 90px !important;
}

.mil-p-90-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.mil-p-0-90 {
  padding-bottom: 90px;
}

.mil-p-90-0 {
  padding-top: 90px;
}

.mil-p-90-60 {
  padding-top: 90px;
  padding-bottom: 60px;
}

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

.mil-p-90-30 {
  padding-top: 90px;
  padding-bottom: 30px;
}

.mil-p-0-30 {
  padding-bottom: 30px;
}

.mil-adaptive-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .mil-adaptive-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

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

preloader

------------------------------------------- */
.mil-preloader-frame {
  position: fixed;
  z-index: 999999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgb(32, 33, 36);
  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;
  color: rgba(255, 255, 255, 0.9);
}

.mil-preloader img {
  width: 790%;
  height: 320%;
  position: relative;
  right: 10px;
  text-align: center ;
}

.mil-preloader-frame .mil-preloader-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -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;
}
/* .mil-preloader-frame .mil-preloader-content:before {
  content: "";
  width: 1px;
  height: 50vh;
  background-color: rgb(54, 55, 58);
  position: absolute;
  bottom: calc(100% + 60px);
  left: calc(50% - 4px);
} */
.mil-preloader-frame .mil-preloader-content .mil-preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60px;
  height: 30px;
}
.mil-preloader-frame .mil-preloader-content .mil-preloader div {
  background-color: #3b6cf8;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: stretchdelay 1.1s infinite ease-in-out;
          animation: stretchdelay 1.1s infinite ease-in-out;
}
.mil-preloader-frame .mil-preloader-content .mil-preloader div.mil-circ-2 {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}
.mil-preloader-frame .mil-preloader-content .mil-preloader div.mil-circ-3 {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}
.mil-preloader-frame .mil-preloader-content .mil-preloader div.mil-circ-4 {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.mil-preloader-frame .mil-preloader-content .mil-preloader div.mil-circ-5 {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  20% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  20% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* -------------------------------------------

scrollbar

------------------------------------------- */
.mil-progress-track {
  position: absolute;
  z-index: 99;
  width: 4px;
  height: calc(100vh - 90px);
}
.mil-progress-track .mil-progress {
  width: 100%;
  height: 0;
  background-color: rgb(244, 67, 54);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media screen and (max-width: 992px) {
  .mil-progress-track {
    display: none;
  }
}

::-webkit-scrollbar {
  display: none;
}

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

frame

------------------------------------------- */
.mil-frame {
  position: fixed;
  z-index: 999;
  width: 100%;
  pointer-events: none;
}

.mil-top-panel {
  height: 90px;
  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: #fff;
  /* border-bottom: solid 1px rgb(54, 55, 58); */
  pointer-events: all;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
}
.mil-top-panel .mil-logo {
  background-color: #fff;
  width: 225px;
  height: 90px;
  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;
  color: rgb(255, 255, 255);
  font-size: 40px;
  font-weight: 600;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  position: relative;
  left: 89px;
}
.mil-top-panel .mil-logo span {
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  display: block;
  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;
}
.mil-top-panel .mil-logo span.mil-dot:after {
  content: "";
  position: absolute;
  left: 12px;
  -webkit-transform: translateY(0.5px);
          transform: translateY(0.5px);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
}
.mil-top-panel .mil-logo:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
.mil-top-panel .mil-logo:hover span {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.mil-top-panel .mil-top-panel-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mil-top-panel .mil-top-panel-btns .mil-contact-btn {
  background-color: rgb(244, 67, 54);
  width: 90px;
  height: 90px;
  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-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-top-panel .mil-top-panel-btns .mil-contact-btn svg {
  width: 25px;
  -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-top-panel-btns .mil-contact-btn svg path, .mil-top-panel .mil-top-panel-btns .mil-contact-btn svg polyline {
  stroke: rgb(255, 255, 255);
}
.mil-top-panel .mil-top-panel-btns .mil-contact-btn:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
.mil-top-panel .mil-top-panel-btns .mil-contact-btn:hover svg {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
@media screen and (max-width: 1200px) {
  .mil-top-panel .mil-top-panel-btns {
    padding-right: 30px;
  }
  .mil-top-panel .mil-top-panel-btns .mil-contact-btn {
    background-color: transparent;
    width: auto;
    margin-right: 20px;
  }
  .mil-top-panel .mil-top-panel-btns .mil-contact-btn svg path, .mil-top-panel .mil-top-panel-btns .mil-contact-btn svg polyline {
    stroke: rgba(255, 255, 255, 0.9);
  }
}

.mil-left-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 90px 0;
  width: 90px;
  height: calc(100vh - 90px);
  background-color: rgb(32, 33, 36);
  border-right: solid 1px rgb(54, 55, 58);
  pointer-events: all;
}
@media screen and (max-width: 1200px) {
  .mil-left-panel {
    display: none;
  }
}
.mil-left-panel .mil-page-name {
  width: 300px;
  -webkit-transform: rotate(-90deg) translateX(-140px);
          transform: rotate(-90deg) translateX(-140px);
  text-align: right;
  color: rgba(255, 255, 255, 0.9);
}
.mil-left-panel .mil-social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mil-left-panel .mil-social-icons li {
  list-style-type: none;
  margin-bottom: 10px;
}
.mil-left-panel .mil-social-icons li:last-child {
  margin-bottom: 0;
}
.mil-left-panel .mil-social-icons li a {
  font-size: 16åpx;
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-left-panel .mil-social-icons li a:hover {
  color: rgb(244, 67, 54);
}

.mil-back-to-top {
  background-color: rgb(32, 33, 36);
  position: fixed;
  bottom: 110px;
  right: -110px;
  padding: 0 70px 0 90px;
  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;
  pointer-events: all;
  height: 90px;
  width: auto;
  opacity: 0;
  -webkit-transform: translateX(90px) rotate(-90deg);
          transform: translateX(90px) rotate(-90deg);
  border: solid 1px rgb(54, 55, 58);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-back-to-top .mil-link {
  color: rgba(255, 255, 255, 0.9) !important;
}
.mil-back-to-top .mil-link.mil-btt-icon svg {
  background-color: rgb(244, 67, 54) !important;
}
@media screen and (max-width: 1200px) {
  .mil-back-to-top {
    display: none;
  }
}

.mil-navigation {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  left: 120px;
}
.mil-navigation nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mil-navigation nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
}
.mil-navigation nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
  list-style-type: none;
}
.mil-navigation nav ul li:last-child {
  margin-right: 0;
}
.mil-navigation nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  /* color: rgba(255, 255, 255, 0.9); */
  color: #333;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  white-space: nowrap;
  padding: 0 10px;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-navigation nav ul li.mil-active > a {
  position: relative;
}
/* .mil-navigation nav ul li.mil-active > a:before {
  content: "";
  margin-right: 10px;
  position: absolute;
  left: -5px;
  display: block;
  width: 7px;
  height: 7px;
  background-color: rgb(244, 67, 54);
  border-radius: 50%;
} */
 
.mil-navigation nav ul li > a {
  position: relative;
  padding-bottom: 6px; 
}

.mil-navigation nav ul li.mil-active > a {
  border-bottom: 2px solid #3b6cf8;
}


.mil-navigation nav ul li.mil-has-children {
  position: relative;
  padding-right: 10px;
}
.mil-navigation nav ul li.mil-has-children:after {
  content: "";
  width: 100%;
  height: 40px;
  background-color: transparent;
  position: absolute;
  bottom: -40px;
  left: 0;
}
/* Hidden state */
.mil-navigation nav ul li.mil-has-children ul {
  opacity: 0;
  position: absolute;
  left: 10px;
  top: 30px;
  transform: translateY(10px) scale(0.98);
  pointer-events: none; /* disabled when hidden */
  display: block;
  min-width: 200px;
  padding: 30px;
  background-color: #7cc4da;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

/* Visible state */
.mil-navigation nav ul li.mil-has-children:hover ul {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto; /* ✅ ENABLE clicks */
}
.mil-navigation nav ul li.mil-has-children ul li {
  position: relative;
  margin-bottom: 15px;
}
.mil-navigation nav ul li.mil-has-children ul li:last-child {
  margin-bottom: 0;
}
.mil-navigation nav ul li.mil-has-children ul li a {
  color: rgb(255, 255, 255);
}
.mil-navigation nav ul li.mil-has-children:hover ul {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
@media screen and (max-width: 1200px) {
  .mil-navigation {
    position: absolute;
    top: 90px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-box-shadow: 0px 0px 40px 0px rgba(18, 24, 32, 0.1);
            box-shadow: 0px 0px 40px 0px rgba(18, 24, 32, 0.1);
    width: 100%;
    background-color: rgb(32, 33, 36);
    -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  }
  .mil-navigation.mil-active {
    height: auto;
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateY(0);
            transform: translateY(0);
            top: 138px;
  }
  .mil-navigation nav {
    padding: 30px 0;
  }
  .mil-navigation nav ul {
    width: 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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mil-navigation nav ul li {
    text-align: center;
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mil-navigation nav ul li:last-child {
    margin-bottom: 0;
  }
  .mil-navigation nav ul li a {
    /* color: rgb(255, 255, 255); */
    position: relative;
    padding: 0 15px;
  }
  .mil-navigation nav ul li a:hover {
    color: rgb(255, 255, 255);
  }
  .mil-navigation nav ul li.mil-active > a {
    /* color: rgb(244, 67, 54); */
  }
  .mil-navigation nav ul li.mil-active > a:before {
    display: none;
  }
  .mil-navigation nav ul li.mil-has-children {
    overflow: hidden;
    height: auto;
    padding-right: 0;
  }
  .mil-navigation nav ul li.mil-has-children:before {
    display: none;
  }
  .mil-navigation nav ul li.mil-has-children ul {
    position: static;
    margin-left: -1px;
    opacity: 1;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    -webkit-transform: none;
            transform: none;
    border-radius: 0 !important;
    /* background-color: rgb(244, 67, 54); */
    -webkit-box-shadow: inset 0 0 0 1px rgba(32, 33, 36, 0.1);
            box-shadow: inset 0 0 0 1px rgba(32, 33, 36, 0.1);
  }
  .mil-navigation nav ul li.mil-has-children ul li a {
    color: rgb(255, 255, 255);
  }
  .mil-navigation nav ul li.mil-has-children ul li a:hover {
    -webkit-transform: none;
            transform: none;
  }
  .mil-navigation nav ul li.mil-has-children ul li:first-child {
    margin-top: 30px;
  }
  .mil-navigation nav ul li.mil-has-children ul li:last-child {
    margin-bottom: 30px;
  }
  .mil-navigation nav ul li.mil-has-children:hover ul {
    margin-top: 15px;
    max-height: 350px;
  }
}

.mil-menu-btn {
  height: 24px;
  cursor: pointer;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.mil-navigation {
  display: flex; /* default for desktop */
}

@media screen and (max-width: 1200px) {
  .mil-navigation {
    display: none; /* hide on mobile by default */
    flex-direction: column;
    position: absolute;
    top: 70px; /* adjust according to your top panel */
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
  }

  .mil-navigation.mil-active {
    display: flex; /* show when button clicked */
  }
}
@media screen and (max-width: 1200px) {
  .mil-menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mil-menu-btn span, .mil-menu-btn span:after, .mil-menu-btn span:before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  /* background: rgba(255, 255, 255, 0.9); */
  -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: -8px;
}
.mil-menu-btn span:after {
  top: 8px;
}
.mil-menu-btn.mil-active span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mil-menu-btn.mil-active span:before {
  -webkit-transform: translate(0px, 8px) rotate(-90deg);
          transform: translate(0px, 8px) rotate(-90deg);
}
.mil-menu-btn.mil-active span:after {
  width: 24px;
  -webkit-transform: translate(0px, -8px) rotate(-90deg);
          transform: translate(0px, -8px) rotate(-90deg);
}

.mil-content {
  padding-top: 90px;
  /* margin-left: 90px;
  width: calc(100% - 90px); */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mil-content .mil-scroll-wrapper {
  position: relative;
  width: 100%;
}
.mil-content .mil-scroll-wrapper .mil-container {
  overflow: hidden;
  /* padding-right: 90px;
  padding-left: 90px; */
  /* width: calc(63% + 1px); */
}
.mil-content .mil-scroll-wrapper .mil-container-fw {
  overflow: hidden;
  padding-left: 15%;
  padding-right: calc(15% + 90px);
  width: 100%;
}
.mil-content .mil-scroll-wrapper .mil-container-100 {
  overflow: hidden;
  /* padding-left: 90px;
  padding-right: 90px; */
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .mil-content {
    margin-left: 0;
    width: 100%;
  }
  .mil-content .mil-scroll-wrapper .mil-container {
    padding-right: 30px;
    padding-left: 30px;
  }
  .mil-content .mil-scroll-wrapper .mil-container-fw {
    overflow: hidden;
    padding-right: 30px;
    padding-left: 30px;
  }
  .mil-content .mil-scroll-wrapper .mil-container-100 {
    overflow: hidden;
    padding-right: 0px;
    padding-left: 0px;
  }
}
@media screen and (max-width: 992px) {
  .mil-content .mil-scroll-wrapper .mil-container {
    width: 100%;
  }
}

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

right banner

------------------------------------------- */
.mil-right-banner {
  position: fixed;
  overflow: hidden;
  right: 0;
  width: 35%;
  height: calc(100vh - 90px);
  background-color: rgb(233, 233, 233);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  display: none;
}
@media screen and (max-width: 992px) {
  .mil-right-banner {
    display: none;
  }
}
.mil-right-banner img {
  position: absolute;
  -o-object-position: top;
     object-position: top;
}
.mil-right-banner .mil-banner-wrapper {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-right-banner .mil-banner-wrapper .mil-banner-frame {
  width: 100%;
  height: 100%;
}
.mil-right-banner .mil-banner-wrapper .mil-banner-frame .mil-banner-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-right-banner .mil-banner-wrapper .mil-banner-frame .mil-banner-bg.mil-blur {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.mil-right-banner .mil-banner-wrapper .mil-banner-frame .mil-banner-person {
  top: 0;
  left: 0;
  width: 106%;
  height: 106%;
  margin-left: -3%;
  margin-top: -3%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mil-flying-skills {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-flying-skills .mil-skills-frame {
  width: 100%;
  height: 100%;
}
.mil-flying-skills .mil-skills-frame .mil-item {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  position: absolute;
}
.mil-flying-skills .mil-skills-frame .mil-item img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .mil-flying-skills .mil-skills-frame .mil-item {
    width: 80px;
    height: 80px;
  }
}
.mil-flying-skills .mil-skills-frame .mil-el {
  position: absolute;
  color: rgb(255, 255, 255);
  font-size: 48px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mil-flying-skills .mil-skills-frame .mil-el.mil-addition-el-1 {
  bottom: 40%;
  left: 20%;
}
.mil-flying-skills .mil-skills-frame .mil-el.mil-addition-el-2 {
  bottom: 25%;
  right: 20%;
  font-size: 38px;
}
.mil-flying-skills .mil-skills-frame .mil-el.mil-addition-el-3 {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: solid 5px rgb(255, 255, 255);
  top: 12%;
  left: 25%;
}
.mil-flying-skills .mil-skills-frame .mil-el.mil-addition-el-4 {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 3px rgb(255, 255, 255);
  top: 30%;
  right: 25%;
}

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

content banner

------------------------------------------- */
.mil-side-banner {
  height: calc(100vh - 90px);
  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;
}
.mil-side-banner .mil-banner-top {
  position: relative;
  height: 130px;
  width: 1px;
  background-color: rgb(233, 233, 233);
}
.mil-side-banner .mil-banner-top:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  background-color: rgb(244, 67, 54);
  border-radius: 50%;
}
@media screen and (max-width: 992px) {
  .mil-side-banner {
    width: 100%;
  }
  .mil-side-banner .mil-banner-top {
    height: 90px;
  }
}
@media screen and (max-height: 750px) {
  .mil-side-banner {
    height: auto;
  }
  .mil-side-banner .mil-banner-title {
    padding: 30px 0;
  }
}

.mil-banner-sm {
  height: auto;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mil-banner-sm .mil-banner-top {
  position: relative;
  height: 90px;
  width: 1px;
  background-color: rgb(233, 233, 233);
}
.mil-banner-sm .mil-banner-top:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  background-color: rgb(244, 67, 54);
  border-radius: 50%;
}
.mil-banner-sm .mil-banner-title {
  padding: 60px 0 90px;
}
.mil-banner-sm.mil-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

about

------------------------------------------- */
.mil-oval-frame {
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(32, 33, 36, 0.1);
  width: 170px;
  height: 230px;
  border-top-right-radius: 200px;
  border-top-left-radius: 200px;
}
@media screen and (max-height: 750px) {
  .mil-oval-frame {
    display: none;
  }
}

.mil-oval-frame-2 {
  margin: 0 auto;
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(32, 33, 36, 0.1);
  width: 170px;
  height: 170px;
  border-bottom-right-radius: 200px;
  border-bottom-left-radius: 200px;
}
@media screen and (max-height: 750px) {
  .mil-oval-frame-2 {
    border-radius: 50%;
  }
}
.mil-oval-frame-2 img {
  margin-top: auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.mil-quote {
  font-size: 12px;
  background-color: rgb(244, 67, 54);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(255, 255, 255);
}

.mil-sign {
  width: 140px;
}

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

circle text

------------------------------------------- */
.mil-circle-text {
  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: 130px;
  height: 130px;
}
.mil-circle-text .mil-ct-svg {
  -webkit-transform: scale(2);
          transform: scale(2);
  width: 140px;
  height: 140px;
}
.mil-circle-text .mil-ct-svg text {
  fill: rgb(32, 33, 36);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-circle-text .mil-button {
  position: absolute;
  border: solid 15px rgb(255, 255, 255);
}
.mil-circle-text .mil-button {
  background-color: rgb(32, 33, 36);
  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;
  height: 80px;
  width: 80px;
  border-radius: 90px;
}
.mil-circle-text .mil-button svg line, .mil-circle-text .mil-button svg polyline {
  stroke: rgb(255, 255, 255);
}
.mil-circle-text .mil-button.mil-button-left svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

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

skills

------------------------------------------- */
.mil-circular-progress {
  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;
  position: relative;
  margin: 0 auto;
  margin-bottom: 30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  --p: 0;
  background: conic-gradient(rgb(244, 67, 54) var(--p, 0), 0, rgb(233, 233, 233));
}
.mil-circular-progress:after {
  content: "";
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background-color: rgb(253, 253, 253);
  position: absolute;
}
.mil-circular-progress .mil-counter-frame {
  position: absolute;
  z-index: 999;
}

.mil-line-progress {
  background-color: rgb(233, 233, 233);
  height: 4px;
  width: 100%;
}
.mil-line-progress .mil-bar {
  position: relative;
  height: 100%;
  background-color: rgb(244, 67, 54);
}
.mil-line-progress .mil-bar:before {
  opacity: 0;
  content: attr(data-value);
  position: absolute;
  top: -52px;
  right: 15px;
  color: rgb(32, 33, 36);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-line-progress .mil-bar.mil-active:before {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  opacity: 1;
  right: 0;
}

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

iconbox

------------------------------------------- */
.mil-icon-box {
  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-icon-box .mil-service-icon {
  padding: 20px;
  height: 80px;
  width: 80px;
  background-color: rgb(244, 244, 244);
  border-radius: 50%;
  margin-bottom: 30px;
}
.mil-icon-box .mil-service-icon img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-icon-box:hover .mil-service-icon img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

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

blog

------------------------------------------- */
.mil-blog-card {
  display: block;
  height: 315px;
}
.mil-blog-card .mil-cover {
  position: relative;
  overflow: hidden;
  padding-bottom: 60%;
}
.mil-blog-card .mil-cover img {
  width: 100%;
  height: 100%;
  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);
  padding: 20px;
}
.mil-blog-card .mil-cover .mil-link {
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -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-descr {
  padding-top: 30px;
  /* padding-right: 30px; */
}
.mil-blog-card .mil-descr h4, .mil-blog-card .mil-descr p {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mil-blog-card:hover .mil-cover {
  position: relative;
  padding-bottom: 60%;
}
.mil-blog-card:hover .mil-cover img {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.mil-blog-card:hover .mil-cover .mil-link {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

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

reviews

------------------------------------------- */
.mil-review .mil-review-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.mil-review .mil-review-top .mil-avatar {
  margin-right: 30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.mil-review.mil-center .mil-review-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mil-review.mil-center .mil-review-top .mil-avatar {
  margin-right: 0;
  margin-bottom: 30px;
}

.mil-reviews-slider-frame {
  position: relative;
}

.swiper-reviews-pagination {
  text-align: center;
}
.swiper-reviews-pagination .swiper-pagination-bullet {
  background-color: rgb(233, 233, 233);
  opacity: 1;
  margin: 0 7px !important;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.swiper-reviews-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(244, 67, 54);
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.mil-slider-nav {
  width: 100%;
  position: absolute;
  z-index: 9;
  top: 105px;
  left: 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-slider-nav .mil-reviews-prev, .mil-slider-nav .mil-reviews-next {
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: rgb(244, 67, 54);
  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-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-slider-nav .mil-reviews-prev svg, .mil-slider-nav .mil-reviews-next svg {
  color: rgb(255, 255, 255);
}
.mil-slider-nav .mil-reviews-prev.swiper-button-disabled, .mil-slider-nav .mil-reviews-next.swiper-button-disabled {
  background-color: rgb(233, 233, 233);
}
.mil-slider-nav .mil-reviews-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

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

puplication details

------------------------------------------- */
.mil-puplication-details {
  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;
}
.mil-puplication-details li {
  display: -webkit-box;
  display: -ms-flexbox;
  /* display: flex; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  list-style-type: none;
  margin-right: 17px;
}
.mil-puplication-details li:after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: rgb(244, 67, 54);
  border-radius: 50%;
  margin-left: 15px;
}
.mil-puplication-details li:last-child {
  margin-left: 0;
}
.mil-puplication-details li:last-child:after {
  display: none;
}
.mil-puplication-details .mil-puplication-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mil-puplication-details .mil-puplication-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .mil-puplication-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mil-puplication-details li {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .mil-puplication-details li:after {
    display: none;
  }
  .mil-puplication-details li:last-child {
    margin-bottom: 0;
  }
  .mil-puplication-details .mil-puplication-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mil-puplication-details .mil-puplication-author img {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .mil-banner-sm .mil-banner-title {
      padding: 25px 0 25px;
  }

  .mil-banner-title h1 {
      margin-bottom: 30px !important;
  }

  .about-para {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .team-img{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mil-lang-skills {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .mil-content {
    padding-top: 25px;
  }

  .mil-section-title {
    margin-bottom: 35px !important;
  }

  .mil-top-panel .mil-logo {
    left: 0px;
    margin-left: 16px;
  }
}

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

subscribe form

------------------------------------------- */
.mil-subscribe-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: 500px;
}
.mil-subscribe-form input {
  border: solid 1px rgb(233, 233, 233);
  padding: 0 30px;
  height: 70px;
  width: 100%;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}
.mil-subscribe-form input::-webkit-input-placeholder {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0.6;
}
.mil-subscribe-form input::-moz-placeholder {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0.6;
}
.mil-subscribe-form input:-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0.6;
}
.mil-subscribe-form input::-ms-input-placeholder {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0.6;
}
.mil-subscribe-form input::placeholder {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0.6;
}
.mil-subscribe-form input:focus {
  outline: inherit;
}
.mil-subscribe-form button {
  font-family: 'Lato', sans-serif;
  border: none;
  background-color: rgb(244, 67, 54);
  height: 70px;
  padding: 0 30px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  .mil-subscribe-form {
    width: 100%;
  }
}

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

breadcrumbs

------------------------------------------- */
.mil-breadcrumbs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.mil-breadcrumbs li {
  list-style-type: none;
}
.mil-breadcrumbs li:after {
  content: "/";
  margin: 0 15px;
  color: rgb(32, 33, 36);
}
.mil-breadcrumbs li a {
  color: rgb(32, 33, 36);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-breadcrumbs li a:hover {
  color: rgb(244, 67, 54);
}
.mil-breadcrumbs li:last-child {
  margin-right: 0;
  cursor: not-allowed;
}
.mil-breadcrumbs li:last-child a {
  opacity: 0.4;
  pointer-events: none;
}
.mil-breadcrumbs li:last-child:after {
  display: none;
}
.mil-breadcrumbs.mil-light:before {
  background-color: rgba(255, 255, 255, 0.1);
}
.mil-breadcrumbs.mil-light li:after {
  color: rgba(255, 255, 255, 0.9);
}
.mil-breadcrumbs.mil-light li a:hover {
  color: rgb(244, 67, 54) !important;
}
.mil-breadcrumbs.mil-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

pagination

------------------------------------------- */
.mil-pagination {
  margin-top: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mil-pagination .mil-divider {
  position: absolute;
  top: 50%;
}
.mil-pagination .mil-pagination-buttons {
  padding: 0 30px;
  background-color: rgb(253, 253, 253);
  z-index: 2;
}
.mil-pagination .mil-pagination-buttons .mil-pagination-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50%;
  background-color: rgb(233, 233, 233);
  color: rgb(32, 33, 36);
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  margin-right: 10px;
}
.mil-pagination .mil-pagination-buttons .mil-pagination-btn:last-child {
  margin-right: 0;
}
.mil-pagination .mil-pagination-buttons .mil-pagination-btn.mil-active {
  background-color: rgb(244, 67, 54);
  color: rgb(255, 255, 255);
}

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

story timeline

------------------------------------------- */
.mil-timeline {
  position: relative;
  padding: 0;
  margin: 0;
  margin-left: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-left: solid 1px rgb(233, 233, 233);
}
.mil-timeline ul li {
  position: relative;
  padding-left: 35px;
  list-style-type: none;
  margin-bottom: 60px;
}
.mil-timeline ul li:last-child {
  margin-bottom: 0;
}
.mil-timeline ul li:before {
  content: "";
  position: absolute;
  left: -4px;
  top: 7px;
  width: 7px;
  height: 7px;
  background-color: rgba(32, 33, 36, 0.05);
  border-radius: 50%;
  -webkit-animation: pulse 1s infinite ease-in-out;
          animation: pulse 1s infinite ease-in-out;
}
.mil-timeline ul li:after {
  content: "";
  position: absolute;
  top: 7px;
  left: -4px;
  width: 7px;
  height: 7px;
  background-color: rgb(244, 67, 54);
  border-radius: 50%;
}
.mil-timeline ul li .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-timeline ul li .mil-item-head .mil-text-sm {
  background-color: rgba(32, 33, 36, 0.1);
  padding: 0 15px;
  border-radius: 15px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(3.5);
            transform: scale(3.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* -------------------------------------------

categories

------------------------------------------- */
.mil-categories {
  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;
}
.mil-categories li {
  list-style-type: none;
  margin-right: 30px;
  height: 40px;
}
.mil-categories li:last-child {
  margin-right: 0;
}
.mil-categories li a {
  line-height: 40px;
  display: block;
  height: 100%;
  color: rgb(32, 33, 36);
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-categories li a:hover {
  color: rgb(244, 67, 54);
}
.mil-categories li.mil-active {
  cursor: not-allowed;
}
.mil-categories li.mil-active a {
  padding: 0 20px;
  border-radius: 40px;
  background-color: rgb(244, 67, 54);
  color: rgb(255, 255, 255);
  pointer-events: none;
}
.mil-categories li.mil-active a:hover {
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  .mil-categories {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mil-categories li {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

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

portfolio item

------------------------------------------- */
.mil-portfolio-item {
  display: block;
}
.mil-portfolio-item .mil-cover-frame {
  position: relative;
  overflow: hidden;
  padding-bottom: 65%;
  z-index: 2;
}
.mil-portfolio-item .mil-cover-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-portfolio-item .mil-cover-frame.mil-vert {
  padding-bottom: 120%;
}
.mil-portfolio-item .mil-description {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 1;
}
.mil-portfolio-item .mil-description .mil-btn {
  margin-left: 30px;
}
.mil-portfolio-item:hover .mil-cover-frame img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.mil-portfolio-item.mil-item-2 .mil-cover-frame {
  margin-bottom: 0;
}
.mil-portfolio-item.mil-item-2 .mil-description {
  padding-top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgb(32, 33, 36);
  border: solid 1px rgb(54, 55, 58);
  border-right: none;
  height: 90px;
  padding-left: 40px;
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}
.mil-portfolio-item.mil-item-2 .mil-description h4, .mil-portfolio-item.mil-item-2 .mil-description h3 {
  color: rgba(255, 255, 255, 0.9);
}
.mil-portfolio-item.mil-item-2 .mil-description .mil-btn:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media screen and (max-width: 992px) {
  .mil-portfolio-item.mil-item-2 .mil-description {
    padding: 0;
    height: 90px;
    -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: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none;
  }
  .mil-portfolio-item.mil-item-2 .mil-description .mil-btn {
    display: none;
  }
}
.mil-portfolio-item.mil-carousel-item .mil-cover-frame {
  padding-bottom: 0;
  height: 100vh;
  
}
@media screen and (max-width: 992px) {
  .mil-portfolio-item.mil-carousel-item .mil-cover-frame {
    /* height: 100px; */
    padding-bottom: 90%;
  }

  .mil-content .mil-scroll-wrapper .mil-container-100 {
    padding-left: 0px;
    padding-right: 0px;
  }

}
.mil-portfolio-item.mil-carousel-item .mil-cover-frame img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.mil-portfolio-item.mil-carousel-item .mil-description {
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}
@media screen and (max-width: 992px) {
  .mil-portfolio-item.mil-carousel-item .mil-description {
    height: auto;
    padding-top: 30px;
    -webkit-transition-delay: none;
            transition-delay: none;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .mil-portfolio-item.mil-carousel-item .mil-description h4, .mil-portfolio-item.mil-carousel-item .mil-description h3 {
    margin-bottom: 30px;
  }
  .mil-portfolio-item.mil-carousel-item .mil-description .mil-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-left: 0;
  }
}

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

carousel navigation

------------------------------------------- */
.mil-carousel-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 90px;
  margin-top: auto;
  position: absolute;
  z-index: 9;
  bottom: 70px;
  margin-left: 82%;
  background-color: transparent;
}
@media screen and (max-width: 1200px) {
  .mil-carousel-nav {
    margin-left: 0;
  }
}
@media screen and (max-width: 992px) {
  .mil-carousel-nav {
    position: static;
    margin-top: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mil-carousel-nav:after {
  content: "";
  width: 800px;
  height: 90px;
  position: absolute;
  right: -800px;
  background-color: rgb(253, 253, 253);
  display: none;
}
.mil-carousel-nav .mil-carousel-nav-arrow {
  height: 90px;
  width: 90px;
  background-color: rgb(244, 67, 54);
  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-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-carousel-nav .mil-carousel-nav-arrow svg {
  color: rgb(255, 255, 255);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-carousel-nav .mil-carousel-nav-arrow.mil-portfolio-prev {
  background-color: rgb(32, 33, 36);
}
.mil-carousel-nav .mil-carousel-nav-arrow.mil-portfolio-prev svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.mil-carousel-nav .mil-carousel-nav-arrow.mil-portfolio-prev:hover svg {
  -webkit-transform: scale(1.2) rotate(-180deg);
          transform: scale(1.2) rotate(-180deg);
}
.mil-carousel-nav .mil-carousel-nav-arrow:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
.mil-carousel-nav .mil-carousel-nav-arrow:hover svg {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.mil-carousel-nav .mil-portfolio-pagination {
  width: 90px;
  height: 90px;
  background-color: rgb(253, 253, 253);
  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;
}
@media screen and (max-width: 1200px) {
  .mil-carousel-nav .mil-portfolio-pagination {
    display: none;
  }
}

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

contact form

------------------------------------------- */
input,
textarea {
  background-color: rgb(253, 253, 253);
  position: relative;
  height: 70px;
  padding: 0 30px;
  width: 100%;
  font-size: 12px;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  font-weight: 500;
  font-family: 'Lato', sans-serif;
  color: rgb(32, 33, 36);
  border: none;
  border-bottom: solid 1px rgba(32, 33, 36, 0.1);
  margin-bottom: 30px;
}
input:focus,
textarea:focus {
  outline: inherit;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(32, 33, 36, 0.5);
}
input::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(32, 33, 36, 0.5);
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(32, 33, 36, 0.5);
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(32, 33, 36, 0.5);
}
input::placeholder,
textarea::placeholder {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(32, 33, 36, 0.5);
}

textarea {
  padding: 15px 30px;
  height: 245px;
}

.mil-map {
  position: relative;
  overflow: hidden;
  padding-bottom: 45%;
}
.mil-map iframe {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
}
@media screen and (max-width: 768px) {
  .mil-map {
    padding-bottom: 100%;
  }
}

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

prices

------------------------------------------- */
.mil-price-card {
  text-align: center;
  padding: 60px;
  background-color: rgb(255, 255, 255);
  border: solid 1px rgb(233, 233, 233);
}
@media screen and (max-width: 768px) {
  .mil-price-card {
    padding: 30px;
  }
}
.mil-price-card .mil-price-number {
  font-family: 'Lato', sans-serif;
  font-size: 46px;
  color: rgb(32, 33, 36);
  font-weight: 600;
  line-height: 100%;
}
.mil-price-card .mil-price-number span {
  font-weight: 400;
  font-size: 15px;
  color: rgb(143, 144, 145);
}
@media screen and (max-width: 768px) {
  .mil-price-card .mil-price-number {
    font-size: 24px;
  }
  .mil-price-card .mil-price-number span {
    font-size: 14px;
  }
}
.mil-price-card ul li {
  list-style-type: none;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
.mil-price-card ul li.mil-empty {
  opacity: 0.3;
}

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

accordion

------------------------------------------- */
.mil-accordion-group {
  border-bottom: solid 1px rgba(32, 33, 36, 0.1);
  margin-bottom: 30px;
}
.mil-accordion-group .mil-accordion-menu {
  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;
  cursor: pointer;
  margin-bottom: 30px;
}
.mil-accordion-group .mil-accordion-menu .mil-symbol {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: rgb(32, 33, 36);
  background-color: rgb(233, 233, 233);
  font-size: 16px;
  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: relative;
}
.mil-accordion-group .mil-accordion-menu .mil-symbol .mil-plus, .mil-accordion-group .mil-accordion-menu .mil-symbol .mil-minus {
  font-weight: 400;
  position: absolute;
}
.mil-accordion-group .mil-accordion-menu .mil-symbol .mil-minus {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.mil-accordion-group .mil-accordion-menu .mil-accordion-head {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgb(32, 33, 36);
}

.mil-accordion-content {
  height: 0;
  overflow: hidden;
}

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

footer

------------------------------------------- *//* ── New Multi-Column Footer Override ── */
footer.mil-fw {
    height: auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 60px 0 0 0 !important;
    background-color: #0d0d0d !important;
}

footer.mil-fw:before,
footer.mil-fw:after {
    background-color: #0d0d0d !important;
    height: 100% !important;
}

footer.mil-fw a:hover {
    color: #0072bd !important;
}

footer.mil-fw a:after {
    background-color: #0072bd !important;
}

@media screen and (max-width: 768px) {
    footer.mil-fw {
        padding: 40px 15px 0 !important;
    }
}
/* -------------------------------------------

page transitions

------------------------------------------- */
.transition-fade {
  opacity: 1;
  -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);
}

html.is-animating .transition-fade {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.mil-banner-frame .mil-banner-person {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-banner-frame .mil-banner-bg {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 1;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

html.is-animating .mil-banner-frame .mil-banner-person {
  opacity: 0;
  -webkit-transform: scale(0.95) translateY(30px);
          transform: scale(0.95) translateY(30px);
}
html.is-animating .mil-banner-frame .mil-banner-bg {
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.mil-fw-page .mil-right-banner {
  width: 4px;
}
.mil-fw-page .mil-banner-bg {
  opacity: 0;
}
.mil-fw-page .mil-back-to-top {
  opacity: 1;
  -webkit-transform: translateX(0) rotate(-90deg);
          transform: translateX(0) rotate(-90deg);
}
.mil-fw-page.mil-100-page .mil-back-to-top {
  /*opacity: 0;*/
  -webkit-transform: translateX(90px) rotate(-90deg);
          transform: translateX(90px) rotate(-90deg);
}

html.is-animating .mil-right-banner {
  width: 35%;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
  display: none;
}

.mil-flying-skills div {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.mil-fw-page .mil-flying-skills div {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}

html.is-animating .mil-flying-skills div {
  -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);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

html.is-changing .mil-progress {
  height: 0 !important;
}
@media screen and (max-width: 1200px) {
  html.is-changing .mil-navigation {
    -webkit-transform: translateY(10px) scale(0.98) !important;
            transform: translateY(10px) scale(0.98) !important;
    opacity: 0 !important;
    pointer-events: none;
  }
}
html.is-changing .mil-has-children ul {
  -webkit-transform: translateY(10px) scale(0.98) !important;
          transform: translateY(10px) scale(0.98) !important;
  opacity: 0 !important;
}

.mil-menu-transition {
  opacity: 1;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-menu-transition ul li.mil-active a {
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-menu-transition ul li.mil-active a:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

html.is-animating .mil-menu-transition {
  opacity: 0.9999;
}
html.is-animating .mil-menu-transition ul li.mil-active a:before {
  -webkit-transform: scale(0);
          transform: scale(0);
}


.mil-logo-box {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 15%;
    overflow: hidden;
    cursor: pointer;
}

.mil-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mil-hover-text {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 65%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mil-logo-box:hover img {
    opacity: 0;
    transform: scale(0.9);
}

.mil-logo-box:hover .mil-hover-text {
    opacity: 1;
}


.product-description p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.product-description ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.product-description li {
    margin-bottom: 8px;
}

.product-description table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.product-description table,
.product-description th,
.product-description td {
    border: 1px solid #ccc;
}

.product-description th,
.product-description td {
    padding: 10px;
    text-align: left;
}


.hidden-product {
    display: none !important;
}


.mil-review .mil-up {
  font-size: 18px;
  color: #333;
}


.mil-timeline .mil-item-head h4{
  font-size: 22px;
}

.mil-timeline p {
  font-size: 18px;
  color: #333;
}



/* ═══════════════════════════════════════════════════
   PREMIUM TOP CONTACT BAR
═══════════════════════════════════════════════════ */
.mil-top-bar {
  position: relative;
  height: 48px;
  background: #295d70;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Subtle noise texture overlay */
.mil-top-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* ── LEFT ACCENT BLOCK ── */
.mil-top-bar-left {
  position: relative;
  z-index: 1;
  background: #1d83a9;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 32px 0 28px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  flex-shrink: 0;
  min-width: 220px;
}

/* Shimmer sweep on left block */
.mil-top-bar-left::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { left: -100%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}

.mil-top-bar-left .tbl-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  position: relative;
}

.mil-top-bar-left .tbl-pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.mil-top-bar-left span {
  font-family: 'Lato', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

/* ── CENTER MARQUEE ── */
.mil-top-bar-marquee {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* fade edges */
.mil-top-bar-marquee::before,
.mil-top-bar-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.mil-top-bar-marquee::before { left: 0;  background: linear-gradient(to right, #295d70, transparent); }
.mil-top-bar-marquee::after  { right: 0; background: linear-gradient(to left,  #295d70, transparent); }


/* old - color -   #0d3d4f */
.mil-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  will-change: transform;
}

.mil-ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mil-ticker-sep {
  display: inline-flex;
  align-items: center;
  margin: 0 20px;
  opacity: 0.25;
}

.mil-ticker-sep::before {
  content: '◆';
  font-size: 6px;
  color: #1d83a9;
}

.mil-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  /*color: rgba(255,255,255,0.6);*/
  color: white;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.mil-ticker-item:hover { color: #fff; }

.mil-ticker-item strong {
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.mil-ticker-icon {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: rgba(29,131,169,0.35);
  border: 1px solid rgba(29,131,169,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.mil-ticker-item:hover .mil-ticker-icon {
  background: rgba(29,131,169,0.6);
}

.mil-ticker-icon svg {
  width: 11px; height: 11px;
  stroke: rgba(255,255,255,0.9);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── RIGHT CONTACT PILLS ── */
.mil-top-bar-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.mil-top-bar-right::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.mil-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 20px;
  text-decoration: none;
  border-left: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.mil-contact-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: #1d83a9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.mil-contact-link:hover { background: rgba(29,131,169,0.12); }
.mil-contact-link:hover::after { transform: scaleX(1); }

.mil-contact-link .cl-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(29,131,169,0.22);
  border: 1px solid rgba(29,131,169,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.mil-contact-link:hover .cl-icon {
  background: #1d83a9;
  border-color: #1d83a9;
}

.mil-contact-link .cl-icon svg {
  width: 13px; height: 13px;
  stroke: rgba(255,255,255,0.85);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.mil-contact-link:hover .cl-icon svg { stroke: #fff; }

.cl-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cl-label {
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1;
}

.cl-value {
  font-family: 'Lato', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.2px;
  line-height: 1;
  transition: color 0.2s;
}

.mil-contact-link:hover .cl-value { color: #fff; }

/* ─ Responsive ─ */
@media (max-width: 1200px) {
      .mil-top-bar-marquee {
        display: block;
        margin-top: 10px;
    }

    .mil-top-bar-left {
      display: none;
    }
    .mil-top-bar-right {
      display: none;
    }

  .mil-top-bar { justify-content: space-between; }
}

@media (max-width: 768px) {
  .cl-info { display: none; }
  .mil-contact-link { padding: 0 14px; }
  .mil-top-bar-left { min-width: auto; padding: 0 20px; }
  .mil-top-bar-left span { display: none; }
}


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

  .timeline-item--left .timeline-item__card {
    margin-left: 48px !important;
}

  .contact-section{
    margin-top: 115px;
  }

  .cr-culture {
    margin-top: 100px;
  }

 
}