/* @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap');
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/


/*== Default Css ======*/

:root {
  --thm-font: 'Exo', sans-serif;
  --thm-font-2: 'Exo', sans-serif;
  --thm-font-3: 'Exo', sans-serif;
  --thm-base: #d90429;
  --thm-base-rgb: 217, 4, 41;
  --thm-gray: #444444;
  --thm-gray-rgb: 68, 68, 68;
  --thm-white: #ffffff;
  --thm-white-rgb: 255, 255, 255;
  --thm-black: #111e37;
  --thm-black-rgb: 17, 30, 55;
  --thm-primary: #f6c61d;
  --thm-primary-rgb: 246, 198, 29;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--thm-font);
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--thm-black);
  font-family: var(--thm-font-2);
  font-weight: 700;
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol,
li {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}



/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
  border-color: #43c3ea;
  outline: none;
}

#contact-form input[type="text"].error {
  border-color: red;
}

#contact-form input[type="email"].error {
  border-color: red;
}

#contact-form select.error {
  border-color: red;
}

#contact-form textarea.error {
  border-color: red;
}

#contact-form label.error {
  display: none !important;
}


/** Thm Social Link **/
.thm-social-link {
  position: relative;
  display: block;
  padding-top: 30px;
}

.thm-social-link ul {
  position: relative;
  display: block;
}

.thm-social-link ul li {
  position: relative;
  float: left;
  margin-right: 10px;
}

.thm-social-link ul li:last-child {
  margin-right: 0;
}

.thm-social-link ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: rgba(var(--thm-black-rgb), 1.0);
  border-radius: 5px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.thm-social-link ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-color: rgba(var(--thm-base-rgb), 1.0);
  border-radius: 5px;
  content: "";
  opacity: 0;
  transform: scale(0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.thm-social-link ul li:hover a:before {
  opacity: 1.0;
  transform: scale(1.0);
}

.thm-social-link ul li:hover a {
  color: #ffffff;
}






/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  position: fixed;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  cursor: url(../images/icon/cross-out.png), pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .9;
  visibility: visible;
  transition-delay: 0.3s;
  right: 100%;
  background-color: #000000;
}

.xs-sidebar-widget {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  max-width: 400px;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 700ms ease 100ms;
  visibility: hidden;
  opacity: 1;
  z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  right: 0;
  transition: all 500ms ease 800ms;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 700ms ease 1500ms;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
  background-color: #000000;
}



.sidebar-textwidget {
  padding: 20px 25px;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--thm-black);
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 20px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--thm-base);
  border-color: var(--thn-base);
}


.xs-sidebar-group .content-inner .logo {
  position: relative;
  display: block;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
  z-index: -99;
}

.xs-sidebar-group .content-inner .logo a {
  position: relative;
  display: inline-block;
}

.xs-sidebar-group .content-inner h3 {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .content-box {
  position: relative;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
  position: relative;
  display: block;
}

.xs-sidebar-group .content-inner .content-box p {
  color: var(--thm-gray);
  font-size:14px;
}



.xs-sidebar-group .content-inner .sidebar-contact-info {
  position: relative;
  display: block;
}

.xs-sidebar-group .content-inner .sidebar-contact-info h3 {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 27px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.sidebar-contact-info ul li:last-child {
  margin-bottom: 0;
}

.sidebar-contact-info ul li .inner {
  position: relative;
  display: block;
  padding-left: 45px;
}

.sidebar-contact-info ul li .inner .icon {
  position: absolute;
  top: -2px;
  left: 0;
}

.sidebar-contact-info ul li:first-child .inner .icon {
  top: 7px;
}

.sidebar-contact-info ul li .inner .icon span {
  position: relative;
  display: block;
  color: var(--thm-base);
  font-size: 30px;
  line-height: 30px;
}

.sidebar-contact-info ul li .inner .icon span.map-marker {
  position: relative;
  top: 11px;
  font-size: 34px;
}

.sidebar-contact-info ul li .inner .text {
  position: relative;
  display: block;
}

.sidebar-contact-info ul li .inner .text p {
  line-height: 24px;
  font-size: 14px;
}

.sidebar-contact-info ul li .inner .text p a {
  color: var(--thm-gray);
}



.xs-sidebar-group .content-inner .side-content-newsletter-box {
  position: relative;
  display: block;
  padding-top: 49px;
}

.xs-sidebar-group .content-inner .side-content-newsletter-box h3 {
  color: var(--thm-black);
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 24px;
}

.side-content-newsletter-box .form-group input[type='email'] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  background-color: rgb(248, 248, 248);
  border: 1px solid #e3dfdf;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 6px;
  font-family: var(--thm-font);
}

.side-content-newsletter-box .form-group button {
  margin-top: 30px;
}






/*== Review Css ======*/
.review-box {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 15px;
}

.review-box ul {
  display: block;
  overflow: hidden;
}

.review-box ul li {
  display: inline-block;
  float: left;
  margin-right: 4px;
  cursor: pointer;
}

.review-box ul li:last-child {
  margin-right: 0px;
}

.review-box ul li i {
  color: #febd2f;
  font-size: 15px;
}



/*== Section Title Css ======*/
.sec-title {
  position: relative;
  display: block;
  padding-bottom: 10px;
}

.sec-title .sub-title {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}

.sec-title .sub-title .border-left {
  position: relative;
  display: block;
  top: -1px;
  /* background-color: var(--thm-base); */
  width: 90px;
  height: 15px;
  background-image: url(../images/one-side-border.png);
}

.sec-title .sub-title .border-right {
  position: relative;
  display: block;
  top: -1px;
  background-color: var(--thm-base);
  width: 20px;
  height: 2px;
}


.sec-title .sub-title h5 {
  color: var(--thm-base);
  font-size: 13px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 10px;
}

.sec-title h2 {
  color: var(--thm-black);
  font-size: 35px;
  line-height: 1.2em;
  font-weight: 600;
  text-transform: none;
}






/*== Btn One Css ======*/
.btn-box {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.btn-one {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  background-color: transparent;
  color: #ffffff;
  font-size: 15px;
  line-height: 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 5px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: var(--thm-font-2);
  z-index: 2;
}

.btn-one:before {
  position: absolute;
  top: 110px;
  left: -50px;
  right: -50px;
  height: 170px;
  content: "";
  background: var(--thm-base);
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  border-radius: 50%;
  transition-duration: 800ms;
  z-index: 1;
}

.btn-one:hover:before {
  top: 0%;
  left: -70px;
  right: -70px;
}

.btn-one:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 5px;
  opacity: 1;
  transform: scaleX(1.0);
  transition-duration: 800ms;
  background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  z-index: -1;
}

.btn-one:hover:after {
  transform: scaleX(0);
  transition-duration: 1500ms;
}

.btn-one .txt {
  position: relative;
  z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
  color: #ffffff;
}

.btn-one i {
  position: relative;
  top: 3px;
  display: inline-block;
  padding-left: 5px;
  font-size: 20px;
}



.btn-two {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--thm-base);
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--thm-font-2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.btn-two span {
  position: relative;
  top: -1px;
  display: inline-block;
  padding-left: 10px;
  color: var(--thm-black);
  font-size: 16px;
}

.btn-two:hover {
  color: var(--thm-black);
  letter-spacing: 0.05em;
}




/*== Owl Dot Style One Css ======*/
.owl-carousel.owl-dot-style1 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 50px !important;
  display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 5px;
  background-color: #e7e7e7;
  border: 0px solid #a5a5a5;
  margin: 0px 10px;
  padding: 0px;
  border-radius: 0%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--thm-base);
  border-radius: 0%;
  transform: scale(0);
  transition: all 500ms ease;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active:before {
  transform: scale(1.0);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
  display: none;
}



/*== Owl Dot Style Two Css ======*/
.owl-carousel.owl-dot-style2 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 30px !important;
  display: block;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 5px solid #ffffff;
  margin: 0px 5px;
  padding: 0px;
  border-radius: 50%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border: 1px solid var(--thm-base);
  border-radius: 50%;
  transform: scale(0);
  transition: all 500ms ease;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active {
  border: 5px solid #1a1c23;
  background-color: var(--thm-base);
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active:before {
  transform: scale(1.0);
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot span {
  display: none;
}

.owl-carousel.owl-dot-style2 .owl-dots .owl-dot.active span {}








/*== Owl Nav Style One Css ======*/
.owl-nav-style-one {}

.owl-nav-style-one .owl-controls {}

.owl-nav-style-one.owl-theme .owl-stage-outer {
  position: relative;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav {
  position: relative;
  display: block;
  line-height: 0;
  margin: 0;
  z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 2px solid #fbfbfb;
  border-radius: 50%;
  margin: 0 10px;
  padding: 0;
  z-index: 1;
  transition: all 700ms ease 0s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  /* background-color: var(--thm-base); */
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(0);
  transform: perspective(400px) rotateX(0deg) scale(0);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover::before {
  opacity: 1.0;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
  transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
  position: relative;
  display: block;
  color: #fbfbfb;
  font-size: 20px;
  line-height: 46px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
  transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
  transform: rotate(0deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover span {
  color: #ffffff
}



/*== Scrool To Top Css ======*/
.scroll-to-top {
  position: fixed;
  right: -10px;
  bottom: 80px;
  transform: rotate(90deg);
  z-index: 99999999999;
}

.scroll-to-top .visible {
  visibility: visible !important;
  opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top .scroll-top-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
  -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
  transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}

.scroll-to-top .scroll-bar {
  width: 50px;
  height: 3px;
  margin-right: 10px;
  position: relative;
}

.scroll-to-top .scroll-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--thm-base);
  opacity: 1.0;
}

.scroll-to-top .scroll-bar .bar-inner {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #3b3b3b;
}

.scroll-to-top .scroll-bar-text {
  color: #363636;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--thm-font-2);
  transition: all 500ms ease;
}

.scroll-to-top .scroll-bar-text:hover {
  transform: scale(1.0);
}







/*== Styled Pagination Css ======*/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.styled-pagination.pdtop0 {
  padding-top: 0;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 50px;
  border-radius: 0px;
  background: #ffffff;
  border: 1px solid #f2ece7;
  color: var(--thm-gray);
  font-size: 20px;
  line-height: 46px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  z-index: 1;
}

.styled-pagination li a span:before {
  position: relative;
  top: 1px;
}

.styled-pagination li.prev a span:before {
  position: relative;
  display: inline-block;
}

.styled-pagination li.next a span:before {
  position: relative;
  display: inline-block;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: #ffffff;
  border-color: var(--thm-base);
  background: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  width: 70px;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: #ffffff;
}




/*== checked Css Css ======*/
.checked-box1 {
  position: relative;
  display: block;
  min-height: 20px;
}

.checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  cursor: pointer;
  min-height: 20px;
  font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"] {
  display: none;
}

.checked-box1 input[type="checkbox"]+label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #f2ece7;
  cursor: pointer;
  border-radius: 0px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box1 label span:before {
  font-family: 'icomoon' !important;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "\e918";
  color: var(--thm-base);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  margin: 0px;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checked-box1 input[type="checkbox"]:checked+label span {
  border-color: #f2ece7;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
  opacity: 1.0;
}



/*== Accordion Box Css ======*/
.accordion-box {
  position: relative;
  display: block;
}

.accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 20px;
  transition: all 500ms ease;
}

.accordion-box .block:last-child {
  margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
  position: relative;
  display: block;
  cursor: pointer;
  background: #ffffff;
  padding-top: 14px;
  padding-left: 55px;
  padding-bottom: 14px;
  padding-right: 20px;
  border: 1px solid #d4d4d4;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active {
  background: #ffffff;
  border-bottom: 1px solid transparent;
}

.accordion-box .block .acc-btn h3 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h3 {
  color: var(--thm-base);
}

.accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 20px;
  height: 20px;
  color: var(--thm-black);
  font-size: 18px;
  text-align: right;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(-50%) rotate(0deg);
  transition: all 500ms ease;
  z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer {
  color: var(--thm-base);
  transform: translateY(-50%) rotate(0deg);
}

.accordion-box .block .acc-btn .icon-outer i:before {
  font-weight: 700;
}

.accordion-box .block .acc-btn.active .icon-outer i:before {
  content: "\e95d";
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 1px;
  padding-left: 55px;
  padding-bottom: 27px;
  padding-right: 20px;
  border: 1px solid #d4d4d4;
  border-top: 1px solid transparent;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .acc-content p {
  margin: 0;
}







/* Accordion Box Css */
.accordion-box {
  position: relative;
  display: block;
}

.accordion-box .accordion {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 0px;
  margin-bottom: 10px;
}

.accordion-box .accordion.mar0 {
  margin: 0;
}

.accordion-box .accordion .accord-btn {
  position: relative;
  display: block;
  cursor: pointer;
  padding-left: 70px;
  padding-right: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all 500ms ease;
}

.accordion-box .accordion .accord-btn h4 {
  color: #0b1953;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  transition: all 500ms ease;
}

.accordion-box .accordion .accord-btn::after {
  font-family: 'FontAwesome';
  position: absolute;
  content: "\f067";
  top: 50%;
  left: 30px;
  color: #00091f;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  transform: translateY(-50%);
  transition: all 500ms ease 0s;
}

.accordion-box .accordion .accord-btn.active {
  background: #025981;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.accordion-box .accordion .accord-btn.active h4 {
  color: #ffffff;
}

.accordion-box .accordion .accord-btn.active:after {
  color: #ffffff;
  content: "\f068";
}

.accordion-box .accordion .accord-content {
  position: relative;
  display: block;
  background: #025981;
  padding-top: 0px;
  padding-bottom: 26px;
  padding-left: 70px;
  padding-right: 30px;
  display: none;
}

.accordion-box .accordion .accord-content.collapsed {
  display: block;
}

.accordion-box .accordion .accord-content p {
  color: #ffffff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}



/* Accordion Box Style1 Css */
.accordion-box-style1 {
  position: relative;
  display: block;
}

.accordion-box-style1 .accordion {
  position: relative;
  display: block;
  background: #ffffff;
  margin-bottom: 47px;
}

.accordion-box-style1 .accordion.mar0 {
  margin: 0;
}

.accordion-box-style1 .accordion .accord-btn {
  position: relative;
  display: block;
  cursor: pointer;
  padding-left: 30px;
  transition: all 500ms ease;
}

.accordion-box-style1 .accordion .accord-btn h4 {
  color: var(--thm-black);
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  transition: all 500ms ease;
}

.accordion-box-style1 .accordion .accord-btn::after {
  font-family: 'icomoon' !important;
  position: absolute;
  content: "\e95c";
  top: 50%;
  left: 0px;
  margin-top: -1px;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  text-align: left;
  transform: translateY(-50%);
  transition: all 500ms ease 0s;
}

.accordion-box-style1 .accordion .accord-btn.active {
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.accordion-box-style1 .accordion .accord-btn.active h4 {
  color: var(--thm-base);
}

.accordion-box-style1 .accordion .accord-btn.active:after {
  color: var(--thm-base);
  content: "\e95d";
}

.accordion-box-style1 .accordion .accord-content {
  position: relative;
  padding-top: 13px;
  padding-bottom: 1px;
  padding-left: 30px;
  padding-right: 30px;
  display: none;
}

.accordion-box-style1 .accordion .accord-content.collapsed {
  display: block;
}

.accordion-box-style1 .accordion .accord-content p {
  color: #444444;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}







/*== Search Popup Css ======*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  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: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  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;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--thm-base);
  border: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  color: #ffffff;
  font-size: 25px;
}

.search-popup__content .thm-btn i {
  background-color: transparent;
  margin-left: 0;
}

.search-popup__content .thm-btn:hover {
  background-color: var(--thm-base);
}




/* Preloader */
.handle-preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  z-index: 9999999;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  margin: 0 auto 45px auto;
  animation: spinner 1s infinite linear;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}


.handle-preloader .animation-preloader .txt-loading .letters-loading {
  position: relative;
  display: inline-block;
  font-family: var(--thm-font-3);
  font-weight: 700;
  letter-spacing: 15px;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 0.5s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 0.7s;
}

.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.7);
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

.loader-wrap .layer-one {
  position: absolute;
  left: 0%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-two {
  position: absolute;
  left: 33.3333%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer-three {
  position: absolute;
  left: 66.6666%;
  top: 0;
  width: 33.3333%;
  height: 100%;
  overflow: hidden;
}

.loader-wrap .layer .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--thm-base);
}



@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 40px;
    letter-spacing: 10px;
  }
}






.footer-social-link-style1 {
  position: relative;
  display: block;
}

.footer-social-link-style1 ul {
  position: relative;
  display: block;
}

.footer-social-link-style1 ul li {
  position: relative;
  float: left;
  margin-right: 10px;
}

.footer-social-link-style1 ul li:last-child {
  margin-right: 0;
}

.footer-social-link-style1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background: #ffffff;
  border: 1px solid #f2ece7;
  border-radius: 50%;
  color: #a5a2a0;
  font-size: 14px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.footer-social-link-style1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--thm-base);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.footer-social-link-style1 ul li:hover a:before {
  opacity: 1.0;
  transform: scale(1.0);
}

.footer-social-link-style1 ul li:hover a {
  color: #ffffff;
  border-color: var(--thm-base);
}








/*------------------------------------------
  Service style1 Area
--------------------------------------------*/
.service-style1-area {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background: #222431;
  z-index: 10;
}

.service-style1-area-image {
  position: absolute;
  right: 0;
  bottom: -140px;
  background-color: #222431;
  z-index: -1;
}

.service-style1-area-image img {
  mix-blend-mode: lighten;
  opacity: 0.15;
}

.service-style1-title {
  position: relative;
  display: block;
  max-width: 770px;
  padding-bottom: 53px;
}

.service-style1-title .sec-title {
  padding-bottom: 0;
}

.service-style1-title .sec-title h2 {
  color: #ffffff;
}

.service-style1-title .sec-title .text {
  position: relative;
  display: block;
  padding-top: 20px;
}

.service-style1-title .sec-title .text p {
  color: #ffffff;
}



.service-style1-tab {
  position: relative;
  display: block;
}

.service-style1-tab__button {
  position: relative;
  display: block;
  padding-bottom: 65px;
}

.service-style1-tab__button .tabs-button-box {
  position: relative;
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item {
  position: relative;
  display: block;
  float: left;
  width: 16.6666666667%;
  padding: 0 10px;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 26px 0px 26px;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner {}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  right: 0;
  width: 30px;
  height: 10px;
  margin: 0 auto;
  border-top: 10px solid var(--thm-base);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  z-index: -1;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner:before,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 8px;
  background-color: var(--thm-base);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top center;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner:after,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}


.service-style1-tab__button .tabs-button-box .tab-btn-item .inner span {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 60px;
  line-height: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner span,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner span {
  color: #ffffff;
  transform: scale(1.05);
}

.service-style1-tab__button .tabs-button-box .tab-btn-item .inner h3 {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin: 16px 0 0;
  font-family: var(--thm-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-style1-tab__button .tabs-button-box .tab-btn-item:hover .inner h3,
.service-style1-tab__button .tabs-button-box .tab-btn-item.active-btn-item .inner h3 {
  color: #ffffff;
}



.service-style1-tab .tabs-content-box {
  position: relative;
  display: block;
}

.service-style1-tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.service-style1-tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.service-style1-tab .tab-content-box-item .service-style1-tab-content-box-item {
  transition: all 0.7s ease;
  opacity: 0;
  transform: scaleY(0.9);
  transform-origin: top bottom;
}

.service-style1-tab .tab-content-box-item.tab-content-box-item-active .service-style1-tab-content-box-item {
  opacity: 1.0;
  transform: scaleY(1);
  transform-origin: bottom top;
}


.service-style1-content-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 20px 50px 20px;
  padding-right: 20px;
  border-radius: 8px;
}

.service-style1-content-box .text-box {
  position: relative;
  display: block;
  max-width: 775px;
  width: 100%;
  padding-right: 60px;
}

.service-style1-content-box .text-box h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 900;
  margin-bottom: 15px;
}

.service-style1-content-box .text-box .bottom-box {
  position: relative;
  display: block;
  padding-top: 16px;
}

.service-style1-content-box .text-box ul {
  position: relative;
  display: flex;
}

.service-style1-content-box .text-box ul li {
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
  margin-top: 7px;
}

.service-style1-content-box .text-box ul li span {
  position: relative;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #0787d9;
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
}

.service-style1-content-box .text-box ul li p {
  font-weight: 500;
  margin-left: 10px;
}

.service-style1-content-box .text-box .btn-box {
  position: relative;
  display: block;
  padding-top: 26px;
}

.service-style1-content-box .text-box .btn-box a {
  color: var(--thm-base);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--thm-font-2);
}

.service-style1-content-box .text-box .btn-box a span {
  position: relative;
  top: 3px;
  display: inline-block;
  margin-left: 10px;
  color: var(--thm-black);
  font-size: 18px;
}

.service-style1-content-box .img-box {
  position: relative;
  display: block;
  width: 325px;
}

.service-style1-content-box .img-box img {
  width: 100%;
  border-radius: 10px;
}



/*** 
=============================================
    Service Style2 Area Css
=============================================
***/
.service-style2-area {
  position: relative;
  display: block;
  padding: 40px 0 50px;
  z-index: 10;
}

.service-style2-area__top {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 49px;
}

.service-style2-area__top .sec-title {
  padding-bottom: 0;
}

.service-style2-area__top .sec-title h2 {
  color: #ffffff;
}

.service-style2-area__top .text-box {
  position: relative;
  top: -4px;
  display: block;
  max-width: 450px;
  width: 100%;
}

.service-style2-area__top .text-box p {
  color: #ffffff;
  font-size: 20px;
  line-height: 28px;
}


.single-service-style2 {
  position: relative;
  display: block;
}

.single-service-style2 .img-holder {
  position: relative;
  display: block;
}

.single-service-style2 .img-holder .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-service-style2 .img-holder img {
  width: 100%;
  transform: scale(1.0);
}

.single-service-style2:hover .img-holder img {
  transform: scale(1.05) rotate(1deg);
}

.single-service-style2 .img-holder-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-base);
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform: perspective(400px) rotateX(-10deg);
  -ms-transform: perspective(400px) rotateX(-10deg);
  transform: perspective(400px) rotateX(-10deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}

.single-service-style2:hover .img-holder-img-bg {
  opacity: 0.90;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}

.single-service-style2 .img-holder .overlay-button {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(20deg) translateX(100%);
  -ms-transform: perspective(400px) rotateX(20deg) translateX(100%);
  transform: perspective(400px) rotateX(20deg) translateX(100%);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 2;
}

.single-service-style2:hover .img-holder .overlay-button {
  opacity: 1.0;
  -webkit-transform: perspective(400px) rotateX(0deg) translateX(0%);
  -ms-transform: perspective(400px) rotateX(0deg) translateX(0%);
  transform: perspective(400px) rotateX(0deg) translateX(-0%);
  transition-delay: .3s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.single-service-style2 .img-holder .overlay-button a {
  position: relative;
  display: block;
  background-color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  color: #000000;
  font-size: 25px;
  line-height: 50px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.single-service-style2 .img-holder .overlay-button a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  border-radius: 5px;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  background-color: rgba(var(--thm-black-rgb), .99);
  z-index: -1;
}

.single-service-style2 .img-holder .overlay-button a:hover::before {
  transform: scaleX(1.0);
}

.single-service-style2 .img-holder .overlay-button a:hover {
  color: #ffffff;
}


.single-service-style2 .text-holder {
  position: absolute;
  right: 0px;
  display: block;
  background-color: #fff;
  padding: 0px 0px 0px 15px;
  width: 90%;
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: space-between;
}

.single-service-style2 .text-holder h3 {
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
  margin: 0 0 0px;
}

.single-service-style2 .text-holder h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-service-style2 .trap_icon {
  background: #d91b29;
  color: #fff;
  padding: 10px 25px;
}

.single-service-style2 .text-holder i {  
  transform: rotateZ(320deg);
}

.single-service-style2 .text-holder h3 a:hover {
  color: var(--thm-base);
}

.single-service-style2 .text-holder p {
  color: #5e5e5e;
}

.single-service-style2 .text-holder .icon-box {
  position: absolute;
  top: -45px;
  left: 35px;
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;

}

.single-service-style2 .text-holder .icon-box .icon-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 77px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
}

.single-service-style2 .text-holder .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: transparent;
  z-index: -1;
}

.single-service-style2 .text-holder .icon-box span {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 55px;
  line-height: 55px;
}

.single-service-style2 .text-holder .icon-box span.style2 {
  font-size: 70px;
}

.service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
  position: absolute;
  top: -120px;
  right: 0px;
  display: block;
  width: 290px;
  margin: 50px auto 0;
}

.service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
  transform: rotate(45deg);
  background-color: #d91b29;
  border-radius: 10%;
}

.service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav .owl-next {
  transform: rotate(45deg);
  background-color: #d91b29;
  border-radius: 10%;
}
.service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav .owl-prev span{
  transform: rotate(316deg)
}
.service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav .owl-next span{
  transform: rotate(316deg)
}

.service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 70px;
  height: 1px;
  /* background: #d3d3d3; */
}

.service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav:after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  width: 70px;
  height: 1px;
  /* background: #d3d3d3; */
}



/*** 
=============================================
    Service Style3 Area Css
=============================================
***/
.service-style3-area {
  position: relative;
  display: block;
  background: #19202d;
  padding: 120px 0 112px;
  z-index: 10;
}

.service-style3-area__top {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 59px;
}

.service-style3-area__top .sec-title {
  padding-bottom: 0;
}

.service-style3-area__top .sec-title h2 {
  color: #ffffff;
}

.service-style3-area__top .text-box {
  position: relative;
  top: -5px;
  display: block;
  max-width: 570px;
  width: 100%;
}

.service-style3-area__top .text-box p {
  color: #c4c2cc;
  font-size: 20px;
  line-height: 28px;
}


.service-style3-area .row {
  --bs-gutter-x: 2px;
}

.service-style3-area .row li {
  border-bottom: 2px solid #19202d;
}

.single-service-style3 {
  position: relative;
  display: block;
  background: #ffffff;
  text-align: center;
  padding: 45px 30px 47px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.single-service-style3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  background-color: var(--thm-base);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.single-service-style3:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.single-service-style3 .icon {
  position: relative;
  display: block;
  padding-bottom: 21px;
  line-height: 0;
}

.single-service-style3 .icon span {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  line-height: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style3:hover .icon span {
  color: #ffffff;
}

.single-service-style3 .text h3 {
  font-size: 22px;
  line-height: 28px;
  padding-bottom: 9px;
}

.single-service-style3 .text h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style3:hover .text h3 a {
  color: #ffffff;
}

.single-service-style3 .text {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style3:hover .text {
  color: #ffffff;
}

.single-service-style3 .btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.single-service-style3 .btn-box a {
  font-weight: 900;
}


.single-service-style3:hover .btn-box a {
  color: #ffffff;
}

.single-service-style3 .btn-box a span {
  color: var(--thm-base);
  font-size: 14px;
  line-height: 8px;
  font-weight: 700;
  padding-left: 6px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style3:hover .btn-box a span {
  color: #ffffff;
}



.single-service-style3__img-box {
  position: relative;
  display: block;
  margin-top: -85px;
  margin-right: -180px;
}

.single-service-style3__img-box:before {
  content: "";
  position: absolute;
  top: 83px;
  left: 0;
  right: 180px;
  height: 2px;
  background: #19202d;
}

.single-service-style3__img-box:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 178px;
  width: 2px;
  background: #19202d;
  height: 85px;
}

.single-service-style3__img-box img {
  width: 100%;
}

.service-style3-area__bottom-text {
  position: relative;
  display: block;
  padding-top: 80px;
}

.service-style3-area__bottom-text h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.service-style3-area__bottom-text h3 a {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
}

.service-style3-area__bottom-text h3 a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  right: 0;
  height: 1px;
  background-color: var(--thm-base);
}



/*** 
=============================================
    Service Style4 Area Css
=============================================
***/
.service-style4-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0 0px;
  z-index: 11;
}

.service-style4-area-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 120px;
  right: 0;
  background-color: #1f1e3b;
  background-blend-mode: soft-light;
}

.service-style4-area-bg .img-bg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top right;
  background-color: #1f1e3b;
  background-blend-mode: soft-light;
  opacity: 0.50;
}

.service-style4-area .sec-title {
  padding-bottom: 69px;
}

.service-style4-area .sec-title .sub-title {
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.service-style4-area .sec-title .sub-title h5 {
  margin-left: 10px;
  margin-right: 10px;
}

.service-style4-area .sec-title h2 {
  color: #ffffff;
}

.service-style4-area .container {
  max-width: 1300px;
}



.single-service-style4 {
  position: relative;
  display: block;
  background: #ffffff;
  text-align: center;
  padding: 50px 20px 47px;
  border-radius: 6px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.single-service-style4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 6px;
  background-color: var(--thm-base);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.single-service-style4:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.single-service-style4 .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  margin: 0 auto;
  border: 1px dashed var(--thm-base);
  border-radius: 50%;
  z-index: 1;
}

.single-service-style4 .icon:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 300ms ease 300ms;
}

.single-service-style4:hover .icon:before {
  opacity: 1;
  transform: scaleX(1.0);
}

.single-service-style4 .icon span {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 50px;
  line-height: 50px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style4 .icon span.style2 {
  font-size: 70px;
  line-height: 70px;
}

.single-service-style4:hover .icon span {
  color: var(--thm-base);
}

.single-service-style4 .text {
  position: relative;
  display: block;
  padding-top: 31px;
}

.single-service-style4 .text h3 {
  font-size: 24px;
  line-height: 28px;
  padding-bottom: 15px;
}

.single-service-style4 .text h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style4:hover .text h3 a {
  color: #ffffff;
}

.single-service-style4 .text {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style4:hover .text {
  color: #ffffff;
}

.single-service-style4 .btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.single-service-style4 .btn-box a {
  font-weight: 900;
}

.single-service-style4:hover .btn-box a {
  color: #ffffff;
}

.single-service-style4 .btn-box a span {
  color: var(--thm-base);
  font-size: 14px;
  line-height: 8px;
  font-weight: 700;
  padding-left: 6px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style4:hover .btn-box a span {
  color: #ffffff;
}



/*** 
=============================================
    Service Style5 Area Css
=============================================
***/
.service-style5-area {
  position: relative;
  display: block;
  background: #f4f5f8;
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 10;
}

.service-style5-area-shape {
  position: absolute;
  bottom: -40px;
  right: 0;
  z-index: -1;
  background-color: #f4f5f8;
}

.service-style5-area-shape img {
  mix-blend-mode: darken;
  opacity: 0.30;
}

.service-style5-title {
  position: relative;
  display: block;
  max-width: 930px;
  width: 100%;
}

.service-style5-title .sec-title {
  padding-bottom: 53px;
}

.service-style5-title .sec-title .text {
  position: relative;
  display: block;
  padding-top: 20px;
}


.single-service-style5 {
  position: relative;
  display: block;
}

.single-service-style5 .img-holder {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.single-service-style5 .img-holder .inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-service-style5 .img-holder .inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(var(--thm-base-rgb), .90);
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.single-service-style5:hover .img-holder .inner:before {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  cursor: pointer;
}

.single-service-style5 .img-holder .inner img {
  width: 100%;
}

.single-service-style5 .img-holder .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  -ms-transform: translateY(-55%);
  transform: translateY(-55%);
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";

  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.single-service-style5:hover .img-holder .overlay-icon {
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.single-service-style5 .img-holder .overlay-icon a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style5 .img-holder .overlay-icon a:hover {
  color: #000;
  transform: scale(1.15);
}

.single-service-style5 .title-holder {
  position: relative;
  display: block;
  background-color: #ffffff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  text-align: center;
  padding: 34px 30px 38px;
}

.single-service-style5 .title-holder h3 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 7px;
}

.single-service-style5 .title-holder h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style5 .title-holder h3 a:hover {
  color: var(--thm-base);
}



/*** 
=============================================
    Service Style6 Area Css
=============================================
***/
.service-style6-area {
  position: relative;
  display: block;
  background: #091836;
  padding: 120px 0 120px;
  z-index: 10;
}

.service-style6-area .sec-title h2 {
  color: #ffffff;
}

.single-service-style6 {
  position: relative;
  display: block;
}

.single-service-style6 .img-holder {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.single-service-style6 .img-holder img {
  width: 100%;
  transform: scale(1);
  transition: .5s linear;
}

.single-service-style6:hover .img-holder img {
  transform: scale(1.05) rotate(1deg);
}

.single-service-style6 .img-holder-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-base);
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform: perspective(400px) rotateX(-10deg);
  -ms-transform: perspective(400px) rotateX(-10deg);
  transform: perspective(400px) rotateX(-10deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}

.single-service-style6:hover .img-holder-img-bg {
  opacity: 0.80;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}


.single-service-style6 .title-holder {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 35px 0 38px;
  border-bottom: 5px solid var(--thm-base);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.single-service-style6 .title-holder h3 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 23px;
}

.single-service-style6 .title-holder h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style6 .title-holder h3 a:hover {
  color: var(--thm-base);
}

.single-service-style6 .title-holder .btn-box a span {
  color: var(--thm-base);
  font-size: 14px;
  line-height: 8px;
  font-weight: 900;
  padding-left: 6px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style6 .title-holder .btn-box a {
  font-weight: 900;
}

.single-service-style6 .title-holder .btn-box a:hover {
  letter-spacing: 0.2em;
}

.service-style6-carousel.owl-nav-style-one.owl-theme .owl-nav {
  position: absolute;
  top: -110px;
  right: 0;
}



/*------------------------------------------
  Team Style1 Area
--------------------------------------------*/
.team-style1-area {
  position: relative;
  display: block;
  background: #f2f3f7;
  padding: 120px 0 90px;
  z-index: 10;
}

.team-style1-area__top {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 49px;
}

.team-style1-area__top .sec-title {
  padding-bottom: 0;
}

.team-style1-area__top .text-box {
  position: relative;
  top: -5px;
  display: block;
  max-width: 600px;
  width: 100%;
}

.team-style1-area__top .text-box p {
  color: var(--thm-gray);
  font-size: 20px;
  line-height: 28px;
}



.team-style1-area__top-style2 {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 49px;
}

.team-style1-area__top-style2 .sec-title {
  padding-bottom: 0;
}

.team-style1-area__top-style2 .btn-box {
  position: relative;
  display: block;
  padding-bottom: 11px;
}

.team-style1-area__top-style2 .btn-box a {
  color: #292929;
}

.team-style1-area__top-style2 .btn-box a:hover {
  color: #ffffff;
}

.team-style1-area__top-style2 .btn-box a.btn-one:after {
  background-image: none;
  border: 1px solid #a4a4a4;
}





.team-style1-area .container {
  max-width: 1220px;
}

.team-style1-area .row {
  --bs-gutter-x: 10px;
}


.single-team-style1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.single-team-style1 .img-holder {
  position: relative;
  display: block;
  overflow: hidden;
  padding-right: 20px;
}

.single-team-style1 .img-holder .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  background-color: #000000;
}

.single-team-style1 .img-holder .inner img {
  width: 100%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-team-style1:hover .img-holder .inner img {
  opacity: 0.30;
  transform: scale(1.05);
  transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-team-style1 .title-box {
  position: absolute;
  left: 20px;
  bottom: 0;
  right: 0;
  background-color: var(--thm-base);
  border-radius: 5px;
  border-bottom-left-radius: 0;
  padding: 16px 30px 12px;
  transform: perspective(0px) rotateX(0deg) translateY(0%);
  z-index: 2;
}

.single-team-style1:hover .title-box {
  opacity: 1;
  transform: perspective(0px) rotateX(0deg) translateY(70px);
  transition: all .4s ease-in-out .1s;
}

.single-team-style1 .title-box .title-box__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.single-team-style1 .title-box h3 {
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 4px;
}

.single-team-style1 .title-box h3 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-team-style1 .title-box h3 a:hover {
  color: var(--thm-black);
}

.single-team-style1 .title-box h5 {
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.single-team-style1 .title-box .right {
  position: relative;
  display: block;
  line-height: 0;
}

.single-team-style1 .title-box .right a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 28px;
  line-height: 28px;
  font-weight: 400;
}


.single-team-style1 .overlay-content {
  position: absolute;
  left: 20px;
  bottom: 0;
  right: 0;
  background-color: var(--thm-base);
  border-radius: 5px;
  border-bottom-left-radius: 0;
  padding: 36px 30px 40px;
  opacity: 1;
  transform: perspective(400px) rotateX(0deg) translateY(116px);
  z-index: 1;
}

.single-team-style1:hover .overlay-content {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg) translateY(0%);
  transition: all .4s ease-in-out .1s;
}

.single-team-style1 .overlay-content .title-box__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.single-team-style1 .overlay-content .title-box__inner h3 {
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 3px;
}

.single-team-style1 .overlay-content .title-box__inner h3 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-team-style1 .overlay-content .title-box__inner h3 a:hover {
  color: var(--thm-black);
}

.single-team-style1 .overlay-content .title-box__inner h5 {
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.single-team-style1 .overlay-content .title-box__inner .right {
  position: relative;
  display: block;
  line-height: 0;
}

.single-team-style1 .overlay-content .title-box__inner .right a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 28px;
  line-height: 28px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-team-style1 .overlay-content .title-box__inner .right a:hover {
  color: var(--thm-black);
}


.team-social-link {
  position: relative;
  display: block;
  padding-top: 22px;
}

.team-social-link ul {
  position: relative;
  display: block;
}

.team-social-link ul li {
  position: relative;
  float: left;
  margin-right: 10px;
}

.team-social-link ul li:last-child {
  margin-right: 0;
}

.team-social-link ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 2px solid #ffffff;
  background: transparent;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.team-social-link ul li a:before {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background: #ffffff;
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-social-link ul li:hover a:before {
  opacity: 1.0;
  transform: scale(1.0);
}

.team-social-link ul li:hover a {
  color: var(--thm-base);
  border-color: #ffffff;
}



/*------------------------------------------
  Team Style2 Area
--------------------------------------------*/
.team-style2-area {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0 90px;
  z-index: 10;
}



/*------------------------------------------
  Team Page One
--------------------------------------------*/
.team-page-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0 90px;
  z-index: 10;
}

.team-page-one .row {
  --bs-gutter-x: 10px;
}

.team-page-one .sec-title {
  padding-bottom: 53px;
}

.team-page-one .sec-title .text {
  position: relative;
  display: block;
  padding-top: 20px;
}

.team-page-one .sec-title .text p {
  color: #444444;
}



/*------------------------------------------
  Choose style1 Area
--------------------------------------------*/
.choose-style1-area {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #e7edf3;
  padding: 120px 0 80px;
  z-index: 10;
}

.choose-style1-area-img {
  position: absolute;
  left: 0;
  bottom: -50px;
  z-index: -1;
}

.choose-style1-content {
  position: relative;
  display: block;
  max-width: 820px;
  width: 100%;
  float: right;
  padding-right: 100px;
}

.choose-style1-content .sec-title {
  padding-bottom: 53px;
}

.choose-style1-content .sec-title .text {
  position: relative;
  display: block;
  padding-top: 20px;
}

.choose-style1-content .sec-title .text p {
  color: #494949;
}

.choose-style1-content__inner {
  position: relative;
  display: block;
}

.choose-style1-content__inner ul {
  position: relative;
  display: block;
  margin-left: -20px;
  margin-right: -20px;
}

.choose-style1-content__inner ul li {
  position: relative;
  display: block;
  width: 50%;
  float: left;
  padding: 0 20px 40px;
}



.single-choose-box-style1 {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fdfdfe;
  border-radius: 8px;
  padding: 25px 25px 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.single-choose-box-style1:hover {
  transform: translateY(-5px);
}

.single-choose-box-style1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 8px;
  background-color: var(--thm-base);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.single-choose-box-style1:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.single-choose-box-style1 .icon {
  position: relative;
  width: 80px;
  line-height: 0;
}

.single-choose-box-style1 .icon span {
  color: var(--thm-base);
  font-size: 60px;
  line-height: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-choose-box-style1:hover .icon span {
  color: #ffffff;
}


.single-choose-box-style1 .title {
  position: relative;
  flex: 1;
}

.single-choose-box-style1 .title h3 {
  font-size: 21px;
  line-height: 26px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-choose-box-style1:hover .title h3 {
  color: #ffffff;
}



/*------------------------------------------
  Choose style2 Area
--------------------------------------------*/
.choose-style2-area {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: transparent;
  padding: 0px 0 0px;
  z-index: 10;
}

.choose-style2-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: #091836;
  z-index: -1;
}

.choose-style2-area-img {
  position: absolute;
  left: 0;
  bottom: 0;
}

.choose-style1-content--style2 {
  padding-top: 100px;
  padding-right: 110px;
  padding-bottom: 60px;
}

.choose-style1-content--style2:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100000px;
  bottom: 0;
  right: 0;
  background-color: #e7edf3;
  z-index: -1;
}

.choose-style1-content--style2 .sec-title {
  padding-bottom: 43px;
}



/*------------------------------------------
  Choose style3 Area
--------------------------------------------*/
.choose-style3-area {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  padding: 120px 0 100px;
  z-index: 10;
}

.choose-style3-content-box {
  position: relative;
  display: block;
}

.choose-style3-content-box .sec-title {
  padding-bottom: 52px;
}

.choose-style3-content-box .sec-title .text {
  position: relative;
  display: block;
  padding-top: 20px;
}


.choose-style3-content-box__inner {
  position: relative;
  display: block;
}

.choose-style3-content-box__inner ul {
  position: relative;
  display: flex;
  max-width: 480px;
}

.choose-style3-content-box__inner ul li {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  margin-bottom: 40px;
}

.choose-style3-content-box__inner ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 6px;
  width: 1px;
  background: #e4e4e4;
}

.choose-style3-content-box__inner ul li:first-child:before {
  display: none;
}

.choose-style3-content-box__inner ul li:last-child {
  padding-left: 70px;
}

.choose-style3-content-box__inner ul li span {
  color: var(--thm-base);
  font-size: 60px;
  line-height: 60px;
}

.choose-style3-content-box__inner ul li h3 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  margin: 9px 0 0;
}

.choose-style3-content-box__inner ul li h3 a {
  color: var(--thm-black);
}



.choose-style3-img-box {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  float: right;
  padding-left: 100px;
  padding-right: 0;
  padding-bottom: 0;
}

.choose-style3-img-box .inner::before {
  display: none;
}

.choose-style3-img-box .overlay-box {
  position: absolute;
  left: 0;
  bottom: 40px;
  right: auto;
}



/*** 
=============================================
   Project Style1 Area Css
=============================================
***/
.project-style1-area {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  background-color: #ffffff;
  z-index: 1;
}

.project-style1-area:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 430px;
  background-color: #e4edf6;
  z-index: -1;
}

.project-style1-area .auto-container {
  max-width: 1880px;
  padding: 0 15px;
}

.project-style1-area__top {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 12px;
}

.project-style1-area__top .sec-title {
  padding-bottom: 0;
}

.project-style1-area__top .btn-box {
  position: relative;
  display: block;
  padding-bottom: 11px;
}


.single-project-item {
  position: relative;
  display: block;
}

.single-project-item .img-holder {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-project-item .img-holder img {
  width: 100%;
  transform: scale(1.0);
}

.single-project-item:hover .img-holder img {
  transform: scale(1.05) rotate(1deg);
}

.single-project-item .img-holder-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #091836;
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform: perspective(400px) rotateX(-10deg);
  -ms-transform: perspective(400px) rotateX(-10deg);
  transform: perspective(400px) rotateX(-10deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  border-radius: 6px;
  z-index: 1;
}

.single-project-item:hover .img-holder-img-bg {
  opacity: 0.5;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}



.single-project-item .img-holder .overlay-button {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateX(20deg) translateX(100%);
  -ms-transform: perspective(400px) rotateX(20deg) translateX(100%);
  transform: perspective(400px) rotateX(20deg) translateX(100%);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 2;
}

.single-project-item:hover .img-holder .overlay-button {
  opacity: 1.0;
  -webkit-transform: perspective(400px) rotateX(0deg) translateX(0%);
  -ms-transform: perspective(400px) rotateX(0deg) translateX(0%);
  transform: perspective(400px) rotateX(0deg) translateX(-0%);
  transition-delay: .3s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.single-project-item .img-holder .overlay-button a {
  position: relative;
  display: block;
  background-color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  color: #000000;
  font-size: 20px;
  line-height: 55px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.single-project-item .img-holder .overlay-button a+a {
  margin-top: 10px;
}

.single-project-item .img-holder .overlay-button a+a i {
  font-weight: 600;
}

.single-project-item .img-holder .overlay-button a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  border-radius: 5px;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  background-color: rgba(var(--thm-base-rgb), .99);
  z-index: -1;
}

.single-project-item .img-holder .overlay-button a:hover::before {
  transform: scaleX(1.0);
}

.single-project-item .img-holder .overlay-button a:hover {
  color: #ffffff;
}



.single-project-item .img-holder .overlay-title {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0 40px 40px;
  padding-right: 20px;
  transform: scaleY(0);
  transition: all 300ms ease 100ms;
  z-index: 2;
}

.single-project-item:hover .img-holder .overlay-title {
  transform: scaleY(1.0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-project-item:hover .img-holder .overlay-title:after {
  width: 280px;
  position: absolute;
  content: '';
  background-color: #c7c7c7;
  height: 1px;
  bottom: 30px;
  left: 10px;
  -webkit-transition: 250ms all linear 0ms;
  -khtml-transition: 250ms all linear 0ms;
  -moz-transition: 250ms all linear 0ms;
  -ms-transition: 250ms all linear 0ms;
  -o-transition: 250ms all linear 0ms;
  transition: 250ms all linear 0ms;
}

.single-project-item:hover .img-holder .overlay-title:before {
  position: absolute;
  content: '';
  background-color: #c7c7c7;
  /* width: 0px; */
  height: 280px;
  width: 1px;
  bottom: 20px;
  left: 22px;
  -webkit-transition: 250ms all linear 0ms;
  -khtml-transition: 250ms all linear 0ms;
  -moz-transition: 250ms all linear 0ms;
  -ms-transition: 250ms all linear 0ms;
  -o-transition: 250ms all linear 0ms;
  transition: 250ms all linear 0ms;
}

.single-project-item .img-holder .overlay-title p {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
}

.single-project-item .img-holder .overlay-title h4 {
  font-size: 22px;
  line-height: 30px;
}

.single-project-item .img-holder .overlay-title h4 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}


.project-style1-carousel.owl-carousel .owl-dots {
  position: relative;
  display: block;
  text-align: center;
  max-width: 1170px;
  margin: 0 auto !important;
  background: #091836;
  border-radius: 15px;
  height: 13px;
  line-height: 13px;
  overflow: hidden;
  margin-top: 70px !important;
}

.project-style1-carousel.owl-carousel .owl-dots button {
  position: relative;
  display: inline-block;
  background: transparent;
  width: 25%;
  height: 13px;
  float: left;
  background: transparent;
  border-radius: 15px;
  transition: all 500ms ease;
}

.project-style1-carousel.owl-carousel .owl-dots button.active,
.project-style1-carousel.owl-carousel .owl-dots button:hover {
  background: #3f71cd;
}

.project-style1-carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}



/*** 
=============================================
  Project Style3 Content Box Css
=============================================
***/
.project-style3-content-box {
  position: relative;
  display: block;
  margin-top: 116px;
  padding-top: 120px;
  border-top: 1px solid rgba(47, 68, 93, 0.60);
}

.project-style3-content-box .sec-title h2 {
  color: #ffffff;
}

.project-style3-carousel.owl-nav-style-one.owl-theme .owl-nav {
  position: absolute;
  top: -110px;
  left: 0;
  right: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: right;
}



/*** 
=============================================
   Project Style4 Area Css
=============================================
***/
.project-style4-area {
  position: relative;
  display: block;
  padding: 40px 0px;
  background-color: #f2f7ff;
  z-index: 1;
}

.project-style4-area .auto-container {
  max-width: 1880px;
  padding: 0 15px;
}

.project-style4-area .single-project-item .img-holder-img-bg {
  background-color: #000;
}

.project-style4-area .single-project-item .img-holder .overlay-title p {
  color: #ffffff;
}




/*** 
=============================================
   Project Style5 Area Css
=============================================
***/
.project-style5-area {
  position: relative;
  display: block;
  padding: 70px 0px 40px;
  background-color: #001b3b;
  z-index: 1;
}

.project-style5-area .auto-container {
  max-width: 1880px;
  padding: 0 15px;
}

.project-style5-area .sec-title h2 {
  color: #ffffff;
}

.project-style5-area .single-project-item {
  margin-bottom: 30px;
}



/*** 
=============================================
  Cta Style1 Area Css
=============================================
***/
.cta-style1-area {
  position: relative;
  display: block;
  background-color: transparent;
  z-index: 10;
}

.cta-style1-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: #e4edf6;
  z-index: -1;
}

.cta-style1-area:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 50%;
  background-color: #141e32;
  z-index: -1;
}


.cta-style1-area__inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--thm-base);
  border-radius: 8px;
  padding: 55px 0px 54px;
  padding-left: 90px;
}

.cta-style1-area__inner-img-bg {
  position: absolute;
  top: 0px;
  right: -1px;
  width: calc(50% + 1px);
  height: calc(100% + 1px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 23% 0%);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cta-style1-area__inner-content {
  position: relative;
  display: block;
}

.cta-style1-area__inner-content h2 {
  color: #fff;
  font-size: 42px;
  line-height: 50px;
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-style1-area__inner-content h3 {
  color: #fff;
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
}

.cta-style1-area__inner-content h3 a {
  display: inline-block;
  color: #fff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cta-style1-area__inner-content h3 a:hover {
  color: var(--thm-black);
}


/*** 
=============================================
  Cta Style2 Area Css
=============================================
***/
.cta-style2-area {
  position: relative;
  display: block;
  background-color: transparent;
  z-index: 10;
}

.cta-style2-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: #001b3b;
  z-index: -1;
}

.cta-style2-area:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 50%;
  background-color: #ffffff;
  z-index: -1;
}

.cta-style2-area__inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--thm-base);
  border-radius: 8px;
  padding: 46px 0px 46px;
  padding-left: 330px;
  padding-right: 60px;
}

.cta-style2-area__inner-img-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 270px;
  height: calc(100% + 1px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cta-style2-area__inner:hover .cta-style2-area__inner-img-bg {
  transform: scale(1.02);
  background-color: var(--thm-base);
  background-blend-mode: luminosity;
}


.cta-style2-area__inner-content {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cta-style2-area__inner-content h2 {
  color: #fff;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
}

.cta-style2-area__inner-content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.cta-style2-area__inner-content .btn-box .btn-one {
  color: var(--thm-black);
}

.cta-style2-area__inner-content .btn-box .btn-one:hover {
  color: #ffffff;
}

.cta-style2-area__inner-content .btn-box .btn-one:after {
  background-image: none;
  background-color: #ffffff;
}

.cta-style2-area__inner-content .btn-box .btn-one:before {
  background-color: var(--thm-black);
}



/*** 
=============================================
    Slogan Area Css
=============================================
***/
.slogan-area {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 117px 0 130px;
  z-index: 10;
}

.slogan-area-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -1px;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
}

.slogan-area-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.40;
}

.slogan-content-box {
  position: relative;
  display: block;
}

.slogan-content-box .inner-title {
  position: relative;
  display: block;
}

.slogan-content-box .inner-title h2 {
  color: #ffffff;
  font-size: 55px;
  line-height: 1.3em;
  font-weight: 900;
  margin: 0 0 9px;
}

.slogan-content-box .inner-title h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  font-family: var(--thm-font);
}



.slogan-content-box .btns-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 47px;
}

.slogan-content-box .btns-box .left-btn {
  position: relative;
  display: block;
  line-height: 0;
}

.slogan-content-box .btns-box .left-btn a {
  color: var(--thm-black);
}

.slogan-content-box .btns-box .left-btn a:hover {
  color: #ffffff;
}

.slogan-content-box .btns-box .left-btn a:after {
  background-image: none;
  background-color: #ffffff;
}



.video-gallery-style1 {
  position: relative;
  display: block;
  margin-left: 90px;
}

.video-gallery-style1 .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--thm-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}

.video-gallery-style1 .icon:hover {
  background-color: var(--thm-base);
}

.video-gallery-style1 .icon:after,
.video-gallery-style1 .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: -1;
}

.video-gallery-style1 .icon:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.video-gallery-style1 .icon .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.video-gallery-style1 .icon .video-popup span::before {
  position: relative;
  color: #ffffff;
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-gallery-style1 .icon:hover .video-popup span::before {
  color: #ffffff;
}



/*** 
=============================================
    Awards Area Css
=============================================
***/
.awards-area {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 0px 0 40px;
  z-index: 10;
}

.awards-area__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 80px;
}

.awards-contant-box {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
}

.awards-contant-box .sec-title {
  padding-bottom: 30px;
}

.awards-img-box {
  position: relative;
  display: block;
}

.awards-img-box ul {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 15px;
  align-items: center;
}

.awards-img-box ul li {
  position: relative;
  display: block;
}

.awards-img-box ul li+li {
  margin-left: 20px;
}

.awards-img-box ul li a {
  position: relative;
  display: inline-block;
}



/*** 
=============================================
    Awards Area Style2 Css
=============================================
***/
.awards-area--style2 {
  position: relative;
}

.awards-area--style2 .awards-area__inner {
  padding-top: 30px;
}

.awards-area--style2 .awards-area__inner .awards-contant-box {
  max-width: 610px;
}

.awards-area--style2 .awards-img-box ul {
  border-left: 1px solid #d0d0d0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.awards-area--style2 .awards-img-box ul li+li {
  margin-left: 0px;
}

.awards-area--style2 .awards-img-box ul li {
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: 31px 12px;
}



/*--------------------------------------------------------------
# Home Google Map Css
--------------------------------------------------------------*/
.home-google-map-area {
  position: relative;
  display: block;
  background: #ffffff;
  overflow: hidden;
  z-index: 10;
}

.home-google-map {
  position: relative;
  display: block;
  border: none;
  height: 350px;
  width: 100%;
  background-color: #201c22;
  mix-blend-mode: luminosity;
  z-index: 10;
}


.google-map-content-box {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 100;
}

.map-contact-info-box {
  position: relative;
  display: block;
  max-width: 380px;
  width: 100%;
  background-color: #087fe8;
  padding: 80px 45px 92px;
  float: right;
}

.map-contact-info-box .inner-title {
  position: relative;
  display: block;
  padding-bottom: 9px;
}

.map-contact-info-box .inner-title::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}

.map-contact-info-box .inner-title h3 {
  color: #ffffff;
  font-size: 19px;
  line-height: 29px;

}

.map-contact-info-box p {
  color: #ffffff;
  margin: 21px 0 0;
}

.map-contact-info-box h5 {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  padding-top: 36px;
  font-weight: 500;
}

.map-contact-info-box h5 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.map-contact-info-box h5 a:hover {
  color: var(--thm-base);
}



/*** 
=============================================
    Features Style1 Area Style      
=============================================
***/
.features-style1-area {
  position: relative;
  display: block;
  background-color: #05213d;
  padding: 40px 0;
  overflow: hidden;
  z-index: 10;
}

.features-style1-content-box {
  position: relative;
  display: block;
}

.features-style1-content-box .sec-title {
  padding-bottom: 30px;
}

.features-style1-content-box .sec-title h2 {
  color: #ffffff;
}

.features-style1-content-box .inner-content {
  position: relative;
  display: block;
  max-width: 590px;
}

.features-style1-content-box .inner-content .text {
  position: relative;
  display: block;
  padding-bottom: 28px;
}

.features-style1-content-box .inner-content .text p {
  color: #ffffff;
}

.features-style1-list-item {
  position: relative;
  display: block;
}

.features-style1-list-item ul {
  position: relative;
  display: block;
}

.features-style1-list-item ul li {
  position: relative;
  display: block;
  padding-left: 40px;
  color: #ffffff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

.features-style1-list-item ul li+li {
  margin-top: 12px;
}

.features-style1-list-item ul li .icon {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 24px;
  font-weight: 700;
  background: #00B1E6;
  background: repeating-linear-gradient(to top, #00B1E6 0%, #00e8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-style1-list-item ul li .icon span {
  font-weight: 700;
}


.progress-levels {
  position: relative;
  display: block;
  margin-top: 40px;
  max-width: 570px;
}

.progress-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

.progress-box .top {
  position: relative;
  display: block;
  padding-bottom: 12px;
}

.progress-box .top h4 {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-font)
}


.progress-box .skill-percent {
  position: absolute;
  top: -36px;
  right: -15px;
}

.progress-box .count-text {
  position: relative;
  color: #ffffff;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  display: inline-block;
  float: none;
  font-family: var(--thm-font);
}

.progress-box .percent {
  position: relative;
  color: #ffffff;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  display: inline-block;
  float: none;
  margin-left: -3px;
  font-family: var(--thm-font);
}



.progress-box .bar {
  position: relative;
  display: block;
}

.progress-box .bar .bar-innner {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: #eae5e3;
  border-radius: 5px;
}

.progress-box .bar .bar-fill {
  position: absolute;
  top: 0%;
  left: 0px;
  bottom: 0%;
  width: 0px;
  height: 10px;
  border-radius: 5px;
  transition: all 2000ms ease 300ms;
  background: var(--thm-base);
}



.booking-form-box {
  position: relative;
  display: block;
  background-color: #e7edf3;
  border-radius: 10px;
  overflow: hidden;
}

.booking-form-box .top-title {
  position: relative;
  display: block;
  text-align: center;
  padding: 26px 0 42px;
  z-index: 1;
}

.booking-form-box .top-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -1px;
  z-index: -1;
  background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.booking-form-box .top-title h6 {
  color: #fdc1cc;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-form-box .top-title h2 {
  color: #ffffff;
  font-size: 35px;
  line-height: 40px;
  font-weight: 500;
  margin: 4px 0 0;
}




.booking-form-box form {
  position: relative;
  display: block;
  padding: 30px 35px 40px;
}

.booking-form-box form .row {
  --bs-gutter-x: 10px;
}

.booking-form-box form .form-group {
  position: relative;
  display: block;
  padding-bottom: 10px;
}

.booking-form-box form .input-box {
  position: relative;
  display: block;
}

.booking-form-box form input[type="text"],
.booking-form-box form input[type="email"],
.booking-form-box form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #ffffff;
  width: 100%;
  height: 50px;
  color: #868686;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 7px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
}

.booking-form-box form input[type="text"]:focus,
.booking-form-box forminput[type="email"]:focus,
.booking-form-box form textarea:focus {
  border: 1px solid var(--thm-base);
  outline: none;
}


.booking-form-box form input[type="text"]::-webkit-input-placeholder {
  color: #868686;
}

.booking-form-box form input[type="text"]:-moz-placeholder {
  color: #868686;
}

.booking-form-box form input[type="text"]::-moz-placeholder {
  color: #868686;
}

.booking-form-box form input[type="text"]:-ms-input-placeholder {
  color: #868686;
}


.booking-form-box form input[type="email"]::-webkit-input-placeholder {
  color: #868686;
}

.booking-form-box form input[type="email"]:-moz-placeholder {
  color: #868686;
}

.booking-form-box form input[type="email"]::-moz-placeholder {
  color: #868686;
}

.booking-form-box form input[type="email"]:-ms-input-placeholder {
  color: #868686;
}

.booking-form-box form .button-box {
  position: relative;
  display: block;
  padding-top: 10px;
}

.booking-form-box form .button-box button {
  width: 100%;
}



/*** 
=============================================
   Features Style2 Area     
=============================================
***/
.features-style2-area {
  position: relative;
  display: block;
  background-color: #001b3b;
  z-index: 1;
}

.features-style2-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40.73%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}

.features-style2-content-box {
  position: relative;
  display: block;
  padding-top: 88px;
  padding-bottom: 69px;
  max-width: 670px;
  width: 100%;
  float: right;
  border-bottom: 1px solid rgba(152, 157, 163, 0.30);
}

.features-style2-content-box h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 62px;
  margin-bottom: 7px;
}

.features-style2-content-box p {
  color: rgba(255, 255, 255, 0.80);
}

.features-style2-list-item {
  position: relative;
  display: block;
  padding-top: 28px;
  max-width: 500px;
  width: 100%;
}

.features-style2-list-item h3 {
  color: #ffffff;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 15px;
}

.features-style2-list-item ul {
  position: relative;
  display: block;
}

.features-style2-list-item ul li {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--thm-font);
  padding-left: 15px;
  padding-bottom: 4px;
}

.features-style2-list-item ul li::before {
  position: absolute;
  top: 15px;
  left: 0;
  content: '';
  width: 5px;
  height: 1px;
  background-color: #ffffff;
}



/*** 
=============================================
   Features Style3 Area     
=============================================
***/
.features-style3-area {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 1;
}

.features-style3-title-box {
  position: relative;
  display: block;
}

.features-style3-title-box .sec-title {
  padding-bottom: 20px;
}

.features-style3-title-box .sec-title .sub-title {
  margin-bottom: 11px;
}

.features-style3-title-box .sec-title .sub-title .border-left {
  width: 30px;
}

.features-style3-title-box .sec-title h2 {
  font-size: 38px;
  line-height: 48px;
}




.features-style3-img-box {
  position: relative;
  display: block;
  max-width: 620px;
  width: 100%;
  float: right;
}

.features-style3-img-box .row {
  --bs-gutter-x: 20px;
}

.features-style3-img-box .single-img-box {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #000000;
}

.features-style3-img-box .single-img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: rgba(var(--thm-base-rgb), .50);
  -webkit-transform: translateX(-50%, -50%);
  transform: translateX(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.features-style3-img-box .single-img-box:hover::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.features-style3-img-box .single-img-box img {
  width: 100%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-style3-img-box .single-img-box:hover img {
  opacity: 0.30;
}



/*** 
=============================================
    Features Style4 Area Style      
=============================================
***/
.features-style4-area {
  position: relative;
  display: block;
  background-color: #f2f5fa;
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 10;
}


.features-style4-img-box {
  position: relative;
  display: block;
  max-width: 470px;
  width: 100%;
}

.features-style4-img-box .top-img-box {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 345px;
  width: 100%;
  float: right;
  border-radius: 8px;
}

.features-style4-img-box .top-img-box img {
  width: 100%;
}

.features-style4-img-box .bottom-img-box {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 325px;
  width: 100%;
  float: left;
  margin-top: -210px;
  border-radius: 8px;
  z-index: 2;
}

.features-style4-img-box .bottom-img-box::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(var(--thm-base-rgb), .50);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
}

.features-style4-img-box:hover .bottom-img-box::after {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.features-style4-img-box .bottom-img-box img {
  width: 100%;
}

.features-style4-img-box .overlay-box {
  position: absolute;
  bottom: 60px;
  right: 50px;
  background-color: var(--thm-base);
  width: 170px;
  height: 145px;
  border-radius: 8px;
  z-index: 3;
}



.features-style4-area .features-style1-content-box {
  padding-left: 50px;
}

.features-style4-area .features-style1-content-box .sec-title h2 {
  color: var(--thm-black);
}

.features-style4-area .features-style1-content-box .inner-content {
  width: 100%;
  max-width: 100%;
}

.features-style4-area .features-style1-content-box .inner-content .text p {
  color: var(--thm-black);
}

.features-style4-area .features-style1-list-item ul li {
  color: #444444;
}

.features-style4-area .features-style1-list-item ul li .icon {
  background: -webkit-linear-gradient(#819ac8, #3c62aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-style4-area .features-style1-list-item ul li .icon span {
  font-weight: 700;
}



.features-style4-area .progress-box .top h4 {
  color: var(--thm-gray);
}

.features-style4-area .progress-box .count-text {
  color: var(--thm-gray);
}

.features-style4-area .progress-box .percent {
  color: var(--thm-gray);
}



/*** 
=============================================
    Contact Style1 Area
=============================================
***/
.contact-style1-area {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #05213d;
  padding: 120px 0 113px;
  z-index: 10;
}

.contact-style1-area-img-box {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.contact-style1__content-box {
  position: relative;
  display: block;
  max-width: 450px;
}

.contact-style1__content-box .sec-title {
  padding-bottom: 20px;
}

.contact-style1__content-box .sec-title h2 {
  color: #ffffff;
}

.contact-style1__content-box--inner {
  position: relative;
  display: block;
}

.contact-style1__content-box--inner p {
  color: #ffffff;
}

.contact-style1__content-box--inner .phone-number {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 25px;
}

.contact-style1__content-box--inner .phone-number .img-box {
  position: relative;
  display: block;
  width: 70px;
}

.contact-style1__content-box--inner .phone-number .img-box img {
  border-radius: 50%;
}


.contact-style1__content-box--inner .phone-number .text {
  position: relative;
  flex: 1;
  padding-left: 30px;
}

.contact-style1__content-box--inner .phone-number .text h4 {
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.contact-style1__content-box--inner .phone-number .text h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--thm-font);
  margin: 0px 0 0;
}

.contact-style1__content-box--inner .phone-number .text h3 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-style1__content-box--inner .phone-number .text h3 a:hover {
  color: var(--thm-base);
}



.contact-style1__content-box--inner .text-box2 {
  position: relative;
  display: block;
  padding-bottom: 18px;
}

.contact-style1__content-box--inner .text-box2 p {
  font-family: var(--thm-font);
}

.contact-style1__content-box--inner .text-box2 p span {
  font-weight: 600;
}

.contact-style1__content-box--inner .text-box-3 p {
  font-family: var(--thm-font);
}

.contact-style1__content-box--inner .text-box-3 p span {
  font-weight: 600;
}



.thm-form-box-1 {
  position: relative;
  display: block;
}

.thm-form-box-1 .row {
  --bs-gutter-x: 15px;
}

.thm-form-box-1 form {
  position: relative;
  display: block;
}

.thm-form-box-1 form .form-group {
  position: relative;
  display: block;
  padding-bottom: 15px;
}

.thm-form-box-1 form .input-box {
  position: relative;
  display: block;
}

.thm-form-box-1 form input[type="text"],
.thm-form-box-1 form input[type="email"],
.thm-form-box-1 form textarea {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid #ffffff;
  width: 100%;
  height: 60px;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 8px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
}

.thm-form-box-1 form input[type="text"]:focus,
.thm-form-box-1 form input[type="email"]:focus,
.thm-form-box-1 form textarea:focus {
  border: 1px solid var(--thm-base);
  outline: none;
}

.thm-form-box-1 form textarea {
  height: 200px;
  padding-top: 12px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 10px;
}

.thm-form-box-1 form input[type="text"]::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="text"]:-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="text"]::-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="text"]:-ms-input-placeholder {
  color: #444444;
}


.thm-form-box-1 form input[type="email"]::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="email"]:-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="email"]::-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form input[type="email"]:-ms-input-placeholder {
  color: #444444;
}


.thm-form-box-1 form textarea::-webkit-input-placeholder {
  color: #444444;
}

.thm-form-box-1 form textarea:-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form textarea::-moz-placeholder {
  color: #444444;
}

.thm-form-box-1 form textarea:-ms-input-placeholder {
  color: #444444;
}

.thm-form-box-1 form .form-group .select-box {
  position: relative;
  display: block;
  width: 100%;
}

.thm-form-box-1 form .form-group .nice-select {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 8px;
  border: solid 1px #ffffff;
  width: 100%;
  height: 60px;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  line-height: 58px;
  outline: none;
  padding-left: 25px;
  padding-right: 25px;
  transition: all 0.2s ease-in-out;
  font-family: var(--thm-font);
}

.thm-form-box-1 form .form-group .nice-select:after {
  position: absolute;
  content: "\e912";
  font-family: 'icomoon' !important;
  color: #7f7873;
  font-size: 16px;
  top: 20px;
  right: 1px;
  bottom: 0;
  margin: 0px;
  font-weight: 400;
  border: none !important;
  transform: rotate(90deg) !important;
}

.thm-form-box-1 form .form-group .nice-select .list {
  background-color: #ffffff;
  border-radius: 0px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  padding: 0px 0 0px;
  margin-top: 10px;
}

.thm-form-box-1 form .form-group .nice-select .option {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  line-height: 40px;
  min-height: 40px;
}


.thm-form-box-1 form .button-box {
  position: relative;
  display: block;
  padding-top: 10px;
}

.thm-form-box-1 form .button-box button {
  width: 100%;
}



/*** 
=============================================
    Contact-Style2 Area Css
=============================================
***/
.contact-style2-area {
  position: relative;
  display: block;
  background-color: transparent;
  margin-top: -20px;
  z-index: 10;
}

.contact-style2-area__inner {
  position: relative;
  display: flex;
  z-index: 1;
}

.contact-style2-area__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -100000px;
  background-color: #ecf4fa;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: -1;
}


.video-gallery-style2 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 375px;
  height: 200px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.video-gallery-style2-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: var(--thm-base);
  background-blend-mode: multiply;
}

.video-gallery-style2 .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}

.video-gallery-style2 .icon:after,
.video-gallery-style2 .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: -1;
}

.video-gallery-style2 .icon:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.video-gallery-style2 .icon .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1;
}

.video-gallery-style2 .icon .video-popup:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0.50;
  z-index: -1;
}

.video-gallery-style2 .icon .video-popup span::before {
  position: relative;
  color: var(--thm-black);
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-gallery-style2 .icon:hover .video-popup span::before {
  color: var(--thm-base);
}



.contact-style2-content {
  position: relative;
  margin-right: -345px;
  flex: 1;
}

.contact-style2-content ul {
  position: relative;
  display: flex;
}

.contact-style2-content ul li {
  position: relative;
  display: block;
  width: 380px;
}

.contact-style2-content ul li:nth-child(2) .contact-style2-single-box {
  background-color: #ffffff;
}


.contact-style2-single-box {
  position: relative;
  display: block;
  background-color: #edf5fb;
  border-bottom: 1px solid #ececf8;
  padding: 31px 40px 25px;
}

.contact-style2-single-box .icon {
  position: relative;
  display: block;
  line-height: 0;
}

.contact-style2-single-box .icon span {
  color: var(--thm-base);
  font-size: 64px;
  line-height: 64px;
}

.contact-style2-single-box .title {
  position: relative;
  display: block;
  padding-top: 23px;
}

.contact-style2-single-box .title h3 {
  font-size: 20px;
  line-height: 28px;
}

.contact-style2-single-box .title p {
  color: var(--thm-gray);
}

.contact-style2-single-box .title p a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-style2-single-box .title p a:hover {
  color: var(--thm-base);
}




/*** 
=============================================
    Gallery Style1 Area Css
=============================================
***/
.gallery-style1-area {
  position: relative;
  display: block;
  background-color: #ffffff;
  z-index: 10;
}

.gallery-style1-area .container {
  max-width: 100%;
  padding: 0;
}

.gallery-style1-area__inner {
  position: relative;
  display: flex;
}

.single-gallery-box {
  position: relative;
  display: block;
  width: 20%;
  float: left;
}

.single-gallery-box .img-holder {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-gallery-box .img-holder:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--thm-black);
  opacity: 0;
  z-index: 2;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.single-gallery-box:hover .img-holder:after {
  opacity: 0.85;
}

.single-gallery-box .img-holder img {
  width: 100%;
  transform: scale(1.0);
}

.single-gallery-box:hover .img-holder img {
  transform: scale(1.05) rotate(0deg);
}


.single-gallery-box .img-holder .overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transform: perspective(400px) scale(0) translateY(-40px);
  transition: all 500ms ease;
}

.single-gallery-box:hover .img-holder .overlay-icon {
  opacity: 1;
  transform: perspective(400px) scale(1.0) translateY(0px);
  transition-delay: 500ms;
}

.single-gallery-box .img-holder .overlay-icon a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 40px;
}



/*** 
=============================================
    Vision Style1 Area Style      
=============================================
***/
.vision-style1-area {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.vision-style1__content-box {
  position: relative;
  display: block;
  padding-right: 20px;
}

.vision-style1__content-box .sec-title {
  padding-bottom: 10px;
}


.vision-style1__content-box__inner {
  position: relative;
  display: block;
}

.vision-style1__content-box__inner .top-text {
  position: relative;
  display: block;
}

.vision-style1__content-box__inner .bottom-text {
  position: relative;
  display: block;
  padding: 24px 0 59px;
}

.vision-style1__content-box__inner .bottom-text p {
  color: #0e2a4e;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.vision-style1__content-box__inner .bottom-text p a {
  color: var(--thm-base);
  text-decoration: underline;
}

.vision-style1-area .about-style3-img-box {
  float: right;
}



.mission-content-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #e0e0e0;
  margin-top: 100px;
  padding-top: 100px;
}

.mission-content-box .img-box {
  position: relative;
  display: block;
  width: 370px;
  overflow: hidden;
  border-radius: 8px;
}

.mission-content-box .img-box img {
  width: 100%;
}

.mission-content-box .text-box {
  position: relative;
  flex: 1;
  margin-left: 50px;
  margin-right: 50px;
}

.mission-content-box .text-box p {
  color: #0e2a4e;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}



.vision-style1-area.about-page .vision-style1__content-box {
  padding-right: 0px;
}

.vision-style1-area.about-page .vision-style1__content-box .sec-title {
  padding-bottom: 20px;
}

.vision-style1-area.about-page .vision-style1__content-box__inner .bottom-text {
  padding: 23px 0 33px;
}



/*** 
=============================================
    Project Info Area     
=============================================
***/
.project-info-area {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 113px;
}

.project-info-img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-info-img-box:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 0%;
  background-color: var(--thm-base);
  opacity: 0.90;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  z-index: 1;
}

.project-info-img-box:hover::before {
  height: 100%;
  top: 0px;
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.50);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.50);
}

.project-info-img-box img {
  width: 100%;
  transform: scale(1.0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-info-img-box:hover img {
  transform: scale(1.05) rotate(1deg);
}



.project-info-box {
  position: relative;
  display: block;
  background-color: var(--thm-base);
  padding: 61px 40px 66px;
}

.project-info-box ul {
  position: relative;
  display: block;
}

.project-info-box ul li {
  position: relative;
  display: block;
  color: #ffffff;
  font-family: var(--thm-font);
  margin-bottom: 19px;
}

.project-info-box ul li:last-child {
  margin-bottom: 0;
}

.project-info-box ul li span {
  font-weight: 700;
  padding-right: 3px;
}

.project-info-box ul li a {
  color: #ffffff;
}

.project-description-box {
  position: relative;
  display: block;
  margin-top: 89px;
}

.project-description-box h2 {
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 29px;
}

.project-description-box p+p {
  margin-top: 24px;
}



/*** 
=============================================
    Project Details Style1 Area     
=============================================
***/
.project-details-style1-area {
  position: relative;
  display: block;
  background-color: #f4f4f4;
  padding: 120px 0 113px;
}

.project-details-style1-content {
  position: relative;
  display: block;
}

.project-details-style1-content h2 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 900;
  margin-top: -9px;
  margin-bottom: 19px;
}

.project-details-style1-content ul {
  position: relative;
  display: block;
  margin-top: 32px;
}

.project-details-style1-content ul li {
  position: relative;
  display: block;
  padding-left: 30px;
}

.project-details-style1-content ul li+li {
  margin-top: 27px;
}

.project-details-style1-content ul li .dot-box {
  position: absolute;
  top: 9px;
  left: 0px;
  width: 8px;
  height: 8px;
  background-color: #5b5b5b;
  border-radius: 50%;
}

.project-details-style1-content ul li .text-box {
  position: relative;
  display: block;
}

.project-details-style1-content ul li .text-box h3 {
  font-size: 20px;
  line-height: 26px;
  font-family: var(--thm-font);
  font-weight: 600;
  margin-bottom: 6px;
}


.project-details-style1-img-box {
  position: relative;
  display: block;
}

.project-details-style1-img-box img {
  width: 100%;
}



/*** 
=============================================
    Project Details Style2 Area     
=============================================
***/
.project-details-style2-area {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 110px 0 113px;
  z-index: 10;
}

.project-details-style2-content {
  position: relative;
  display: block;
}

.project-details-style2-content h2 {
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 29px;
}

.project-details-style2-content p+p {
  margin: 24px 0 0;
}

.project-details-style2-content ul {
  position: relative;
  display: block;
  margin-top: 34px;
}

.project-details-style2-content ul li {
  position: relative;
  display: block;
  padding-left: 30px;
  margin-bottom: 4px;
}

.project-details-style2-content ul li:last-child {
  margin-bottom: 0;
}

.project-details-style2-content ul li .dot-box {
  position: absolute;
  top: 11px;
  left: 0px;
  width: 8px;
  height: 8px;
  background-color: #5b5b5b;
  border-radius: 50%;
}







/*** 
=============================================
    Service Details Style1 Css      
=============================================
***/
.service-details-style1 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.service-details-style1__img-box {
  position: relative;
  display: block;
  margin-left: -150px;
  margin-right: 15px;
}

.service-details-style1__img-box ul {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  margin-left: -5px;
  margin-right: -5px;
}

.service-details-style1__img-box ul li {
  position: relative;
  display: block;
  float: left;
  padding: 0 5px 0;
}

.service-details-style1__img-box ul li .single-img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-details-style1__img-box ul li .single-img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  z-index: 1;
  transition: all 500ms ease;
  background-image: linear-gradient(0deg,
      var(--thm-black) 0%,
      rgba(255, 255, 255, 0) 60%);
}

.service-details-style1__img-box ul li:hover .single-img-box::before {
  opacity: 0;
}

.service-details-style1__img-box ul li:first-child .single-img-box {
  width: 305px;
}

.service-details-style1__img-box ul li:last-child .single-img-box {
  width: 345px;
}

.service-details-style1__img-box ul li .single-img-box img {
  width: 100%;
  transform: scale(1.01);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all;
  transition-property: all;
}

.service-details-style1__img-box ul li:hover .single-img-box img {
  transform: scale(1.1) rotate(0.5deg);
}


.service-details-style1__content-box {
  position: relative;
  display: block;
  margin-left: 10px;
}

.service-details-style1__content-box .sec-title {
  padding-bottom: 30px;
}

.service-details-style1__content-box .sec-title .sub-title {
  margin-bottom: 11px;
}

.service-details-style1__content-box .text {
  margin-bottom: 24px;
}

.service-details-style1__content-box ul {
  position: relative;
  display: block;
  margin-bottom: 34px;
}

.service-details-style1__content-box ul li {
  position: relative;
  display: block;
  padding-left: 35px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--thm-font);
  margin-bottom: 9px;
}

.service-details-style1__content-box ul li:last-child {
  margin-bottom: 0;
}

.service-details-style1__content-box ul li .icon {
  position: absolute;
  top: 2px;
  left: 0px;
}

.service-details-style1__content-box ul li .icon span {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 20px;
}

.service-details-style1__content-box .bottom-text {
  position: relative;
  display: block;
}



/*** 
=============================================
    Service Details Style2 Css      
=============================================
***/
.service-details-style2 {
  position: relative;
  display: block;
  background-color: #f8f8fa;
  padding: 120px 0 105px;
  z-index: 10;
}

.service-details-style2 .sec-title {
  padding-bottom: 20px;
}

.service-details-style2__img-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background-color: var(--thm-base);
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  width: calc((100% - 330px) / 2);
  z-index: 1;
}

.service-details-style2__img-bg:hover {
  background-position: -5px 0px;
}

.service-details-style2__img-bg:before {
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  opacity: 0;
  content: "";
  transform: skew(0deg) translateY(0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 900ms ease 100ms;
  z-index: 2;
}

.service-details-style2__img-bg:hover::before {
  opacity: 0.30;
}


.service-details-style2__content {
  position: relative;
  display: block;
  max-width: 650px;
  width: 100%;
  float: right;
}

.service-details-style2__content .text1 {
  margin-bottom: 29px;
}

.service-details-style2__content ul {
  position: relative;
  display: block;
  margin-top: 34px;
}

.service-details-style2__content ul li {
  position: relative;
  display: block;
  padding-left: 30px;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--thm-font);
  margin-bottom: 10px;
}

.service-details-style2__content ul li .icon {
  position: absolute;
  top: 7px;
  left: 0;
  line-height: 0;
}

.service-details-style2__content ul li .icon span {
  color: var(--thm-base);
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
}



/*** 
=============================================
    Service Details Style3 Css      
=============================================
***/
.service-details-style3 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.service-details-style3__content {
  position: relative;
  display: block;
  padding-right: 30px;
}

.service-details-style3__content .inner-title {
  position: relative;
  display: block;
  margin-top: -10px;
  padding-bottom: 43px;
}

.service-details-style3__content .inner-title h2 {
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 19px;
}



.service-details-style3-img-box {
  position: relative;
  display: block;
}

.service-details-style3-img-box .single-img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-details-style3-img-box .single-img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  z-index: 1;
  transition: all 500ms ease;
  background-image: linear-gradient(0deg,
      var(--thm-black) 0%,
      rgba(255, 255, 255, 0) 50%);
}

.service-details-style3-img-box .single-img-box:hover::before {
  opacity: 0;
}


.service-details-style3-img-box .single-img-box img {
  width: 100%;
  transform: scale(1.0);
}

.service-details-style3-img-box .single-img-box:hover img {
  transform: scale(1.05) rotate(1deg);
}

.service-details-style3-img-box .single-img-box .video-gallery-style2 {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: auto;
  height: auto;
  overflow: initial;
}

.service-details-style3-img-box .single-img-box .video-gallery-style2 .video-gallery-style2-bg {
  display: none;
}



.service-details-style3-bottom-text {
  position: relative;
  display: block;
  margin-top: 70px;
}

.service-details-style3-bottom-text h2 {
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 21px;
}

.service-details-style3-bottom-text .list-items {
  position: relative;
  display: block;
  margin-top: 39px;
}

.service-details-style3-bottom-text .list-items ul {
  position: relative;
  display: block;
}

.service-details-style3-bottom-text .list-items ul li {
  position: relative;
  display: block;
  padding-left: 30px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  font-family: var(--thm-font);
  margin-bottom: 7px;
}

.service-details-style3-bottom-text .list-items ul li:last-child {
  margin-bottom: 0;
}

.service-details-style3-bottom-text .list-items ul li .icon {
  position: absolute;
  top: 1px;
  left: 0;
}

.service-details-style3-bottom-text .list-items ul li .icon span {
  color: var(--thm-base);
  font-size: 15px;
  line-height: 15px;
  font-weight: 700;
}





.service-details-sidebar-box-style2 {
  position: relative;
  display: block;
}

.service-details-contact-info-box {
  position: relative;
  display: block;
}

.service-details-contact-info-box .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.service-details-contact-info-box .img-box img {
  width: 100%;
  transform: scale(1.0);
}

.service-details-contact-info-box:hover .img-box img {
  transform: scale(1.1) rotate(1deg);
}

.service-details-contact-info-box .img-box::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  height: 85px;
  background-color: var(--thm-base);
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  z-index: 2;
}

.service-details-contact-info-box .img-box::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  height: 65px;
  background-color: #001b3b;
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  z-index: 2;
}

.service-details-contact-info-box .img-box .img-holder-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #001b3b;
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform: perspective(400px) rotateX(-10deg);
  -ms-transform: perspective(400px) rotateX(-10deg);
  transform: perspective(400px) rotateX(-10deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}

.service-details-contact-info-box:hover .img-box .img-holder-img-bg {
  opacity: 0.70;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}


.service-details-contact-info-box .title-box {
  position: relative;
  display: block;
  background-color: #001b3b;
  padding: 17px 30px 40px;
}

.service-details-contact-info-box .title-box h3 {
  color: #ffffff;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 6px;
}

.service-details-contact-info-box .title-box h3 span {
  font-size: 24px;
  line-height: 30px;
  font-family: var(--thm-font);
  font-weight: 500;
}

.service-details-contact-info-box .title-box h2 {
  color: #ffffff;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 21px;
}

.service-details-contact-info-box .title-box .btn-box {
  position: relative;
  display: block;
}

.service-details-contact-info-box .title-box .btn-box a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details-sidebar-box-style2 .sidebar-download-box {
  padding-top: 55px;
}



/*** 
=============================================
    Service Details Style4      
=============================================
***/

.service-details-style4 {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.service-details-style4__content {
  position: relative;
  display: block;
  padding-right: 30px;
}

.service-details-style4-img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 7px;
}

.service-details-style4-img-box img {
  width: 100%;
  transform: scale(1.0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-details-style4-img-box:hover img {
  transform: scale(1.05) rotate(0deg);
}


.service-details-style4-text-box {
  position: relative;
  display: block;
  margin-top: 53px;
  margin-bottom: 46px;
}

.service-details-style4-text-box h2 {
  font-size: 35px;
  line-height: 45px;
  font-weight: 900;
  margin-bottom: 10px;
}

.service-details-style4-text-box .text-1 {
  margin-bottom: 24px;
}

.service-details-style4-text-box .text-1 p {
  font-weight: 500;
}

.service-details-style4-text-box .text-2 {
  margin: 0;
}

.service-details-style4-text-box .text-2 p {
  font-weight: 500;
}


.service-details-style4-text-box-two {
  position: relative;
  display: block;
}

.service-details-style4-text-box-two .text {
  position: relative;
  display: block;
  margin-right: -20px;
}

.service-details-style4-text-box-two .text h2 {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 11px;
}

.service-details-style4-text-box-two .text p {
  font-weight: 500;
}

.service-details-style4-text-box-two .text ul {
  position: relative;
  display: block;
  margin-top: 17px;
}

.service-details-style4-text-box-two .text ul li {
  position: relative;
  display: block;
  padding-left: 35px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details-style4-text-box-two .text ul li .icon {
  position: absolute;
  top: 2px;
  left: 0;
}

.service-details-style4-text-box-two .text ul li span {
  color: var(--thm-base);
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
}

.service-details-style4-text-box-two .image {
  position: relative;
  display: block;
  padding-left: 35px;
  margin-top: 8px;
}

.service-details-style4-text-box-two .image .image-inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-details-style4-text-box-two .image img {
  width: 100%;
}


.service-details-style4-text-box-three {
  position: relative;
  display: block;
  margin-top: 45px;
}

.service-details-style4-text-box-three .row {
  --bs-gutter-x: 0px;
}

.service-details-style4-text-box-three .row li {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  padding: 24px 25px 27px;
  z-index: 1;
}

.service-details-style4-text-box-three .row li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 0px;
  background-color: #fafafa;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top center;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.service-details-style4-text-box-three .row li:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.service-details-style4-text-box-three .row li:last-child {
  border-left: none;
}

.service-details-style4-text-box-three .single-box {
  position: relative;
  display: block;
  padding-left: 80px;
}

.service-details-style4-text-box-three .single-box .icon {
  position: absolute;
  top: 6px;
  left: 0;
  line-height: 0;
}

.service-details-style4-text-box-three .single-box .icon span {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  line-height: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-details-style4-text-box-three .single-box:hover .icon span {
  transform: scale(0.9);
}


.service-details-style4-text-box-three .single-box .text {
  position: relative;
  display: block;
}

.service-details-style4-text-box-three .single-box .text h3 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 4px;
}

.service-details-style4-text-box-three .single-box .text p {
  font-weight: 500;
}

.service-details-choose-box {
  position: relative;
  display: block;
  padding-top: 53px;
}

.service-details-choose-box .inner-title {
  position: relative;
  display: block;
  padding-bottom: 31px;
}

.service-details-choose-box .inner-title h2 {
  font-size: 32px;
  line-height: 40px;
}

.service-details-choose-box .accordion-box {
  position: relative;
  display: block;
}

.service-details-choose-box .accordion-box .block .acc-content p {
  font-weight: 500;
}




.service-details-sidebar-box {
  position: relative;
  display: block;
}

.service-details-page-links {
  position: relative;
  display: block;
  background-color: #edf0f9;
  border-radius: 8px;
  padding: 31px 35px 50px;
}

.service-details-page-links .inner-title {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 21px;
}

.service-details-page-links .inner-title h3 {
  font-size: 28px;
  line-height: 38px;
}

.service-details-page-links .inner-title .border-box {
  position: relative;
  display: block;
  top: 4px;
  width: 20px;
  height: 2px;
  margin-left: 15px;
  background-color: var(--thm-black);
}

.service-details-page-links ul {
  position: relative;
  display: block;
  border-top: 1px solid #d1d3dd;
}

.service-details-page-links ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid #d1d3dd;
  padding: 16px 0 16px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-details-page-links ul li a {
  position: relative;
  display: block;
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-details-page-links ul li.current a,
.service-details-page-links ul li a:hover {
  color: var(--thm-base);
  padding-left: 5px;
}



.sidebar-download-box {
  position: relative;
  display: block;
  padding-top: 60px;
}

.sidebar-download-box .inner-title {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-download-box .inner-title h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}

.sidebar-download-box .dwn-btn {
  position: relative;
  display: block;
}

.sidebar-download-box .dwn-btn a {
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--thm-font);
  line-height: 60px;
  padding: 4px 0 6px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}




/*** 
=============================================
    Benefits Area Style      
=============================================
***/
.benefits-area {
  position: relative;
  display: block;
  background-color: #e9f2f8;
  padding: 120px 0 90px;
  z-index: 10;
}

.benefits-area-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-color: #e9f2f8;
  background-blend-mode: color-burn;
  opacity: 0.60;
  z-index: -1;
}

.benefits-area .sec-title {
  padding-bottom: 63px;
}

.benefits-area .sec-title .sub-title {
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.benefits-area .sec-title .sub-title h5 {
  margin-left: 10px;
  margin-right: 10px;
}

.benefits-area .sec-title p {
  color: #494949;
  margin: 10px 0 0;
}

.benefits-area .single-choose-box-style1 {
  padding: 34px 25px 34px;
  margin-bottom: 30px;
}

.benefits-area .single-choose-box-style1 .icon span {
  font-size: 55px;
  line-height: 55px;
}



/*** 
=============================================
    Repairing Area Style      
=============================================
***/
.repairing-area {
  position: relative;
  display: block;
  background-color: #121a29;
  padding: 120px 0 120px;
  z-index: 10;
}

.repairing-area .auto-container {
  max-width: 1880px;
  padding: 0 15px;
}

.pattern-bg-style2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-color: #121a29;
  background-blend-mode: soft-light;
  opacity: 0.20;
  z-index: -1;
}

.repairing-content-box {
  position: relative;
  display: block;
}

.repairing-content-box .sec-title {
  padding-bottom: 32px;
}

.repairing-content-box .sec-title h2 {
  color: #ffffff;
}

.repairing-content-box .text {
  position: relative;
  display: block;
  max-width: 570px;
  padding-bottom: 37px;
}

.repairing-content-box .text p {
  color: rgba(255, 255, 255, 0.70);
  line-height: 30px;
  font-family: var(--thm-font-2);
}


.repairing-content-box ul {
  position: relative;
  display: block;
}

.repairing-content-box ul li {
  position: relative;
  display: block;
  padding-left: 40px;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--thm-font-2);
}

.repairing-content-box ul li+li {
  margin-top: 12px;
}

.repairing-content-box ul li .icon {
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 26px;
  font-weight: 700;
  background: #00B1E6;
  background: repeating-linear-gradient(to top, #790415 0%, #c50f29 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.repairing-content-box ul li .icon span {
  font-weight: 700;
}


.facts-content-box-style2 {
  position: relative;
  display: block;
  padding-left: 80px;
}

.facts-content-box-style2:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  bottom: 0;
  width: 1px;
  background-color: #ffffff;
  opacity: 0.20;
}

.facts-content-box-style2 ul {
  position: relative;
}

.facts-content-box-style2 .single-fact-counter {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
  margin-bottom: 41px;
}

.facts-content-box-style2 .single-fact-counter:last-child {
  margin-bottom: 0;
}

.facts-content-box-style2 .single-fact-counter .icon {
  width: 90px;
  top: 3px;
}

.facts-content-box-style2 .single-fact-counter .count-box {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 50px;
  line-height: 50px;
  font-weight: 900;
  font-family: var(--thm-font-2);
}

.facts-content-box-style2 .single-fact-counter .title {
  padding-top: 10px;
}

.facts-content-box-style2 .single-fact-counter .title h6 {
  color: rgba(255, 255, 255, 0.70);
  font-size: 20px;
  font-weight: 400;
}



/*** 
=============================================
    History Area Style      
=============================================
***/
.history-area {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.history-img-box1 {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 30px;
}

.history-img-box1 img {
  width: 100%;
}



.history-text-box1 {
  position: relative;
  display: block;
}

.history-text-box1 .sec-title {
  padding-bottom: 21px;
}

.history-text-box1 .top-text {
  position: relative;
  display: block;
  padding-bottom: 10px;
}

.history-text-box1 .top-text p {
  color: var(--thm-black);
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.history-text-box1 .bottom-text {
  position: relative;
  display: block;
}

.history-text-box1 .bottom-text p+p {
  margin-top: 24px;
}



.mission-content-box--style2 {
  border-top: none;
  margin-top: 30px;
  padding-top: 0;
}

.mission-content-box--style2 .img-box {
  width: 340px;
}

.mission-content-box--style2 .text-box {
  margin-left: 60px;
  margin-right: 100px;
}



.our-company-history-box {
  position: relative;
  display: block;
  border-top: 1px solid #e0e0e0;
  margin-top: 100px;
  padding-top: 93px;
}

.our-company-history-box ul {
  position: relative;
  display: block;
}

.our-company-history-box ul:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 54px;
  bottom: 110px;
  width: 1px;
  background: #d2d2d2;
  z-index: -1;
}

.our-company-history-box ul li {
  position: relative;
  display: block;
  margin-bottom: 61px;
}

.our-company-history-box ul li:last-child {
  margin-bottom: 0;
}

.history-single-box {
  position: relative;
  display: block;
  padding-left: 170px;
}

.history-single-box .year-box {
  position: absolute;
  top: 7px;
  left: 0;
  width: 110px;
  height: 110px;
  background-color: var(--thm-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.history-single-box .year-box:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-black);
  content: "";
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.history-single-box:hover .year-box:before {
  transform: scaleX(1.0);
}

.history-single-box .year-box h2 {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 32px;
  line-height: 32px;
  font-weight: 600;
  font-family: var(--thm-font);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.history-single-box:hover .year-box h2 {
  transform: scale(1.05);
}




.history-single-box .text-box {
  position: relative;
  display: block;
}

.history-single-box .text-box h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 900;
  margin: 0 0 10px;
}

.history-single-box .text-box p {
  color: var(--thm-gray);
}



.history-main-img-box {
  position: relative;
  display: block;
  max-width: 830px;
  width: 100%;
  margin: 0 auto;
  padding-top: 33px;
}

.history-main-img-box .single-img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 30px;
}

.history-main-img-box .single-img-box img {
  width: 100%;
  transition: all 1500ms ease;
}

.history-main-img-box .single-img-box:hover img {
  transform: scale(1.05) rotate(2deg);
}



/** enquirey-section **/
.enquirey-section {
  position: relative;
  z-index: 10;
}

.enquirey-section .inner-container {
  position: relative;
  display: block;
  padding: 50px 0px 50px 70px;
  margin-top: -35px;
  z-index: 1;
}

.enquirey-section .inner-container:before {
  position: absolute;
  content: '';
  width: 5000px;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: #f6c61d;
}

.enquirey-section .inner-container .shape {
  position: absolute;
  left: 10px;
  top: -63px;
  width: 201px;
  height: 70px;
  background-repeat: no-repeat;
}

.enquirey-section .form-inner {
  position: relative;
  padding-right: 215px;
  margin-left: 0px;
}

.enquirey-section .form-inner .form-group {
  position: relative;
  margin-bottom: 0px;
  padding: 0px 10px;
}

.enquirey-section .form-inner .form-group input[type='text'],
.enquirey-section .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 45px;
  background: #fff;
  border: 0px solid #ffffff;
  line-height: 45px;
  resize: none;
  color: #383838;
  font-size: 17px;
  font-family: var(--thm-font);
  padding: 0px 20px 0px 50px;
}

.enquirey-section .form-inner .form-group .icon {
  position: absolute;
  left: 30px;
  top: 11px;
  font-size: 20px;
  color: #4e4e4e;
  z-index: 1;
}

.enquirey-section .form-inner .message-btn {
  position: absolute;
  top: 0px;
  right: 0px;
}

.enquirey-section .form-inner .message-btn button[type="submit"] {
  position: relative;
  display: block;
  width: 192px;
  height: 45px;
  line-height: 45px;
  background: #031640;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.045em;
  font-family: var(--thm-font-2);
  text-transform: uppercase;
  transition: all 500ms ease;
}

.enquirey-section .form-inner .message-btn button[type="submit"]:hover {
  color: var(--thm-black);
  background-color: #ffffff;
}



/*** 
=============================================
    Benefits Style2 Area Style      
=============================================
***/
.benefits-style2-area {
  position: relative;
  display: block;
  background-color: #ecf1f5;
  padding: 120px 0 90px;
  z-index: 10;
}

.benefits-style2-area .sec-title {
  padding-bottom: 53px;
}

.benefits-style2-area .sec-title .sub-title {
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.benefits-style2-area .sec-title .sub-title h5 {
  margin-left: 10px;
  margin-right: 10px;
}

.benefits-style2-area .sec-title p {
  color: #494949;
  margin: 10px 0 0;
}




.single-benefits-box {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 46px 30px 43px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  margin-bottom: 30px;
}

.single-benefits-box:hover {
  transform: translateY(-5px);
}

.single-benefits-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  background-color: var(--thm-base);
  border-radius: 5px;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease,
    -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.single-benefits-box:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}



.single-benefits-box__inner {
  position: relative;
  display: block;
  padding-left: 75px;
}

.single-benefits-box .icon {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 50px;
  line-height: 50px;
  color: var(--thm-base);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-benefits-box:hover .icon {
  color: #ffffff;
}

.single-benefits-box .text {
  position: relative;
  display: block;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}


.single-benefits-box .text h3 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 14px;
}

.single-benefits-box .text h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-benefits-box .text p {
  transition: all 200ms linear;
  transition-delay: 0.2s;
}

.single-benefits-box:hover .text h3 a,
.single-benefits-box:hover .text p {
  color: #ffffff;
}



/*** 
=============================================
    Company History Style2   
=============================================
***/
.company-history-style2-area {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  background-color: #ffffff;
  z-index: 10;
}

.company-history-style2-area .sec-title {
  padding-bottom: 20px;
}

.company-history-style2-area .sec-title h2 {
  color: #ffffff;
}

.company-history-style2-area-bg-one {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 60%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  z-index: -1;
}

.company-history-style2-area-bg-one:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  background: rgb(24, 26, 31);
  background: linear-gradient(270deg, rgba(24, 26, 31, 1) 0%, rgba(24, 26, 31, 1) 20%, rgba(24, 26, 31, 0.9023984593837535) 70%, rgba(24, 26, 31, 0.8603816526610644) 81%);
}


.company-history-style2-area-bg-two {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}

.company-history-style2-area-bg-two .line-left {
  position: absolute;
  top: 0;
  left: 144px;
  bottom: 0;
  width: 1px;
  background-color: #ffffff;
  opacity: 0.30;
}

.company-history-style2-area-bg-two .line-right {
  position: absolute;
  top: 0;
  left: 244px;
  bottom: 0;
  width: 1px;
  background-color: #ffffff;
  opacity: 0.30;
}




.company-history-style2__content {
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  padding-right: 70px;
  padding-bottom: 153px;
}

.company-history-style2__content .top-text {
  margin-bottom: 34px;
}

.company-history-style2__content .top-text p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #ffffff;
}

.company-history-style2__content .text-1 {
  margin-bottom: 30px;
}

.company-history-style2__content .text-1 p {
  color: #ffffff;
}

.company-history-style2__content .text-2 {
  position: relative;
  display: block;
}

.company-history-style2__content .text-2 p {
  color: #ffffff;
}



.happy-customers-box {
  position: absolute;
  bottom: 0;
  right: -150px;
  width: 190px;
  background-color: var(--thm-base);
  text-align: center;
  padding: 36px 0 32px;
}

.happy-customers-box .icon {
  position: relative;
  display: block;
  line-height: 0;
}

.happy-customers-box .icon span {
  color: #ffffff;
  font-size: 65px;
  line-height: 65px;
}

.happy-customers-box .title-box {
  position: relative;
  display: block;
  padding-top: 20px;
}

.happy-customers-box .title-box h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}



/*** 
=============================================
    Service Page Css      
=============================================
***/
.service-page {
  position: relative;
  display: block;
  background-color: #edeef5;
  padding: 120px 0 113px;
  z-index: 10;
}

.service-page .sec-title {
  padding-bottom: 53px;
}

.service-page .sec-title .sub-title {
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.service-page .sec-title .sub-title .border-left {
  width: 40px;
}

.service-page .sec-title .sub-title .border-right {
  width: 40px;
}

.service-page .sec-title .sub-title h5 {
  margin-left: 10px;
  margin-right: 10px;
}

.service-page .sec-title p {
  color: #494949;
  margin: 10px 0 0;
}




.single-service-style7 {
  position: relative;
  display: block;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.single-service-style7:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
}


.single-service-style7 .img-holder {
  position: relative;
  display: block;
}

.single-service-style7 .img-holder .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.single-service-style7 .img-holder .inner:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 0%;
  background-color: var(--thm-base);
  opacity: 0.70;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  z-index: 1;
}

.single-service-style7:hover .img-holder .inner:before {
  height: 100%;
  top: 0px;
}

.single-service-style7 .img-holder .inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  z-index: 1;
  transition: all 500ms ease;
  background-image: linear-gradient(0deg,
      var(--thm-black) 0%,
      rgba(255, 255, 255, 0) 60%);
}

.single-service-style7:hover .img-holder .inner::after {
  opacity: 0;
}


.single-service-style7 .img-holder .inner img {
  width: 100%;
  transform: scale(1.0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style7:hover .img-holder .inner img {
  transform: scale(1.05) rotate(1deg);
}

.single-service-style7 .img-holder .icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 40px;
  bottom: -40px;
  width: 90px;
  height: 80px;
  border-radius: 8px;
  background-color: #ffffff;
  line-height: 0;
  z-index: 5;
}

.single-service-style7 .img-holder .icon span {
  position: relative;
  display: block;
  line-height: 0;
}

.single-service-style7 .img-holder .icon span:before {
  color: var(--thm-base);
  font-size: 55px;
  line-height: 55px;
}

.single-service-style7 .title-holder {
  position: relative;
  display: block;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #ffffff;
  padding: 53px 40px 42px;
}

.single-service-style7 .title-holder h3 {
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 2px;
}

.single-service-style7 .title-holder h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style7 .title-holder h3 a:hover {
  color: var(--thm-base);
}

.single-service-style7 .title-holder .text {
  position: relative;
  display: block;
}

.single-service-style7 .title-holder .text p {
  font-weight: 500;
}


.single-service-style7 .btn-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

.single-service-style7 .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 14px;
  line-height: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--thm-font-2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-service-style7 .btn-box a span {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  top: 3px;
  padding-left: 4px;
  font-size: 18px;
}

.single-service-style7 .btn-box a:hover {
  color: var(--thm-black);
  letter-spacing: normal;
}


.service-page__bottom {
  position: relative;
  display: block;
  margin-top: 78px;
}

.service-page__bottom h2 {
  font-size: 45px;
  line-height: 56px;
  margin-bottom: 31px;
}

.service-page__bottom .text-top {
  margin: 0;
}

.service-page__bottom .text-top p {
  color: #242424;
  font-size: 20px;
}

.service-page__bottom .bottom-text {
  position: relative;
  display: block;
  padding-top: 37px;
}

.service-page__bottom .bottom-text p {
  color: #242424;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}



/*** 
=============================================
    project Page One Style      
=============================================
***/
.project-page-one {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 113px;
  z-index: 10;
}

.project-page-one .sec-title {
  padding-bottom: 50px;
}

.project-page-one .sec-title .sub-title {
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.project-page-one .sec-title .sub-title .border-left {
  width: 25px;
}

.project-page-one .sec-title .sub-title .border-right {
  width: 25px;
}

.project-page-one .sec-title .sub-title h5 {
  margin-left: 10px;
  margin-right: 10px;
}


.project-menu-box {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 51px;
}

.project-filter {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.project-filter li {
  position: relative;
  display: inline-block;
  float: none;
  margin: 0 18px 10px;
}

.project-filter li .filter-text {
  position: relative;
  display: block;
  color: #242424;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all .4s ease;
  z-index: 1;
  font-family: var(--thm-font);
}

.project-filter li .filter-text:before {
  position: absolute;
  left: -1px;
  bottom: -1px;
  right: -1px;
  height: 1px;
  content: "";
  background: var(--thm-base);
  transform: scaleX(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.project-filter li:hover .filter-text:before,
.project-filter li.active .filter-text:before {
  transform: scaleX(1.0);
}

.project-filter li:hover .filter-text,
.project-filter li.active .filter-text {
  color: var(--thm-base);
}

.project-filter li .count {
  display: none;
}


.project-page-one .auto-container {
  max-width: 1880px;
  padding: 0 15px;
}

.project-page-one .single-project-item {
  margin-bottom: 30px;
}


.load-more-btn-one {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 32px;
}

.load-more-btn-one a {
  color: var(--thm-black);
  font-size: 18px;
  font-weight: 700;
}

.load-more-btn-one a span {
  position: relative;
  display: inline-block;
  padding-left: 5px;
  font-size: 15px;
  font-weight: 700;
}



/*** 
=============================================
    project Page Two Style      
=============================================
***/
.project-page-two {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 90px;
  z-index: 10;
}

.project-page-two .sec-title {
  padding-bottom: 53px;
}

.project-page-two .sec-title .sub-title {
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.project-page-two .sec-title .sub-title .border-left {
  width: 25px;
}

.project-page-two .sec-title .sub-title .border-right {
  width: 25px;
}

.project-page-two .sec-title .sub-title h5 {
  margin-left: 10px;
  margin-right: 10px;
}

.project-page-two .sec-title p {
  color: #494949;
  margin: 10px 0 0;
}



.project-page-two .single-project-item--style2 {
  margin-bottom: 30px;
}

.single-project-item--style2 .img-holder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  z-index: 1;
  transition: all 500ms ease;
  opacity: 0.10;
  background-image: linear-gradient(0deg, var(--thm-black) 10%, rgba(255, 255, 255, 0.0) 90%);
}

.single-project-item--style2:hover .img-holder::before {
  opacity: 0;
}

.single-project-item--style2 .img-holder .overlay-button a {
  background-color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--thm-base);
  font-size: 25px;
  line-height: 50px;
}

.single-project-item--style2 .img-holder .overlay-button a::before {
  border-radius: 50%;
  transform-origin: right;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  background-color: rgba(var(--thm-base-rgb), 1.0);
}



.single-project-item--style2 .img-holder .overlay-title {
  padding: 0 30px 28px;
  padding-right: 20px;
}

.single-project-item--style2 .img-holder .overlay-title h4 {
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 4px;
  font-weight: 600;
  font-family: var(--thm-font);
}

.single-project-item--style2 .img-holder .overlay-title h4 a:hover {
  color: var(--thm-base);
}

.single-project-item--style2 .img-holder .overlay-title p {
  color: rgba(255, 255, 255, 0.70);
  font-weight: 400;
}




/*---------------------------------------
  Faq Page One Css
-----------------------------------------*/
.faq-page-one {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding: 120px 0 120px;
  z-index: 10;
}

.faq-page-one .sec-title {
  padding-bottom: 43px;
}

.faq-page-one .sec-title .text {
  position: relative;
  display: block;
  padding-top: 10px;
}

.faq-page-one .sec-title .text p {
  color: #444444;
}


.faq-search-box {
  position: relative;
  display: block;
  max-width: 100%;
  width: 100%;
  margin-bottom: 60px;
}

.faq-search-box__inner {
  position: relative;
  display: block;
}

.faq-search-box form.search-form {
  position: relative;
  display: block;
  width: 100%;
}

.faq-search-box .search-form input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 60px;
  border-radius: 7px;
  font-family: var(--thm-font);
  transition: all 500ms ease 0s;
}

.faq-search-box .search-form button {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 50px;
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  display: block;
  text-align: center;
  border-radius: 0%;
  border: 0px solid #e7e7e8;
  transition: all 500ms ease 0s;
}

.faq-search-box .search-form button i {
  position: relative;
  top: 2px;
  color: var(--thm-black);
  font-size: 20px;
}

.faq-search-box .search-form input[type="text"]:focus {
  color: #000;
}


.faq-content-box {
  position: relative;
  display: block;
}



/*** 
=============================================
    Faq Form Area Style      
=============================================
***/
.faq-form-area {
  position: relative;
  display: block;
  background-color: #edf1f4;
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 10;
}

.faq-form-area-img {
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: -1;
}

.faq-form-area-img img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}


.faq-form-box {
  position: relative;
  display: block;
}

.faq-form-box .top-title {
  position: relative;
  display: block;
  margin-top: -9px;
  padding-bottom: 24px;
}

.faq-form-box .top-title h2 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 900;
}


.faq-form-box form {
  position: relative;
  display: block;
  max-width: 950px;
}

.faq-form-box form .input-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.faq-form-box form input[type="text"],
.faq-form-box form input[type="email"],
.faq-form-box form textarea {
  position: relative;
  display: block;
  background: transparent;
  width: 100%;
  height: 60px;
  border: 0px solid #e3e3e3;
  border-bottom: 2px solid #e3e3e3;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  padding-left: 0px;
  padding-right: 0px;
  border-radius: 0px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
}

.faq-form-box form textarea {
  height: 170px;
}

.faq-form-box form input[type="text"]:focus {
  color: #000000;
  border-color: var(--thm-base);
}

.faq-form-box form input[type="email"]:focus {
  color: #000000;
  border-color: var(--thm-base);
}

.faq-form-box form textarea:focus {
  color: #000000;
  border-color: var(--thm-base);
}


.faq-form-box form input[type="text"]::-webkit-input-placeholder {
  color: #444444;
}

.faq-form-box form input[type="text"]:-moz-placeholder {
  color: #444444;
}

.faq-form-box form input[type="text"]::-moz-placeholder {
  color: #444444;
}

.faq-form-box form input[type="text"]:-ms-input-placeholder {
  color: #444444;
}


.faq-form-box form input[type="email"]::-webkit-input-placeholder {
  color: #444444;
}

.faq-form-box form input[type="email"]:-moz-placeholder {
  color: #444444;
}

.faq-form-box form input[type="email"]::-moz-placeholder {
  color: #444444;
}

.faq-form-box form input[type="email"]:-ms-input-placeholder {
  color: #444444;
}


.faq-form-box form textarea::-webkit-input-placeholder {
  color: #444444;
}

.faq-form-box form textarea:-moz-placeholder {
  color: #444444;
}

.faq-form-box form textarea::-moz-placeholder {
  color: #444444;
}

.faq-form-box form textarea:-ms-input-placeholder {
  color: #444444;
}


.faq-form-box form .button-box {
  position: relative;
  display: block;
  padding-top: 5px;
}

.faq-form-box form .button-box button {}

















/*** 
=============================================
    Error Page Area Style      
=============================================
***/
.error-page-area {
  position: relative;
  display: block;
  padding: 112px 0 120px;
  background: #ffffff;
  z-index: 10;
}

.error-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-content .big-title {
  position: relative;
  display: block;
  z-index: 1;
}

.error-content .big-title h2 {
  color: var(--thm-base);
  font-size: 72px;
  line-height: 70px;
  font-weight: 800;
  text-transform: uppercase;
}

.error-content .title {
  position: relative;
  display: block;
  padding-top: 23px;
  padding-bottom: 28px;
}

.error-content .title h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}

.error-content .text {
  position: relative;
  display: block;
  padding-bottom: 29px;
}

.error-content .text p {
  margin: 0;
}

.error-page-search-box {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
}

.error-page-search-box form.search-form {
  position: relative;
  display: block;
  width: 100%;
}

.error-page-search-box .search-form input[type="text"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 0px;
  background: #ffffff;
  border: 1px solid #f7f1eb;
  color: var(--thm-gray);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .1em;
  padding-left: 30px;
  padding-right: 60px;
  transition: all 500ms ease 0s;
  font-family: var(--thm-font);
}

.error-page-search-box .search-form button {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: var(--thm-base);
  color: #ffffff;
  font-size: 16px;
  line-height: 10px;
  display: block;
  text-align: center;
  border: 0px solid #e1e1e1;
  transition: all 500ms ease 0s;
}

.error-page-search-box .search-form button i {
  font-size: 16px
}

.error-page-search-box .search-form input[type="text"]:focus {
  color: var(--thm-primary);
  border-color: var(--thm-base);
}

.error-page-search-box .search-form input[type="text"]:focus+button,
.error-page-search-box .search-form button:hover {
  color: #fff;
}

.error-page-search-box .search-form input::-webkit-input-placeholder {
  color: #757575;
}

.error-page-search-box .search-form input:-moz-placeholder {
  color: #757575;
}

.error-page-search-box .search-form input::-moz-placeholder {
  color: #757575;
}

.error-page-search-box .search-form input:-ms-input-placeholder {
  color: #757575;
}

.error-content .btns-box {
  line-height: 0;
  padding-top: 20px;
}

.error-content .btns-box a {
  padding-left: 40px;
  padding-right: 40px;
}

.error-content .btns-box a:after {}





/* Hidden Bar */
.hidden-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  direction: rtl;
  z-index: 99999;
}

.hidden-sidebar .wrapper-box {
  height: 100%;
}

.hidden-sidebar .content-wrapper {
  position: relative;
  display: block;
  direction: ltr;
  padding: 80px 40px;
  background-color: #0a1222;
}

.hidden-sidebar-close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.10);
  width: 70px;
  height: 70px;
  color: #fff;
  font-size: 30px;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.hidden-sidebar-close:hover {
  color: var(--thm-base);
  background-color: #ffffff;
}



.hidden-sidebar .logo {
  margin-bottom: 35px;
}

.hidden-sidebar .logo a {
  position: relative;
  display: inline-block;
}

.hidden-sidebar .text-widget .text {
  color: #909398;
  font-size: 18px;
  margin-bottom: 0;
}



.hidden-sidebar .sidebar-widget {
  margin-bottom: 40px;
}

.pdf-widget {
  position: relative;
}

.pdf-widget .row {
  margin: 0 -7.5px;
}

.pdf-widget .column {
  padding: 0 7.5px;
}

.pdf-widget .content {
  position: relative;
  display: block;
  background-color: #fff;
  text-align: center;
  padding: 30px 10px;
  margin-bottom: 20px;
}

.pdf-widget .content .icon {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.pdf-widget .content .icon i {
  color: var(--thm-base);
  font-size: 40px;
  line-height: 40px;
}

.pdf-widget .content h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}



.contact-widget {
  position: relative;
}

.contact-widget .icon-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-widget .icon {
  position: relative;
  display: block;
  width: 40px;
  color: var(--thm-base);
  font-size: 20px;
  margin-top: 5px;
}

.contact-widget .icon.margintop {
  margin-top: 9px;
}

.contact-widget .text {
  color: #909398;
  line-height: 28px;
  font-family: var(--thm-font);
}

.contact-widget .text a {
  color: #909398;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-widget .text a:hover {
  color: #ffffff;
}

.contact-widget .text strong {
  position: relative;
  display: block;
  color: #fff;
  font-weight: 700;
  font-family: var(--thm-font-2);
}

.hidden-sidebar .link-btn {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 30px;
}



/* Cursor Style */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  display: none;
  background-color: rgba(var(--thm-base-rgb), .80);
  overflow: hidden;
  cursor: none;
  z-index: 999;
}

.cursor {
  position: absolute;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -o-transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  visibility: hidden;
}

.cursor {
  visibility: visible;
}

.cursor.active {
  opacity: 0.7;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -o-transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  visibility: hidden;
}

.cursor-follower {
  visibility: visible;
}

.cursor-follower.active {
  opacity: 0.7;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.cursor-follower.hovered {
  opacity: 0.08;
}

.cursor-follower.close-cursor:before {
  position: absolute;
  content: '';
  height: 25px;
  width: 2px;
  background: #fff;
  left: 48%;
  top: 12px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: inline-block;
}

.cursor-follower.close-cursor:after {
  position: absolute;
  content: '';
  height: 25px;
  width: 2px;
  background: #fff;
  right: 48%;
  top: 12px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}








#ui-datepicker-div.ui-widget-content {
  border: 1px solid #c5c5c5;
  background: #fff none repeat scroll 0 0;
  border: 1px solid #777;
  color: #252525;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
  z-index: 999 !important;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: #151515 none repeat scroll 0 0;
  border: 2px solid #252525;
  border-radius: 0;
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: #000000 !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #333333 !important;
  background: #333333 !important;
  color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: #fff;
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: #43c3ea;
  color: #fff;
  border-color: #43c3ea;
}



/*** 
=============================================
    Element Page Css
=============================================
***/


.space{
  padding: 50px 0px;
}
.title-area {
  margin-bottom: calc(40px - 12px);
  position: relative;
}
.sub-title6 {
  font-size: 16px;
  font-weight: 600;
  color: #0E121D;
  text-transform: uppercase;
  margin-top: -0.41em;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.sub-title6 .shape {
  display: inline-block;
  height: 3px;
  width: 40px;
  background-color: #FF5E14;
  border-radius: 99px;
  position: relative;
}
.sub-title6 .shape.left .dots {
  left: -6px;
}
.sub-title6 .dots {
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: inherit;
  border-radius: 99px;
  position: absolute;
  top: 0;
}
.sub-title6 .shape.left .dots:before {
  left: -6px;
}
.sub-title6 .shape.right .dots:before {
  right: -6px;
}
.sub-title6 .shape.left .dots:after {
  left: -12px;
}
.sub-title6 .dots:before, .sub-title6 .dots:after {
  content: '';
  height: inherit;
  width: inherit;
  background-color: inherit;
  border-radius: inherit;
  display: inline-block;
  position: absolute;
  top: 0;
}
.sub-title6 .shape.right .dots {
  right: -6px;
}
.sub-title6 .dots {
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: inherit;
  border-radius: 99px;
  position: absolute;
  top: 0;
}
.sub-title6 .shape.right .dots:after {
  right: -12px;
}
.service-list-wrap:not(:nth-child(3n)) {
  border-right: 1px solid #E4E4E4;
}
.service-list-wrap:not(:nth-last-child(-n+3)) {
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 35px;
}
.service-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.service-list_icon {
  min-width: 60px;
}
.service-list_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.service-list_title {
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.box-title {
  font-size: 20px;
  line-height: 1.417;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 5px;
}
.service-list_text {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
}
.service-list_btn {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #0E121D;
}
.service-list_btn i {
  --btn-size: 40px;
  box-shadow: 0px 0px 10px rgba(14,18,29,0.12);
  background-color: #fff;
  color: #FF5E14;
  font-size: 14px;
  margin-right: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 10px;
  border-radius: 30px;
}
.icon-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: var(--btn-font-size, 16px);
  background-color: var(--icon-bg, #fff);
  color: var(--title-color);
  text-align: center;
  border-radius: 50%;
  border: none;
}
.service-list-wrap {
  padding: 25px;
}
.service-list:hover .service-list_icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.service-list_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.helms {
  margin: 0 auto;
  margin-bottom: 40px;
}
.helms img {
  margin: 0 auto;
  display: block;
}
.helms h3 {
  margin: 12px 0px;
  text-align: center;
}
.helms p {
  width: 65%;
  margin: 0 auto;
  text-align: center;
}
.services-inside {
    margin: 0;
    padding: 0;
    display: block;
    border-right: 1px solid #dfdfdf;
}
.services-inside img{
  mix-blend-mode: darken;
}
.services .thumbnail {
  display: block;
  max-height: none!important;
  text-align: inherit;
  margin-bottom: 40px;
}
.services .thumbnail a {
  display: block;
  position: relative;
}
.services .thumbnail .icon {
  background: #f0542d;
  color: #fff;
  padding: 12px 21px;
  border-radius: 100%;
  text-align: center;
  min-height: inherit;
  min-width: inherit;
  position: relative;
  line-height: 100%;
  -webkit-transform: scale(.9);
  -ms-transform: scale(.9);
  transform: scale(.9);
  margin-bottom: 10px;
  border: solid 5px #f0542d;
}
.services .thumbnail .icon:after {
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-top-color: #f0542d;
  border-width: 0.4em;
  margin-left: -0.4em;
  bottom: -0.7em;
  z-index: -1;
}
.services .services-title a {
  color: #000;
}
.services-content ul {
  padding-left: 20px;
  margin-top: 10px;
}
.services-content li {
  list-style: circle;
  font-size: 15px;
}
.services-content li a {
  color: #f0542d;
}
.wcu-img-2 .wcu-experience-wrap {
  font-size: 74px;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  right: 135px;
  color: #d90429;
}
.movingX {
  -webkit-animation: movingX 8s linear infinite;
  animation: movingX 8s linear infinite;
}
.wcu-img-2 .wcu-experience-wrap span {
  font-size: 24px;
  font-weight: 600;
  color: #0E121D;
}
@keyframes movingX {
  0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
  50% {
      -webkit-transform: translateX(50px);
      transform: translateX(50px);
  }
  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
}
.facebo{
  color:#0a58ca;
}
.insta{
  color:#CB2C95;
}
.wcu-box.style2 {
  background: #fff;
  padding: 10px;
  /* box-shadow: 0px 4px 30px 0px rgba(0,0,0,0.06); */
  border-radius: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.wcu-box.style2 .wcu-box_icon {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  color: var(--theme-color);
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.wcu-box_icon {
  color: #fff;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  padding: 8px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-bottom: -23px;
}
.wcu-box.style2 .wcu-box_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}
.wcu-box.style2 .wcu-box_title a {
  color: #0E121D;
}
.wcu-box.style2 .wcu-box_text {
  margin-bottom: -0.5em;
  font-size: 14px;
  line-height: 22px;
}
.wcu-wrap2 .sec-title{
  font-size: 45px;
  color: #001659;
}
.wcu-wrap2 .title-area h3 {
  font-size: 105px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  position: absolute;
  top: -38px;
  right: 45px;
  -webkit-text-stroke-color: rgb(203 203 203 / 41%);
}
.wcu-wrap2 .sec-text{
  font-size: 14px;
}
.featured-projec {
  padding: 50px 0px 170px 0px;
  background-image: url(../images/unsplash-scaled.jpg);
  background-size: contain;
}
.mrg-30{
  margin-top: -230px;
}
.think {
  text-align: center;
  margin-top: 50px;
}
.think .icon {
  font-size: 70px;
  color: #d91b29;
  margin-bottom: 26px;
}
.think .icon span{
  background: #fff;
  padding: 15px;
  border-radius: 60px;
  box-shadow: rgba(149,157,165,.2)0 8px 24px;
}
.think .icn_tittl h3 {
  font-weight: 500;
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 3px;
}
.think .icn_tittl p{
  font-size: 16px;
}
.nav-titl h3{
  font-size: 35px;
}
.aro_icon img{
  margin: 0 auto;
  display: block;
  margin-top: 50%;
}
.video{
  display: flex;
  background-color: #f7f7f7;
}
.video video {
  width: 100%;
}
.video .face{
  writing-mode: vertical-lr;
  padding: 35px;
  font-size: 18px;
  position: relative;
}
.video .face a{
  margin-bottom: 30px;
}
.video .face i {
  transform: rotate(90deg);
}















/* paralax section start here */


.widget_icl_lang_sel_widget {
  position: relative;
  display: inline-block;
  vertical-align: middle
}

.widget_icl_lang_sel_widget img {
  position: relative;
  display: inline-block!important;
  vertical-align: middle;
  top: -1px;
  padding-right: 6px
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  text-align: left;
  box-sizing: border-box
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click:hover .wpml-ls-sub-menu,.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown:hover .wpml-ls-sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-legacy-dropdown,.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-legacy-dropdown {
  padding: 0;
  margin: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
  position: relative;
  display: block;
  padding: 9px 20px;
  color: #001659;
  background-color: #fff;
  border: 1px solid #e8e8e9;
  box-sizing: border-box
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
  color: #ff5e14
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:after,.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:after {
  content: '\33';
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
  display: block;
  font-family: ElegantIcons;
  font-size: 15px;
  line-height: 1
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 14px 20px;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #e8e8e9;
  border-top: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  transition: visibility 0s linear .25s,opacity .25s ease-in-out
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item,.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,.widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
  display: block;
  padding: 7px 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul {
  list-style-type: none;
  margin: 0;
  padding: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 5px 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li:last-child {
  margin-right: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li a {
  display: block
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul {
  list-style-type: none;
  margin: 0;
  padding: 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
  display: block;
  margin: 0;
  padding: 5px 0
}

.widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li a {
  display: block
}

.mkdf-page-footer .widget_icl_lang_sel_widget,.mkdf-side-menu .widget_icl_lang_sel_widget,.mkdf-vertical-menu-area .widget_icl_lang_sel_widget,.wpb_widgetised_column .widget_icl_lang_sel_widget,aside.mkdf-sidebar .widget_icl_lang_sel_widget {
  width: 100%
}

.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click,.mkdf-side-menu .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,.mkdf-side-menu .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click,.mkdf-vertical-menu-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,.mkdf-vertical-menu-area .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click,.wpb_widgetised_column .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,.wpb_widgetised_column .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click,aside.mkdf-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,aside.mkdf-sidebar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
  width: 100%
}

.mkdf-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown,.mkdf-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click {
  width: 140px
}

.mkdf-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,.mkdf-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
  padding: 0;
  line-height: 46px;
  color: #fff;
  background-color: transparent;
  border: 0
}

.mkdf-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:after,.mkdf-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:after {
  right: 0
}

.mkdf-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-horizontal ul li {
  margin-bottom: 0
}

.mkdf-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px
}

.mkdf-top-bar .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child {
  margin-right: 0
}

.mkdf-footer-top-holder .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li,.mkdf-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li,.mkdf-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px
}

.mkdf-footer-top-holder .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child,.mkdf-mobile-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child,.mkdf-page-header .widget_icl_lang_sel_widget .wpml-ls-legacy-list-vertical ul li:last-child {
  margin-right: 0
}

.mkdf-main-menu>ul>li.menu-item-language.has_sub>a>span.item_outer .item_text:after {
  content: '\33';
  position: absolute;
  right: -15px;
  top: 0;
  font-family: ElegantIcons;
  font-size: 15px
}

.mkdf-main-menu>ul>li.menu-item-language a>span.item_outer .item_text {
  position: relative;
  display: table
}

.mkdf-main-menu>ul>li.menu-item-language a>span.item_outer .item_text>* {
  display: table-cell;
  vertical-align: middle
}

.mkdf-main-menu>ul>li.menu-item-language a>span.item_outer .item_text img {
  padding: 5px 6px 0 0
}

.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle,.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
  color: #fff;
  background-color: transparent;
  border-color: #fff
}

.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-item-toggle:hover,.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle:hover {
  color: rgba(255,255,255,.8)
}

.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu,.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  background-color: #363636
}

.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a,.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a {
  color: #fff
}

.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover,.mkdf-page-footer .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-item a:hover {
  color: rgba(255,255,255,.8)
}

@media only screen and (max-width: 1024px) {
  .page-template-blog-standard .mkdf-grid-col-9 .mkdf-blog-holder {
      margin:0 0 40px
  }
}

@media only screen and (max-width: 1024px) {
  .page-template-blog-standard .mkdf-content .mkdf-content-inner>.mkdf-container>.mkdf-container-inner {
      padding-top:120px;
      padding-bottom: 52px
  }
}

.page-template-blog-standard .mkdf-content .mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right {
  margin: 14px 0 0
}

.mkdf-blog-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0 0 120px;
  clear: both;
  box-sizing: border-box
}

@media only screen and (max-width: 1024px) {
  .mkdf-blog-holder.mkdf-three-columns article.mkdf-item-space {
      width:50%
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder.mkdf-three-columns article.mkdf-item-space {
      width:100%
  }
}

.mkdf-blog-holder .tag-gallery .mkdf-single-links-pages-inner>span,.mkdf-blog-holder .tag-pagination .mkdf-single-links-pages-inner>span {
  color: initial;
  line-height: 2.8em
}

.mkdf-blog-holder .tag-gallery.mkdf-post-no-media .mkdf-post-text {
  margin-top: 30px
}

.mkdf-blog-holder article {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box
}

.mkdf-blog-holder article.sticky .mkdf-post-title a {
  color: #ff5e14
}

.mkdf-blog-holder article .mkdf-post-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-blog-holder article .mkdf-post-read-more-button {
  float: left
}

.mkdf-blog-holder article .mkdf-post-info-bottom-right {
  float: right
}

.mkdf-blog-holder article .mkdf-post-info-bottom-right div {
  display: inline-block;
  margin-left: 30px
}

.mkdf-blog-holder article .mkdf-post-image {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%
}

.mkdf-blog-holder article .mkdf-post-image img {
  display: block
}

.mkdf-blog-holder article .mkdf-post-image-background {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  height: 100%;
  background-position: center;
  background-size: cover
}

.mkdf-blog-holder article .mkdf-post-image-background a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

.mkdf-blog-holder article .mkdf-post-image-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  line-height: 1;
  color: #fff
}

.mkdf-blog-holder article .mkdf-post-text {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box
}

.mkdf-blog-holder article .mkdf-post-title {
  margin: 0 0 10px
}

.mkdf-blog-holder article .mkdf-post-excerpt-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 15px 0 0
}

.mkdf-blog-holder article .mkdf-post-excerpt-holder p {
  margin: 0
}

.mkdf-blog-holder article .mkdf-post-excerpt:after {
  content: '...'
}

.mkdf-blog-holder article .mkdf-more-link-container {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 15px 0 0
}

.mkdf-blog-holder article .mkdf-post-info {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-blog-holder article .mkdf-post-info>* {
  position: relative;
  display: inline-block;
  vertical-align: top;
  color: currentColor
}

.mkdf-blog-holder article .mkdf-post-info>* a {
  color: inherit
}

.mkdf-blog-holder article .mkdf-post-info-top {
  margin-bottom: 0
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder article .mkdf-post-info-top {
      line-height:18px
  }
}

.mkdf-blog-holder article .mkdf-post-info-top>div {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 11px 0 0;
  color: #565969;
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder article .mkdf-post-info-top>div {
      line-height:unset
  }
}

.mkdf-blog-holder article .mkdf-post-info-top>div:after {
  content: '/';
  position: absolute;
  top: 1px;
  right: 0;
  font-weight: 500
}

.mkdf-blog-holder article .mkdf-post-info-top>div:last-child {
  padding: 0
}

.mkdf-blog-holder article .mkdf-post-info-top>div:last-child:after {
  content: ''
}

.mkdf-blog-holder article .mkdf-post-info-top>div a {
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  color: inherit
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder article .mkdf-post-info-top>div a {
      line-height:unset
  }
}

.mkdf-blog-holder article .mkdf-post-info-top>div a:hover {
  color: #ff5e14
}

.mkdf-blog-holder article .mkdf-post-info-top>div a:after {
  content: ', '
}

.mkdf-blog-holder article .mkdf-post-info-top>div a:last-child:after {
  display: none
}

.mkdf-blog-holder article .mkdf-post-info-bottom {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding-top: 17px
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-left,.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right {
  width: 50%;
  margin: 2px 0 0
}

@media only screen and (max-width: 1024px) {
  .mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right {
      margin:0
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right {
      width:100%;
      margin: 10px 0 0
  }
}

@media only screen and (min-width: 681px) {
  .mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-left {
      width:50%
  }

  .mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-left {
      float: left
  }

  .mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right {
      text-align: right;
      float: right
  }
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right>div {
  margin-left: 17px
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-post-info-comments:hover {
  color: initial
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-post-info-comments:hover i {
  color: #ff5e14
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-blog-like,.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-post-info-comments-holder {
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969;
  float: right;
  margin-left: 30px;
  color: #001659
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-blog-like i:before,.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-post-info-comments-holder i:before {
  color: #ff5e14
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-blog-like:hover,.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-post-info-comments-holder:hover {
  color: #ff5e14
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-blog-like:hover a,.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-blog-like:hover i,.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-blog-like:hover span,.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-post-info-comments-holder:hover a,.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-post-info-comments-holder:hover i,.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-post-info-comments-holder:hover span {
  color: #ff5e14
}

@media only screen and (max-width: 768px) {
  .mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-blog-like,.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-post-info-comments-holder {
      float:right;
      margin-left: 0;
      margin-left: 30px
  }
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-blog-like i,.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-post-info-bottom-right .mkdf-post-info-comments-holder i {
  margin-right: 10px;
  font-size: 16px
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-tags a {
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  padding: 11px 24px;
  background-color: #f2f3f5;
  margin-right: 15px;
  color: #000;
  border-radius: 2px;
  transition: background .1s ease-in-out
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-tags a {
      display:inline-block;
      margin-bottom: 15px
  }
}

.mkdf-blog-holder article .mkdf-post-info-bottom .mkdf-tags a:hover {
  background-color: #ff5e14;
  color: #fff
}

.mkdf-blog-holder article.format-link .mkdf-post-content:after {
  content: url(../../framework/modules/blog/assets/img/link.svg);
  position: absolute;
  right: 42px;
  top: 63px;
  width: 70px
}

@media only screen and (max-width: 1024px) {
  .mkdf-blog-holder article.format-link .mkdf-post-content:after {
      right:22px;
      top: 63px;
      width: 60px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder article.format-link .mkdf-post-content:after {
      top:35px
  }
}

.mkdf-blog-holder article.format-link .mkdf-post-text {
  padding: 50px 40px 121px;
  background-color: #00235a
}

.mkdf-blog-holder article.format-link .mkdf-post-text .mkdf-post-text-inner {
  margin: 0 18% 0 0
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder article.format-link .mkdf-post-text {
      padding:50px 24px 121px
  }
}

.mkdf-blog-holder article.format-link .mkdf-post-text-main {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  text-align: left
}

.mkdf-blog-holder article.format-link .mkdf-post-mark {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  width: 50px;
  vertical-align: top;
  text-align: left
}

.mkdf-blog-holder article.format-link .mkdf-post-mark .mkdf-link-mark {
  padding-top: 5px;
  font-size: 36px;
  color: #ff5e14
}

.mkdf-blog-holder article.format-link .mkdf-post-link-holder {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  vertical-align: top;
  text-align: left
}

.mkdf-blog-holder article.format-link .mkdf-post-link-holder .mkdf-post-title {
  color: #fff
}

.mkdf-blog-holder article.format-link .mkdf-post-link-holder .mkdf-post-title a:hover {
  color: #ff5e14
}

.mkdf-blog-holder article.format-quote .mkdf-post-content:after {
  content: url(../../framework/modules/blog/assets/img/quote.svg);
  position: absolute;
  right: 38px;
  top: 61px;
  width: 71px
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder article.format-quote .mkdf-post-content:after {
      right:22px;
      top: 63px;
      width: 60px
  }
}

.mkdf-blog-holder article.format-quote .mkdf-post-text {
  padding: 51px 26px 51px 39px;
  background-color: #ff5e14;
  color: #fff
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder article.format-quote .mkdf-post-text {
      padding:60px 24px
  }
}

.mkdf-blog-holder article.format-quote .mkdf-post-text .mkdf-post-text-inner {
  margin: 0 18% 0 0
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder article.format-quote .mkdf-post-text .mkdf-post-text-inner {
      margin:0 20% 0 0
  }
}

.mkdf-blog-holder article.format-quote .mkdf-post-text .mkdf-post-title {
  margin: 0 0 42px;
  color: #fff
}

.mkdf-blog-holder article.format-quote .mkdf-post-text .mkdf-post-title a:hover {
  color: #fff
}

.mkdf-blog-holder article.format-quote .mkdf-post-text .mkdf-quote-author {
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  font-size: 12px
}

.mkdf-blog-holder article.format-quote .mkdf-post-text-main {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  text-align: left
}

.mkdf-blog-holder article.format-quote .mkdf-post-mark {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  width: 50px;
  vertical-align: top;
  text-align: left
}

.mkdf-blog-holder article.format-quote .mkdf-post-mark .mkdf-quote-mark {
  padding-top: 5px;
  font-size: 36px;
  color: #ff5e14
}

.mkdf-blog-holder article.format-quote .mkdf-post-link-holder {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  vertical-align: top;
  text-align: left
}

.mkdf-blog-holder article.format-quote .mkdf-post-author {
  display: inline-block;
  margin-bottom: 23px;
  font-size: 13px;
  line-height: 20px
}

.mkdf-blog-holder article.format-gallery .mkdf-post-image {
  width: 100%
}

.mkdf-blog-holder article.format-gallery .owl-carousel .owl-item {
  z-index: 2
}

.mkdf-blog-holder article.format-gallery .owl-carousel .owl-item.active {
  z-index: 3
}

.mkdf-blog-holder article.format-audio.has-post-thumbnail .mkdf-post-heading {
  position: relative
}

.mkdf-blog-holder article.format-audio.has-post-thumbnail .mkdf-blog-audio-holder {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: inline-block;
  vertical-align: middle
}

.mkdf-blog-holder article.format-audio .mkdf-post-image {
  width: 100%;
  max-width: inherit
}

.mkdf-blog-holder article.format-audio .mkdf-post-image img {
  width: 100%
}

.mkdf-blog-holder article.format-video .mkdf-self-hosted-video {
  max-width: 100%
}

.mkdf-blog-holder article.format-video .mkdf-post-text {
  padding: 0
}

.mkdf-blog-holder article.format-video .mkdf-post-content:after {
  right: 27px;
  top: 43px;
  width: 41px
}

.mkdf-blog-audio-holder .mejs-container,.mkdf-blog-audio-holder .mejs-container .mejs-controls,.mkdf-blog-audio-holder .mejs-embed,.mkdf-blog-audio-holder .mejs-embed body,.mkdf-blog-video-holder .mejs-container,.mkdf-blog-video-holder .mejs-container .mejs-controls,.mkdf-blog-video-holder .mejs-embed,.mkdf-blog-video-holder .mejs-embed body {
  background: 0 0
}

.mkdf-blog-audio-holder .mejs-container,.mkdf-blog-audio-holder .mejs-container .mejs-controls,.mkdf-blog-video-holder .mejs-container,.mkdf-blog-video-holder .mejs-container .mejs-controls {
  height: 40px!important
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls,.mkdf-blog-video-holder .mejs-container .mejs-controls {
  background: #00235a;
  box-sizing: border-box;
  font-family: Yantramanav,sans-serif;
  padding: 0
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls .mejs-button,.mkdf-blog-video-holder .mejs-container .mejs-controls .mejs-button {
  height: 40px;
  width: 40px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls button,.mkdf-blog-video-holder .mejs-container .mejs-controls button {
  background-color: transparent;
  background-image: none;
  border: 0;
  height: 40px;
  margin: 0;
  outline: 0;
  position: relative;
  top: 0;
  width: 40px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls button:before,.mkdf-blog-video-holder .mejs-container .mejs-controls button:before {
  color: #fff;
  display: block;
  font-family: ElegantIcons;
  font-size: 15px;
  height: 40px;
  left: 0;
  line-height: 40px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 40px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-playpause-button.mejs-play button:before,.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-playpause-button.mejs-replay button:before,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-playpause-button.mejs-play button:before,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-playpause-button.mejs-replay button:before {
  content: "\45";
  font-size: 25px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-playpause-button.mejs-pause button:before,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-playpause-button.mejs-pause button:before {
  content: "\60";
  font-size: 25px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-playpause-button.mejs-stop button:before,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-playpause-button.mejs-stop button:before {
  content: "\5e";
  font-size: 25px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-volume-button.mejs-mute button:before,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-volume-button.mejs-mute button:before {
  content: "\79"
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-volume-button.mejs-unmute button:before,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-volume-button.mejs-unmute button:before {
  content: "\78"
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider {
  background: rgba(0,35,90,.7);
  height: 130px;
  width: 36px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-total,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-total {
  background: #fff;
  top: 15px;
  width: 6px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-current,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-current {
  background-color: #ff5e14
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-handle,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-volume-button>a.mejs-volume-slider .mejs-volume-handle {
  display: none
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider,.mkdf-blog-video-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider {
  height: 40px;
  margin-right: 20px;
  width: 100px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mkdf-blog-audio-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mkdf-blog-video-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mkdf-blog-video-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  height: 6px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mkdf-blog-video-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  background: #fff;
  top: 17px;
  width: 100px
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-audio-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mkdf-blog-video-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
      width:62px
  }
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mkdf-blog-video-holder .mejs-container .mejs-controls>a.mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  background-color: #ff5e14
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time {
  color: #fff;
  font-family: Yantramanav,sans-serif;
  font-size: 13px;
  height: 100%;
  line-height: 40px;
  padding: 0 20px;
  width: 40px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time>*,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time>* {
  font-family: inherit
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail {
  font-family: inherit;
  height: 6px;
  margin: 0;
  padding: 0;
  top: 17px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-broadcast,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-broadcast {
  display: none
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total {
  display: block!important;
  background: rgba(255,255,255,.7);
  height: 6px;
  margin: 0
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total span,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total span {
  height: 6px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-buffering,.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered,.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-marker,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-buffering,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-marker {
  background: 0 0
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-loaded,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-loaded {
  background: #fff
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-current,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-current {
  background: #ff5e14
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-hovered {
  background: rgba(255,94,20,.7)
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float,.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-corner,.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-current,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-corner,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-total .mejs-time-float-current {
  background: 0 0;
  border: 0;
  color: #fff;
  top: -20px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle,.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle-content,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-time-rail .mejs-time-handle-content {
  border: none;
  height: 6px;
  left: 0;
  top: 0;
  width: 6px
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-fullscreen-button button:before,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-fullscreen-button button:before {
  content: "\30"
}

.mkdf-blog-audio-holder .mejs-container .mejs-controls>.mejs-fullscreen-button.mejs-unfullscreen button:before,.mkdf-blog-video-holder .mejs-container .mejs-controls>.mejs-fullscreen-button.mejs-unfullscreen button:before {
  content: "\2f"
}

.mkdf-self-hosted-video-holder {
  overflow: hidden
}

.mkdf-self-hosted-video-holder video {
  object-fit: cover
}

.mkdf-blog-pagination-wp {
  display: none
}

.mkdf-blog-pagination {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 0;
  clear: both
}

.mkdf-blog-pagination ul {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center
}

.mkdf-blog-pagination ul .mkdf-pl-pagination-next:hover,.mkdf-blog-pagination ul .mkdf-pl-pagination-previous:hover {
  background-color: transparent
}

.mkdf-blog-pagination ul .mkdf-pl-pagination-next:hover a,.mkdf-blog-pagination ul .mkdf-pl-pagination-previous:hover a {
  color: #ff5e14
}

.mkdf-blog-pagination ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  border-radius: 2px
}

.mkdf-blog-pagination ul li.mkdf-pag-first:hover,.mkdf-blog-pagination ul li.mkdf-pag-last:hover,.mkdf-blog-pagination ul li.mkdf-pag-next:hover,.mkdf-blog-pagination ul li.mkdf-pag-prev:hover {
  background-color: transparent
}

.mkdf-blog-pagination ul li.mkdf-pag-first a,.mkdf-blog-pagination ul li.mkdf-pag-last a,.mkdf-blog-pagination ul li.mkdf-pag-next a,.mkdf-blog-pagination ul li.mkdf-pag-prev a {
  padding: 0;
  line-height: 2em
}

.mkdf-blog-pagination ul li.mkdf-pag-first a:hover,.mkdf-blog-pagination ul li.mkdf-pag-last a:hover,.mkdf-blog-pagination ul li.mkdf-pag-next a:hover,.mkdf-blog-pagination ul li.mkdf-pag-prev a:hover {
  background-color: transparent;
  color: #ff5e14
}

.mkdf-blog-pagination ul li.mkdf-pag-first span,.mkdf-blog-pagination ul li.mkdf-pag-last span {
  margin-top: 1px
}

.mkdf-blog-pagination ul li a,.mkdf-blog-pagination ul li span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  font-size: 16px;
  font-weight: 500;
  line-height: 48px;
  padding: 2px 15px 0 16px
}

.mkdf-blog-pagination ul li span.current {
  color: #fff;
  background-color: #ff5e14;
  border-radius: 2px
}

.mkdf-blog-pagination ul li.mkdf-pag-active,.mkdf-blog-pagination ul li:hover {
  background-color: #ff5e14
}

.mkdf-blog-pagination ul li.mkdf-pag-active a,.mkdf-blog-pagination ul li:hover a {
  color: #fff;
  transition: color .1s ease-in-out
}

.mkdf-blog-pagination ul li.mkdf-pag-first,.mkdf-blog-pagination ul li.mkdf-pag-last,.mkdf-blog-pagination ul li.mkdf-pag-next,.mkdf-blog-pagination ul li.mkdf-pag-prev {
  margin: 0 2px
}

.mkdf-blog-pagination ul li.mkdf-pag-first a,.mkdf-blog-pagination ul li.mkdf-pag-last a,.mkdf-blog-pagination ul li.mkdf-pag-next a,.mkdf-blog-pagination ul li.mkdf-pag-prev a {
  font-size: 24px
}

.mkdf-blog-pagination ul li.mkdf-pag-first a span,.mkdf-blog-pagination ul li.mkdf-pag-last a span,.mkdf-blog-pagination ul li.mkdf-pag-next a span,.mkdf-blog-pagination ul li.mkdf-pag-prev a span {
  display: block;
  line-height: inherit
}

.mkdf-blog-pagination ul li.mkdf-pag-first a span:before,.mkdf-blog-pagination ul li.mkdf-pag-last a span:before,.mkdf-blog-pagination ul li.mkdf-pag-next a span:before,.mkdf-blog-pagination ul li.mkdf-pag-prev a span:before {
  display: block;
  line-height: inherit
}

@media only screen and (max-width: 1024px) {
  .mkdf-blog-pagination {
      margin-top:60px;
      margin-bottom: 80px
  }
}

.mkdf-blog-list-holder.mkdf-bl-pag-standard-shortcodes .mkdf-blog-list {
  opacity: 1;
  transition: opacity .2s ease-out
}

.mkdf-blog-list-holder.mkdf-bl-pag-standard-shortcodes.mkdf-bl-pag-standard-shortcodes-animate .mkdf-blog-list {
  opacity: 0
}

.mkdf-bl-standard-pagination {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 0;
  clear: both
}

.mkdf-bl-standard-pagination ul {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center
}

.mkdf-bl-standard-pagination ul .mkdf-pl-pagination-next:hover,.mkdf-bl-standard-pagination ul .mkdf-pl-pagination-previous:hover {
  background-color: transparent
}

.mkdf-bl-standard-pagination ul .mkdf-pl-pagination-next:hover a,.mkdf-bl-standard-pagination ul .mkdf-pl-pagination-previous:hover a {
  color: #ff5e14
}

.mkdf-bl-standard-pagination ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  border-radius: 2px
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-first:hover,.mkdf-bl-standard-pagination ul li.mkdf-pag-last:hover,.mkdf-bl-standard-pagination ul li.mkdf-pag-next:hover,.mkdf-bl-standard-pagination ul li.mkdf-pag-prev:hover {
  background-color: transparent
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-first a,.mkdf-bl-standard-pagination ul li.mkdf-pag-last a,.mkdf-bl-standard-pagination ul li.mkdf-pag-next a,.mkdf-bl-standard-pagination ul li.mkdf-pag-prev a {
  padding: 0;
  line-height: 2em
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-first a:hover,.mkdf-bl-standard-pagination ul li.mkdf-pag-last a:hover,.mkdf-bl-standard-pagination ul li.mkdf-pag-next a:hover,.mkdf-bl-standard-pagination ul li.mkdf-pag-prev a:hover {
  background-color: transparent;
  color: #ff5e14
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-first span,.mkdf-bl-standard-pagination ul li.mkdf-pag-last span {
  margin-top: 1px
}

.mkdf-bl-standard-pagination ul li a,.mkdf-bl-standard-pagination ul li span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  font-size: 16px;
  font-weight: 500;
  line-height: 48px;
  padding: 2px 15px 0 16px
}

.mkdf-bl-standard-pagination ul li span.current {
  color: #fff;
  background-color: #ff5e14;
  border-radius: 2px
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-active,.mkdf-bl-standard-pagination ul li:hover {
  background-color: #ff5e14
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-active a,.mkdf-bl-standard-pagination ul li:hover a {
  color: #fff;
  transition: color .1s ease-in-out
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-first,.mkdf-bl-standard-pagination ul li.mkdf-pag-last,.mkdf-bl-standard-pagination ul li.mkdf-pag-next,.mkdf-bl-standard-pagination ul li.mkdf-pag-prev {
  margin: 0 2px
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-first a,.mkdf-bl-standard-pagination ul li.mkdf-pag-last a,.mkdf-bl-standard-pagination ul li.mkdf-pag-next a,.mkdf-bl-standard-pagination ul li.mkdf-pag-prev a {
  font-size: 24px
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-first a span,.mkdf-bl-standard-pagination ul li.mkdf-pag-last a span,.mkdf-bl-standard-pagination ul li.mkdf-pag-next a span,.mkdf-bl-standard-pagination ul li.mkdf-pag-prev a span {
  display: block;
  line-height: inherit
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-first a span:before,.mkdf-bl-standard-pagination ul li.mkdf-pag-last a span:before,.mkdf-bl-standard-pagination ul li.mkdf-pag-next a span:before,.mkdf-bl-standard-pagination ul li.mkdf-pag-prev a span:before {
  display: block;
  line-height: inherit
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-prev a {
  opacity: 0
}

.mkdf-bl-standard-pagination ul li.mkdf-pag-next a {
  opacity: 1
}

.mkdf-blog-pag-load-more {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 40px 0 30px;
  text-align: center
}

.mkdf-blog-pag-loading {
  position: relative;
  display: none;
  width: 100%;
  margin: 40px 0 20px;
  color: #001659;
  text-align: center
}

.mkdf-blog-pag-loading.mkdf-standard-pag-trigger {
  position: absolute;
  top: 50px;
  left: 0
}

.mkdf-blog-pag-loading.mkdf-showing {
  display: block
}

.mkdf-blog-pag-loading>div {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin: 0 3px;
  background-color: #001659;
  border-radius: 100%;
  animation: bl-pag-bouncedelay 1.4s infinite ease-in-out both
}

.mkdf-blog-pag-loading .mkdf-blog-pag-bounce1 {
  animation-delay: -.32s
}

.mkdf-blog-pag-loading .mkdf-blog-pag-bounce2 {
  animation-delay: -.16s
}

@-webkit-keyframes bl-pag-bouncedelay {
  0%,100%,80% {
      -webkit-transform: scale(0)
  }

  40% {
      -webkit-transform: scale(1)
  }
}

@-moz-keyframes bl-pag-bouncedelay {
  0%,100%,80% {
      -moz-transform: scale(0)
  }

  40% {
      -moz-transform: scale(1)
  }
}

@keyframes bl-pag-bouncedelay {
  0%,100%,80% {
      transform: scale(0)
  }

  40% {
      transform: scale(1)
  }
}

.page-template-blog-masonry .mkdf-blog-holder {
  margin: 0 0 40px
}

.mkdf-blog-holder.mkdf-blog-masonry article {
  margin: 0 0 20px;
  padding: 0 0 60px
}

.mkdf-blog-holder.mkdf-blog-masonry article:hover .mkdf-post-title a {
  color: #ff5e14
}

.mkdf-blog-holder.mkdf-blog-masonry article:hover .mkdf-post-read-more-button a:after {
  background-color: #ff5e14;
  color: #fff;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

.mkdf-blog-holder.mkdf-blog-masonry article.format-quote:hover .mkdf-post-title a {
  color: #fff
}

.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-link .mkdf-post-text,.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-quote .mkdf-post-text {
  padding: 40px
}

.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-link .mkdf-post-text .mkdf-post-text-inner,.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-quote .mkdf-post-text .mkdf-post-text-inner {
  margin: 0
}

.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-link .mkdf-post-text .mkdf-quote-author,.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-quote .mkdf-post-text .mkdf-quote-author {
  display: block
}

.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-link .mkdf-post-text .mkdf-post-title,.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-quote .mkdf-post-text .mkdf-post-title {
  margin: 0 0 235px;
  line-height: 1.15em
}

@media only screen and (max-width: 1366px) {
  .mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-link .mkdf-post-text .mkdf-post-title,.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-quote .mkdf-post-text .mkdf-post-title {
      margin:0 0 71%
  }
}

.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-link .mkdf-post-content,.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-quote .mkdf-post-content {
  margin-bottom: 50px
}

.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-link .mkdf-post-content:after,.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-quote .mkdf-post-content:after {
  right: 41px;
  top: initial;
  bottom: 31px
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
  .mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-link .mkdf-post-content:after,.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media.format-quote .mkdf-post-content:after {
      top: 74%
  }
}

.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media .mkdf-post-title {
  line-height: 1.15em;
  margin: 1px 0 15px
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media .mkdf-post-title {
      margin:5px 0 15px
  }
}

.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media .mkdf-post-heading {
  margin-bottom: 22px
}

.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media .mkdf-post-excerpt-holder {
  margin: 0
}

.mkdf-blog-holder.mkdf-blog-masonry article.mkdf-post-has-media .mkdf-post-info-bottom {
  padding-top: 12px;
  padding-bottom: 30px
}

.mkdf-blog-holder.mkdf-blog-standard article {
  margin: 0 0 58px;
  padding: 0
}

.mkdf-blog-holder.mkdf-blog-standard article:not(.format-quote):hover .mkdf-post-title a {
  color: #ff5e14
}

.mkdf-blog-holder.mkdf-blog-standard article:not(.format-quote):hover .mkdf-post-read-more-button a:after {
  background-color: #ff5e14;
  color: #fff;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder.mkdf-blog-standard article.format-quote {
      padding:0
  }
}

.mkdf-blog-holder.mkdf-blog-standard article.format-quote .mkdf-post-title {
  line-height: 1.3em
}

.mkdf-blog-holder.mkdf-blog-standard article.format-link,.mkdf-blog-holder.mkdf-blog-standard article.format-quote {
  margin: 0 0 80px
}

.mkdf-blog-holder.mkdf-blog-standard article.format-link .mkdf-post-title {
  line-height: 1.3em
}

.mkdf-blog-holder.mkdf-blog-standard article.mkdf-post-has-media .mkdf-post-heading {
  margin-bottom: 30px
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder.mkdf-blog-standard article.mkdf-post-has-media .mkdf-post-title {
      margin:5px 0 15px
  }
}

.mkdf-blog-holder.mkdf-blog-standard article .mkdf-post-title {
  margin: 0;
  line-height: .8em
}

.mkdf-blog-holder.mkdf-blog-standard article .mkdf-post-excerpt-holder {
  margin: 18px 0 0
}

.mkdf-blog-holder.mkdf-blog-standard article .mkdf-post-info-bottom {
  padding-top: 10px
}

.mkdf-blog-holder.mkdf-blog-standard article:last-child {
  margin: 0 0 60px
}

.mkdf-author-description {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 0;
  background-color: transparent;
  text-align: center;
  box-sizing: border-box
}

.mkdf-author-description .mkdf-author-description-inner {
  padding: 20px 0 39px;
  min-height: 78px;
  clear: both
}

@media only screen and (max-width: 768px) {
  .mkdf-author-description .mkdf-author-description-inner {
      padding:50px 0 39px
  }
}

.mkdf-author-description .mkdf-author-description-content {
  position: relative;
  padding: 0
}

.mkdf-author-description .mkdf-author-description-image {
  width: 190px;
  margin: 0 auto;
  display: block;
  float: left
}

.mkdf-author-description .mkdf-author-description-image img {
  display: block;
  border-radius: 0
}

.mkdf-author-description .mkdf-author-description-text-holder {
  position: relative;
  padding: 26px 0;
  display: block;
  float: left;
  margin-left: 3%;
  text-align: left;
  max-width: 680px
}

@media only screen and (max-width: 1366px) {
  .mkdf-author-description .mkdf-author-description-text-holder {
      padding:13px 0;
      width: 598px
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-author-description .mkdf-author-description-text-holder {
      margin-left:0
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-author-description .mkdf-author-description-text-holder {
      width:auto
  }
}

.mkdf-author-description .mkdf-author-description-text-holder .mkdf-author-name {
  margin: 0
}

.mkdf-author-description .mkdf-author-description-text-holder .mkdf-author-name a {
  color: #001659
}

.mkdf-author-description .mkdf-author-description-text-holder .mkdf-author-name a:hover {
  color: #ff5e14
}

.mkdf-author-description .mkdf-author-description-text-holder .mkdf-author-email {
  margin: 0
}

.mkdf-author-description .mkdf-author-description-text-holder .mkdf-author-text {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-author-description .mkdf-author-description-text-holder .mkdf-author-text>p {
  margin: 14px 0 18px;
  font-size: 18px
}

.mkdf-author-description .mkdf-author-description-text-holder .mkdf-author-social-icons {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin-bottom: 45px
}

.mkdf-author-description .mkdf-author-description-text-holder .mkdf-author-social-icons a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0 15px 0 0;
  font-size: 16px;
  color: #001659
}

.mkdf-author-description .mkdf-author-description-text-holder .mkdf-author-social-icons a:last-child {
  margin: 0
}

.mkdf-author-description .mkdf-author-description-text-holder .mkdf-author-social-icons a:hover {
  color: #ff5e14
}

@media only screen and (max-width: 768px) {
  .mkdf-author-description .mkdf-author-description-content {
      padding:0
  }

  .mkdf-author-description .mkdf-author-description-image {
      display: block;
      width: 100%
  }

  .mkdf-author-description .mkdf-author-description-text-holder {
      display: block;
      padding: 0;
      margin-top: 30px
  }
}

.mkdf-blog-single-navigation {
  position: relative;
  display: table;
  width: 100%;
  vertical-align: middle;
  padding: 0;
  clear: both;
  box-sizing: border-box
}

.mkdf-blog-single-navigation .mkdf-blog-single-navigation-inner {
  padding: 84px 0 90px
}

@media only screen and (max-width: 1024px) {
  .mkdf-blog-single-navigation .mkdf-blog-single-navigation-inner {
      padding:63px 0 89px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-single-navigation .mkdf-blog-single-navigation-inner {
      padding:64px 0 70px
  }
}

.mkdf-blog-single-navigation .mkdf-blog-single-next,.mkdf-blog-single-navigation .mkdf-blog-single-prev {
  color: #00235a
}

.mkdf-blog-single-navigation .mkdf-blog-single-next .mkdf-blog-single-nav-mark,.mkdf-blog-single-navigation .mkdf-blog-single-prev .mkdf-blog-single-nav-mark {
  font-size: 28px;
  line-height: inherit;
  color: inherit
}

.mkdf-blog-single-navigation .mkdf-blog-single-next .mkdf-blog-single-nav-mark:before,.mkdf-blog-single-navigation .mkdf-blog-single-prev .mkdf-blog-single-nav-mark:before {
  display: block;
  line-height: inherit
}

.mkdf-blog-single-navigation .mkdf-blog-single-next .mkdf-blog-single-nav-label,.mkdf-blog-single-navigation .mkdf-blog-single-prev .mkdf-blog-single-nav-label {
  color: inherit;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  font-size: 14px;
  line-height: 47px;
  text-transform: uppercase
}

.mkdf-blog-single-navigation .mkdf-blog-single-next:hover .mkdf-blog-single-nav-mark,.mkdf-blog-single-navigation .mkdf-blog-single-prev:hover .mkdf-blog-single-nav-mark {
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5);
  transition: box-shadow .1s ease-in-out
}

.mkdf-blog-single-navigation .mkdf-blog-single-prev {
  float: left
}

.mkdf-blog-single-navigation .mkdf-blog-single-prev .mkdf-blog-single-nav-label,.mkdf-blog-single-navigation .mkdf-blog-single-prev .mkdf-blog-single-nav-mark {
  float: left
}

.mkdf-blog-single-navigation .mkdf-blog-single-prev .mkdf-blog-single-nav-mark {
  margin: 0 20px 0 0;
  background-color: #00235a;
  color: #fff;
  padding: 11px 10px;
  border-radius: 2px
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-single-navigation .mkdf-blog-single-prev .mkdf-blog-single-nav-label {
      display:none
  }
}

.mkdf-blog-single-navigation .mkdf-blog-single-next {
  float: right
}

.mkdf-blog-single-navigation .mkdf-blog-single-next .mkdf-blog-single-nav-label,.mkdf-blog-single-navigation .mkdf-blog-single-next .mkdf-blog-single-nav-mark {
  float: right
}

.mkdf-blog-single-navigation .mkdf-blog-single-next .mkdf-blog-single-nav-mark {
  margin: 0 0 0 20px;
  background-color: #22365c;
  color: #fff;
  padding: 11px 10px;
  border-radius: 2px
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-single-navigation .mkdf-blog-single-next .mkdf-blog-single-nav-label {
      display:none
  }
}

.mkdf-single-links-pages {
  clear: both;
  margin: 20px 0 5px
}

.mkdf-single-links-pages .mkdf-single-links-pages-inner .current,.mkdf-single-links-pages .mkdf-single-links-pages-inner a,.mkdf-single-links-pages .mkdf-single-links-pages-inner span+span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  line-height: 48px;
  padding: 2px 19px 0 19px;
  border-radius: 2px
}

.mkdf-single-links-pages .mkdf-single-links-pages-inner .current:hover,.mkdf-single-links-pages .mkdf-single-links-pages-inner a:hover,.mkdf-single-links-pages .mkdf-single-links-pages-inner span+span:hover {
  background-color: #ff5e14;
  color: #fff
}

.mkdf-single-links-pages .mkdf-single-links-pages-inner .current,.mkdf-single-links-pages .mkdf-single-links-pages-inner span+span {
  padding: 4px 19px 2px;
  background-color: #ff5e14;
  color: #fff
}

.mkdf-blog-holder .mkdf-single-links-pages .mkdf-single-links-pages-inner .current,.mkdf-blog-holder .mkdf-single-links-pages .mkdf-single-links-pages-inner span+span {
  color: #fff
}

.mkdf-related-posts-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box
}

.mkdf-related-posts-holder .mkdf-related-posts-holder-inner {
  padding: 31px 0 22px
}

.mkdf-related-posts-holder .mkdf-related-posts-title {
  margin: 0 0 37px
}

.mkdf-related-posts-holder .mkdf-related-posts-title>* {
  margin: 0
}

.mkdf-related-posts-holder .mkdf-related-posts-inner {
  margin: 0 -15px
}

.mkdf-related-posts-holder .mkdf-related-post {
  position: relative;
  display: inline-block;
  float: left;
  width: 25%;
  margin: 0 0 30px;
  padding: 0 15px;
  box-sizing: border-box
}

.mkdf-content-has-sidebar .mkdf-related-posts-holder .mkdf-related-post {
  widtH: 33.33333333333333%
}

.touchevents .mkdf-related-posts-holder .mkdf-related-post {
  cursor: pointer
}

.mkdf-related-posts-holder .mkdf-related-post:hover .mkdf-related-post-image a:after {
  opacity: 1
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-related-post-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  overflow: hidden;
  margin: 18px 0 0
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-related-post-image a {
  position: relative;
  display: block
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-related-post-image img {
  display: block
}

@media only screen and (max-width: 680px) {
  .mkdf-related-posts-holder .mkdf-related-post .mkdf-related-post-image img {
      width:100%
  }
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-post-title {
  margin: 0
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-post-title:first-child {
  margin-top: 0
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-post-info {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-post-info>div {
  position: relative;
  display: inline-block;
  vertical-align: top;
  float: left;
  padding: 0 13px 0 0;
  color: inherit
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-post-info>div:after {
  position: absolute;
  top: 0;
  right: 4px;
  content: '/'
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-post-info>div:last-child {
  padding: 0
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-post-info>div:last-child:after {
  display: none
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-post-info>div.mkdf-post-info-author .mkdf-post-info-author-text {
  margin: 0 3px 0 0
}

.mkdf-related-posts-holder .mkdf-related-post .mkdf-post-info>div a {
  color: #565969;
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969
}

.mkdf-blog-holder.mkdf-blog-single .mkdf-post-info-top {
  margin: 2px 0
}

.mkdf-blog-holder.mkdf-blog-single .mkdf-post-info-top div {
  display: inline-block;
  margin-right: 15px
}

.mkdf-blog-holder.mkdf-blog-single article {
  margin: 0 0 30px
}

@media only screen and (max-width: 768px) {
  .mkdf-blog-holder.mkdf-blog-single article {
      margin:0
  }
}

.mkdf-blog-holder.mkdf-blog-single article .mkdf-post-heading {
  margin-bottom: 40px
}

.mkdf-blog-holder.mkdf-blog-single article.format-link .mkdf-post-text,.mkdf-blog-holder.mkdf-blog-single article.format-quote .mkdf-post-text {
  padding: 60px 40px
}

@media only screen and (max-width: 680px) {
  .mkdf-blog-holder.mkdf-blog-single article.format-link .mkdf-post-text,.mkdf-blog-holder.mkdf-blog-single article.format-quote .mkdf-post-text {
      padding:60px 60px 60px 20px
  }
}

.mkdf-blog-holder.mkdf-blog-single article.format-link .mkdf-post-additional-content,.mkdf-blog-holder.mkdf-blog-single article.format-quote .mkdf-post-additional-content {
  margin-top: 43px
}

.mkdf-blog-holder.mkdf-blog-single article.format-link .mkdf-post-additional-content .mkdf-post-info-date,.mkdf-blog-holder.mkdf-blog-single article.format-quote .mkdf-post-additional-content .mkdf-post-info-date {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500
}

.mkdf-blog-holder.mkdf-blog-single article.format-link .mkdf-post-info-bottom,.mkdf-blog-holder.mkdf-blog-single article.format-quote .mkdf-post-info-bottom {
  margin-top: 13px;
  margin-bottom: 15px
}

.mkdf-blog-holder.mkdf-blog-single article .mkdf-post-text {
  padding: 0 0 16px
}

.mkdf-blog-list-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  clear: both
}

.mkdf-blog-list-holder.mkdf-bl-skin-light .entry-date a,.mkdf-blog-list-holder.mkdf-bl-skin-light .entry-title,.mkdf-blog-list-holder.mkdf-bl-skin-light .mkdf-blog-list-button span,.mkdf-blog-list-holder.mkdf-bl-skin-light .mkdf-post-info-author-link,.mkdf-blog-list-holder.mkdf-bl-skin-light .mkdf-post-info-category a,.mkdf-blog-list-holder.mkdf-bl-skin-light span {
  color: #fff
}

.mkdf-blog-list-holder.mkdf-bl-skin-light .mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon):after {
  background-color: transparent;
  color: #fff
}

.mkdf-blog-list-holder.mkdf-bl-skin-light .mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon):hover:after {
  background-color: #ff5e14
}

.mkdf-blog-list-holder .mkdf-blog-list {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  list-style: none;
  margin: 0;
  padding: 0
}

.mkdf-blog-list-holder .mkdf-bl-item {
  padding: 0;
  margin: 0
}

.mkdf-blog-list-holder .mkdf-bli-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-blog-list-holder .mkdf-bli-inner:hover .mkdf-post-title a {
  color: #ff5e14
}

.mkdf-blog-list-holder .mkdf-bli-inner:hover .mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon):after {
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5);
  color: #fff
}

.mkdf-blog-list-holder .mkdf-bli-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box
}

.mkdf-blog-list-holder .mkdf-post-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0 0 20px
}

.mkdf-blog-list-holder .mkdf-post-image a {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-blog-list-holder .mkdf-post-image img {
  display: block;
  width: 100%
}

.mkdf-blog-list-holder .mkdf-bli-info {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0;
  clear: both
}

.mkdf-blog-list-holder .mkdf-bli-info .mkdf-post-info-date a {
  font-weight: 500
}

.mkdf-blog-list-holder .mkdf-bli-info>div {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.2;
  float: left;
  padding: 0 20px 1px 0;
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969
}

.mkdf-blog-list-holder .mkdf-bli-info>div:last-child {
  padding: 0 0 1px
}

.mkdf-blog-list-holder .mkdf-bli-info>div a {
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969;
  color: #565969
}

.mkdf-blog-list-holder .mkdf-bli-info>div a:hover {
  color: #ff5e14
}

.mkdf-blog-list-holder .mkdf-post-title {
  margin: 0;
  line-height: .7em
}

.mkdf-blog-list-holder .mkdf-post-title {
  margin: 0;
  line-height: .7em
}

.mkdf-blog-list-holder .mkdf-post-excerpt {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 14px 0 0
}

.mkdf-blog-list-holder .mkdf-post-excerpt p {
  margin: 0
}

.mkdf-blog-list-holder .mkdf-post-excerpt:after {
  content: '...'
}

.mkdf-blog-list-holder .mkdf-post-read-more-button {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 13px 0 0
}

.mkdf-blog-list-holder.mkdf-bl-boxed .mkdf-post-read-more-button,.mkdf-blog-list-holder.mkdf-bl-standard .mkdf-post-read-more-button {
  margin: 13px 0 0
}

.mkdf-blog-list-holder.mkdf-bl-boxed .mkdf-bli-content {
  padding: 20px 34px 37px;
  background-color: #fff;
  border: 1px solid #e8e8e9;
  border-bottom: 4px solid #ff5e14
}

.mkdf-blog-list-holder.mkdf-bl-boxed .mkdf-post-image {
  margin: 0
}

.mkdf-blog-list-holder .mkdf-post-title {
  margin: 0;
  line-height: 1.15em
}

.mkdf-blog-list-holder.mkdf-bl-masonry {
  transition: none!important;
  overflow: visible!important
}

.mkdf-blog-list-holder.mkdf-bl-masonry .mkdf-bl-item {
  z-index: 100
}

.mkdf-blog-list-holder.mkdf-bl-minimal .mkdf-post-info-date {
  display: block;
  margin: 0 0 12px;
  line-height: 1
}

.mkdf-blog-list-holder.mkdf-bl-minimal .mkdf-post-info-date a {
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  color: #565969
}

.mkdf-blog-list-holder.mkdf-bl-minimal .mkdf-post-info-date a:hover {
  color: #001659
}

.mkdf-blog-list-holder.mkdf-bl-simple .mkdf-post-image {
  display: table-cell;
  vertical-align: top;
  width: 60px
}

.mkdf-blog-list-holder.mkdf-bl-simple .mkdf-bli-content {
  display: table-cell;
  vertical-align: middle;
  width: auto;
  padding-left: 21px
}

.mkdf-blog-list-holder.mkdf-bl-simple .mkdf-bli-content .mkdf-post-title a:hover {
  color: #ff5e14
}

.mkdf-blog-list-holder.mkdf-bl-simple .mkdf-bli-content .mkdf-post-info-date {
  display: block;
  margin: 0;
  line-height: .7em
}

.mkdf-blog-list-holder.mkdf-bl-simple .mkdf-bli-content .mkdf-post-info-date a {
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  color: #565969
}

.mkdf-blog-list-holder.mkdf-bl-simple .mkdf-bli-content .mkdf-post-info-date a:hover {
  color: #565969
}

.mkdf-bl-loading {
  position: relative;
  display: none;
  width: 100%;
  margin: 40px 0 20px;
  text-align: center
}

.mkdf-bl-loading.mkdf-showing {
  display: block
}

.mkdf-bl-loading>div {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin: 0 3px;
  background-color: #001659;
  border-radius: 100%;
  animation: bl-bouncedelay 1.4s infinite ease-in-out both
}

.mkdf-bl-loading .mkdf-bl-loading-bounce1 {
  animation-delay: -.32s
}

.mkdf-bl-loading .mkdf-bl-loading-bounce2 {
  animation-delay: -.16s
}

@-webkit-keyframes bl-bouncedelay {
  0%,100%,80% {
      -webkit-transform: scale(0)
  }

  40% {
      -webkit-transform: scale(1)
  }
}

@-moz-keyframes bl-bouncedelay {
  0%,100%,80% {
      -moz-transform: scale(0)
  }

  40% {
      -moz-transform: scale(1)
  }
}

@keyframes bl-bouncedelay {
  0%,100%,80% {
      transform: scale(0)
  }

  40% {
      transform: scale(1)
  }
}

.mkdf-blog-slider-holder.mkdf-bs-slider .mkdf-blog-slider-item {
  text-align: center
}

.touchevents .mkdf-blog-slider-holder.mkdf-bs-slider .mkdf-blog-slider-item {
  cursor: pointer
}

.mkdf-blog-slider-holder.mkdf-bs-slider .mkdf-blog-slider-item:hover .mkdf-item-text-wrapper {
  opacity: 1
}

.mkdf-blog-slider-holder.mkdf-bs-slider .mkdf-post-title {
  color: #fff
}

.mkdf-blog-slider-holder.mkdf-bs-slider .mkdf-post-title a:hover {
  color: rgba(255,255,255,.8)
}

.mkdf-blog-slider-holder.mkdf-bs-slider .mkdf-post-read-more-button a {
  color: #fff
}

.mkdf-blog-slider-holder.mkdf-bs-slider .mkdf-post-read-more-button a:hover {
  color: rgba(255,255,255,.8)!important
}

.mkdf-blog-slider-holder.mkdf-bs-carousel .mkdf-item-image a:hover:after {
  opacity: 1
}

.mkdf-blog-slider-holder.mkdf-bs-carousel .mkdf-item-image a:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(0,22,89,.4);
  opacity: 0;
  transition: opacity .2s ease-in-out
}

.mkdf-blog-slider-holder.mkdf-bs-carousel .mkdf-post-title {
  margin: 29px 0 0
}

.mkdf-blog-slider-holder.mkdf-bs-carousel .mkdf-post-read-more-button {
  margin: 15px 0 0
}

.mkdf-blog-slider-holder.mkdf-bs-carousel-centered .active.center .mkdf-item-text-wrapper {
  opacity: 1
}

.mkdf-blog-slider-holder.mkdf-bs-carousel-centered .mkdf-blog-slider-item {
  text-align: center
}

.mkdf-blog-slider-holder.mkdf-bs-carousel-centered .mkdf-post-title {
  color: #fff
}

.mkdf-blog-slider-holder.mkdf-bs-carousel-centered .mkdf-post-title a:hover {
  color: rgba(255,255,255,.8)
}

.mkdf-blog-slider-holder.mkdf-bs-carousel-centered .mkdf-post-read-more-button a {
  color: #fff
}

.mkdf-blog-slider-holder.mkdf-bs-carousel-centered .mkdf-post-read-more-button a:hover {
  color: rgba(255,255,255,.8)!important
}

.mkdf-blog-slider-holder .mkdf-blog-slider-item {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  list-style-type: none
}

.mkdf-blog-slider-holder .mkdf-item-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-blog-slider-holder .mkdf-item-text-wrapper {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255,94,20,.85);
  opacity: 0;
  transition: opacity .45s ease-out
}

.mkdf-blog-slider-holder .mkdf-item-text-holder {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%
}

.mkdf-blog-slider-holder .mkdf-item-text-holder-inner {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  padding: 0 5%
}

.mkdf-blog-slider-holder .mkdf-item-info-section {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin-bottom: 2px
}

.mkdf-blog-slider-holder .mkdf-item-info-section>div {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-right: 10px;
  margin-right: 3px;
  color: #fff;
  font-size: 12px;
  line-height: 24px
}

.mkdf-blog-slider-holder .mkdf-item-info-section>div a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit
}

.mkdf-blog-slider-holder .mkdf-item-info-section>div a:hover {
  color: rgba(255,255,255,.8)
}

.mkdf-blog-slider-holder .mkdf-item-info-section>div:after {
  content: "/";
  position: absolute;
  top: 0;
  right: 2px
}

.mkdf-blog-slider-holder .mkdf-item-info-section>div:last-child {
  padding-right: 0;
  margin-right: 0
}

.mkdf-blog-slider-holder .mkdf-item-info-section>div:last-child:after {
  content: ''
}

.mkdf-blog-slider-holder .mkdf-post-title {
  margin: 0
}

.mkdf-blog-slider-holder .mkdf-bli-excerpt {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 12px 0 0
}

.mkdf-blog-slider-holder .mkdf-bli-excerpt p {
  margin: 0
}

.mkdf-blog-slider-holder .mkdf-post-read-more-button {
  margin: 5px 0 0
}

.mkdf-content-bottom .mkdf-content-bottom-inner {
  box-sizing: border-box
}

.mkdf-content-bottom .mkdf-content-bottom-inner.mkdf-grid {
  padding: 20px 0
}

.mkdf-content-bottom .mkdf-content-bottom-inner.mkdf-full-width {
  padding: 20px 40px
}

p.has-background {
  padding: 20px 30px
}

.wp-block-audio {
  width: 100%
}

.wp-block-audio audio {
  width: auto
}

.wp-block-audio.alignleft audio,.wp-block-audio.alignright audio {
  max-width: 50%
}

.wp-block-audio.aligncenter audio {
  display: block;
  margin: 0 auto
}

.wp-block-video video {
  width: 100%
}

.wp-block-button .wp-block-button__link {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0;
  font-family: inherit;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: .02em;
  font-weight: 400;
  outline: 0;
  box-sizing: border-box;
  transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out,box-shadow .5s cubic-bezier(.49,.79,.17,.94);
  padding: 7px 38px;
  color: #fff;
  background-color: #ff5e14;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer
}

.wp-block-button .wp-block-button__link:hover {
  color: #fff;
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5);
  border-radius: 2px
}

.wp-block-button.is-style-outline .wp-block-button__link {
  color: #ff5e14;
  background-color: transparent;
  border: 1px solid #ff5e14
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: #fff;
  background-color: #ff5e14;
  border-color: #ff5e14
}

.wp-block-archives,.wp-block-categories,.wp-block-latest-posts {
  margin: 0;
  padding-left: 0
}

.wp-block-archives ul,.wp-block-categories ul,.wp-block-latest-posts ul {
  padding-left: 0!important
}

.wp-block-archives li,.wp-block-categories li,.wp-block-latest-posts li {
  margin-bottom: 6px;
  list-style-type: none
}

.wp-block-archives li a,.wp-block-categories li a,.wp-block-latest-posts li a {
  color: #001659;
  text-decoration: none
}

.wp-block-archives li a:hover,.wp-block-categories li a:hover,.wp-block-latest-posts li a:hover {
  color: #ff5e14
}

.wp-block-archives.aligncenter,.wp-block-categories.aligncenter,.wp-block-latest-posts.aligncenter {
  text-align: center
}

.wp-block-categories li ul {
  margin: 4px 0 0;
  padding: 0 0 0 10px;
  list-style-type: none
}

.wp-block-categories li ul li:last-child {
  padding: 4px 0 0
}

.wp-block-latest-posts.is-grid li {
  margin: 0 16px 16px 0
}

.wp-block-preformatted {
  padding: 15px;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 15px
}

.wp-block-verse {
  font-family: inherit;
  font-size: 22px;
  line-height: 1.8
}

.has-drop-cap:not(:focus):first-letter {
  font-family: inherit;
  font-size: 3.375em;
  line-height: 1;
  font-weight: 700;
  margin: 0 .25em 0 0
}

blockquote.wp-block-pullquote {
  position: relative;
  display: inline-block;
  vertical-align: middle
}

blockquote.wp-block-pullquote.aligncenter {
  width: 100%
}

blockquote.wp-block-pullquote.alignleft {
  text-align: left;
  max-width: 100%;
  width: auto;
  margin-right: 15px
}

blockquote.wp-block-pullquote.alignright {
  text-align: right;
  max-width: 100%;
  width: auto;
  margin-left: 15px
}

.wp-block-pullquote {
  margin: 0
}

.wp-block-pullquote.alignleft blockquote:after,.wp-block-pullquote.alignright blockquote:after {
  content: none
}

.wp-block-pullquote blockquote {
  width: auto;
  text-align: center
}

.wp-block-quote.is-large,.wp-block-quote.is-style-large {
  margin: 1rem 0;
  font-size: 1.6875em!important;
  line-height: 1.6em!important
}

.wp-block-image img {
  display: block
}

.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright {
  max-width: 100%
}

.wp-block-image.alignfull {
  left: auto;
  max-width: 100%
}

.wp-block-image.alignfull img {
  width: 100vw
}

.wp-block-cover,.wp-block-cover-image {
  position: relative;
  min-height: 430px;
  padding: 1rem;
  box-sizing: border-box
}

@media only screen and (min-width: 768px) {
  .wp-block-cover,.wp-block-cover-image {
      padding:1rem 10%
  }
}

.wp-block-cover .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,.wp-block-cover h2,.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover-image .wp-block-cover-text,.wp-block-cover-image h2 {
  font-size: 40px;
  line-height: .75em;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 28px!important;
  margin-bottom: 0
}

.wp-block-cover-image.aligncenter .wp-block-cover-image-text,.wp-block-cover-image.aligncenter .wp-block-cover-text,.wp-block-cover-image.aligncenter h2,.wp-block-cover.aligncenter .wp-block-cover-image-text,.wp-block-cover.aligncenter .wp-block-cover-text,.wp-block-cover.aligncenter h2 {
  width: 100%;
  z-index: 1;
  left: 50%;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%
}

.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright {
  width: 100%
}

.wp-block-cover-image.alignfull .wp-block-cover-image-text,.wp-block-cover-image.alignfull .wp-block-cover-text,.wp-block-cover-image.alignfull h2,.wp-block-cover.alignfull .wp-block-cover-image-text,.wp-block-cover.alignfull .wp-block-cover-text,.wp-block-cover.alignfull h2 {
  max-width: calc(8 * (100vw / 12) - 28px)
}

.wp-block-gallery {
  list-style-type: none;
  padding-left: 0
}

.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child {
  margin-bottom: 16px
}

.wp-block-audio figcaption,.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption,.wp-block-image figcaption,.wp-block-video figcaption {
  font-size: .71111em;
  font-family: inherit;
  line-height: 1.6;
  margin: 0;
  padding: .5rem;
  text-align: center
}

.wp-block-separator,hr {
  background-color: #767676;
  border: 0;
  height: 2px;
  margin-bottom: 2rem;
  margin-top: 2rem;
  max-width: 100px;
  text-align: left
}

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

.wp-block-separator.is-style-dots,hr.is-style-dots {
  max-width: 100%;
  background-color: inherit;
  border: inherit;
  height: inherit;
  text-align: center
}

.wp-block-separator.is-style-dots:before,hr.is-style-dots:before {
  color: #767676;
  font-size: 1.6875em;
  letter-spacing: .88889em;
  padding-left: .88889em
}

.wp-block-separator+h1:before,.wp-block-separator+h2:before,hr+h1:before,hr+h2:before {
  display: none
}

.wp-block-embed-twitter {
  overflow: hidden
}

.wp-block-embed {
  margin: 0
}

.wp-block-table td,.wp-block-table th {
  border-color: #e8e8e9
}

.wp-block-file {
  font-family: inherit
}

.wp-block-file .wp-block-file__button {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0;
  font-family: inherit;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: .02em;
  font-weight: 400;
  outline: 0;
  box-sizing: border-box;
  transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out,box-shadow .5s cubic-bezier(.49,.79,.17,.94);
  padding: 5px 30px;
  color: #fff;
  background-color: #ff5e14;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer
}

.wp-block-file .wp-block-file__button:hover {
  color: #fff;
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5);
  border-radius: 2px
}

.wp-block-code {
  border-radius: 0
}

.wp-block-code code {
  font-size: 1.125em;
  white-space: pre-wrap;
  word-break: break-word
}

@media only screen and (min-width: 768px) {
  .wp-block-columns .wp-block-column>:first-child {
      margin-top:0
  }

  .wp-block-columns .wp-block-column>:last-child {
      margin-bottom: 0
  }

  .wp-block-columns[class*=has-]>* {
      margin-right: 1rem
  }

  .wp-block-columns[class*=has-]>:last-child {
      margin-right: 0
  }
}

.wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  font-weight: 700
}

.wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date {
  font-weight: 400
}

.wp-block-latest-comments .wp-block-latest-comments__comment,.wp-block-latest-comments .wp-block-latest-comments__comment-date,.wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  font-size: inherit
}

.has-primary-background-color {
  background-color: #ff5e14
}

.has-primary-background-color a,.has-primary-background-color h1,.has-primary-background-color h2,.has-primary-background-color h3,.has-primary-background-color h4,.has-primary-background-color h5,.has-primary-background-color h6,.has-primary-background-color p {
  color: #fff
}

.mkdf-page-header {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  z-index: 110;
  box-sizing: border-box
}

.mkdf-page-header a img {
  display: block
}

.mkdf-page-header p {
  margin: 0
}

.mkdf-page-header .mkdf-vertical-align-containers {
  padding: 0
}

.mkdf-paspartu-enabled .mkdf-page-header .mkdf-vertical-align-containers {
  padding: 0
}

.mkdf-page-header .mkdf-grid {
  height: 100%
}

.mkdf-page-header .mkdf-grid .mkdf-vertical-align-containers {
  padding: 0;
  transition: background-color .3s ease
}

.mkdf-page-header .mkdf-logo-area {
  position: relative;
  height: 90px;
  overflow: hidden;
  background-color: #fff
}

.mkdf-page-header .mkdf-logo-area .mkdf-logo-wrapper a {
  max-height: 90px
}

.mkdf-page-header .mkdf-logo-area .mkdf-logo-wrapper.mkdf-text-logo-type a {
  max-height: 100%
}

.mkdf-page-header .mkdf-menu-area {
  position: relative;
  height: 70px;
  background-color: #fff;
  box-sizing: border-box
}

.mkdf-boxed .mkdf-page-header .mkdf-menu-area {
  padding: 0
}

.mkdf-page-header .mkdf-menu-area .mkdf-logo-wrapper a {
  max-height: 70px
}

.mkdf-page-header .mkdf-menu-area .mkdf-logo-wrapper.mkdf-text-logo-type a {
  max-height: 100%
}

.mkdf-page-header .mkdf-menu-area .widget {
  display: inline-block;
  vertical-align: middle;
  margin: 0
}

.mkdf-logo-area-border-disable .mkdf-page-header .mkdf-logo-area {
  border: none
}

.mkdf-logo-area-in-grid-border-disable .mkdf-page-header .mkdf-logo-area .mkdf-grid .mkdf-vertical-align-containers {
  border: none
}

.mkdf-header-logo-area-in-grid-padding .mkdf-page-header .mkdf-logo-area .mkdf-vertical-align-containers {
  padding: 0 25px
}

.mkdf-menu-area-shadow-disable .mkdf-page-header .mkdf-menu-area {
  box-shadow: none
}

.mkdf-menu-area-shadow-disable .mkdf-page-header .mkdf-menu-area .mkdf-grid .mkdf-vertical-align-containers {
  box-shadow: none
}

.mkdf-menu-area-border-disable .mkdf-page-header .mkdf-menu-area {
  border: none
}

.mkdf-menu-area-in-grid-border-disable .mkdf-page-header .mkdf-menu-area .mkdf-grid .mkdf-vertical-align-containers {
  border: none
}

.mkdf-header-logo-area-in-grid-padding .mkdf-page-header .mkdf-menu-area .mkdf-vertical-align-containers {
  padding: 0 25px
}

.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-logo-wrapper .mkdf-light-logo {
  opacity: 1
}

.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-logo-wrapper .mkdf-dark-logo,.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-logo-wrapper .mkdf-normal-logo {
  opacity: 0
}

.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area {
  color: #fff!important
}

.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget {
  color: #fff!important
}

.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget .widgettitle,.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget a,.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget i,.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget p,.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget span {
  color: #fff!important
}

.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget a:hover {
  color: #ff5e14!important
}

.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area {
  color: #fff!important
}

.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget {
  color: #fff!important
}

.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget .widgettitle,.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget a,.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget i,.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget p,.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget span {
  color: #fff!important
}

.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget a:hover {
  color: #ff5e14!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-logo-wrapper .mkdf-dark-logo {
  opacity: 1
}

.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-logo-wrapper .mkdf-light-logo,.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-logo-wrapper .mkdf-normal-logo {
  opacity: 0
}

.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area {
  color: #001659!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget {
  color: #001659!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget .widgettitle,.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget a,.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget i,.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget p,.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget span {
  color: #001659!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-menu-area .widget a:hover {
  color: #ff5e14!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area {
  color: #001659!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget {
  color: #001659!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget .widgettitle,.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget a,.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget i,.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget p,.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget span {
  color: #001659!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header).mkdf-menu-area .widget a:hover {
  color: #ff5e14!important
}

@media only screen and (min-width: 1025px) {
  .mkdf-logo-text-source .mkdf-position-left-inner {
      height:100%
  }
}

.mkdf-logo-wrapper {
  display: inline-block;
  vertical-align: middle;
  line-height: 1
}

.mkdf-logo-wrapper a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  max-width: 100%
}

.mkdf-logo-wrapper a img {
  height: 100%;
  width: auto;
  transition: opacity .2s ease
}

.mkdf-logo-wrapper a img.mkdf-normal-logo {
  opacity: 1
}

.mkdf-logo-wrapper a img.mkdf-dark-logo {
  opacity: 0;
  transform: translateY(-100%)
}

.mkdf-logo-wrapper a img.mkdf-light-logo {
  opacity: 0;
  transform: translateY(-200%)
}

.mkdf-header-minimal .mkdf-logo-wrapper.mkdf-text-logo-type,.mkdf-header-standard .mkdf-logo-wrapper.mkdf-text-logo-type,.mkdf-header-tabbed .mkdf-logo-wrapper.mkdf-text-logo-type {
  height: 100%
}

@media only screen and (max-width: 1024px) {
  .mkdf-header-vertical .mkdf-logo-wrapper.mkdf-text-logo-type {
      height:100%
  }
}

.mkdf-logo-wrapper.mkdf-text-logo-type a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff5e14;
  padding: 0 114px;
  box-sizing: border-box;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  transition: .5s
}

@media only screen and (max-width: 1024px) {
  .mkdf-logo-wrapper.mkdf-text-logo-type a {
      height:101%;
      padding: 0 75px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-logo-wrapper.mkdf-text-logo-type a {
      padding:0 57px
  }
}

.mkdf-light-header .mkdf-page-header>div:not(.fixed):not(.mkdf-sticky-header) .mkdf-logo-wrapper.mkdf-text-logo-type a {
  background-color: #fff;
  color: #ff5e14
}

.mkdf-main-menu {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  height: 100%;
  width: auto
}

.mkdf-main-menu ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  text-align: left
}

.mkdf-main-menu ul li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0;
  margin: 0
}

.mkdf-main-menu ul li a {
  font-size: 18px;
  line-height: 26px;
  color: #565969;
  font-weight: 400;
  letter-spacing: 0
}

.mkdf-main-menu ul li a:hover {
  color: #565969
}

.mkdf-main-menu ul li a i:before {
  margin: 0 7px 0 0
}

.mkdf-main-menu ul li a .menu_icon_wrapper {
  position: relative;
  display: inline-block;
  vertical-align: top
}

.mkdf-main-menu ul li a .mkdf-menu-featured-icon {
  position: relative;
  top: -4px;
  left: 5px;
  color: currentColor;
  font-size: 10px;
  margin: 0
}

.mkdf-main-menu ul li a .mkdf-menu-featured-icon:before {
  margin: 0
}

.mkdf-main-menu>ul {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  height: 100%
}

.mkdf-main-menu>ul>li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%
}

.mkdf-main-menu>ul>li>a {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 0 24px;
  color: #001659;
  font-size: 18px;
  line-height: 23px;
  box-sizing: border-box;
  font-weight: 500
}

.mkdf-main-menu>ul>li>a>span.item_outer {
  position: relative;
  display: block
}

.mkdf-main-menu>ul>li>a>span.item_outer .item_text {
  position: relative;
  display: inline-block;
  vertical-align: top
}

.mkdf-main-menu>ul>li.mkdf-active-item>a {
  color: #ff5e14
}

.mkdf-main-menu>ul>li.has_sub>a .mkdf-menu-arrow {
  display: none
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-main-menu>ul>li>a {
  color: #fff
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-main-menu>ul>li>a:hover {
  color: #ff5e14
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-main-menu>ul>li.mkdf-active-item>a {
  color: #ff5e14
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-main-menu>ul>li>a {
  color: #001659
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-main-menu>ul>li>a:hover {
  color: #ff5e14
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-main-menu>ul>li.mkdf-active-item>a {
  color: #ff5e14
}

.mkdf-drop-down .second {
  position: absolute;
  display: block;
  left: -1px;
  top: 100%;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  z-index: 10;
  transition: top .15s ease-out
}

.mkdf-drop-down .second.mkdf-drop-down-start {
  visibility: visible;
  overflow: visible;
  opacity: 1;
  transition: opacity .2s ease-out
}

.mkdf-drop-down .second.right {
  right: -2px;
  left: auto
}

.mkdf-drop-down .second .inner {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  z-index: 997
}

.mkdf-drop-down .second .inner ul li {
  display: block;
  float: none;
  height: auto
}

.mkdf-drop-down .second .inner ul li .widget {
  width: 100%;
  margin: 0!important
}

.mkdf-drop-down .second .inner ul li a {
  display: block;
  float: none;
  margin: 0;
  padding: 7px 30px 5px 30px
}

.mkdf-drop-down .second .inner ul li a .item_outer {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 20px 0 0;
  box-sizing: border-box;
  transition: padding .2s ease-in-out
}

.mkdf-drop-down .second .inner ul li a .item_outer:before {
  content: '\4c';
  position: absolute;
  top: -1px;
  left: -20px;
  width: 20px;
  font-family: ElegantIcons;
  color: #001659;
  font-size: 20px;
  line-height: inherit;
  font-weight: 400;
  font-style: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: left .2s ease-in-out
}

.mkdf-drop-down .second .inner ul li a:hover .item_outer {
  padding: 0 10px 0 26px
}

.mkdf-drop-down .second .inner ul li a:hover .item_outer:before {
  left: 0
}

.mkdf-drop-down .second .inner ul li.current-menu-ancestor>a,.mkdf-drop-down .second .inner ul li.current-menu-item>a {
  color: #ff5e14
}

.mkdf-drop-down .second .inner ul li.current-menu-ancestor>a .item_outer,.mkdf-drop-down .second .inner ul li.current-menu-item>a .item_outer {
  padding: 0 10px 0 26px
}

.mkdf-drop-down .second .inner ul li.current-menu-ancestor>a .item_outer:before,.mkdf-drop-down .second .inner ul li.current-menu-item>a .item_outer:before {
  left: 0;
  color: #ff5e14
}

.mkdf-drop-down .second .inner ul li.sub>a .item_outer:after {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  top: -1px;
  right: 0;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.mkdf-drop-down .second .inner ul.right li a .item_outer {
  padding: 0 0 0 30px
}

.mkdf-drop-down .second .inner ul.right li a .item_outer:before {
  left: auto;
  right: -20px;
  transition: right .2s ease-in-out
}

.mkdf-drop-down .second .inner ul.right li a:hover .item_outer {
  padding: 0 26px 0 10px
}

.mkdf-drop-down .second .inner ul.right li a:hover .item_outer:before {
  left: auto;
  right: 0
}

.mkdf-drop-down .second .inner ul.right li.current-menu-ancestor>a .item_outer,.mkdf-drop-down .second .inner ul.right li.current-menu-item>a .item_outer {
  padding: 0 20px 0 10px
}

.mkdf-drop-down .second .inner ul.right li.current-menu-ancestor>a .item_outer:before,.mkdf-drop-down .second .inner ul.right li.current-menu-item>a .item_outer:before {
  left: auto;
  right: 0
}

.mkdf-drop-down .second .inner ul.right li.sub>a .item_outer:after {
  right: auto;
  left: 0
}

.mkdf-drop-down .second .inner ul.right li a {
  text-align: right
}

.mkdf-drop-down .second .inner ul.right li ul {
  left: -111%
}

.mkdf-drop-down li.left_position .second {
  left: 0
}

.mkdf-drop-down li.right_position .second {
  left: auto;
  right: 0
}

.mkdf-drop-down>ul>li:hover>.second {
  z-index: 20
}

.mkdf-drop-down .narrow .second .inner ul {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  padding: 22px 0;
  border: 1px solid #e8e8e9
}

.mkdf-drop-down .narrow .second .inner ul li {
  width: 230px
}

.mkdf-drop-down .narrow .second .inner ul li ul li {
  width: 250px
}

.mkdf-drop-down .narrow .second .inner ul li ul {
  position: absolute;
  left: 100%;
  top: -23px;
  height: auto;
  opacity: 0;
  overflow: hidden;
  z-index: 10;
  -webkit-transform: translateZ(0);
  transition: opacity .4s ease-out;
  border: 1px solid #e8e8e9
}

.mkdf-drop-down .narrow .second .inner ul li:hover ul {
  z-index: 20;
  opacity: 1
}

.mkdf-drop-down .narrow .second .inner ul.right li ul {
  left: -252px
}

.mkdf-drop-down .wide .second .inner {
  background-color: #fff;
  text-align: center;
  border: 1px solid #e8e8e9
}

.mkdf-drop-down .wide .second .inner ul li a {
  padding: 7px 0 6px 0
}

.mkdf-drop-down .wide .second .inner ul li ul {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  visibility: visible
}

.mkdf-drop-down .wide .second .inner ul li ul li:last-child a {
  padding-bottom: 0
}

.mkdf-drop-down .wide .second .inner>ul {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 39px 0 47px 0;
  box-sizing: border-box;
  width: 100%
}

.mkdf-wide-dropdown-menu-content-in-grid .mkdf-drop-down .wide .second .inner>ul {
  width: 1100px
}

@media only screen and (min-width: 1400px) {
  .mkdf-grid-1300.mkdf-wide-dropdown-menu-content-in-grid .mkdf-drop-down .wide .second .inner>ul {
      width:1300px
  }
}

@media only screen and (min-width: 1300px) {
  .mkdf-grid-1200.mkdf-wide-dropdown-menu-content-in-grid .mkdf-drop-down .wide .second .inner>ul {
      width:1200px
  }
}

@media only screen and (min-width: 1200px) {
  .mkdf-grid-1000.mkdf-wide-dropdown-menu-content-in-grid .mkdf-drop-down .wide .second .inner>ul {
      width:1000px
  }
}

@media only screen and (min-width: 1024px) {
  .mkdf-grid-800.mkdf-wide-dropdown-menu-content-in-grid .mkdf-drop-down .wide .second .inner>ul {
      width:800px
  }
}

.mkdf-drop-down .wide .second .inner>ul>li {
  float: left;
  width: 25%;
  margin: 0;
  padding: 0 26px 0 0;
  box-sizing: border-box
}

.mkdf-drop-down .wide .second .inner>ul>li:nth-child(4n+1) {
  clear: both;
  border-left: 0
}

.mkdf-drop-down .wide .second .inner>ul>li>a {
  padding: 10px 0 10px;
  color: #001659;
  font-size: 18px;
  line-height: 1.1em;
  font-weight: 500
}

.mkdf-drop-down .wide .second .inner>ul>li>a.no_link {
  cursor: default
}

.mkdf-drop-down .wide .second .inner>ul>li>a .item_outer {
  padding: 0;
  overflow: inherit
}

.mkdf-drop-down .wide .second .inner>ul>li>a .item_outer:after,.mkdf-drop-down .wide .second .inner>ul>li>a .item_outer:before {
  display: none
}

.mkdf-drop-down .wide .second .inner>ul>li.current-menu-ancestor>a,.mkdf-drop-down .wide .second .inner>ul>li.current-menu-item>a {
  color: #ff5e14
}

.mkdf-drop-down .wide.left_position .second .inner>ul,.mkdf-drop-down .wide.right_position .second .inner>ul {
  width: auto;
  white-space: nowrap
}

.mkdf-drop-down .wide.left_position .second .inner>ul>li,.mkdf-drop-down .wide.right_position .second .inner>ul>li {
  float: none;
  display: inline-block;
  vertical-align: top
}

.mkdf-drop-down .wide.left_position .second .inner>ul>li:nth-child(4n+1),.mkdf-drop-down .wide.right_position .second .inner>ul>li:nth-child(4n+1) {
  border-left: none
}

.mkdf-drop-down .wide.left_position .second ul li,.mkdf-drop-down .wide.right_position .second ul li {
  width: 200px
}

.mkdf-page-header .mkdf-fixed-wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden
}

.admin-bar .mkdf-page-header .mkdf-fixed-wrapper.fixed {
  top: 32px
}

.mkdf-page-header .mkdf-fixed-wrapper.fixed .mkdf-menu-area {
  background-color: #fff
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-fullscreen-menu-opener {
  color: #001659
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-fullscreen-menu-opener.mkdf-fm-opened,.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-fullscreen-menu-opener:hover {
  color: #001659
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-fullscreen-menu-opener {
  color: #fff
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-fullscreen-menu-opener.mkdf-fm-opened,.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-fullscreen-menu-opener:hover {
  color: #fff
}

.mkdf-fullscreen-menu-opener {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease,color .3s ease;
  padding: 0 25px;
  background-color: #ff5e14;
  color: #fff
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-predefined {
  padding: 0 41px
}

@media only screen and (max-width: 1024px) {
  .mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-predefined {
      padding:0 26px
  }
}

.mkdf-fullscreen-menu-opener .mkdf-fullscreen-menu-opener-icon {
  color: #fff;
  position: relative;
  visibility: visible
}

.mkdf-fullscreen-menu-opener .mkdf-fullscreen-menu-close-icon {
  position: absolute;
  top: 52%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%,-50%)
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
  .mkdf-fullscreen-menu-opener .mkdf-fullscreen-menu-close-icon {
      top: 55%
  }
}

.mkdf-fullscreen-menu-opener.mkdf-fm-opened .mkdf-fullscreen-menu-opener-icon {
  visibility: hidden
}

.mkdf-fullscreen-menu-opener.mkdf-fm-opened .mkdf-fullscreen-menu-close-icon {
  opacity: 1;
  background-color: transparent
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-icon-pack {
  font-size: 20px
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-icon-pack * {
  display: inline-block;
  line-height: inherit
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-icon-pack :before {
  display: inline-block;
  line-height: inherit
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-svg-path span {
  position: relative
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-svg-path span>* {
  vertical-align: middle
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-svg-path span path,.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-svg-path span>* {
  fill: currentColor;
  stroke: currentColor
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-predefined {
  line-height: 1
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-predefined:hover .mkdf-hm-lines .mkdf-hm-line.mkdf-line-1,.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-predefined:hover .mkdf-hm-lines .mkdf-hm-line.mkdf-line-3 {
  width: 100%
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-predefined .mkdf-hm-lines {
  position: relative;
  display: block;
  width: 18px;
  height: 14px
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-predefined .mkdf-hm-lines .mkdf-hm-line {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  border-radius: 12px;
  transition: width .3s ease
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-predefined .mkdf-hm-lines .mkdf-hm-line.mkdf-line-1 {
  top: 0;
  width: 10px
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-predefined .mkdf-hm-lines .mkdf-hm-line.mkdf-line-2 {
  top: 6px
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-predefined .mkdf-hm-lines .mkdf-hm-line.mkdf-line-3 {
  bottom: 0;
  left: auto;
  right: 0;
  width: 10px
}

.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-predefined .mkdf-fullscreen-menu-close-icon {
  font-size: 32px
}

.mkdf-fullscreen-menu-opened .mkdf-page-header,.mkdf-fullscreen-menu-opened .mkdf-top-bar {
  visibility: visible
}

.mkdf-fullscreen-menu-opened .mkdf-logo-wrapper {
  visibility: visible
}

.mkdf-fullscreen-menu-opened .mkdf-fullscreen-menu-opener {
  visibility: visible
}

.mkdf-fullscreen-menu-opened .mkdf-fullscreen-menu-holder-outer {
  pointer-events: auto
}

.mkdf-fullscreen-menu-opened .mkdf-fullscreen-menu-holder {
  transform: translateY(0)
}

.mkdf-fullscreen-menu-holder-outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden!important;
  pointer-events: none;
  z-index: 105
}

.mkdf-fullscreen-menu-holder {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #0a1229;
  display: flex;
  align-items: center;
  background-repeat: repeat;
  background-position: 0 0;
  transform: translateY(-100%);
  will-change: transform;
  transition: .8s cubic-bezier(.86,0,.07,1)
}

.mkdf-fullscreen-menu-holder-inner {
  display: table-cell;
  vertical-align: middle;
  padding: 100px 0
}

@media only screen and (max-width: 1366px) {
  .mkdf-fullscreen-menu-holder-inner {
      padding:100px 201px 80px
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-fullscreen-menu-holder-inner {
      padding:100px 111px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-fullscreen-menu-holder-inner {
      padding:100px 31px
  }
}

.touchevents .mkdf-fullscreen-menu-holder-outer {
  display: none
}

.touchevents .mkdf-fullscreen-menu-opened .mkdf-fullscreen-menu-holder-outer {
  display: block
}

nav.mkdf-fullscreen-menu {
  position: relative;
  top: 0;
  margin: 0 auto;
  text-align: left
}

nav.mkdf-fullscreen-menu>ul {
  left: 310px
}

nav.mkdf-fullscreen-menu>ul li a {
  text-transform: uppercase;
  font-size: 60px;
  line-height: .96em;
  letter-spacing: -.02em;
  font-weight: 600;
  line-height: 1.33em
}

@media only screen and (max-width: 1366px) {
  nav.mkdf-fullscreen-menu>ul {
      left:140px
  }
}

@media only screen and (max-width: 680px) {
  nav.mkdf-fullscreen-menu>ul {
      left:15%
  }
}

nav.mkdf-fullscreen-menu ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0
}

nav.mkdf-fullscreen-menu ul li {
  margin: 0;
  padding: 0;
  text-align: left;
  background-color: inherit;
  overflow: hidden
}

nav.mkdf-fullscreen-menu ul li>a {
  font-size: 60px;
  line-height: .96em;
  letter-spacing: -.02em;
  font-weight: 600;
  line-height: 1.33em
}

nav.mkdf-fullscreen-menu ul li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 6px 0;
  font-size: 18px;
  color: #fff
}

nav.mkdf-fullscreen-menu ul li a:hover {
  color: #ff5e14
}

nav.mkdf-fullscreen-menu ul li a span {
  position: relative;
  display: inline-block;
  vertical-align: top
}

nav.mkdf-fullscreen-menu ul li a .mkdf-fullscreen-menu-arrow {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 10px;
  font-size: .65em;
  line-height: inherit
}

nav.mkdf-fullscreen-menu ul li ul {
  padding: 0 0 9px
}

nav.mkdf-fullscreen-menu ul li ul.sub_menu {
  display: none
}

nav.mkdf-fullscreen-menu ul li ul li {
  transition: padding-left .2s ease-in-out
}

nav.mkdf-fullscreen-menu ul li ul li:hover {
  padding-left: 24px;
  overflow: hidden
}

nav.mkdf-fullscreen-menu ul li ul li a {
  text-transform: none;
  font-weight: 300;
  color: #cfd3e5;
  margin: 11px 0 6px 0
}

nav.mkdf-fullscreen-menu ul li ul li a span:after {
  content: "\4c";
  font-family: ElegantIcons;
  color: inherit;
  font-size: 18px;
  line-height: inherit;
  left: -28px;
  position: absolute;
  top: -1px
}

nav.mkdf-fullscreen-menu ul li ul li.current-menu-ancestor>a,nav.mkdf-fullscreen-menu ul li ul li.current-menu-item>a {
  color: #ff5e14
}

nav.mkdf-fullscreen-menu ul li ul li ul li a {
  font-size: 20px;
  text-transform: none;
  font-weight: inherit
}

nav.mkdf-fullscreen-menu>ul {
  display: block
}

@media only screen and (max-width: 680px) {
  nav.mkdf-fullscreen-menu>ul {
      margin-top:73px
  }
}

nav.mkdf-fullscreen-menu>ul>li>a {
  font-size: 40px
}

nav.mkdf-fullscreen-menu>ul>li.mkdf-active-item>a {
  color: #ff5e14
}

.mkdf-fullscreen-below-menu-widget-holder {
  text-align: center;
  margin-top: 20px
}

@media only screen and (max-width: 680px) {
  .mkdf-fullscreen-below-menu-widget-holder {
      margin-top:0
  }
}

.mkdf-fullscreen-above-menu-widget-holder {
  text-align: center
}

@-webkit-keyframes fade_out {
  0% {
      opacity: 1;
      visibility: visible
  }

  100% {
      opacity: 0;
      visibility: hidden
  }
}

@-moz-keyframes fade_out {
  0% {
      opacity: 1;
      visibility: visible
  }

  100% {
      opacity: 0;
      visibility: hidden
  }
}

@keyframes fade_out {
  0% {
      opacity: 1;
      visibility: visible
  }

  100% {
      opacity: 0;
      visibility: hidden
  }
}

@-webkit-keyframes fade_in {
  0% {
      opacity: 0;
      visibility: hidden
  }

  100% {
      opacity: 1;
      visibility: visible
  }
}

@-moz-keyframes fade_in {
  0% {
      opacity: 0;
      visibility: hidden
  }

  100% {
      opacity: 1;
      visibility: visible
  }
}

@keyframes fade_in {
  0% {
      opacity: 0;
      visibility: hidden
  }

  100% {
      opacity: 1;
      visibility: visible
  }
}

.mkdf-fade-push-text-right .mkdf-fullscreen-menu-holder-outer,.mkdf-fade-push-text-top .mkdf-fullscreen-menu-holder-outer,.mkdf-fade-text-scaledown .mkdf-fullscreen-menu-holder-outer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden!important;
  z-index: 105
}

@-webkit-keyframes push_text_right {
  0% {
      opacity: 0;
      -webkit-transform: translateX(-60px)
  }

  100% {
      opacity: 1;
      -webkit-transform: translateX(0)
  }
}

@-moz-keyframes push_text_right {
  0% {
      opacity: 0;
      -moz-transform: translateX(-60px)
  }

  100% {
      opacity: 1;
      -moz-transform: translateX(0)
  }
}

@keyframes push_text_right {
  0% {
      opacity: 0;
      transform: translateX(-60px)
  }

  100% {
      opacity: 1;
      transform: translateX(0)
  }
}

@-webkit-keyframes push_nav_right {
  0% {
      opacity: 0;
      -webkit-transform: translateX(-60px)
  }

  100% {
      opacity: 1;
      -webkit-transform: translateX(0)
  }
}

@-moz-keyframes push_nav_right {
  0% {
      opacity: 0;
      -moz-transform: translateX(-60px)
  }

  100% {
      opacity: 1;
      -moz-transform: translateX(0)
  }
}

@keyframes push_nav_right {
  0% {
      opacity: 0;
      transform: translateX(-60px)
  }

  100% {
      opacity: 1;
      transform: translateX(0)
  }
}

.mkdf-fullscreen-menu-opened.mkdf-fade-push-text-right .mkdf-fullscreen-menu-holder-outer .mkdf-fullscreen-above-menu-widget-holder>div,.mkdf-fullscreen-menu-opened.mkdf-fade-push-text-right .mkdf-fullscreen-menu-holder-outer .mkdf-fullscreen-below-menu-widget-holder>div,.mkdf-fullscreen-menu-opened.mkdf-fade-push-text-right .mkdf-fullscreen-menu-holder-outer nav>ul>li>a {
  animation: push_text_right .4s cubic-bezier(.175,.885,.32,1) both
}

@-webkit-keyframes push_text_top {
  0% {
      opacity: 0;
      -webkit-transform: translateY(60px)
  }

  100% {
      opacity: 1;
      -webkit-transform: translateY(0)
  }
}

@-moz-keyframes push_text_top {
  0% {
      opacity: 0;
      -moz-transform: translateY(60px)
  }

  100% {
      opacity: 1;
      -moz-transform: translateY(0)
  }
}

@keyframes push_text_top {
  0% {
      opacity: 0;
      transform: translateY(60px)
  }

  100% {
      opacity: 1;
      transform: translateY(0)
  }
}

.mkdf-fullscreen-menu-opened.mkdf-fade-push-text-top .mkdf-fullscreen-menu-holder-outer .mkdf-fullscreen-above-menu-widget-holder>div,.mkdf-fullscreen-menu-opened.mkdf-fade-push-text-top .mkdf-fullscreen-menu-holder-outer .mkdf-fullscreen-below-menu-widget-holder>div,.mkdf-fullscreen-menu-opened.mkdf-fade-push-text-top .mkdf-fullscreen-menu-holder-outer nav>ul>li>a {
  animation: push_text_top .4s ease-out both .5s
}

.mkdf-fade-push-text-top.mkdf-push-text-top .mkdf-fullscreen-menu-holder-outer .mkdf-fullscreen-above-menu-widget-holder,.mkdf-fade-push-text-top.mkdf-push-text-top .mkdf-fullscreen-menu-holder-outer .mkdf-fullscreen-below-menu-widget-holder,.mkdf-fade-push-text-top.mkdf-push-text-top .mkdf-fullscreen-menu-holder-outer nav {
  transform: translateY(-30px);
  transition: all .75s ease-out
}

.mkdf-fullscreen-menu-opened.mkdf-fade-text-scaledown .mkdf-fullscreen-menu-holder-outer .mkdf-fullscreen-above-menu-widget-holder,.mkdf-fullscreen-menu-opened.mkdf-fade-text-scaledown .mkdf-fullscreen-menu-holder-outer .mkdf-fullscreen-below-menu-widget-holder,.mkdf-fullscreen-menu-opened.mkdf-fade-text-scaledown .mkdf-fullscreen-menu-holder-outer nav {
  opacity: 1;
  transform: scale(1);
  transition: all .25s linear .1s
}

.mkdf-fade-text-scaledown .mkdf-fullscreen-menu-holder-outer .mkdf-fullscreen-above-menu-widget-holder,.mkdf-fade-text-scaledown .mkdf-fullscreen-menu-holder-outer .mkdf-fullscreen-below-menu-widget-holder,.mkdf-fade-text-scaledown .mkdf-fullscreen-menu-holder-outer nav {
  opacity: 0;
  transform: scale(1.1);
  transition: all .25s linear .1s
}

.mkdf-header-minimal .mkdf-page-header .mkdf-menu-area .mkdf-position-right-inner {
  height: 100%
}

.mkdf-header-minimal .mkdf-page-header .mkdf-position-left:before,.mkdf-header-minimal .mkdf-page-header .mkdf-position-right:before {
  content: ""
}

.mkdf-header-minimal .mkdf-page-header .mkdf-sticky-header .mkdf-position-left-inner {
  height: 100%
}

.mkdf-header-minimal .mkdf-page-header .mkdf-sticky-header .mkdf-vertical-align-containers .mkdf-position-right .mkdf-position-right-inner {
  height: 100%
}

.mkdf-header-standard .mkdf-menu-area.mkdf-menu-left .mkdf-main-menu {
  width: auto;
  padding: 0 0 0 20px
}

.mkdf-header-standard .mkdf-menu-area.mkdf-menu-left .mkdf-vertical-align-containers .mkdf-position-left-inner {
  height: 100%
}

.mkdf-header-standard .mkdf-menu-area.mkdf-menu-left .mkdf-vertical-align-containers .mkdf-position-left:before,.mkdf-header-standard .mkdf-menu-area.mkdf-menu-left .mkdf-vertical-align-containers .mkdf-position-right:before {
  display: none
}

.mkdf-header-standard .mkdf-menu-area.mkdf-menu-left .mkdf-vertical-align-containers .mkdf-position-right-inner {
  display: flex;
  align-items: center;
  height: 100%
}

.mkdf-header-standard .mkdf-menu-area.mkdf-menu-center .mkdf-vertical-align-containers .mkdf-position-center-inner {
  height: 100%
}

.mkdf-header-standard .mkdf-menu-area.mkdf-menu-center .mkdf-vertical-align-containers .mkdf-position-right:before {
  display: none
}

.mkdf-header-standard .mkdf-menu-area.mkdf-menu-center .mkdf-vertical-align-containers .mkdf-position-right-inner {
  display: flex;
  align-items: center;
  height: 100%
}

.mkdf-header-standard .mkdf-menu-area.mkdf-menu-right .mkdf-main-menu {
  width: auto
}

.mkdf-header-standard .mkdf-menu-area.mkdf-menu-right .mkdf-vertical-align-containers .mkdf-position-right-inner {
  height: 100%
}

.mkdf-header-standard .mkdf-menu-area.mkdf-menu-right .mkdf-vertical-align-containers .mkdf-position-right-inner>* {
  float: left
}

.mkdf-header-tabbed .mkdf-page-header {
  opacity: 0;
  transition: opacity .3s ease
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-left-inner {
  padding-right: 0
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center {
  position: relative;
  float: left
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center:before {
  content: normal;
  margin: 0
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center .mkdf-position-center-inner {
  height: 100%;
  width: 100%
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center .mkdf-main-menu {
  width: 100%
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center .mkdf-main-menu>ul {
  display: flex;
  align-items: center;
  width: calc(100% + 1px)
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center .mkdf-main-menu>ul:after,.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center .mkdf-main-menu>ul:before {
  content: normal
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center .mkdf-main-menu>ul>li {
  width: 100%;
  text-align: center;
  border: 1px solid #e8e8e9;
  border-right: none;
  box-sizing: border-box
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center .mkdf-main-menu>ul>li:last-child {
  border-right: 1px solid #e8e8e9
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center .mkdf-main-menu>ul>li>a {
  display: table;
  height: 100%;
  padding: 0
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center .mkdf-main-menu>ul>li>a>span.item_outer {
  display: table-cell;
  vertical-align: middle
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center .mkdf-main-menu>ul>li>a:hover {
  color: #001659
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-center .mkdf-main-menu>ul>li:hover {
  background-image: url(../img/default_pattern.png);
  background-position: 520px 0;
  transition: 15s linear
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-right:before {
  content: normal;
  margin: 0
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-right .mkdf-position-right-inner {
  display: flex;
  align-items: center;
  height: 100%
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-right .mkdf-position-right-inner>.mkdf-search-opener:hover {
  border-right: 1px solid #ff5e14!important
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-right .mkdf-position-right-inner>* {
  border: 1px solid #e8e8e9;
  border-right-color: transparent;
  transition: background-color .2s ease,color .2s ease,border-color .2s ease;
  box-sizing: border-box
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-right .mkdf-position-right-inner>:not(:last-child):hover {
  border-right: 1px solid #e55f1c
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-right .mkdf-position-right-inner>:first-child {
  border-left: none
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-right .mkdf-position-right-inner>:last-child {
  border-right: 1px solid #e8e8e9
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-position-right .mkdf-position-right-inner>:hover {
  background-color: #ff5e14;
  border-color: #ff5e14;
  color: #fff;
  box-sizing: border-box
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-header-widget-area-one {
  position: relative;
  display: table;
  height: 100%;
  float: left;
  padding: 0 20px;
  vertical-align: middle;
  border-right: 1px solid rgba(0,0,0,.1)
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-header-widget-area-one:last-child {
  padding-right: 0;
  border: 0
}

.mkdf-header-tabbed .mkdf-page-header .mkdf-menu-area .mkdf-header-widget-area-one>div {
  display: table-cell;
  vertical-align: middle
}

.mkdf-header-vertical .mkdf-top-bar {
  display: none
}

.mkdf-header-vertical .mkdf-vertical-alignment-center .mkdf-vertical-menu-outer {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 80px 0 0
}

.mkdf-header-vertical .mkdf-vertical-alignment-center .mkdf-vertical-menu {
  display: table;
  width: 100%;
  height: 100%;
  min-height: 0
}

.mkdf-header-vertical .mkdf-vertical-alignment-center .mkdf-vertical-menu>ul {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle
}

.mkdf-header-vertical .mkdf-vertical-menu-outer {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box
}

.mkdf-header-vertical .mkdf-vertical-menu {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 58px 0 31px;
  padding: 0;
  z-index: 100
}

@media only screen and (max-width: 1440px) {
  .mkdf-header-vertical .mkdf-vertical-menu {
      margin:184px 0 31px
  }
}

@media only screen and (max-width: 1366px) {
  .mkdf-header-vertical .mkdf-vertical-menu {
      margin:184px 0 31px
  }
}

@media only screen and (max-width: 1280px) {
  .mkdf-header-vertical .mkdf-vertical-menu {
      margin:35px 0 31px
  }
}

.mkdf-header-vertical .mkdf-vertical-menu ul {
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 0
}

.mkdf-header-vertical .mkdf-vertical-menu ul li {
  position: relative;
  padding: 0;
  margin: 0;
  font-weight: 500
}

.mkdf-header-vertical .mkdf-vertical-menu ul li .second a .item_text {
  position: relative;
  background-color: #fff
}

.mkdf-header-vertical .mkdf-vertical-menu ul li a {
  position: relative;
  display: block;
  margin: 0;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 400;
  color: #565969;
  text-align: center
}

.mkdf-header-vertical .mkdf-vertical-menu ul li a .item_outer {
  position: relative;
  display: block;
  box-sizing: border-box
}

.mkdf-header-vertical .mkdf-vertical-menu ul li a .mkdf-menu-arrow {
  position: absolute;
  top: 1px;
  right: 0;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  transform: rotate(-90deg);
  transition: transform .2s ease-in-out;
  display: none
}

.mkdf-header-vertical .mkdf-vertical-menu ul li a .mkdf-menu-featured-icon {
  position: relative;
  top: -4px;
  left: 3px;
  color: #001659;
  font-size: 12px;
  margin: 0
}

.mkdf-header-vertical .mkdf-vertical-menu ul li a .menu_icon:not(.blank):not(.null) {
  padding: 0 5px 0 0
}

.mkdf-header-vertical .mkdf-vertical-menu ul li.current-menu-ancestor>a,.mkdf-header-vertical .mkdf-vertical-menu ul li.current-menu-item>a,.mkdf-header-vertical .mkdf-vertical-menu ul li.current_page_item>a,.mkdf-header-vertical .mkdf-vertical-menu ul li.mkdf-active-item>a {
  color: #ff5e14
}

.mkdf-header-vertical .mkdf-vertical-menu ul li ul {
  padding: 20px 0
}

.mkdf-header-vertical .mkdf-vertical-menu ul li ul li.sub>a .item_outer {
  position: relative;
  display: block
}

.mkdf-header-vertical .mkdf-vertical-menu ul li ul li.sub>a .item_outer:after {
  position: absolute;
  top: -1px;
  right: 0;
  margin: 0;
  color: #001659;
  font-family: 'Font Awesome 5 Free';
  font-size: inherit;
  line-height: inherit;
  font-weight: 900;
  transition: transform .2s ease-in-out
}

.mkdf-header-vertical .mkdf-vertical-menu ul li .second {
  transform: translateZ(0)
}

.mkdf-header-vertical .mkdf-vertical-menu ul li .second .inner {
  position: relative;
  display: block;
  padding: 0;
  z-index: 997;
  background-color: #fff
}

.mkdf-header-vertical .mkdf-vertical-menu ul li .second .inner ul li a {
  padding: 6px 1px;
  transition: all .2s ease-in-out
}

.mkdf-header-vertical .mkdf-vertical-menu ul li .second .inner ul li a:hover {
  padding-left: 24px
}

.mkdf-header-vertical .mkdf-vertical-menu ul li .second .inner ul li a:hover .item_text:before {
  left: -26px
}

.mkdf-header-vertical .mkdf-vertical-menu ul li .second .inner ul li a span .item_text:before {
  content: '\4c';
  position: absolute;
  z-index: -1;
  top: -3px;
  left: 0;
  width: 20px;
  font-family: ElegantIcons;
  color: #001659;
  font-size: 22px;
  line-height: inherit;
  font-weight: 400;
  font-style: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: left .2s ease-in-out
}

.mkdf-header-vertical .mkdf-vertical-menu>ul>li {
  border-top: 1px solid #e8e8e9
}

.mkdf-header-vertical .mkdf-vertical-menu>ul>li:last-child {
  border-bottom: 1px solid #e8e8e9
}

.mkdf-header-vertical .mkdf-vertical-menu>ul>li:hover {
  background-position: 520px 0;
  transition: 15s linear
}

.mkdf-header-vertical .mkdf-vertical-menu>ul>li.open,.mkdf-header-vertical .mkdf-vertical-menu>ul>li:hover {
  background-image: url(../img/default_pattern.png)
}

.mkdf-header-vertical .mkdf-vertical-menu>ul>li.open>a {
  border-bottom: 1px solid #e8e8e9
}

.mkdf-header-vertical .mkdf-vertical-menu>ul>li.open .current {
  border-bottom: 1px solid #f2f3f5
}

.mkdf-header-vertical .mkdf-vertical-menu>ul>li>a {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #001659
}

@media only screen and (max-width: 1366px) {
  .mkdf-header-vertical .mkdf-vertical-menu>ul>li>a {
      line-height:9px;
      padding: 31px 0
  }
}

.mkdf-header-vertical .mkdf-vertical-menu>ul>li>a span.item_text {
  position: relative;
  display: inline-block;
  vertical-align: top
}

.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-below ul li a:hover .mkdf-menu-arrow,.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-below ul li.current-menu-ancestor>a .mkdf-menu-arrow,.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-below ul li.current-menu-item>a .mkdf-menu-arrow,.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-below ul li.current_page_item>a .mkdf-menu-arrow,.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-below ul li.mkdf-active-item>a .mkdf-menu-arrow {
  transform: rotate(0)
}

.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-below ul li .second {
  display: none
}

.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-below ul li ul li.sub a:hover .item_outer:after,.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-below ul li ul li.sub.current-menu-ancestor>a .item_outer:after,.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-below ul li ul li.sub.current_page_item>a .item_outer:after,.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-below ul li ul li.sub.open>a .item_outer:after {
  transform: rotate(90deg)
}

.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-side .second {
  position: absolute;
  top: 0;
  width: 100%
}

.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-side .second ul {
  position: absolute;
  top: -23px;
  left: calc(100% + 45px);
  width: 254px;
  background-color: #fff;
  padding: 25px 20px;
  margin-left: 50px;
  visibility: hidden;
  opacity: 0;
  transition: all .2s ease
}

.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-side .second ul * {
  visibility: inherit;
  transition: visibility .2s ease
}

.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-side .second ul.mkdf-float-open {
  margin-left: 0;
  opacity: 1;
  visibility: visible;
  z-index: 900
}

.mkdf-header-vertical .mkdf-vertical-menu.mkdf-vertical-dropdown-side .second ul ul {
  top: -25px;
  left: calc(100% + 20px);
  visibility: hidden;
  transition: all .2s ease
}

.mkdf-light-header.mkdf-header-vertical .mkdf-vertical-menu ul li a {
  color: #fff!important
}

.mkdf-light-header.mkdf-header-vertical .mkdf-vertical-menu ul li a:hover {
  color: #ff5e14!important
}

.mkdf-light-header.mkdf-header-vertical .mkdf-vertical-menu ul li ul li.current-menu-ancestor>a,.mkdf-light-header.mkdf-header-vertical .mkdf-vertical-menu ul li ul li.current-menu-item>a,.mkdf-light-header.mkdf-header-vertical .mkdf-vertical-menu ul li ul li.current_page_item>a {
  color: #ff5e14!important
}

.mkdf-light-header.mkdf-header-vertical .mkdf-vertical-menu>ul>li.current-menu-ancestor>a,.mkdf-light-header.mkdf-header-vertical .mkdf-vertical-menu>ul>li.mkdf-active-item>a {
  color: #ff5e14!important
}

.mkdf-dark-header.mkdf-header-vertical .mkdf-vertical-menu ul li a {
  color: #001659!important
}

.mkdf-dark-header.mkdf-header-vertical .mkdf-vertical-menu ul li a:hover {
  color: #ff5e14!important
}

.mkdf-dark-header.mkdf-header-vertical .mkdf-vertical-menu ul li ul li.current-menu-ancestor>a,.mkdf-dark-header.mkdf-header-vertical .mkdf-vertical-menu ul li ul li.current-menu-item>a,.mkdf-dark-header.mkdf-header-vertical .mkdf-vertical-menu ul li ul li.current_page_item>a {
  color: #ff5e14!important
}

.mkdf-dark-header.mkdf-header-vertical .mkdf-vertical-menu>ul>li.current-menu-ancestor>a,.mkdf-dark-header.mkdf-header-vertical .mkdf-vertical-menu>ul>li.mkdf-active-item>a {
  color: #ff5e14!important
}

.mkdf-header-vertical .mkdf-vertical-area-widget-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 10px 0 0;
  z-index: 100;
  position: absolute;
  bottom: 11px;
  left: 0
}

.mkdf-header-vertical .mkdf-vertical-alignment-center .mkdf-vertical-area-widget-holder {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding-bottom: 11px
}

.mkdf-header-vertical.admin-bar .mkdf-vertical-menu-area {
  top: 32px;
  height: calc(100% - 32px)
}

.mkdf-header-vertical .mkdf-content,.mkdf-header-vertical footer {
  padding-left: 310px;
  box-sizing: border-box
}

.mkdf-header-vertical .mkdf-vertical-menu-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 310px;
  height: 100%;
  padding: 0;
  background-color: transparent;
  outline: 0;
  z-index: 101;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box
}

.mkdf-header-vertical .mkdf-vertical-menu-area.mkdf-with-scroll {
  overflow: hidden
}

.mkdf-header-vertical .mkdf-vertical-menu-area.mkdf-vertical-alignment-center .mkdf-vertical-menu {
  margin-top: 0
}

@media only screen and (max-width: 1366px) {
  .mkdf-header-vertical .mkdf-vertical-menu-area.mkdf-vertical-alignment-center .mkdf-vertical-menu {
      margin-top:0
  }
}

.mkdf-header-vertical .mkdf-vertical-menu-area-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  height: 100%;
  border-right: 1px solid #f2f3f5
}

@media only screen and (max-width: 1366px) {
  .mkdf-header-vertical .mkdf-vertical-menu-area-inner .mkdf-social-icons-group-widget-inner {
      margin-left:50%;
      transform: translateX(-50%);
      width: 100%
  }
}

.mkdf-header-vertical .mkdf-vertical-menu-area-inner.mkdf-vertical-align-left {
  text-align: left
}

.mkdf-header-vertical .mkdf-vertical-menu-area-inner.mkdf-vertical-align-center {
  text-align: center
}

.mkdf-header-vertical .mkdf-vertical-menu-area-inner.mkdf-vertical-align-center .mkdf-logo-wrapper img {
  margin: 0 auto
}

.mkdf-header-vertical .mkdf-logo-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  width: calc(100% + 1px);
  z-index: 100
}

.mkdf-header-vertical .mkdf-logo-wrapper a {
  display: block;
  text-align: center;
  position: relative;
  height: 100%;
  padding: 7.1% 0
}

@media only screen and (max-width: 1024px) {
  .mkdf-header-vertical .mkdf-logo-wrapper.mkdf-text-logo-type a {
      height:100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #ff5e14;
      padding: 0 114px;
      box-sizing: border-box;
      font-size: 26px;
      font-weight: 600;
      color: #fff;
      transition: .5s
  }
}

@media only screen and (max-width: 1024px) and (max-width:1024px) {
  .mkdf-header-vertical .mkdf-logo-wrapper.mkdf-text-logo-type a {
      padding:0 75px
  }
}

@media only screen and (max-width: 1024px) and (max-width:680px) {
  .mkdf-header-vertical .mkdf-logo-wrapper.mkdf-text-logo-type a {
      padding:0 57px
  }
}

.mkdf-header-vertical .mkdf-logo-wrapper img {
  display: block;
  height: auto;
  max-height: 100%;
  transition: opacity .3s ease
}

.mkdf-header-vertical .mkdf-vertical-area-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 310px;
  height: 100%;
  background-color: #fff;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  opacity: 1;
  transition: opacity .5s ease,background-color .5s ease
}

.mkdf-header-vertical.mkdf-header-vertical-shadow-disable .mkdf-vertical-area-background {
  box-shadow: none
}

.mkdf-header-vertical.mkdf-header-vertical-border-disable .mkdf-vertical-area-background {
  border: none
}

.mkdf-light-header .mkdf-vertical-menu-area .mkdf-logo-wrapper .mkdf-light-logo {
  opacity: 1
}

.mkdf-light-header .mkdf-vertical-menu-area .mkdf-logo-wrapper .mkdf-dark-logo,.mkdf-light-header .mkdf-vertical-menu-area .mkdf-logo-wrapper .mkdf-normal-logo {
  opacity: 0
}

.mkdf-dark-header .mkdf-vertical-menu-area .mkdf-logo-wrapper .mkdf-dark-logo {
  opacity: 1
}

.mkdf-dark-header .mkdf-vertical-menu-area .mkdf-logo-wrapper .mkdf-light-logo,.mkdf-dark-header .mkdf-vertical-menu-area .mkdf-logo-wrapper .mkdf-normal-logo {
  opacity: 0
}

.mkdf-mobile-header {
  position: relative;
  display: none;
  z-index: 110
}

.mkdf-mobile-header .mkdf-mobile-header-inner {
  position: relative;
  height: 70px;
  background-color: #fff;
  box-sizing: border-box;
  border-bottom: 1px solid #e8e8e9
}

.mkdf-mobile-header .mkdf-mobile-header-inner .mkdf-mobile-header-holder {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  z-index: 2;
  height: 100%
}

.mkdf-mobile-header .mkdf-mobile-header-inner .mkdf-mobile-header-holder .mkdf-vertical-align-containers .mkdf-position-left .mkdf-position-left-inner,.mkdf-mobile-header .mkdf-mobile-header-inner .mkdf-mobile-header-holder .mkdf-vertical-align-containers .mkdf-position-left .mkdf-position-right-inner,.mkdf-mobile-header .mkdf-mobile-header-inner .mkdf-mobile-header-holder .mkdf-vertical-align-containers .mkdf-position-right .mkdf-position-left-inner,.mkdf-mobile-header .mkdf-mobile-header-inner .mkdf-mobile-header-holder .mkdf-vertical-align-containers .mkdf-position-right .mkdf-position-right-inner {
  display: inline-flex;
  align-items: center
}

.mkdf-fullscreen-menu-opened .mkdf-mobile-header .mkdf-mobile-header-inner {
  background-color: transparent;
  border: none
}

@media only screen and (max-width: 680px) {
  .mkdf-mobile-header .mkdf-logo-wrapper.mkdf-text-logo-type a {
      padding:0 37px!important
  }
}

.mkdf-mobile-header .mkdf-grid {
  height: 100%
}

.mkdf-mobile-header .mkdf-vertical-align-containers {
  padding: 0
}

.mkdf-mobile-header .mkdf-vertical-align-containers .mkdf-position-left-inner,.mkdf-mobile-header .mkdf-vertical-align-containers .mkdf-position-right-inner {
  height: 100%
}

.mkdf-mobile-header .mkdf-vertical-align-containers .mkdf-position-right {
  max-width: 80%
}

.mkdf-mobile-header .mkdf-mobile-logo-wrapper a {
  display: block
}

.mkdf-mobile-header .mkdf-mobile-logo-wrapper img {
  display: block;
  height: 100%;
  width: auto
}

.mkdf-mobile-header .mkdf-mobile-menu-opener {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 2
}

.mkdf-mobile-header .mkdf-mobile-menu-opener a {
  display: table;
  height: 100%
}

.mkdf-mobile-header .mkdf-mobile-menu-opener a>* {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  line-height: 1em
}

.mkdf-mobile-header .mkdf-mobile-menu-opener a .mkdf-mobile-menu-text {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  padding-right: 10px
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opened a {
  color: #ff5e14
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-icon-pack .mkdf-mobile-menu-icon {
  font-size: 20px
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-icon-pack .mkdf-mobile-menu-icon * {
  display: block;
  line-height: inherit
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-icon-pack .mkdf-mobile-menu-icon :before {
  display: block;
  line-height: inherit
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-svg-path .mkdf-mobile-menu-icon>* {
  vertical-align: middle
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-svg-path .mkdf-mobile-menu-icon path,.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-svg-path .mkdf-mobile-menu-icon>* {
  fill: currentColor;
  stroke: currentColor
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-predefined {
  line-height: 1
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-predefined a .mkdf-mobile-menu-icon {
  background-color: #ff5e14;
  color: #fff;
  height: 70px;
  width: 70px
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-predefined a .mkdf-mobile-menu-icon .mkdf-hm-lines {
  margin: 0 auto
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-predefined.mkdf-mobile-menu-opened .mkdf-hm-lines .mkdf-hm-line.mkdf-line-1,.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-predefined.mkdf-mobile-menu-opened .mkdf-hm-lines .mkdf-hm-line.mkdf-line-3 {
  width: 100%
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-predefined .mkdf-hm-lines {
  position: relative;
  display: block;
  width: 18px;
  height: 14px
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-predefined .mkdf-hm-lines .mkdf-hm-line {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  border-radius: 12px;
  transition: width .3s ease
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-predefined .mkdf-hm-lines .mkdf-hm-line.mkdf-line-1 {
  top: 0;
  width: 10px
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-predefined .mkdf-hm-lines .mkdf-hm-line.mkdf-line-2 {
  top: 6px
}

.mkdf-mobile-header .mkdf-mobile-menu-opener.mkdf-mobile-menu-opener-predefined .mkdf-hm-lines .mkdf-hm-line.mkdf-line-3 {
  bottom: 0;
  left: auto;
  right: 0;
  width: 10px
}

.mkdf-mobile-header .mkdf-mobile-nav {
  display: none;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #e8e8e9;
  padding: 3px 0 0 0;
  margin: 1px 0 0
}

.mkdf-mobile-header .mkdf-mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none
}

.mkdf-mobile-header .mkdf-mobile-nav ul li {
  position: relative;
  padding: 0;
  margin: 0;
  -webkit-transform: translateZ(0)
}

.mkdf-mobile-header .mkdf-mobile-nav ul li a,.mkdf-mobile-header .mkdf-mobile-nav ul li h6 {
  position: relative;
  display: block;
  padding: 9px 0;
  margin: 0;
  font-size: 14px;
  line-height: 23px;
  color: #565969;
  border-bottom: 1px solid #e8e8e9;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .1em
}

.mkdf-mobile-header .mkdf-mobile-nav ul li a:hover,.mkdf-mobile-header .mkdf-mobile-nav ul li h6:hover {
  color: #ff5e14
}

.mkdf-mobile-header .mkdf-mobile-nav ul ul {
  display: none;
  margin-left: 15px
}

.mkdf-mobile-header .mkdf-mobile-nav ul ul li.current-menu-ancestor>a,.mkdf-mobile-header .mkdf-mobile-nav ul ul li.current-menu-ancestor>h6,.mkdf-mobile-header .mkdf-mobile-nav ul ul li.current-menu-item>a,.mkdf-mobile-header .mkdf-mobile-nav ul ul li.current-menu-item>h6 {
  color: #ff5e14
}

.mkdf-mobile-header .mkdf-mobile-nav .mkdf-grid>ul>li.mkdf-active-item>a,.mkdf-mobile-header .mkdf-mobile-nav .mkdf-grid>ul>li.mkdf-active-item>h6 {
  color: #ff5e14
}

.mkdf-mobile-header .mkdf-mobile-nav .mkdf-grid>ul>li.mkdf-active-item>.mobile_arrow>.mkdf-sub-arrow {
  transform: rotate(90deg)
}

.mkdf-mobile-header .mkdf-mobile-nav .mobile_arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: auto;
  padding: 9px 12px 9px 0;
  font-size: 20px;
  line-height: inherit;
  text-align: right;
  box-sizing: border-box
}

.mkdf-mobile-header .mkdf-mobile-nav .mobile_arrow:hover {
  cursor: pointer
}

.mkdf-mobile-header .mkdf-mobile-nav .mobile_arrow .mkdf-sub-arrow {
  line-height: 1;
  transition: transform .2s ease-in-out
}

.mkdf-mobile-header .mkdf-mobile-nav .mobile_arrow .fa-angle-down {
  display: none
}

.mkdf-mobile-header .mkdf-mobile-nav li.mkdf-opened>.mobile_arrow>.mkdf-sub-arrow {
  transform: rotate(90deg)
}

.mkdf-mobile-header .mkdf-mobile-nav>.mkdf-grid>ul>li:last-child>a,.mkdf-mobile-header .mkdf-mobile-nav>ul>li:last-child>a {
  border-bottom: none
}

.mkdf-sticky-up-mobile-header .mkdf-animate-mobile-header .mkdf-mobile-header-inner {
  width: 100%;
  transform: translateY(-100%);
  transition: transform .4s ease-in-out,left .2s ease,right .2s ease
}

.mkdf-sticky-up-mobile-header .mobile-header-appear .mkdf-mobile-header-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0)
}

.mkdf-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  z-index: 100;
  -webkit-backface-visibility: hidden;
  transform: translateY(-100%);
  transition: transform .6s ease;
  box-shadow: -1px 1px 10px 0 rgba(38,59,98,.1)
}

.mkdf-sticky-header .mkdf-grid {
  height: 100%!important
}

.mkdf-sticky-header.header-appear {
  transform: translateY(0)
}

.admin-bar .mkdf-sticky-header.header-appear {
  top: 32px
}

.mkdf-sticky-header .mkdf-sticky-holder {
  position: relative;
  height: 100%;
  z-index: 2;
  background-color: #fff;
  box-sizing: border-box
}

.mkdf-sticky-header .mkdf-sticky-holder .mkdf-logo-wrapper a {
  max-height: 70px
}

.mkdf-sticky-header .mkdf-sticky-holder .mkdf-vertical-align-containers {
  padding: 0
}

.mkdf-sticky-header .mkdf-sticky-holder.mkdf-menu-left .mkdf-main-menu {
  width: auto;
  padding: 0 0 0 20px
}

.mkdf-sticky-header .mkdf-sticky-holder.mkdf-menu-left .mkdf-vertical-align-containers .mkdf-position-left-inner {
  height: 100%
}

.mkdf-sticky-header .mkdf-sticky-holder.mkdf-menu-left .mkdf-vertical-align-containers .mkdf-position-right:before {
  display: none
}

.mkdf-sticky-header .mkdf-sticky-holder.mkdf-menu-left .mkdf-vertical-align-containers .mkdf-position-right-inner {
  display: flex;
  align-items: center;
  height: 100%
}

.mkdf-sticky-header .mkdf-sticky-holder.mkdf-menu-center .mkdf-vertical-align-containers .mkdf-position-center-inner {
  height: 100%
}

.mkdf-sticky-header .mkdf-sticky-holder.mkdf-menu-center .mkdf-vertical-align-containers .mkdf-position-right:before {
  display: none
}

.mkdf-sticky-header .mkdf-sticky-holder.mkdf-menu-center .mkdf-vertical-align-containers .mkdf-position-right-inner {
  display: flex;
  align-items: center;
  height: 100%
}

.mkdf-sticky-header .mkdf-sticky-holder.mkdf-menu-right .mkdf-main-menu {
  width: auto
}

.mkdf-sticky-header .mkdf-sticky-holder.mkdf-menu-right .mkdf-vertical-align-containers .mkdf-position-right-inner {
  height: 100%
}

.mkdf-sticky-header .mkdf-sticky-holder.mkdf-menu-right .mkdf-vertical-align-containers .mkdf-position-right-inner>* {
  float: left
}

.mkdf-sticky-header .widget {
  display: inline-block;
  vertical-align: middle;
  margin: 0
}

.mkdf-top-bar {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  height: 40px;
  font-size: 14px;
  line-height: 1;
  color: #000;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 110
}

.mkdf-top-bar>.mkdf-vertical-align-containers {
  padding: 0 30px
}

.mkdf-top-bar a,.mkdf-top-bar svg {
  vertical-align: middle
}

.mkdf-top-bar svg path {
  fill: #001659
}

.mkdf-top-bar .mkdf-vertical-align-containers .mkdf-position-left:before,.mkdf-top-bar .mkdf-vertical-align-containers .mkdf-position-right:before {
  display: none
}

.mkdf-top-bar .mkdf-vertical-align-containers .mkdf-position-left-inner,.mkdf-top-bar .mkdf-vertical-align-containers .mkdf-position-right-inner {
  display: flex;
  height: 100%;
  align-items: center
}

.mkdf-top-bar .mkdf-grid {
  height: 100%
}

.mkdf-top-bar .mkdf-grid .mkdf-vertical-align-containers {
  padding-left: 0;
  padding-right: 0
}

.mkdf-top-bar-in-grid-padding .mkdf-top-bar .mkdf-grid .mkdf-vertical-align-containers {
  padding: 0 40px
}

.mkdf-top-bar .widget {
  margin: 0
}

.mkdf-search-opener {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  font-size: 15px;
  line-height: 1;
  margin: 0;
  padding: 0 26px;
  transition: all .3s ease
}

.mkdf-search-opener:hover {
  background-color: #ff5e14;
  color: #fff
}

.mkdf-header-tabbed .mkdf-search-opener {
  display: flex;
  align-items: center
}

.mkdf-sticky-header .mkdf-search-opener {
  display: inline-block;
  align-items: initial
}

.mkdf-search-opener .mkdf-search-opener-wrapper {
  display: flex;
  align-items: center;
  height: 100%
}

.mkdf-search-opener .mkdf-search-opener-wrapper>* {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: inherit
}

.mkdf-search-opener .mkdf-search-opener-wrapper>:before {
  display: block;
  line-height: inherit
}

.mkdf-search-opener .mkdf-search-opener-wrapper>span {
  transform: rotateZ(-90deg)
}

.mkdf-search-opener.mkdf-search-opener-svg-path .mkdf-search-opener-wrapper>* {
  vertical-align: middle
}

.mkdf-search-opener.mkdf-search-opener-svg-path .mkdf-search-opener-wrapper path,.mkdf-search-opener.mkdf-search-opener-svg-path .mkdf-search-opener-wrapper>* {
  fill: currentColor
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-search-opener,.mkdf-light-header .mkdf-top-bar .mkdf-search-opener {
  color: #fff!important
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-search-opener:hover,.mkdf-light-header .mkdf-top-bar .mkdf-search-opener:hover {
  color: #fff!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-search-opener,.mkdf-dark-header .mkdf-top-bar .mkdf-search-opener {
  color: #001659!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-search-opener:hover,.mkdf-dark-header .mkdf-top-bar .mkdf-search-opener:hover {
  color: #ff5e14!important
}

.mkdf-search-page-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0 0 80px
}

.mkdf-search-page-holder .mkdf-search-page-form {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0 0 30px
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-search-title {
  margin: 0 0 20px
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-search-label {
  display: block
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-form-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0 0 10px;
  clear: both;
  border-bottom: 1px solid #e8e8e9
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-form-holder .mkdf-column-left {
  display: table-cell;
  vertical-align: top;
  width: 98%
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-form-holder .mkdf-column-right {
  display: table-cell;
  width: 1%;
  text-align: left;
  vertical-align: top
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-form-holder .mkdf-search-field {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0 20px 0 3px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .1em;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: 0;
  vertical-align: middle;
  -webkit-appearance: none;
  box-sizing: border-box;
  text-transform: none
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-form-holder .mkdf-search-field::-webkit-input-placeholder {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  font-family: Yantramanav,sans-serif;
  line-height: 47px
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-form-holder .mkdf-search-field:-moz-placeholder {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  font-family: Yantramanav,sans-serif;
  line-height: 47px;
  opacity: 1
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-form-holder .mkdf-search-field::-moz-placeholder {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  font-family: Yantramanav,sans-serif;
  line-height: 47px;
  opacity: 1
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-form-holder .mkdf-search-field:-ms-input-placeholder {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  font-family: Yantramanav,sans-serif;
  line-height: 47px
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-form-holder .mkdf-search-submit {
  position: relative;
  display: inline-block;
  width: auto;
  height: 40px;
  line-height: 40px;
  padding: 0;
  font-size: 18px;
  color: #565969;
  background-color: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  vertical-align: middle;
  transition: color .2s ease-in-out
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-form-holder .mkdf-search-submit:hover svg path {
  fill: #ff5e14
}

.mkdf-search-page-holder .mkdf-search-page-form .mkdf-form-holder .mkdf-search-submit:hover {
  color: #001659
}

.mkdf-search-page-holder article {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 30px 0;
  margin: 0;
  border-bottom: 1px solid #e8e8e9
}

.mkdf-search-page-holder article.sticky .mkdf-post-title a {
  color: #ff5e14
}

.mkdf-search-page-holder article.page .mkdf-post-title-area .mkdf-post-info>div.mkdf-post-info-category {
  display: none
}

.mkdf-search-page-holder article .mkdf-post-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-search-page-holder article .mkdf-post-image {
  display: block;
  float: left;
  width: 130px
}

.mkdf-search-page-holder article .mkdf-post-image a,.mkdf-search-page-holder article .mkdf-post-image img {
  display: block
}

.mkdf-search-page-holder article .mkdf-post-title-area {
  min-height: 130px;
  padding: 0 0 0 150px
}

.mkdf-search-page-holder article .mkdf-post-title-area.mkdf-no-thumbnail {
  padding: 0;
  min-height: inherit
}

.mkdf-search-page-holder article .mkdf-post-title-area .mkdf-post-title-area-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box
}

.mkdf-search-page-holder article .mkdf-post-title-area .mkdf-post-title-area-inner .mkdf-post-title {
  margin: 0
}

.mkdf-search-page-holder article .mkdf-post-title-area .mkdf-post-title-area-inner .mkdf-post-excerpt {
  margin: 7px 0 0
}

.mkdf-search-page-holder .mkdf-blog-pagination {
  margin: 50px 0 0
}

.mkdf-search-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  background-color: #fff;
  z-index: 115;
  border: 1px solid #e8e8e9
}

.mkdf-search-cover.mkdf-is-active .mkdf-search-close-svg-path svg {
  opacity: 1
}

.mkdf-search-cover .mkdf-search-close-svg-path svg {
  opacity: 0;
  transition: .3s
}

.mkdf-search-cover .mkdf-serarch-cover-holder {
  height: 100%;
  width: calc(100% - 89px);
  float: left
}

.mkdf-search-cover .mkdf-search-cover-icon {
  float: left;
  margin-right: 10px;
  height: 100%;
  border-right: 1px solid #e8e8e9;
  width: 70px
}

.mkdf-search-cover .mkdf-search-cover-icon-holder {
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.mkdf-search-cover .mkdf-search-cover-icon-holder svg {
  width: 18px
}

.mkdf-search-cover .mkdf-search-cover-icon-holder svg .st0 {
  fill: #001659
}

.mkdf-search-cover.mkdf-opener-in-top-header {
  top: auto;
  bottom: 100%
}

.mkdf-search-cover .mkdf-close-icon-svg {
  position: relative;
  top: -1px;
  width: 18px
}

.mkdf-search-cover .mkdf-container,.mkdf-search-cover .mkdf-container-inner {
  height: 100%
}

.mkdf-fixed-header-appear .mkdf-search-cover,.mkdf-mobile-header.mobile-header-appear .mkdf-search-cover,.mkdf-sticky-header-appear .mkdf-search-cover {
  position: fixed
}

.admin-bar .mkdf-mobile-header.mobile-header-appear .mkdf-search-cover,.mkdf-fixed-header-appear.admin-bar .mkdf-search-cover,.mkdf-sticky-header-appear.admin-bar .mkdf-search-cover {
  top: 32px
}

.mkdf-search-cover .mkdf-form-holder-outer {
  display: table;
  height: 100%;
  width: 100%
}

.mkdf-search-cover .mkdf-form-holder {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 0 15px
}

.mkdf-search-cover .mkdf-form-holder-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-search-cover .mkdf-container-inner .mkdf-form-holder {
  padding: 0
}

.mkdf-search-cover .mkdf-container-inner .mkdf-search-close {
  right: 0
}

.mkdf-search-cover input {
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 90%;
  padding: 0;
  margin: 0;
  font-family: Yantramanav,sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: 0;
  outline-offset: 0;
  letter-spacing: 0
}

.mkdf-search-cover input::-webkit-input-placeholder {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-family: Yantramanav,sans-serif;
  color: #001659!important
}

.mkdf-search-cover input:-moz-placeholder {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-family: Yantramanav,sans-serif;
  color: #001659!important;
  opacity: 1
}

.mkdf-search-cover input::-moz-placeholder {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-family: Yantramanav,sans-serif;
  color: #001659!important;
  opacity: 1
}

.mkdf-search-cover input:-ms-input-placeholder {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-family: Yantramanav,sans-serif;
  color: #001659!important
}

.mkdf-search-cover input[type=submit] {
  position: absolute;
  height: 1px;
  width: 1px;
  padding: 0;
  margin: -1px;
  border: 0 none;
  clip: rect(0,0,0,0);
  visibility: hidden
}

.mkdf-search-cover .mkdf-search-close {
  position: absolute;
  top: 50%;
  right: -7px;
  width: 70px;
  height: calc(100% + 2px);
  text-align: center;
  color: #fff;
  background-color: #ff5e14;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center
}

.mkdf-search-cover .mkdf-search-close span {
  margin-left: 50%;
  font-size: 24px;
  line-height: 1em;
  vertical-align: middle;
  margin-top: 50%;
  transform: translate(-50%,-50%)
}

.mkdf-search-cover .mkdf-search-close:hover {
  color: #fff
}

.mkdf-search-cover .mkdf-search-close.mkdf-search-close-icon-pack {
  font-size: 20px;
  line-height: 1em
}

.mkdf-search-cover .mkdf-search-close.mkdf-search-close-icon-pack * {
  display: block;
  line-height: inherit
}

.mkdf-search-cover .mkdf-search-close.mkdf-search-close-icon-pack :before {
  display: block;
  line-height: inherit
}

.mkdf-search-cover .mkdf-search-close.mkdf-search-close-svg-path>* {
  vertical-align: middle
}

.mkdf-search-cover .mkdf-search-close.mkdf-search-close-svg-path path,.mkdf-search-cover .mkdf-search-close.mkdf-search-close-svg-path>* {
  fill: currentColor
}

.mkdf-search-cover.disabled input,.mkdf-search-cover.disabled input:focus {
  font-weight: 400
}

.mkdf-fullscreen-with-sidebar-search-holder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 105;
  opacity: 0
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-fullscreen-search-table {
  display: table;
  width: 100%;
  height: 100%
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-fullscreen-search-cell {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  vertical-align: top;
  text-align: center;
  padding: 110px 0 0
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-fullscreen-search-inner:not(.mkdf-grid) {
  width: 90%;
  margin: 0 auto
}

@media only screen and (min-width: 1501px) {
  .mkdf-fullscreen-with-sidebar-search-holder .mkdf-fullscreen-search-inner:not(.mkdf-grid) {
      width:1500px;
      margin: 0 auto
  }
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-form-holder-inner {
  position: relative;
  width: 100%;
  margin: auto
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-field-holder {
  display: block;
  position: relative
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-field {
  position: relative;
  height: 100%;
  width: 100%;
  border: 0;
  padding: 0 0 0 15px;
  background: 0 0;
  outline: 0;
  font-family: inherit;
  font-size: 89px;
  color: #d9cac1;
  line-height: 1;
  letter-spacing: -.02em;
  border-left: 6px solid #d9cac1;
  font-weight: 600;
  transition: all .1s
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-field:focus {
  border-bottom: 0;
  color: #001659;
  border-color: #001659
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-submit {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: auto;
  color: #d9cac1;
  background-color: transparent;
  border: none;
  outline: 0;
  cursor: pointer
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-submit.mkdf-search-submit-icon-pack {
  font-size: 64px;
  line-height: 1em
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-submit.mkdf-search-submit-svg-path path,.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-submit.mkdf-search-submit-svg-path>* {
  fill: currentColor;
  stroke: currentColor
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-submit:hover {
  color: #001659
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-close {
  position: absolute;
  top: 40px;
  right: 75px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 1
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-close.mkdf-search-close-icon-pack {
  font-size: 26px;
  line-height: 1em
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-close.mkdf-search-close-icon-pack span {
  display: block;
  line-height: inherit
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-close.mkdf-search-close-icon-pack span:before {
  display: block;
  line-height: inherit
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-close.mkdf-search-close-svg-path>* {
  vertical-align: middle
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-close.mkdf-search-close-svg-path path,.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-close.mkdf-search-close-svg-path>* {
  fill: currentColor
}

.admin-bar .mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-close {
  top: 72px
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-search-close:hover {
  color: #001659
}

.mkdf-fullscreen-with-sidebar-search-holder .mkdf-fullscreen-sidebar {
  margin: 26px 0 0
}

.mkdf-search-fade .mkdf-fullscreen-with-sidebar-search-holder {
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  z-index: 112;
  box-sizing: border-box
}

.mkdf-search-fade .mkdf-fullscreen-with-sidebar-search-holder .mkdf-fullscreen-search-table {
  background-color: #ff5e14
}

.mkdf-search-fade-out.mkdf-search-fade .mkdf-fullscreen-with-sidebar-search-holder {
  animation: search_fade_out .2s ease-out both
}

.mkdf-search-fade-in.mkdf-search-fade .mkdf-fullscreen-with-sidebar-search-holder.mkdf-animate {
  animation: search_fade_in .3s ease both
}

.mkdf-search-fade .mkdf-fullscreen-with-sidebar-search-holder.mkdf-animate .mkdf-search-close {
  opacity: 1;
  visibility: visible
}

@-webkit-keyframes search_fade_out {
  0% {
      opacity: 1;
      visibility: visible
  }

  100% {
      opacity: 0;
      visibility: hidden
  }
}

@keyframes search_fade_out {
  0% {
      opacity: 1;
      visibility: visible
  }

  100% {
      opacity: 0;
      visibility: hidden
  }
}

@-webkit-keyframes search_fade_in {
  0% {
      opacity: 0;
      visibility: hidden
  }

  100% {
      opacity: 1;
      visibility: visible
  }
}

@keyframes search_fade_in {
  0% {
      opacity: 0;
      visibility: hidden
  }

  100% {
      opacity: 1;
      visibility: visible
  }
}

.mkdf-fullscreen-search-holder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 105;
  opacity: 0
}

.mkdf-fullscreen-search-holder .mkdf-fullscreen-search-table {
  display: table;
  width: 100%;
  height: 100%
}

.mkdf-fullscreen-search-holder .mkdf-fullscreen-search-cell {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  text-align: center
}

.mkdf-fullscreen-search-holder .mkdf-form-holder-inner {
  position: relative;
  width: 60%;
  margin: auto
}

.mkdf-fullscreen-search-holder .mkdf-form-holder-inner .mkdf-line {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  border-bottom: 1px solid #e8e8e9;
  transition: all .3s .2s
}

.mkdf-fullscreen-search-opened .mkdf-fullscreen-search-holder .mkdf-form-holder-inner .mkdf-line {
  width: 100%;
  transition: width .5s ease .6s
}

.mkdf-fullscreen-search-holder .mkdf-field-holder {
  display: block;
  position: relative
}

.mkdf-fullscreen-search-holder .mkdf-search-field {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 25px;
  color: #001659;
  line-height: 2em;
  background: 0 0;
  border: 0;
  border-radius: 0;
  outline: 0
}

.mkdf-fullscreen-search-holder .mkdf-search-submit {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: auto;
  color: #565969;
  background-color: transparent;
  border: none;
  outline: 0;
  opacity: 0;
  cursor: pointer;
  transition: all .3s .2s
}

.mkdf-fullscreen-search-holder .mkdf-search-submit:hover {
  color: #001659
}

.mkdf-fullscreen-search-opened .mkdf-fullscreen-search-holder .mkdf-search-submit {
  opacity: 1;
  bottom: 40px;
  transition: color .2s ease,opacity .2s ease-out 1.1s,bottom .4s ease-out .9s
}

.mkdf-fullscreen-search-holder .mkdf-search-submit.mkdf-search-submit-icon-pack {
  font-size: 18px;
  line-height: 1em
}

.mkdf-fullscreen-search-holder .mkdf-search-submit.mkdf-search-submit-svg-path path,.mkdf-fullscreen-search-holder .mkdf-search-submit.mkdf-search-submit-svg-path>* {
  fill: currentColor;
  stroke: currentColor
}

.mkdf-fullscreen-search-holder .mkdf-search-close {
  position: absolute;
  top: 33px;
  right: 70px;
  color: #565969;
  opacity: 0;
  visibility: hidden;
  z-index: 1
}

.admin-bar .mkdf-fullscreen-search-holder .mkdf-search-close {
  top: 72px
}

.mkdf-fullscreen-search-holder .mkdf-search-close:hover {
  color: #001659
}

.mkdf-fullscreen-search-holder .mkdf-search-close.mkdf-search-close-icon-pack {
  font-size: 25px;
  line-height: 1em
}

.mkdf-fullscreen-search-holder .mkdf-search-close.mkdf-search-close-icon-pack * {
  display: block;
  line-height: inherit
}

.mkdf-fullscreen-search-holder .mkdf-search-close.mkdf-search-close-icon-pack :before {
  display: block;
  line-height: inherit
}

.mkdf-fullscreen-search-holder .mkdf-search-close.mkdf-search-close-svg-path>* {
  vertical-align: middle
}

.mkdf-fullscreen-search-holder .mkdf-search-close.mkdf-search-close-svg-path path,.mkdf-fullscreen-search-holder .mkdf-search-close.mkdf-search-close-svg-path>* {
  fill: currentColor
}

.mkdf-search-fade .mkdf-fullscreen-search-holder {
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  z-index: 112;
  box-sizing: border-box
}

.mkdf-search-fade .mkdf-fullscreen-search-holder .mkdf-fullscreen-search-table {
  background-color: rgba(255,255,255,.98)
}

.mkdf-search-fade-out.mkdf-search-fade .mkdf-fullscreen-search-holder {
  animation: search_fade_out .2s ease-out both
}

.mkdf-search-fade-in.mkdf-search-fade .mkdf-fullscreen-search-holder.mkdf-animate {
  animation: search_fade_in .3s ease both
}

.mkdf-search-fade .mkdf-fullscreen-search-holder.mkdf-animate .mkdf-search-close {
  opacity: 1;
  visibility: visible
}

@-webkit-keyframes search_fade_out {
  0% {
      opacity: 1;
      visibility: visible
  }

  100% {
      opacity: 0;
      visibility: hidden
  }
}

@keyframes search_fade_out {
  0% {
      opacity: 1;
      visibility: visible
  }

  100% {
      opacity: 0;
      visibility: hidden
  }
}

@-webkit-keyframes search_fade_in {
  0% {
      opacity: 0;
      visibility: hidden
  }

  100% {
      opacity: 1;
      visibility: visible
  }
}

@keyframes search_fade_in {
  0% {
      opacity: 0;
      visibility: hidden
  }

  100% {
      opacity: 1;
      visibility: visible
  }
}

.mkdf-slide-from-header-bottom-holder {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  display: none;
  padding: 25px;
  margin: 0;
  background-color: #fff;
  border: 1px solid #e8e8e9;
  overflow: hidden;
  z-index: 9999;
  box-sizing: border-box
}

.mkdf-fixed-header-appear .mkdf-slide-from-header-bottom-holder,.mkdf-mobile-header.mobile-header-appear .mkdf-slide-from-header-bottom-holder,.mkdf-sticky-header-appear .mkdf-slide-from-header-bottom-holder {
  position: fixed
}

.mkdf-slide-from-header-bottom-holder .mkdf-form-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  border: 1px solid #e8e8e9;
  box-sizing: border-box
}

.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-field,.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-submit {
  position: relative;
  display: inline-block;
  vertical-align: top;
  float: left;
  margin: 0;
  height: 44px;
  line-height: 42px;
  color: #565969;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  -webkit-appearance: none;
  box-sizing: border-box;
  transition: color .2s ease-out
}

.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-field {
  width: calc(100% - 40px);
  padding: 0 10px 0 20px;
  font-family: inherit
}

.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-field:focus {
  color: #001659
}

.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-submit {
  width: 40px;
  padding: 0 12px 0 0;
  cursor: pointer
}

.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-submit:hover {
  color: #001659
}

.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-submit.mkdf-search-submit-icon-pack {
  font-size: 15px;
  line-height: 1em
}

.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-submit.mkdf-search-submit-icon-pack * {
  display: block;
  line-height: inherit
}

.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-submit.mkdf-search-submit-icon-pack :before {
  display: block;
  line-height: inherit
}

.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-submit.mkdf-search-submit-svg-path>* {
  vertical-align: middle
}

.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-submit.mkdf-search-submit-svg-path path,.mkdf-slide-from-header-bottom-holder .mkdf-form-holder .mkdf-search-submit.mkdf-search-submit-svg-path>* {
  fill: currentColor;
  stroke: currentColor
}

.mkdf-search-slides-from-window-top .mkdf-fixed-wrapper.fixed,.mkdf-search-slides-from-window-top .mkdf-mobile-header,.mkdf-search-slides-from-window-top .mkdf-page-header,.mkdf-search-slides-from-window-top .mkdf-top-bar {
  top: 0;
  transition: top .25s ease-out
}

.mkdf-search-slides-from-window-top.mkdf-search-open .mkdf-fixed-wrapper.fixed,.mkdf-search-slides-from-window-top.mkdf-search-open .mkdf-mobile-header,.mkdf-search-slides-from-window-top.mkdf-search-open .mkdf-page-header,.mkdf-search-slides-from-window-top.mkdf-search-open .mkdf-top-bar {
  top: 50px
}

.mkdf-search-slides-from-window-top.mkdf-search-open .mkdf-search-slide-window-top {
  height: 50px
}

.mkdf-search-slides-from-window-top.mkdf-search-open .mkdf-sticky-header.header-appear,.mkdf-search-slides-from-window-top.mkdf-search-open.mkdf-sticky-up-mobile-header .mkdf-animate-mobile-header .mkdf-mobile-header-inner {
  transform: translateY(50px)
}

.mkdf-search-slides-from-window-top.mkdf-search-open.admin-bar .mkdf-sticky-header.header-appear,.mkdf-search-slides-from-window-top.mkdf-search-open.admin-bar.mkdf-sticky-up-mobile-header .mkdf-animate-mobile-header .mkdf-mobile-header-inner {
  transform: translateY(82px)
}

.mkdf-search-slide-window-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  margin: 0;
  color: #fff;
  background-color: #001659;
  overflow: hidden;
  z-index: 201;
  transition: top .25s ease-out,height .25s ease-out
}

.admin-bar .mkdf-search-slide-window-top {
  top: 32px
}

.mkdf-search-slide-window-top .mkdf-grid .mkdf-search-form-inner {
  padding: 0
}

.mkdf-search-slide-window-top .mkdf-search-form-inner {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box
}

.mkdf-search-slide-window-top .mkdf-search-submit {
  color: #fff;
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  width: 40px
}

.mkdf-search-slide-window-top .mkdf-search-submit.mkdf-search-submit-icon-pack {
  font-size: 14px;
  line-height: 1
}

.mkdf-search-slide-window-top .mkdf-search-submit.mkdf-search-submit-icon-pack>* {
  color: inherit;
  font-size: inherit;
  line-height: inherit
}

.mkdf-search-slide-window-top .mkdf-search-submit.mkdf-search-submit-svg-path>* {
  vertical-align: middle
}

.mkdf-search-slide-window-top .mkdf-search-submit.mkdf-search-submit-svg-path path,.mkdf-search-slide-window-top .mkdf-search-submit.mkdf-search-submit-svg-path>* {
  fill: currentColor;
  stroke: currentColor
}

.mkdf-search-slide-window-top .mkdf-search-close {
  color: #fff;
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  width: 40px
}

.mkdf-search-slide-window-top .mkdf-search-close.mkdf-search-close-icon-pack {
  font-size: 20px;
  line-height: 1em
}

.mkdf-search-slide-window-top .mkdf-search-close.mkdf-search-close-icon-pack span {
  display: block;
  line-height: inherit
}

.mkdf-search-slide-window-top .mkdf-search-close.mkdf-search-close-icon-pack span:before {
  display: block;
  line-height: inherit
}

.mkdf-search-slide-window-top .mkdf-search-close.mkdf-search-close-svg-path>* {
  vertical-align: middle
}

.mkdf-search-slide-window-top .mkdf-search-close.mkdf-search-close-svg-path path,.mkdf-search-slide-window-top .mkdf-search-close.mkdf-search-close-svg-path>* {
  fill: currentColor
}

.mkdf-search-slide-window-top .mkdf-swt-search-field {
  padding: 0 30px;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  color: #fff;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: none;
  box-sizing: border-box
}

.mkdf-search-slide-window-top .mkdf-swt-search-field:focus {
  color: #fff
}

.mkdf-page-footer {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  z-index: 100;
  box-sizing: border-box
}

.mkdf-page-footer .custom-html-widget a,.mkdf-page-footer .custom-html-widget svg {
  vertical-align: middle
}

.mkdf-page-footer .custom-html-widget svg path {
  fill: #fff
}

.mkdf-page-footer .custom-html-widget span {
  color: #9ca5af
}

.mkdf-page-footer .custom-html-widget a {
  font-weight: 400;
  color: #9ca5af
}

.mkdf-page-footer .custom-html-widget a:hover {
  color: #ff5e14
}

.mkdf-page-footer a,.mkdf-page-footer svg {
  vertical-align: middle
}

.mkdf-page-footer svg path {
  fill: #9ca5af
}

.mkdf-page-footer span:not(.mkdf-btn-text) {
  color: #9ca5af
}

.mkdf-page-footer a {
  font-weight: 400;
  color: #9ca5af
}

.mkdf-page-footer a:hover {
  color: #ff5e14
}

.mkdf-page-footer .mkdf-icon-widget-holder:hover .mkdf-icon-text {
  color: #ff5e14!important
}

.no-touchevents body:not(.error404) .mkdf-page-footer.mkdf-footer-uncover {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  transition: left .33s cubic-bezier(.694,.0482,.335,1)
}

.mkdf-right-side-menu-opened .mkdf-page-footer.mkdf-footer-uncover {
  left: -270px
}

.mkdf-page-footer .mkdf-footer-top-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  background-color: #0a1229;
  border-top: 0 solid #e8e8e9;
  box-sizing: border-box
}

.mkdf-page-footer .mkdf-footer-top-holder .mkdf-footer-top-alignment-center {
  text-align: center
}

.mkdf-page-footer .mkdf-footer-top-holder .mkdf-footer-top-alignment-left {
  text-align: left
}

.mkdf-page-footer .mkdf-footer-top-holder .mkdf-footer-top-alignment-right {
  text-align: right
}

.mkdf-page-footer .mkdf-footer-top-holder .mkdf-footer-top-inner {
  box-sizing: border-box
}

.mkdf-page-footer .mkdf-footer-top-holder .mkdf-footer-top-inner.mkdf-grid {
  padding: 96px 0 100px
}

.mkdf-page-footer .mkdf-footer-top-holder .mkdf-footer-top-inner.mkdf-full-width {
  padding: 86px 40px 90px
}

.mkdf-page-footer .mkdf-footer-top-holder .mkdf-icon-widget-holder img {
  max-width: initial
}

.mkdf-page-footer .mkdf-footer-bottom-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  background-color: #0a1229;
  border-top: none;
  box-sizing: border-box;
  height: 77px;
  border-top: 1px solid #1d263f
}

@media only screen and (max-width: 1024px) {
  .mkdf-page-footer .mkdf-footer-bottom-holder {
      height:initial
  }
}

.mkdf-page-footer .mkdf-footer-bottom-holder .mkdf-footer-bottom-inner {
  box-sizing: border-box
}

.mkdf-page-footer .mkdf-footer-bottom-holder .mkdf-footer-bottom-inner.mkdf-grid {
  padding: 0
}

.mkdf-page-footer .mkdf-footer-bottom-holder .mkdf-footer-bottom-inner.mkdf-full-width {
  padding: 0 40px
}

.mkdf-header-vertical .mkdf-page-footer .mkdf-footer-top-holder .mkdf-footer-top-inner.mkdf-grid {
  padding: 88px 0
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-side-menu-button-opener,.mkdf-light-header .mkdf-top-bar .mkdf-side-menu-button-opener {
  color: #fff!important
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-side-menu-button-opener.opened,.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-side-menu-button-opener:hover,.mkdf-light-header .mkdf-top-bar .mkdf-side-menu-button-opener.opened,.mkdf-light-header .mkdf-top-bar .mkdf-side-menu-button-opener:hover {
  color: #fff!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-side-menu-button-opener,.mkdf-dark-header .mkdf-top-bar .mkdf-side-menu-button-opener {
  color: #001659!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-side-menu-button-opener.opened,.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-side-menu-button-opener:hover,.mkdf-dark-header .mkdf-top-bar .mkdf-side-menu-button-opener.opened,.mkdf-dark-header .mkdf-top-bar .mkdf-side-menu-button-opener:hover {
  color: #ff5e14!important
}

.mkdf-side-menu-button-opener {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  padding: 0 25px;
  transition: all .3s ease
}

.mkdf-header-tabbed .mkdf-side-menu-button-opener {
  display: flex;
  align-items: center
}

.mkdf-sticky-header .mkdf-side-menu-button-opener {
  display: inline-block;
  align-items: initial
}

.mkdf-side-menu-button-opener .mkdf-side-menu-title {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 8px 0 0;
  color: currentColor
}

.mkdf-side-menu-button-opener .mkdf-side-menu-icon {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%
}

.mkdf-side-menu-button-opener.opened,.mkdf-side-menu-button-opener:hover {
  color: #fff;
  background-color: #ff5e14
}

.mkdf-side-menu-button-opener.opened a,.mkdf-side-menu-button-opener:hover a {
  color: #fff
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-icon-pack .mkdf-side-menu-icon {
  font-size: 20px
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-icon-pack .mkdf-side-menu-icon * {
  display: block;
  line-height: inherit
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-icon-pack .mkdf-side-menu-icon :before {
  display: block;
  line-height: inherit
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-svg-path .mkdf-side-menu-icon>* {
  vertical-align: middle
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-svg-path .mkdf-side-menu-icon path,.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-svg-path .mkdf-side-menu-icon>* {
  fill: currentColor;
  stroke: currentColor
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-predefined {
  line-height: 1;
  background-color: #ff5e14;
  color: #fff;
  border: 1px solid #ff5e14!important;
  box-sizing: border-box
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-predefined:hover .mkdf-hm-lines .mkdf-hm-line.mkdf-line-1,.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-predefined:hover .mkdf-hm-lines .mkdf-hm-line.mkdf-line-3 {
  width: 100%
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-predefined .mkdf-hm-lines {
  position: relative;
  display: block;
  width: 18px;
  height: 14px
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-predefined .mkdf-hm-lines .mkdf-hm-line {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  border-radius: 12px;
  transition: width .3s ease
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-predefined .mkdf-hm-lines .mkdf-hm-line.mkdf-line-1 {
  top: 0;
  width: 10px
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-predefined .mkdf-hm-lines .mkdf-hm-line.mkdf-line-2 {
  top: 6px
}

.mkdf-side-menu-button-opener.mkdf-side-menu-button-opener-predefined .mkdf-hm-lines .mkdf-hm-line.mkdf-line-3 {
  bottom: 0;
  left: auto;
  right: 0;
  width: 10px
}

.mkdf-side-menu {
  position: fixed;
  top: 0;
  right: -405px;
  width: 420px;
  height: 100%;
  min-height: 100%;
  padding: 6.4% 65px 36px;
  background-color: #fff;
  text-align: left;
  overflow: hidden;
  visibility: hidden;
  z-index: 9999;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
  box-shadow: -3px 0 3px rgba(0,0,0,.04);
  transition: all .6s cubic-bezier(.77,0,.175,1)
}

.mkdf-side-menu a.mkdf-close-side-menu {
  position: absolute;
  top: 40px;
  font-size: 38px;
  height: 70px;
  right: 0;
  display: block;
  z-index: 1000;
  color: #fff;
  padding: 16px 16px;
  box-sizing: border-box;
  background-color: #ff5e14
}

.mkdf-side-menu a.mkdf-close-side-menu span {
  display: none
}

.mkdf-side-menu a.mkdf-close-side-menu svg {
  color: #fff;
  width: 18px;
  padding: 11px 10px
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
  .mkdf-side-menu a.mkdf-close-side-menu svg {
      padding: 0 10px
  }
}

.mkdf-side-menu a.mkdf-close-side-menu svg:hover path:nth-of-type(1) {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  transition: .3s .3s
}

.mkdf-side-menu a.mkdf-close-side-menu svg:hover path:nth-of-type(2) {
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  transition: .3s
}

.mkdf-side-menu a.mkdf-close-side-menu svg:hover path:nth-of-type(3) {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  transition: .3s .6s
}

.mkdf-side-menu a.mkdf-close-side-menu svg:hover path:nth-of-type(4) {
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  transition: .3s .1s
}

.mkdf-side-menu a.mkdf-close-side-menu svg path:nth-of-type(1) {
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
  transition: .3s
}

.mkdf-side-menu a.mkdf-close-side-menu svg path:nth-of-type(2) {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  transition: .3s
}

.mkdf-side-menu a.mkdf-close-side-menu svg path:nth-of-type(3) {
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
  transition: .5s
}

.mkdf-side-menu a.mkdf-close-side-menu svg path:nth-of-type(4) {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  transition: .5s
}

.mkdf-side-menu a.mkdf-close-side-menu:hover {
  color: #fff
}

.admin-bar .mkdf-side-menu a.mkdf-close-side-menu {
  top: 72px
}

.mkdf-side-menu a.mkdf-close-side-menu.mkdf-close-side-menu-icon-pack {
  font-size: 20px
}

.mkdf-side-menu a.mkdf-close-side-menu.mkdf-close-side-menu-icon-pack * {
  display: block;
  line-height: inherit
}

.mkdf-side-menu a.mkdf-close-side-menu.mkdf-close-side-menu-icon-pack :before {
  display: block;
  line-height: inherit
}

.mkdf-side-menu a.mkdf-close-side-menu.mkdf-close-side-menu-svg-path>* {
  vertical-align: middle
}

.mkdf-side-menu a.mkdf-close-side-menu.mkdf-close-side-menu-svg-path path,.mkdf-side-menu a.mkdf-close-side-menu.mkdf-close-side-menu-svg-path>* {
  fill: currentColor;
  stroke: currentColor
}

.mkdf-right-side-menu-opened .mkdf-fixed-wrapper.fixed,.mkdf-right-side-menu-opened .mkdf-sticky-header,.mkdf-right-side-menu-opened .mkdf-wrapper,.mkdf-right-side-menu-opened .mobile-header-appear .mkdf-mobile-header-inner,.mkdf-right-side-menu-opened footer.mkdf-footer-uncover {
  left: 0
}

.mkdf-side-menu-slide-from-right .mkdf-wrapper {
  background-color: #fff;
  position: relative;
  z-index: 1000;
  transition: all .6s cubic-bezier(.77,0,.175,1)
}

.mkdf-side-menu-slide-from-right .mkdf-wrapper .mkdf-cover {
  z-index: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  background-color: rgba(0,22,89,.3);
  transition: opacity .2s ease-in-out,z-index .2s ease-in-out
}

.mkdf-side-menu-slide-from-right .mkdf-fixed-wrapper.fixed,.mkdf-side-menu-slide-from-right .mkdf-sticky-header {
  transition: all .6s cubic-bezier(.77,0,.175,1)
}

.mkdf-side-menu-slide-from-right footer.mkdf-footer-uncover {
  transition: all .6s cubic-bezier(.77,0,.175,1)
}

.mkdf-side-menu-slide-from-right.mkdf-right-side-menu-opened .mkdf-cover {
  z-index: 1002;
  opacity: 1
}

.mkdf-side-menu-slide-from-right.mkdf-right-side-menu-opened .mkdf-side-menu {
  right: 0;
  visibility: visible;
  background-color: #0a1229
}

.mkdf-side-area-uncovered-from-content.mkdf-right-side-menu-opened .mkdf-fixed-wrapper.fixed,.mkdf-side-area-uncovered-from-content.mkdf-right-side-menu-opened .mkdf-mobile-header-inner,.mkdf-side-area-uncovered-from-content.mkdf-right-side-menu-opened .mkdf-sticky-header,.mkdf-side-area-uncovered-from-content.mkdf-right-side-menu-opened .mkdf-wrapper,.mkdf-side-area-uncovered-from-content.mkdf-right-side-menu-opened .mobile-header-appear .mkdf-mobile-header-inner,.mkdf-side-area-uncovered-from-content.mkdf-right-side-menu-opened footer.mkdf-footer-uncover {
  left: -405px
}

.mkdf-side-area-uncovered-from-content .mkdf-side-menu {
  right: 0;
  z-index: 90
}

.mkdf-side-area-uncovered-from-content .mkdf-fixed-wrapper.fixed,.mkdf-side-area-uncovered-from-content .mkdf-sticky-header {
  transition: all .6s cubic-bezier(.77,0,.175,1)
}

.mkdf-side-menu-slide-with-content {
  overflow-x: hidden;
  position: relative;
  left: 0;
  -webkit-overflow-scrolling: auto!important;
  transition: all .6s cubic-bezier(.77,0,.175,1)
}

.mkdf-side-menu-slide-with-content .mkdf-side-menu {
  visibility: visible
}

.mkdf-side-menu-slide-with-content .mkdf-wrapper,.mkdf-side-menu-slide-with-content footer.mkdf-footer-uncover {
  transition: all .6s cubic-bezier(.77,0,.175,1)
}

.mkdf-side-menu-slide-with-content .mkdf-fixed-wrapper.fixed,.mkdf-side-menu-slide-with-content .mkdf-mobile-header-inner,.mkdf-side-menu-slide-with-content .mkdf-sticky-header {
  transition: all .6s cubic-bezier(.77,0,.175,1)
}

.mkdf-side-menu-slide-with-content.mkdf-side-menu-open .mkdf-fixed-wrapper,.mkdf-side-menu-slide-with-content.mkdf-side-menu-open .mkdf-mobile-header-inner,.mkdf-side-menu-slide-with-content.mkdf-side-menu-open .mkdf-sticky-header,.mkdf-side-menu-slide-with-content.mkdf-side-menu-open .mkdf-wrapper,.mkdf-side-menu-slide-with-content.mkdf-side-menu-open footer.mkdf-footer-uncover {
  left: -405px
}

.mkdf-side-menu-slide-with-content.mkdf-side-menu-open .mkdf-side-menu {
  right: 0
}

@media only screen and (max-width: 1440px) {
  .mkdf-side-menu-slide-from-right .mkdf-side-menu {
      padding:128px 43px 30px
  }
}

@media only screen and (max-width: 1366px) {
  .mkdf-side-menu-slide-from-right .mkdf-side-menu {
      padding:36px 66px 30px 35px
  }
}

.mkdf-has-skewed-section-effect {
  position: relative;
  z-index: 100
}

.mkdf-skewed-section-effect>svg {
  vertical-align: middle
}

.mkdf-skewed-section-effect>svg>* {
  fill: currentColor
}

.mkdf-top-skewed-section-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  transform: rotate(-180deg) translateY(99%)
}

.mkdf-bottom-skewed-section-effect,.mkdf-header-skewed-section-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  transform: translateY(99%)
}

.mkdf-title-skewed-section-effect {
  position: relative
}

.mkdf-title-skewed-section-effect.mkdf-title-inset-section-effect {
  z-index: 101;
  transform: rotate(180deg) translateY(100%)
}

@media only screen and (max-width: 1024px) {
  .mkdf-disable-header-ss-on-mobile .mkdf-header-skewed-section-effect {
      display:none
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-disable-ss-on-mobile .vc_row .mkdf-skewed-section-effect,.mkdf-disable-title-ss-on-mobile .mkdf-title-skewed-section-effect {
      display:none
  }
}

.mkdf-subscribe-popup-holder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 115;
  visibility: hidden;
  transition: opacity .2s ease-out .1s,visibility 0s .4s
}

.mkdf-subscribe-popup-holder .mkdf-sp-shader {
  position: fixed;
  top: 0;
  left: 0;
  width: 110%;
  height: 130%;
  z-index: 1;
  -webkit-transform-style: flat;
  transform-style: flat;
  backface-visibility: hidden;
  background-color: rgba(0,0,0,.65);
  transform: translateZ(0)
}

.mkdf-subscribe-popup-holder .mkdf-sp-table {
  position: relative;
  display: table;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(255,255,255,.75)
}

.mkdf-subscribe-popup-holder .mkdf-sp-table-cell {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  text-align: center
}

.mkdf-subscribe-popup-holder .mkdf-sp-inner {
  display: table;
  margin: 0 auto;
  width: 49%;
  min-height: 420px;
  box-sizing: border-box;
  opacity: 0;
  box-shadow: 0 0 7px 0 rgba(0,0,0,.07);
  transition: transform .3s cubic-bezier(.06,.47,.38,.99),opacity .3s cubic-bezier(.06,.47,.38,.99);
  transform: scale(.6)
}

@media only screen and (max-width: 1440px) {
  .mkdf-subscribe-popup-holder .mkdf-sp-inner {
      width:70%
  }
}

.mkdf-subscribe-popup-holder .mkdf-sp-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: block;
  color: #000
}

.mkdf-subscribe-popup-holder .mkdf-sp-close:hover {
  color: #565969
}

.mkdf-subscribe-popup-holder .mkdf-sp-close svg {
  stroke: currentColor;
  fill: currentColor
}

.mkdf-subscribe-popup-holder .mkdf-sp-content-container {
  background: #fff;
  display: table-cell;
  vertical-align: middle;
  padding: 10px 60px;
  text-align: left
}

.mkdf-subscribe-popup-holder .mkdf-sp-background {
  display: table-cell;
  width: 39%;
  background-size: cover
}

.mkdf-subscribe-popup-holder .mkdf-sp-title {
  position: relative;
  margin-bottom: 51px
}

.mkdf-subscribe-popup-holder .mkdf-sp-title:after {
  content: '';
  position: absolute;
  bottom: -26px;
  left: 0;
  height: 3px;
  width: 37px;
  background-color: currentColor
}

.mkdf-subscribe-popup-holder .mkdf-sp-subtitle {
  margin-bottom: 28px
}

.mkdf-subscribe-popup-holder .wpcf7 {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 auto
}

.mkdf-subscribe-popup-holder .mkdf-sp-prevent {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin-top: 28px;
  text-align: right
}

.mkdf-subscribe-popup-holder .mkdf-sp-prevent-inner {
  position: relative;
  display: inline-block;
  vertical-align: top;
  cursor: pointer
}

.mkdf-subscribe-popup-holder .mkdf-sp-prevent-inner>* {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 1
}

.mkdf-subscribe-popup-holder .mkdf-sp-prevent-input {
  margin: 1px 1px 0 0;
  width: 11px;
  height: 11px;
  border: 1px solid #001659;
  overflow: hidden;
  box-sizing: border-box
}

.mkdf-subscribe-popup-holder .mkdf-sp-prevent-input svg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .1s ease
}

.mkdf-subscribe-popup-holder .mkdf-sp-prevent-input.mkdf-sp-prevent-clicked svg {
  opacity: 1
}

.mkdf-subscribe-popup-holder .mkdf-sp-prevent-label {
  font-size: 13px
}

.mkdf-sp-opened .mkdf-subscribe-popup-holder {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease
}

.mkdf-sp-opened .mkdf-subscribe-popup-holder .mkdf-sp-inner {
  opacity: 1;
  transform: scale(1);
  transition: transform .8s cubic-bezier(.26,.63,0,.96)
}

.mkdf-title-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  height: 615px;
  background-color: #f2f3f5;
  background-position: center 0;
  background-repeat: no-repeat;
  z-index: 101
}

.mkdf-title-holder.mkdf-title-full-width .mkdf-grid {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0;
  padding: 0 40px;
  box-sizing: border-box
}

.mkdf-title-holder.mkdf-bg-responsive {
  height: auto!important
}

.mkdf-title-holder.mkdf-bg-responsive .mkdf-title-image {
  display: block
}

.mkdf-title-holder.mkdf-bg-responsive .mkdf-title-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%)
}

.mkdf-title-holder.mkdf-bg-parallax {
  background-attachment: fixed
}

.mkdf-title-holder .mkdf-title-image {
  display: none
}

.mkdf-title-holder .mkdf-title-image img {
  display: block;
  width: 100%
}

.mkdf-title-holder .mkdf-title-wrapper {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%
}

.mkdf-title-holder .mkdf-title-inner {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle
}

.mkdf-title-holder.mkdf-title-with-background-text .mkdf-title-inner {
  position: relative
}

.mkdf-ms-explorer .mkdf-title-holder.mkdf-title-with-background-text .mkdf-title-inner {
  position: static
}

.mkdf-title-holder.mkdf-title-with-background-text .mkdf-title-inner .mkdf-title-background-text {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1
}

@media only screen and (max-width: 1024px) {
  .mkdf-title-holder.mkdf-title-with-background-text .mkdf-title-inner .mkdf-title-background-text {
      display:none
  }
}

.mkdf-title-holder.mkdf-title-with-background-text .mkdf-title-inner .mkdf-title-background-text .mkdf-title-background-text-holder {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%
}

.mkdf-title-holder.mkdf-title-with-background-text .mkdf-title-inner .mkdf-title-background-text .mkdf-title-background-text-holder-inner {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  font-size: 180px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #f5f6f7;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #d2d2d4
}

.mkdf-title-holder.mkdf-breadcrumbs-type .mkdf-breadcrumbs {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  color: #565969
}

@media only screen and (max-width: 1024px) {
  .mkdf-title-holder.mkdf-breadcrumbs-type .mkdf-breadcrumbs {
      padding:15px 0
  }
}

.mkdf-title-holder.mkdf-breadcrumbs-type .mkdf-breadcrumbs.mkdf-has-inline-style a {
  opacity: 1;
  transition: opacity .2s ease-out
}

.mkdf-title-holder.mkdf-breadcrumbs-type .mkdf-breadcrumbs.mkdf-has-inline-style a:hover {
  color: inherit;
  opacity: .9
}

.mkdf-title-holder.mkdf-breadcrumbs-type .mkdf-breadcrumbs a,.mkdf-title-holder.mkdf-breadcrumbs-type .mkdf-breadcrumbs span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: inherit;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500
}

.mkdf-title-holder.mkdf-breadcrumbs-type .mkdf-breadcrumbs a:hover {
  color: #001659
}

.mkdf-title-holder.mkdf-centered-type .mkdf-title-inner {
  text-align: center
}

.mkdf-title-holder.mkdf-centered-type .mkdf-page-title-additional-text {
  margin: 0
}

.mkdf-title-holder.mkdf-centered-type .mkdf-page-title {
  margin: 0;
  line-height: .95em
}

@media only screen and (max-width: 680px) {
  .mkdf-title-holder.mkdf-centered-type .mkdf-page-title {
      font-size:40px
  }
}

.mkdf-title-holder.mkdf-centered-type .mkdf-page-subtitle {
  font-size: 20px;
  line-height: 10px;
  font-weight: 400;
  letter-spacing: 0;
  color: #565969;
  width: 47%;
  margin: 14px 0
}

@media only screen and (max-width: 1366px) {
  .mkdf-title-holder.mkdf-centered-type .mkdf-page-subtitle {
      width:45%
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-title-holder.mkdf-centered-type .mkdf-page-subtitle {
      width:90%
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-title-holder.mkdf-centered-type .mkdf-page-subtitle {
      width:90%
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-title-holder.mkdf-centered-type .mkdf-page-subtitle {
      display:none
  }
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-breadcrumbs-info,.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-title-info {
  display: table-cell;
  vertical-align: middle
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-title-info {
  width: 99%
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-breadcrumbs-info {
  width: 1%;
  text-align: right;
  white-space: nowrap
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-page-title-additional-text {
  margin: 0
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-page-title {
  margin: 0;
  line-height: .95em
}

@media only screen and (max-width: 680px) {
  .mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-page-title {
      font-size:40px
  }
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-page-subtitle {
  font-size: 20px;
  line-height: 10px;
  font-weight: 400;
  letter-spacing: 0;
  color: #565969;
  width: 47%;
  margin: 14px 0
}

@media only screen and (max-width: 1366px) {
  .mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-page-subtitle {
      width:45%
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-page-subtitle {
      width:90%
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-page-subtitle {
      width:90%
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-page-subtitle {
      display:none
  }
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-breadcrumbs {
  color: #565969
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-breadcrumbs.mkdf-has-inline-style a {
  opacity: 1;
  transition: opacity .2s ease-out
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-breadcrumbs.mkdf-has-inline-style a:hover {
  color: inherit;
  opacity: .9
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-breadcrumbs.mkdf-has-inline-style a,.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-breadcrumbs.mkdf-has-inline-style span {
  font-size: 14px
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-breadcrumbs a,.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-breadcrumbs span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: inherit
}

.mkdf-title-holder.mkdf-standard-with-breadcrumbs-type .mkdf-breadcrumbs a:hover {
  color: #001659
}

.mkdf-title-holder.mkdf-standard-type .mkdf-page-title-additional-text {
  margin: 0
}

.mkdf-title-holder.mkdf-standard-type .mkdf-page-title {
  margin: 0;
  line-height: .95em
}

@media only screen and (max-width: 680px) {
  .mkdf-title-holder.mkdf-standard-type .mkdf-page-title {
      font-size:40px
  }
}

.mkdf-title-holder.mkdf-standard-type .mkdf-page-subtitle {
  font-size: 20px;
  line-height: 10px;
  font-weight: 400;
  letter-spacing: 0;
  color: #565969;
  width: 47%;
  margin: 14px 0
}

@media only screen and (max-width: 1366px) {
  .mkdf-title-holder.mkdf-standard-type .mkdf-page-subtitle {
      width:45%
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-title-holder.mkdf-standard-type .mkdf-page-subtitle {
      width:58%
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-title-holder.mkdf-standard-type .mkdf-page-subtitle {
      width:76%
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-title-holder.mkdf-standard-type .mkdf-page-subtitle {
      display:none
  }
}

.mkdf-author-info-widget {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box
}

.mkdf-author-info-widget .mkdf-aiw-image {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border-radius: 0;
  overflow: hidden
}

.mkdf-author-info-widget .mkdf-aiw-image img {
  display: block
}

.mkdf-author-info-widget .mkdf-aiw-title {
  margin: 31px 0 13px;
  color: #001659
}

.mkdf-author-info-widget .mkdf-aiw-text {
  display: block;
  margin: 0;
  font-size: 18px
}

.widget.mkdf-custom-font-widget {
  margin: 0
}

.widget.mkdf-custom-font-widget>* {
  margin: 0
}

.mkdf-icon-widget-holder {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0
}

.mkdf-icon-widget-holder>* {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit
}

.mkdf-icon-widget-holder .mkdf-icon-text {
  padding: 0 0 0 10px;
  font-weight: 400
}

.mkdf-icon-widget-holder .mkdf-icon-text.mkdf-no-icon {
  padding: 0
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-icon-widget-holder {
  color: #001659!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-icon-widget-holder:hover {
  color: #ff5e14!important
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-icon-widget-holder {
  color: #fff!important
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-icon-widget-holder:hover {
  color: #ff5e14!important
}

.widget.mkdf-search-post-type-widget {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  line-height: 0
}

.widget.mkdf-search-post-type-widget .mkdf-search-post-type {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.widget.mkdf-search-post-type-widget .mkdf-post-type-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  display: none;
  background-color: #fff;
  z-index: 99
}

.widget.mkdf-search-post-type-widget .mkdf-post-type-search-results ul {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 10px 20px;
  line-height: 0;
  box-sizing: border-box
}

.widget.mkdf-search-post-type-widget .mkdf-post-type-search-results ul li {
  display: block;
  width: 100%
}

.widget.mkdf-search-post-type-widget .mkdf-search-icon,.widget.mkdf-search-post-type-widget .mkdf-search-loading {
  position: absolute;
  right: 20px;
  top: calc(50% - 9px);
  font-size: 18px;
  color: #001659;
  opacity: 1;
  transition: opacity .2s ease-out
}

.widget.mkdf-search-post-type-widget .mkdf-search-icon.mkdf-hidden,.widget.mkdf-search-post-type-widget .mkdf-search-loading.mkdf-hidden {
  opacity: 0
}

.widget.mkdf-separator-widget {
  margin: 0!important
}

.mkdf-social-icon-widget-holder {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0
}

.mkdf-social-icon-widget-holder .mkdf-social-icon-widget {
  color: inherit;
  line-height: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-social-icon-widget-holder {
  color: #001659!important
}

.mkdf-dark-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-social-icon-widget-holder:hover {
  color: #ff5e14!important
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-social-icon-widget-holder {
  color: #fff!important
}

.mkdf-light-header .mkdf-page-header>div:not(.mkdf-sticky-header):not(.fixed) .mkdf-social-icon-widget-holder:hover {
  color: #ff5e14!important
}

.widget.mkdf-image-gallery-widget {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.widget.mkdf-image-gallery-widget img {
  display: block;
  width: 100%
}

.mkdf-social-icons-group-widget .mkdf-social-icons-group-widget-inner {
  display: inline-block;
  vertical-align: middle
}

@media only screen and (max-width: 1024px) {
  .mkdf-social-icons-group-widget .mkdf-social-icons-group-widget-inner {
      border-top:1px solid #1d263f
  }
}

.mkdf-social-icons-group-widget.mkdf-square-icons {
  overflow: hidden
}

.mkdf-social-icons-group-widget.mkdf-square-icons .mkdf-social-icon-widget-holder {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0;
  font-size: 15px;
  color: #fff;
  background-color: #0a1229;
  border: 1px solid #1d263f;
  border-right-width: 0;
  float: left;
  box-sizing: border-box;
  transition: all .3s ease
}

@media only screen and (max-width: 480px) {
  .mkdf-social-icons-group-widget.mkdf-square-icons .mkdf-social-icon-widget-holder {
      width:55px;
      height: 55px
  }
}

.mkdf-social-icons-group-widget.mkdf-square-icons .mkdf-social-icon-widget-holder:hover {
  background-color: #ff5e14
}

.mkdf-social-icons-group-widget.mkdf-square-icons .mkdf-social-icon-widget-holder:hover span {
  color: #fff
}

.mkdf-social-icons-group-widget.mkdf-square-icons .mkdf-social-icon-widget-holder:last-child {
  border-right-width: 1px
}

.mkdf-social-icons-group-widget.mkdf-square-icons .mkdf-social-icon-widget-holder .mkdf-social-icon-widget {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%)
}

.mkdf-social-icons-group-widget.mkdf-square-icons.mkdf-light-skin .mkdf-social-icon-widget-holder {
  color: #001659;
  background-color: #fff
}

.mkdf-social-icons-group-widget.mkdf-square-icons.mkdf-light-skin .mkdf-social-icon-widget-holder:hover {
  color: #001659;
  background-color: #ff5e14
}

.mkdf-social-icons-group-widget .mkdf-social-icon-widget-holder {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
  text-align: center
}

.mkdf-social-icons-group-widget .mkdf-social-icon-widget-holder:first-child {
  margin-left: 0
}

.mkdf-social-icons-group-widget .mkdf-social-icon-widget-holder:last-child {
  margin-right: 0!important
}

@media only screen and (max-width: 1366px) {
  .mkdf-social-icons-group-widget .mkdf-social-icon-widget-holder:nth-last-child(2) {
      margin-right:0!important
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-social-icons-group-widget .mkdf-social-icon-widget-holder:nth-last-child(2) {
      margin-right:10px!important
  }
}

footer .mkdf-social-icons-group-widget.mkdf-square-icons .mkdf-social-icon-widget-holder {
  border-top: none
}

@media only screen and (max-width: 1440px) {
  footer .mkdf-social-icons-group-widget.mkdf-square-icons .mkdf-social-icon-widget-holder {
      width:69px
  }
}

@media only screen and (max-width: 1024px) {
  footer .mkdf-social-icons-group-widget.mkdf-square-icons .mkdf-social-icon-widget-holder {
      position:relative;
      width: 76px;
      height: 76px
  }
}

@media only screen and (max-width: 680px) {
  footer .mkdf-social-icons-group-widget.mkdf-square-icons .mkdf-social-icon-widget-holder {
      width:75px;
      height: 69px
  }
}

@media only screen and (max-width: 1366px) {
  footer .mkdf-social-icons-group-widget.mkdf-square-icons .mkdf-social-icon-widget-holder:nth-last-child(2) {
      margin-right:0!important
  }
}

@media only screen and (max-width: 1366px) {
  .mkdf-top-bar .mkdf-social-icons-group-widget .mkdf-social-icon-widget-holder:nth-last-child(2) {
      margin-right:15px!important
  }
}

@media only screen and (max-width: 1440px) {
  .mkdf-vertical-menu-area .mkdf-social-icons-group-widget .mkdf-social-icon-widget-holder:nth-last-child(2) {
      margin-right:initial!important
  }
}

@media only screen and (max-width: 1366px) {
  .mkdf-vertical-menu-area .mkdf-social-icons-group-widget .mkdf-social-icon-widget-holder:nth-last-child(2) {
      margin-right:initial!important
  }
}

@media only screen and (max-width: 1440px) {
  .mkdf-vertical-menu-area .mkdf-social-icons-group-widget .mkdf-social-icon-widget-holder:last-child {
      margin-left:30px!important
  }
}

@media only screen and (max-width: 1366px) {
  .mkdf-vertical-menu-area .mkdf-social-icons-group-widget .mkdf-social-icon-widget-holder:last-child {
      margin-left:30px!important
  }
}

.mkdf-widget-sticky-sidebar {
  position: relative;
  width: 100%;
  height: 0;
  margin: 0!important;
  padding: 0!important;
  border: none!important;
  background: 0 0!important
}

.mkdf-masonry-gallery-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-masonry-gallery-holder .mkdf-mg-inner {
  opacity: 0
}

@media only screen and (max-width: 480px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-inner .mkdf-mg-item {
      border-bottom:1px solid #e8e8e8
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-inner .mkdf-mg-item:last-child {
      border-bottom: none
  }
}

.mkdf-masonry-gallery-holder .mkdf-mg-grid-gutter {
  width: 0
}

.mkdf-masonry-gallery-holder .mkdf-mg-grid-sizer {
  width: 25%
}

.mkdf-masonry-gallery-holder .mkdf-mg-item {
  position: relative;
  width: 25%;
  z-index: 1;
  box-sizing: border-box
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-masonry-size-large-width {
  width: 50%
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-masonry-size-large-width .mkdf-mg-image img {
  max-height: inherit
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-masonry-size-large-height .mkdf-mg-image img {
  max-width: inherit;
  width: auto;
  height: 100%
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard:not(.mkdf-masonry-size-large-width) {
  position: relative;
  overflow: hidden
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard:not(.mkdf-masonry-size-large-width):before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard:not(.mkdf-masonry-size-large-width):before {
  background-color: #f6f6f6;
  z-index: 1;
  transform: translateX(0)
}

@keyframes mkdf-appearing-mg-item-animation {
  0% {
      transform: translateX(0)
  }

  100% {
      transform: translateX(101%)
  }
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard:not(.mkdf-masonry-size-large-width).mkdf-mg-item-appear:before {
  animation: mkdf-appearing-mg-item-animation 2s cubic-bezier(.86,0,.07,1) forwards
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-icon-shortcode {
  opacity: 0;
  transform: translateX(7px);
  transition: .7s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-icon-shortcode:nth-child(1) {
  transition-delay: .15s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-icon-shortcode:nth-child(2) {
  transition-delay: .3s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-icon-shortcode:nth-child(3) {
  transition-delay: .45s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-icon-shortcode:nth-child(4) {
  transition-delay: .6s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-icon-shortcode:nth-child(5) {
  transition-delay: .75s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-icon-shortcode:nth-child(6) {
  transition-delay: .9s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-icon-shortcode:nth-child(7) {
  transition-delay: 1.05s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-icon-shortcode:nth-child(8) {
  transition-delay: 1.2s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-icon-shortcode:nth-child(9) {
  transition-delay: 1.35s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-section-title-holder {
  overflow: hidden
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-btn {
  opacity: 0;
  transform: translateY(-10px);
  transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out,box-shadow .5s cubic-bezier(.49,.79,.17,.94),opacity .5s .5s,transform .5s .5s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-st-text,.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .wpcf7 {
  opacity: 0;
  transform: translateY(-10px);
  transition: .5s .5s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-st-intro-title,.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width .mkdf-st-title {
  transform: translate3d(-120%,0,0)
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width.mkdf-mg-item-appear .mkdf-icon-shortcode {
  opacity: 1;
  transform: translateX(0)
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width.mkdf-mg-item-appear .mkdf-btn,.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width.mkdf-mg-item-appear .mkdf-st-text,.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width.mkdf-mg-item-appear .wpcf7 {
  transform: translateY(0);
  opacity: 1
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width.mkdf-mg-item-appear .mkdf-st-title {
  animation: mkdfUncoverRight .8s cubic-bezier(.19,1,.22,1) forwards .5s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-standard.mkdf-masonry-size-large-width.mkdf-mg-item-appear .mkdf-st-intro-title {
  animation: mkdfUncoverRight .8s cubic-bezier(.19,1,.22,1) forwards .7s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-image:not(:nth-of-type(2)) .mkdf-mg-content:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: 20px;
  background-color: #09316f;
  animation: mkdf-animate-mg-item-bg 7s linear infinite;
  z-index: -1;
  transition: 2s
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-image:not(:nth-of-type(2)) .mkdf-mg-content img {
  opacity: 0
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-image.mkdf-mg-item-appear .mkdf-mg-content {
  border: none
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-image.mkdf-mg-item-appear .mkdf-mg-content:after {
  background-size: 30px
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-image.mkdf-mg-item-appear .mkdf-mg-content img {
  opacity: 1;
  transition: 1s 1s
}

@keyframes mkdf-animate-mg-item-bg {
  0% {
      background-position: 0 0
  }

  100% {
      background-position: 500px 0
  }
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-masonry-size-large-width-height {
  width: 50%
}

.mkdf-masonry-gallery-holder .mkdf-mg-item .mkdf-mg-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden
}

.mkdf-masonry-gallery-holder .mkdf-mg-item .mkdf-mg-item-inner {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  width: calc(100% + 1px)
}

.mkdf-masonry-gallery-holder .mkdf-mg-item .mkdf-mg-item-content {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  padding: 50px
}

@media only screen and (max-width: 1366px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item .mkdf-mg-item-content {
      padding:35px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 35px!important
  }
}

@media only screen and (max-width: 1280px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item .mkdf-mg-item-content {
      padding:25px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 25px!important
  }
}

@media only screen and (max-width: 480px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item .mkdf-mg-item-content {
      padding:35px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 35px!important
  }
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top .mkdf-mg-item-content {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: top
}

@media only screen and (max-width: 1024px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top .mkdf-mg-item-content {
      padding:40px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 40px!important
  }
}

@media only screen and (max-width: 480px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top .mkdf-mg-item-content {
      padding:35px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 35px!important
  }
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top.mkdf-mg-advanced-responsive-padding .mkdf-mg-item-content {
  padding: 25px 0 0 44px
}

@media only screen and (max-width: 1366px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top.mkdf-mg-advanced-responsive-padding .mkdf-mg-item-content {
      position:relative;
      display: table-cell;
      height: 100%;
      width: 100%;
      vertical-align: middle;
      vertical-align: top;
      padding: 17px 35px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top.mkdf-mg-advanced-responsive-padding .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 15px 35px!important
  }
}

@media only screen and (max-width: 1280px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top.mkdf-mg-advanced-responsive-padding .mkdf-mg-item-content {
      vertical-align:top;
      padding: 6px 25px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top.mkdf-mg-advanced-responsive-padding .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 25px!important
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top.mkdf-mg-advanced-responsive-padding .mkdf-mg-item-content {
      vertical-align:top;
      padding: 40px 58px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top.mkdf-mg-advanced-responsive-padding .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 26px 44px!important
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top.mkdf-mg-advanced-responsive-padding .mkdf-mg-item-content {
      vertical-align:top;
      padding: 25px 42px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top.mkdf-mg-advanced-responsive-padding .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 26px 44px!important
  }
}

@media only screen and (max-width: 480px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top.mkdf-mg-advanced-responsive-padding .mkdf-mg-item-content {
      vertical-align:top;
      padding: 16px 35px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-top.mkdf-mg-advanced-responsive-padding .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 0 11px!important
  }
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-bottom .mkdf-mg-item-content {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: bottom
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content {
  padding: 30px
}

@media only screen and (max-width: 1440px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content {
      padding:0 60px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 0 60px!important
  }
}

@media only screen and (max-width: 1366px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content {
      padding:0 49px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 0 49px!important
  }
}

@media only screen and (max-width: 1280px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content {
      padding:0 40px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 0 40px!important
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content {
      padding:0 125px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 0 125px!important
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content {
      padding:0 68px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 0 68px!important
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content {
      padding:25px
  }

  .mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-vertical-align-middle .mkdf-mg-item-content.mkdf-mg-with-custom-padding {
      padding: 0 25px!important
  }
}

.mkdf-masonry-gallery-holder .mkdf-mg-item .mkdf-mg-item-title {
  margin: 0
}

.mkdf-masonry-gallery-holder .mkdf-mg-item .mkdf-mg-item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2
}

.mkdf-masonry-gallery-holder .mkdf-mg-item.mkdf-mg-image .mkdf-mg-content img {
  width: 100%;
  height: 100%
}

.tax-portfolio-category .mkdf-portfolio-list-holder {
  padding-top: 10px;
  padding-bottom: 40px
}

.tax-portfolio-category .mkdf-pl-load-more-holder .mkdf-pl-load-more {
  margin: -2px 0 0
}

.tax-portfolio-category .mkdf-portfolio-list-holder article .mkdf-pli-text {
  padding-left: 0
}

.tax-portfolio-category .mkdf-portfolio-list-holder article .mkdf-pli-text .mkdf-pl-read-more-holder {
  display: none
}

.tax-portfolio-category .mkdf-portfolio-list-holder article .mkdf-pli-text .mkdf-pli-category-holder {
  margin: 2px 0 0
}

.tax-portfolio-tag .mkdf-pl-load-more-holder {
  margin-bottom: 90px
}

.mkdf-portfolio-single-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0 0 53px
}

.mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout,.mkdf-portfolio-single-holder.mkdf-ps-small-images-layout,.mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout {
  margin: 0 0 49px
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-gallery-layout .mkdf-ps-big.mkdf-ps-image-holder {
      margin:0
  }
}

.mkdf-portfolio-single-holder .mkdf-portfolio-single-title {
  margin-bottom: 3px;
  line-height: 1em
}

.mkdf-portfolio-single-holder .mkdf-ps-image-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-portfolio-single-holder .mkdf-ps-image-holder .mkdf-ps-image:not(.mkdf-item-space) {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box
}

.mkdf-portfolio-single-holder .mkdf-ps-image-holder .mkdf-ps-image a,.mkdf-portfolio-single-holder .mkdf-ps-image-holder .mkdf-ps-image img {
  position: relative;
  display: block
}

.mkdf-portfolio-single-holder .mkdf-ps-small .mkdf-ps-info-holder .mkdf-ps-info-item:last-child {
  margin: 0;
  line-height: 1em
}

.mkdf-portfolio-single-holder .mkdf-ps-small .mkdf-ps-info-holder .mkdf-ps-info-item:last-child .mkdf-ps-info-tag,.mkdf-portfolio-single-holder .mkdf-ps-small .mkdf-ps-info-holder .mkdf-ps-info-item:last-child .mkdf-ps-info-title {
  margin-bottom: 0
}

.mkdf-portfolio-single-holder .mkdf-ps-info-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-portfolio-single-holder .mkdf-ps-info-holder .mkdf-ps-info-item {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0 0 10px;
  display: block;
  float: left
}

.mkdf-portfolio-single-holder .mkdf-ps-info-holder .mkdf-ps-info-item a,.mkdf-portfolio-single-holder .mkdf-ps-info-holder .mkdf-ps-info-item h6 {
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  float: left;
  line-height: 1em;
  margin: 0 7px 5px 0;
  color: #565969;
  text-transform: uppercase
}

.mkdf-portfolio-single-holder .mkdf-ps-info-holder .mkdf-ps-info-item a:hover {
  color: #ff5e14
}

.mkdf-portfolio-single-holder .mkdf-ps-info-holder .mkdf-ps-info-title {
  margin: 0
}

.mkdf-portfolio-single-holder .mkdf-ps-info-holder .mkdf-ps-info-section-title {
  margin: 34px 0 21px
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder .mkdf-ps-info-holder .mkdf-ps-info-section-title {
      margin:32px 0;
      padding-top: 25px
  }
}

.mkdf-portfolio-single-holder .mkdf-ps-image-holder.mkdf-grid-masonry-list .mkdf-ps-image a {
  height: 100%
}

.mkdf-portfolio-single-holder.mkdf-ps-gallery-layout .mkdf-grid-row.mkdf-ps-big {
  margin-bottom: 107px
}

.mkdf-portfolio-single-holder.mkdf-ps-gallery-layout .mkdf-ps-image-holder {
  width: 100%
}

.mkdf-portfolio-single-holder.mkdf-ps-gallery-layout .mkdf-ps-image-holder .mkdf-ps-image {
  float: left
}

.mkdf-portfolio-single-holder.mkdf-ps-gallery-layout .mkdf-ps-image-holder .mkdf-ps-image a:hover:after {
  opacity: 1
}

.mkdf-portfolio-single-holder.mkdf-ps-gallery-layout .mkdf-ps-image-holder .mkdf-ps-image a:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(0,22,89,.4);
  opacity: 0;
  transition: opacity .2s ease-in-out
}

.mkdf-portfolio-single-holder.mkdf-ps-gallery-layout .mkdf-ps-image-holder .mkdf-ps-image a:after {
  background-color: initial
}

.mkdf-portfolio-single-holder.mkdf-ps-gallery-layout>.mkdf-grid-row {
  margin-top: 22px
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-gallery-layout>.mkdf-grid-row {
      margin-top:0
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-huge-images-layout {
  padding: 0 4%;
  box-sizing: border-box
}

.mkdf-portfolio-single-holder.mkdf-ps-huge-images-layout .mkdf-grid-row.mkdf-ps-big {
  margin-bottom: 85px
}

.mkdf-portfolio-single-holder.mkdf-ps-huge-images-layout .mkdf-ps-image-holder {
  margin: 0 0 40px
}

.mkdf-portfolio-single-holder.mkdf-ps-huge-images-layout .mkdf-ps-image-holder .mkdf-ps-image {
  margin: 0 0 30px
}

.mkdf-portfolio-single-holder.mkdf-ps-huge-images-layout .mkdf-ps-image-holder .mkdf-ps-image:last-child {
  margin: 0
}

@media only screen and (max-width: 1200px) {
  .mkdf-portfolio-single-holder.mkdf-ps-huge-images-layout {
      padding:0 40px
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-portfolio-single-holder.mkdf-ps-huge-images-layout {
      padding:0 30px
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-images-layout .mkdf-grid-row.mkdf-ps-big {
  margin-bottom: 107px
}

.mkdf-portfolio-single-holder.mkdf-ps-images-layout .mkdf-ps-image-holder {
  margin: 0 0 22px
}

.mkdf-portfolio-single-holder.mkdf-ps-images-layout .mkdf-ps-image-holder .mkdf-ps-image {
  margin: 0 0 30px
}

.mkdf-portfolio-single-holder.mkdf-ps-images-layout .mkdf-ps-image-holder .mkdf-ps-image:last-child {
  margin: 0
}

.mkdf-portfolio-single-holder.mkdf-ps-masonry-layout>.mkdf-grid-row {
  margin-top: 22px
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-masonry-layout>.mkdf-grid-row {
      margin-top:0
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-masonry-layout>.mkdf-grid-row.mkdf-ps-big {
  margin-bottom: 107px
}

.mkdf-portfolio-single-holder.mkdf-ps-slider-layout .mkdf-grid-row.mkdf-ps-big {
  margin-bottom: 107px
}

.mkdf-portfolio-single-holder.mkdf-ps-slider-layout .mkdf-ps-image-holder {
  margin: 0 0 22px
}

.mkdf-portfolio-single-holder.mkdf-ps-slider-layout .mkdf-ps-image-holder .mkdf-ps-image-inner {
  visibility: hidden
}

.mkdf-portfolio-single-holder.mkdf-ps-slider-layout .mkdf-ps-image-holder .mkdf-ps-image img {
  width: 100%
}

.mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-grid-row.mkdf-ps-small {
  margin-bottom: 100px
}

.mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-ps-related-posts-holder {
  margin: 107px 0 0
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-ps-related-posts-holder {
      margin:72px 0 0
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-ps-image-holder {
  width: 100%
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-ps-image-holder {
      padding-bottom:10px
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-ps-image-holder .mkdf-ps-image {
  float: left
}

.mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-ps-image-holder .mkdf-ps-image a:hover:after {
  opacity: 1
}

.mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-ps-image-holder .mkdf-ps-image a:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(0,22,89,.4);
  opacity: 0;
  transition: opacity .2s ease-in-out
}

.mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-ps-image-holder .mkdf-ps-image a:after {
  background-color: initial
}

.mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-ps-content-item {
  margin: 0 0 44px
}

.mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-ps-info-section-title {
  margin-top: 0;
  line-height: 1em
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-ps-info-section-title {
      padding-top:25px
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-portfolio-single-title {
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1em
}

@media only screen and (max-width: 1366px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-gallery-layout .mkdf-portfolio-single-title {
      font-size:30px
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-images-layout .mkdf-ps-info-holder {
      margin-top:55px!important
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-small-images-layout .mkdf-ps-small {
  margin-bottom: 130px
}

.mkdf-portfolio-single-holder.mkdf-ps-small-images-layout .mkdf-ps-related-posts-holder {
  margin: 105px 0 0
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-images-layout .mkdf-ps-related-posts-holder {
      margin:70px 0 0
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-small-images-layout .mkdf-ps-image-holder .mkdf-ps-image {
  margin: 0 0 30px
}

.mkdf-portfolio-single-holder.mkdf-ps-small-images-layout .mkdf-ps-image-holder .mkdf-ps-image:last-child {
  margin: 0
}

.mkdf-portfolio-single-holder.mkdf-ps-small-images-layout .mkdf-ps-content-item {
  margin: 0 0 44px
}

.mkdf-portfolio-single-holder.mkdf-ps-small-images-layout .mkdf-ps-info-section-title {
  margin-top: 0;
  line-height: 1em
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-images-layout .mkdf-ps-info-section-title {
      padding-top:25px
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-small-images-layout .mkdf-portfolio-single-title {
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1em
}

@media only screen and (max-width: 1366px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-images-layout .mkdf-portfolio-single-title {
      font-size:30px
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-small-masonry-layout .mkdf-grid-row.mkdf-ps-small {
  margin-bottom: 100px
}

.mkdf-portfolio-single-holder.mkdf-ps-small-masonry-layout .mkdf-ps-related-posts-holder {
  margin: 105px 0 0
}

.mkdf-portfolio-single-holder.mkdf-ps-small-masonry-layout .mkdf-ps-content-item {
  margin: 0 0 44px
}

.mkdf-portfolio-single-holder.mkdf-ps-small-masonry-layout .mkdf-ps-info-section-title {
  margin-top: 0;
  line-height: 1em
}

.mkdf-portfolio-single-holder.mkdf-ps-small-masonry-layout .mkdf-portfolio-single-title {
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1em
}

@media only screen and (max-width: 1366px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-masonry-layout .mkdf-portfolio-single-title {
      font-size:30px
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-masonry-layout .mkdf-portfolio-single-title {
      padding-top:9px
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout .mkdf-ps-info-holder {
      margin-top:55px!important
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout .mkdf-ps-small {
  margin-bottom: 130px
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout .mkdf-ps-small {
      margin-bottom:117px
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout .mkdf-ps-related-posts-holder {
  margin: 106px 0 0
}

.mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout .mkdf-ps-image-holder .mkdf-ps-image-inner {
  visibility: hidden
}

.mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout .mkdf-ps-image-holder .mkdf-ps-image img {
  width: 100%
}

.mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout .mkdf-ps-content-item {
  margin: 0 0 44px
}

.mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout .mkdf-ps-info-section-title {
  margin-top: 0;
  line-height: 1em
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout .mkdf-ps-info-section-title {
      padding-top:25px
  }
}

.mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout .mkdf-portfolio-single-title {
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1em
}

@media only screen and (max-width: 1366px) {
  .mkdf-portfolio-single-holder.mkdf-ps-small-slider-layout .mkdf-portfolio-single-title {
      font-size:30px
  }
}

.mkdf-ps-navigation {
  position: relative;
  display: table;
  width: 100%;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  clear: both;
  box-sizing: border-box
}

.mkdf-ps-full-width-custom-layout .mkdf-ps-navigation {
  padding: 0 40px
}

.mkdf-ps-navigation .mkdf-ps-back-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  vertical-align: middle;
  transform: translateX(-50%) translateY(-57%);
  background-color: #00235a;
  border-radius: 2px
}

.mkdf-ps-navigation .mkdf-ps-back-btn a {
  position: relative;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
  padding: 16px 12px;
  color: #fff
}

.mkdf-ps-navigation .mkdf-ps-back-btn a span {
  display: block;
  line-height: inherit
}

.mkdf-ps-navigation .mkdf-ps-back-btn a span:after,.mkdf-ps-navigation .mkdf-ps-back-btn a span:before {
  display: block;
  line-height: 14px
}

.mkdf-ps-navigation .mkdf-ps-back-btn a span:after {
  content: "\e08c"
}

.mkdf-ps-navigation .mkdf-ps-back-btn a span:before {
  content: ""
}

.mkdf-ps-navigation .mkdf-ps-back-btn:hover {
  background-color: #ff5e14
}

.mkdf-ps-navigation .mkdf-ps-next,.mkdf-ps-navigation .mkdf-ps-prev {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 47%;
  padding: 0;
  box-sizing: border-box
}

.mkdf-ps-navigation .mkdf-ps-next a,.mkdf-ps-navigation .mkdf-ps-prev a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 26px;
  line-height: 45px;
  margin-bottom: 10px
}

.mkdf-ps-navigation .mkdf-ps-next a .mkdf-ps-nav-mark,.mkdf-ps-navigation .mkdf-ps-prev a .mkdf-ps-nav-mark {
  position: relative;
  display: inline-block;
  vertical-align: top;
  background-color: #00235a;
  color: #fff;
  padding: 11px;
  border-radius: 2px
}

.mkdf-ps-navigation .mkdf-ps-next a .mkdf-ps-nav-mark:before,.mkdf-ps-navigation .mkdf-ps-prev a .mkdf-ps-nav-mark:before {
  display: block;
  line-height: inherit
}

.mkdf-ps-navigation .mkdf-ps-next a .mkdf-ps-nav-label,.mkdf-ps-navigation .mkdf-ps-prev a .mkdf-ps-nav-label {
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  text-transform: uppercase;
  color: #00235a
}

@media only screen and (max-width: 680px) {
  .mkdf-ps-navigation .mkdf-ps-next a .mkdf-ps-nav-label,.mkdf-ps-navigation .mkdf-ps-prev a .mkdf-ps-nav-label {
      display:none
  }
}

.mkdf-ps-navigation .mkdf-ps-next a:hover,.mkdf-ps-navigation .mkdf-ps-prev a:hover {
  color: inherit
}

.mkdf-ps-navigation .mkdf-ps-next a:hover .mkdf-ps-nav-mark,.mkdf-ps-navigation .mkdf-ps-prev a:hover .mkdf-ps-nav-mark {
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5);
  transition: .1s ease-in-out
}

.mkdf-ps-navigation .mkdf-ps-prev a .mkdf-ps-nav-mark {
  left: 0;
  margin: 0 20px 0 0
}

.mkdf-ps-navigation .mkdf-ps-next {
  text-align: right
}

.mkdf-ps-navigation .mkdf-ps-next a .mkdf-ps-nav-mark {
  right: 0;
  margin: 0 0 0 20px
}

.mkdf-ps-related-posts-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 87px 0 0;
  clear: both
}

.mkdf-ps-related-posts-holder .mkdf-ps-related-posts {
  margin: 36px -15px 0 -15px
}

.mkdf-ps-related-posts-holder .mkdf-ps-related-post {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  float: left;
  padding: 0 15px;
  box-sizing: border-box
}

.mkdf-ps-related-posts-holder .mkdf-ps-related-post.mkdf-ps-related-posts-4 {
  width: 25%
}

@media only screen and (max-width: 768px) {
  .mkdf-ps-related-posts-holder .mkdf-ps-related-post.mkdf-ps-related-posts-4 {
      width:50%;
      margin-bottom: 53px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-ps-related-posts-holder .mkdf-ps-related-post.mkdf-ps-related-posts-4 {
      width:100%
  }

  .mkdf-ps-related-posts-holder .mkdf-ps-related-post.mkdf-ps-related-posts-4:nth-child(n) {
      clear: both
  }
}

.mkdf-ps-related-posts-holder .mkdf-ps-related-post.mkdf-ps-related-posts-3 {
  width: 33.33%
}

@media only screen and (max-width: 680px) {
  .mkdf-ps-related-posts-holder .mkdf-ps-related-post.mkdf-ps-related-posts-3 {
      width:100%;
      margin-bottom: 53px
  }

  .mkdf-ps-related-posts-holder .mkdf-ps-related-post.mkdf-ps-related-posts-3:nth-child(3n+1) {
      clear: none
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-ps-related-posts-holder .mkdf-ps-related-post {
      width:25%
  }

  .mkdf-ps-related-posts-holder .mkdf-ps-related-post:nth-child(4n+1) {
      clear: both
  }
}

.mkdf-ps-related-posts-holder .mkdf-ps-related-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-ps-related-posts-holder .mkdf-ps-related-image a,.mkdf-ps-related-posts-holder .mkdf-ps-related-image img {
  display: block
}

.mkdf-ps-related-posts-holder .mkdf-ps-related-text {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 18px 0 0
}

.mkdf-ps-related-posts-holder .mkdf-ps-related-text .mkdf-ps-related-title {
  margin: 0
}

.mkdf-ps-related-posts-holder .mkdf-ps-related-text .mkdf-ps-related-categories {
  margin: 2px 0 0
}

.mkdf-ps-related-posts-holder .mkdf-ps-related-text .mkdf-ps-related-categories .mkdf-ps-related-category {
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969
}

.mkdf-ps-small-images-layout .mkdf-ps-related-posts-holder .mkdf-ps-related-posts {
  margin: 32px -15px 0 -15px
}

.mkdf-portfolio-category-list-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.touchevents .mkdf-portfolio-category-list-holder article {
  cursor: pointer
}

.mkdf-portfolio-category-list-holder article:hover .mkdf-pcli-text-holder {
  opacity: 1
}

.mkdf-portfolio-category-list-holder article .mkdf-pcl-item-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  overflow: hidden
}

.mkdf-portfolio-category-list-holder article .mkdf-pcli-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-portfolio-category-list-holder article .mkdf-pcli-image img {
  display: block;
  width: 100%
}

.mkdf-portfolio-category-list-holder article .mkdf-pcli-text-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 20px;
  background-color: rgba(0,22,89,.6);
  opacity: 0;
  text-align: center;
  box-sizing: border-box;
  transition: opacity .2s ease-in-out
}

.mkdf-portfolio-category-list-holder article .mkdf-pcli-text-wrapper {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%
}

.mkdf-portfolio-category-list-holder article .mkdf-pcli-text {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle
}

.mkdf-portfolio-category-list-holder article .mkdf-pcli-title {
  margin: 0;
  color: #fff
}

.mkdf-portfolio-category-list-holder article .mkdf-pcli-excerpt {
  margin: 3px 0 0;
  color: #fff
}

.mkdf-portfolio-category-list-holder article .mkdf-pcli-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

.mkdf-portfolio-fullheight-slider-holder {
  height: 100vh
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-portfolio-list-holder article .mkdf-pli-text {
  padding: 21px 0 40px 50px
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-fullheight-slider-holder .mkdf-owl-slider .owl-dots {
      display:none
  }
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-inner,.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item,.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item-inner,.mkdf-portfolio-fullheight-slider-holder .mkdf-portfolio-list-holder,.mkdf-portfolio-fullheight-slider-holder .owl-item,.mkdf-portfolio-fullheight-slider-holder .owl-stage,.mkdf-portfolio-fullheight-slider-holder .owl-stage-outer {
  height: 100%
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item {
  width: 100%!important;
  display: block
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-category-holder,.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-text>a {
  overflow: hidden;
  display: block
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-title {
  transform: translateY(-30px);
  transition: .5s
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-category-holder a {
  transform: translateY(-20px);
  transition: .5s .04s
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pl-read-more-holder {
  opacity: 0;
  transition: .6s .05s
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item:hover .mkdf-pli-text-holder {
  opacity: 1
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item:hover .mkdf-pli-text-holder .mkdf-pli-category-holder a,.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item:hover .mkdf-pli-text-holder .mkdf-pli-title {
  transform: translateY(0)
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item:hover .mkdf-pl-read-more-holder {
  opacity: 1
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item:hover .mkdf-pli-image-holder {
  background-position: 100% 0;
  transition: .8s cubic-bezier(.21,.68,.19,.69)
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item:hover .mkdf-pl-read-more-holder .mkdf-btn:after {
  color: #fff;
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5);
  transition: box-shadow 1s .1s cubic-bezier(.49,.79,.17,.94)
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-text-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0,35,90,.9);
  transition: opacity .3s ease
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-text-holder .mkdf-pl-read-more-holder .mkdf-btn,.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-text-holder .mkdf-pli-category-holder a,.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-text-holder .mkdf-pli-excerpt,.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-text-holder .mkdf-pli-title {
  color: #fff!important
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-text-holder .mkdf-pli-category-holder a:hover {
  color: #ff5e14
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-text-holder .mkdf-btn.mkdf-btn-simple:hover:after {
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5)
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-text-holder .mkdf-btn.mkdf-btn-simple:hover:after .mkdf-btn-text {
  color: #fff
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item .mkdf-pli-text-holder .mkdf-btn:hover {
  color: #fff
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pl-item-inner {
  overflow: hidden
}

.mkdf-portfolio-fullheight-slider-holder .mkdf-pli-image-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  width: 110%;
  background-size: 111%;
  transition: 1s cubic-bezier(.1,.92,.08,.93);
  background-position: 150% 0
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-fullheight-slider-holder .mkdf-pli-image-holder {
      width:130%
  }
}

.mkdf-portfolio-list-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.touchevents .mkdf-portfolio-list-holder article {
  cursor: pointer
}

.mkdf-portfolio-list-holder article .mkdf-pl-item-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-portfolio-list-holder article .mkdf-pli-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-portfolio-list-holder article .mkdf-pli-image img {
  display: block;
  width: 100%
}

.mkdf-portfolio-list-holder article .mkdf-pli-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  height: 82%
}

.mkdf-portfolio-list-holder article .mkdf-pli-text-wrapper {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%
}

.mkdf-portfolio-list-holder article .mkdf-pli-text {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: bottom;
  padding: 21px 7% 9px;
  margin-bottom: 30px;
  box-sizing: border-box;
  text-align: left
}

.mkdf-portfolio-list-holder article .mkdf-pli-text .mkdf-pli-title {
  margin: 0;
  margin-bottom: 15px
}

.mkdf-portfolio-list-holder article .mkdf-pli-text .mkdf-pli-category-holder {
  position: relative;
  display: block;
  margin: 3px 0 0
}

.mkdf-portfolio-list-holder article .mkdf-pli-text .mkdf-pli-category-holder a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0 6px 0 0;
  margin: 0 3px 0 0;
  z-index: 8;
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969
}

.mkdf-portfolio-list-holder article .mkdf-pli-text .mkdf-pli-category-holder a:after {
  position: absolute;
  top: 0;
  right: -4px;
  content: '/';
  color: inherit;
  font-size: 12px;
  line-height: inherit
}

.mkdf-portfolio-list-holder article .mkdf-pli-text .mkdf-pli-category-holder a:last-child {
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969
}

.mkdf-portfolio-list-holder article .mkdf-pli-text .mkdf-pli-category-holder a:last-child:after {
  display: none
}

.mkdf-portfolio-list-holder article .mkdf-pli-text .mkdf-pli-excerpt {
  margin: 3px 0 11px;
  color: #001659
}

.mkdf-portfolio-list-holder.mkdf-pl-has-shadow article .mkdf-pli-image {
  box-shadow: 0 0 4.85px .15px rgba(0,0,0,.09)
}

.mkdf-portfolio-list-holder.mkdf-pl-has-filter .mkdf-pl-inner {
  overflow: hidden
}

.mkdf-portfolio-list-holder.mkdf-pl-no-content .mkdf-pli-text-holder {
  display: none
}

.mkdf-portfolio-list-holder.mkdf-pl-masonry.mkdf-fixed-masonry-items article .mkdf-pl-item-inner,.mkdf-portfolio-list-holder.mkdf-pl-masonry.mkdf-fixed-masonry-items article .mkdf-pli-image {
  height: 100%
}

.mkdf-portfolio-list-holder.mkdf-pl-has-animation article {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity .8s cubic-bezier(.34,.52,.57,1.04),transform .8s cubic-bezier(.34,.52,.57,1.04)
}

.mkdf-portfolio-list-holder.mkdf-pl-has-animation article.mkdf-item-show {
  opacity: 1;
  transform: translateY(0)
}

.mkdf-portfolio-list-holder.mkdf-pl-has-animation article.mkdf-item-show.mkdf-item-shown {
  transition: none
}

.touchevents .mkdf-portfolio-list-holder.mkdf-pl-has-animation article {
  opacity: 1;
  transform: translateY(0)
}

.mkdf-pl-filter-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0 0 41px;
  text-align: right
}

@media only screen and (max-width: 680px) {
  .mkdf-pl-filter-holder {
      text-align:left
  }
}

.mkdf-pl-filter-holder ul {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  list-style: none
}

.mkdf-pl-filter-holder ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 10px;
  padding: 0 22px;
  cursor: pointer;
  font-family: Yantramanav,sans-serif;
  font-size: 18px;
  font-weight: 500
}

.mkdf-pl-filter-holder ul li:last-child {
  padding-right: 0
}

@media only screen and (max-width: 1440px) {
  .mkdf-pl-filter-holder ul li {
      padding:0 16px
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-pl-filter-holder ul li {
      padding:0 10px 0 0
  }
}

.mkdf-pl-filter-holder ul li span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #001659;
  font-size: 18px;
  line-height: 22px;
  white-space: nowrap;
  transition: color .2s ease-out
}

.mkdf-pl-filter-holder ul li.mkdf-pl-current span,.mkdf-pl-filter-holder ul li:hover span {
  color: #ff5e14
}

.mkdf-portfolio-list-holder.mkdf-pl-pag-standard .mkdf-pl-inner {
  opacity: 1;
  transition: opacity .2s ease-out
}

.mkdf-portfolio-list-holder.mkdf-pl-pag-standard.mkdf-pl-pag-standard-animate .mkdf-pl-inner {
  opacity: 0
}

.mkdf-pl-standard-pagination {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 0;
  clear: both
}

.mkdf-pl-standard-pagination ul {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center
}

.mkdf-pl-standard-pagination ul .mkdf-pl-pagination-next:hover,.mkdf-pl-standard-pagination ul .mkdf-pl-pagination-previous:hover {
  background-color: transparent
}

.mkdf-pl-standard-pagination ul .mkdf-pl-pagination-next:hover a,.mkdf-pl-standard-pagination ul .mkdf-pl-pagination-previous:hover a {
  color: #ff5e14
}

.mkdf-pl-standard-pagination ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  border-radius: 2px
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-first:hover,.mkdf-pl-standard-pagination ul li.mkdf-pag-last:hover,.mkdf-pl-standard-pagination ul li.mkdf-pag-next:hover,.mkdf-pl-standard-pagination ul li.mkdf-pag-prev:hover {
  background-color: transparent
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-first a,.mkdf-pl-standard-pagination ul li.mkdf-pag-last a,.mkdf-pl-standard-pagination ul li.mkdf-pag-next a,.mkdf-pl-standard-pagination ul li.mkdf-pag-prev a {
  padding: 0;
  line-height: 2em
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-first a:hover,.mkdf-pl-standard-pagination ul li.mkdf-pag-last a:hover,.mkdf-pl-standard-pagination ul li.mkdf-pag-next a:hover,.mkdf-pl-standard-pagination ul li.mkdf-pag-prev a:hover {
  background-color: transparent;
  color: #ff5e14
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-first span,.mkdf-pl-standard-pagination ul li.mkdf-pag-last span {
  margin-top: 1px
}

.mkdf-pl-standard-pagination ul li a,.mkdf-pl-standard-pagination ul li span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  font-size: 16px;
  font-weight: 500;
  line-height: 48px;
  padding: 2px 15px 0 16px
}

.mkdf-pl-standard-pagination ul li span.current {
  color: #fff;
  background-color: #ff5e14;
  border-radius: 2px
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-active,.mkdf-pl-standard-pagination ul li:hover {
  background-color: #ff5e14
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-active a,.mkdf-pl-standard-pagination ul li:hover a {
  color: #fff;
  transition: color .1s ease-in-out
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-first,.mkdf-pl-standard-pagination ul li.mkdf-pag-last,.mkdf-pl-standard-pagination ul li.mkdf-pag-next,.mkdf-pl-standard-pagination ul li.mkdf-pag-prev {
  margin: 0 2px
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-first a,.mkdf-pl-standard-pagination ul li.mkdf-pag-last a,.mkdf-pl-standard-pagination ul li.mkdf-pag-next a,.mkdf-pl-standard-pagination ul li.mkdf-pag-prev a {
  font-size: 24px
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-first a span,.mkdf-pl-standard-pagination ul li.mkdf-pag-last a span,.mkdf-pl-standard-pagination ul li.mkdf-pag-next a span,.mkdf-pl-standard-pagination ul li.mkdf-pag-prev a span {
  display: block;
  line-height: inherit
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-first a span:before,.mkdf-pl-standard-pagination ul li.mkdf-pag-last a span:before,.mkdf-pl-standard-pagination ul li.mkdf-pag-next a span:before,.mkdf-pl-standard-pagination ul li.mkdf-pag-prev a span:before {
  display: block;
  line-height: inherit
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-prev a {
  opacity: 0
}

.mkdf-pl-standard-pagination ul li.mkdf-pag-next a {
  opacity: 1
}

.mkdf-pl-load-more-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-pl-load-more-holder .mkdf-pl-load-more {
  margin: -22px 0 0;
  text-align: center
}

.mkdf-pl-load-more-holder .mkdf-pl-load-more .mkdf-btn {
  padding: 10px 36px 8px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .02em
}

.mkdf-pl-loading {
  position: relative;
  display: none;
  width: 100%;
  margin: 40px 0 20px;
  color: #001659;
  text-align: center
}

.mkdf-pl-loading.mkdf-filter-trigger {
  position: absolute;
  top: 250px;
  left: 0
}

.mkdf-pl-loading.mkdf-standard-pag-trigger {
  position: absolute;
  top: 50px;
  left: 0
}

.mkdf-pl-has-filter .mkdf-pl-loading.mkdf-standard-pag-trigger {
  top: 150px
}

.mkdf-pl-loading.mkdf-showing {
  display: block
}

.mkdf-pl-loading>div {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin: 0 3px;
  background-color: #001659;
  border-radius: 100%;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both
}

.mkdf-pl-loading .mkdf-pl-loading-bounce1 {
  animation-delay: -.32s
}

.mkdf-pl-loading .mkdf-pl-loading-bounce2 {
  animation-delay: -.16s
}

@-webkit-keyframes sk-bouncedelay {
  0%,100%,80% {
      -webkit-transform: scale(0)
  }

  40% {
      -webkit-transform: scale(1)
  }
}

@-moz-keyframes sk-bouncedelay {
  0%,100%,80% {
      -moz-transform: scale(0)
  }

  40% {
      -moz-transform: scale(1)
  }
}

@keyframes sk-bouncedelay {
  0%,100%,80% {
      transform: scale(0)
  }

  40% {
      transform: scale(1)
  }
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pl-item .mkdf-pli-category-holder,.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pl-item .mkdf-pli-text>a {
  overflow: hidden;
  display: block
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pl-item .mkdf-pli-title {
  transform: translateY(-30px);
  transition: .5s
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pl-item .mkdf-pli-category-holder a {
  transform: translateY(-20px);
  transition: .5s .04s
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pl-item .mkdf-pl-read-more-holder {
  opacity: 0;
  transition: .6s .05s
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pl-item:hover .mkdf-pli-text-holder .mkdf-pli-category-holder a,.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pl-item:hover .mkdf-pli-text-holder .mkdf-pli-title {
  transform: translateY(0)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pl-item:hover .mkdf-pl-read-more-holder {
  opacity: 1
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pli-link {
  height: 100%
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pli-text {
  padding: 21px 7% 30px 34px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pli-text .mkdf-pli-title {
  margin-top: 2px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pli-category-holder {
  margin: 3px 0 2px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pli-excerpt {
  margin: 3px 0 23px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin.mkdf-pl-has-shadow .mkdf-pl-item-inner {
  box-shadow: 0 0 4.85px .15px rgba(0,0,0,.09)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin article:hover .mkdf-pli-text-holder {
  opacity: 1
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin article .mkdf-pl-item-inner {
  overflow: hidden
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn {
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn:after {
  color: #fff;
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5);
  border-radius: 2px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn.mkdf-btn-simple:hover {
  color: #fff!important
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn.mkdf-btn-simple:hover:after {
  color: #fff!important
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin article .mkdf-pli-text .mkdf-pli-excerpt,.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin article .mkdf-pli-text .mkdf-pli-title {
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin article .mkdf-pli-text .mkdf-pli-excerpt {
  margin: 3px 0 23px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin article .mkdf-pli-text .mkdf-pli-category-holder a {
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin article .mkdf-pli-text .mkdf-pli-category-holder a:hover {
  color: #ff5e14
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-light-skin .mkdf-pli-text-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0;
  background-color: #00235a;
  opacity: 0;
  text-align: center;
  box-sizing: border-box;
  transition: opacity .2s ease-in-out
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin.mkdf-pl-has-shadow .mkdf-pl-item-inner {
  box-shadow: 0 0 4.85px .15px rgba(0,0,0,.09)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article:hover .mkdf-pli-text-holder {
  opacity: 1
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article:hover .mkdf-pli-text-holder .mkdf-pl-read-more-holder .mkdf-btn:after {
  color: #fff;
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5);
  transition: box-shadow 1s .1s cubic-bezier(.49,.79,.17,.94)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article .mkdf-pl-item-inner {
  overflow: hidden
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article .mkdf-pl-read-more-holder .mkdf-btn {
  color: #000
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article .mkdf-pl-read-more-holder .mkdf-btn .mkdf-btn-text {
  float: left
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article .mkdf-pl-read-more-holder .mkdf-btn:after {
  color: #000
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article .mkdf-pl-read-more-holder .mkdf-btn.mkdf-btn-simple:hover {
  color: #000!important
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article .mkdf-pli-text .mkdf-pli-excerpt,.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article .mkdf-pli-text .mkdf-pli-title {
  color: #001659
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article .mkdf-pli-text .mkdf-pli-excerpt {
  margin: 3px 0 23px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article .mkdf-pli-text .mkdf-pli-category-holder a {
  color: #565969
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin article .mkdf-pli-text .mkdf-pli-category-holder a:hover {
  color: #ff5e14
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay.mkdf-pl-default-skin .mkdf-pli-text-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0;
  background-color: #fff;
  opacity: 0;
  text-align: center;
  box-sizing: border-box;
  transition: opacity .2s ease-in-out;
  border: 1px solid #e8e8e9;
  border-bottom: 4px solid #ff5e14
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-bordered-overlay .mkdf-pl-read-more-holder .mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon):after {
  background-color: #ff5e14;
  margin-left: 0;
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-five-columns .mkdf-pli-text,.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-four-columns .mkdf-pli-text {
  padding: 21px 50px 40px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay .mkdf-pli-link {
  height: 100%
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay .mkdf-pli-text {
  padding: 21px 0 40px 50px
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay .mkdf-pli-text {
      padding:21px 30px 40px 50px
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay .mkdf-pli-text {
      padding:21px 80px 40px 50px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay .mkdf-pli-text {
      padding:21px 7% 40px 30px
  }
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay .mkdf-pli-text .mkdf-pli-title {
  margin-top: 2px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay .mkdf-pli-category-holder {
  margin: 3px 0 2px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay .mkdf-pli-excerpt {
  margin: 3px 0 23px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay article .mkdf-pli-image img {
  transform: scale(1.02) translateX(0);
  transition: .8s cubic-bezier(.21,.68,.19,.69)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay article:hover .mkdf-pli-image img {
  transform: scale(1.02) translateX(10px)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin.mkdf-pl-has-shadow .mkdf-pl-item-inner {
  box-shadow: 0 0 4.85px .15px rgba(0,0,0,.09)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pli-category-holder,.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pli-text>a {
  overflow: hidden;
  display: block
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pli-title {
  transform: translateY(-30px);
  transition: .5s
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pli-category-holder a {
  transform: translateY(-20px);
  transition: .5s .04s
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pl-read-more-holder {
  opacity: 0;
  transition: .6s .05s
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article:hover .mkdf-pli-text-holder {
  opacity: 1
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article:hover .mkdf-pli-text-holder .mkdf-pli-category-holder a,.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article:hover .mkdf-pli-text-holder .mkdf-pli-title {
  transform: translateY(0)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article:hover .mkdf-pl-read-more-holder {
  opacity: 1
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article:hover .mkdf-pl-read-more-holder .mkdf-btn:after {
  color: #fff;
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5);
  transition: box-shadow 1s .1s cubic-bezier(.49,.79,.17,.94)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pl-item-inner {
  overflow: hidden
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn {
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn:after {
  border-radius: 2px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn.mkdf-btn-simple:hover {
  color: #fff!important
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn.mkdf-btn-simple:hover:after {
  color: #fff!important
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pli-text .mkdf-pli-excerpt,.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pli-text .mkdf-pli-title {
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pli-text .mkdf-pli-excerpt {
  margin: 3px 0 23px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pli-text .mkdf-pli-category-holder a {
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin article .mkdf-pli-text .mkdf-pli-category-holder a:hover {
  color: #ff5e14
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-light-skin .mkdf-pli-text-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0;
  background-color: rgba(0,35,90,.9);
  opacity: 0;
  text-align: center;
  box-sizing: border-box;
  transition: opacity .2s ease-in-out
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin.mkdf-pl-has-shadow .mkdf-pl-item-inner {
  box-shadow: 0 0 4.85px .15px rgba(0,0,0,.09)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin article:hover .mkdf-pli-text-holder {
  opacity: 1
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin article .mkdf-pl-item-inner {
  overflow: hidden
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin article .mkdf-pl-read-more-holder .mkdf-btn {
  color: #000
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin article .mkdf-pl-read-more-holder .mkdf-btn:after {
  color: #000
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin article .mkdf-pl-read-more-holder .mkdf-btn.mkdf-btn-simple:hover {
  color: #000!important
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin article .mkdf-pli-text .mkdf-pli-excerpt,.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin article .mkdf-pli-text .mkdf-pli-title {
  color: #000
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin article .mkdf-pli-text .mkdf-pli-excerpt {
  margin: 3px 0 23px
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin article .mkdf-pli-text .mkdf-pli-category-holder a {
  color: #000
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin article .mkdf-pli-text .mkdf-pli-category-holder a:hover {
  color: #ff5e14
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-overlay.mkdf-pl-default-skin .mkdf-pli-text-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0;
  background-color: rgba(0,35,90,.9);
  opacity: 0;
  text-align: center;
  box-sizing: border-box;
  transition: opacity .2s ease-in-out
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom .mkdf-pli-link {
  height: 70%
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom.mkdf-pl-light-skin .mkdf-pli-text-holder,.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom.mkdf-pl-light-skin .mkdf-pli-title {
  background-color: #00235a;
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom.mkdf-pl-light-skin .mkdf-pl-read-more-holder .mkdf-btn {
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom.mkdf-pl-light-skin .mkdf-pl-read-more-holder .mkdf-btn:after {
  color: #000
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom.mkdf-pl-light-skin .mkdf-pl-read-more-holder .mkdf-btn.mkdf-btn-simple:hover {
  color: #fff!important
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom.mkdf-pl-has-shadow .mkdf-pl-item-inner {
  box-shadow: 0 0 4.85px .15px rgba(0,0,0,.09)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom article:hover .mkdf-pli-text-holder,.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom article:hover .mkdf-pli-text-wrapper {
  transform: translateY(0)
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom article .mkdf-pl-item-inner {
  overflow: hidden
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom .mkdf-pli-text-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  padding: 15px 20px 10px;
  background-color: #fff;
  overflow: hidden;
  box-sizing: border-box;
  transform: translateY(100%);
  transition: transform .4s ease-in-out
}

.mkdf-portfolio-list-holder.mkdf-pl-gallery-slide-from-image-bottom .mkdf-pli-text-wrapper {
  transform: translateY(-200%);
  transition: transform .4s ease-in-out
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader .mkdf-pli-text-holder {
  margin-top: 0!important
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin article .mkdf-pli-category,.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin article .mkdf-pli-title {
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn {
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn:hover {
  color: #fff!important
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn:hover:after {
  color: #fff!important
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin article .mkdf-pl-read-more-holder .mkdf-btn:after {
  color: #565969
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin article .mkdf-pli-category {
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin article:hover .mkdf-pli-image:after {
  opacity: 1
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin article .mkdf-pli-image:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(0,22,89,.4);
  opacity: 0;
  transition: opacity .2s ease-in-out;
  z-index: 1
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin article .mkdf-pli-link {
  z-index: 2
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin .mkdf-pli-text-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 17px 0 0;
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-light-skin .mkdf-pli-text-holder .mkdf-pli-text .mkdf-pli-excerpt {
  margin: 14px 0 10px;
  font-size: 18px
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-default-skin article .mkdf-pli-text {
  padding: 17px 10% 9px 0
}

@media only screen and (max-width: 680px) {
  .mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-default-skin article .mkdf-pli-text {
      padding:21px 15px 36px 0
  }
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-default-skin .mkdf-pli-category,.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-default-skin .mkdf-pli-text-holder,.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-default-skin .mkdf-pli-title {
  color: #001659
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-default-skin .mkdf-pl-read-more-holder .mkdf-btn {
  color: #11192d
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-default-skin .mkdf-pl-read-more-holder .mkdf-btn:after {
  color: #001659
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-switch-images.mkdf-pl-light-skin .mkdf-pli-title {
  color: #fff
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-switch-images article .mkdf-pli-image img {
  transition: opacity .2s ease-in-out
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-switch-images article .mkdf-pli-image img:nth-child(1) {
  opacity: 1
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-switch-images article .mkdf-pli-image img:nth-child(2) {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-switch-images article.mkdf-pl-has-switch-image:hover .mkdf-pli-image img:nth-child(1) {
  opacity: 1
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-switch-images article.mkdf-pl-has-switch-image:hover .mkdf-pli-image img:nth-child(2) {
  opacity: 1
}

.mkdf-portfolio-list-holder.mkdf-pl-standard-switch-images .mkdf-pli-text-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 35px 0 0
}

.mkdf-portfolio-project-info {
  position: relative;
  display: inline-block;
  vertical-align: middle
}

.mkdf-portfolio-project-info .mkdf-ppi-label {
  margin: 0;
  padding: 0
}

.mkdf-portfolio-project-info>div {
  position: relative;
  display: inline-block;
  vertical-align: middle
}

.mkdf-portfolio-project-info>div a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 0 0
}

.mkdf-portfolio-project-info>div a:last-child {
  margin: 0
}

.mkdf-portfolio-project-info .mkdf-ppi-title {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0
}

.mkdf-portfolio-project-info .mkdf-ppi-image {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0
}

.mkdf-portfolio-project-info .mkdf-ppi-image img {
  display: block
}

.mkdf-portfolio-slider-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

@media only screen and (max-width: 1024px) {
  .mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-default-skin article .mkdf-pli-text {
      padding:17px 0 20px
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-default-skin article .mkdf-pli-text {
      padding:17px 120px 20px 0
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pl-standard-shader.mkdf-pl-default-skin article .mkdf-pli-text {
      padding:17px 0 70px 0
  }
}

.mkdf-portfolio-slider-holder .mkdf-owl-slider .owl-stage-outer {
  padding: 0 0 1%
}

.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-btn,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-category-holder,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-excerpt,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-title {
  color: #fff
}

@media only screen and (max-width: 680px) {
  .mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-btn,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-category-holder,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-excerpt,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-title {
      width:50%
  }
}

.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-btn:hover .mkdf-btn-text,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-category-holder:hover .mkdf-btn-text,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-excerpt:hover .mkdf-btn-text,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-title:hover .mkdf-btn-text {
  color: #fff!important
}

.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-btn:after,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-category-holder:after,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-excerpt:after,.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-title:after {
  color: #fff
}

.mkdf-portfolio-slider-holder.mkdf-ps-light-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-category-holder .mkdf-pli-category {
  font-size: 12px;
  letter-spacing: .1em;
  color: #fff
}

.mkdf-portfolio-slider-holder.mkdf-ps-dark-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-btn,.mkdf-portfolio-slider-holder.mkdf-ps-dark-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-category-holder,.mkdf-portfolio-slider-holder.mkdf-ps-dark-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-excerpt,.mkdf-portfolio-slider-holder.mkdf-ps-dark-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-title {
  color: #001659
}

@media only screen and (max-width: 680px) {
  .mkdf-portfolio-slider-holder.mkdf-ps-dark-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-btn,.mkdf-portfolio-slider-holder.mkdf-ps-dark-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-category-holder,.mkdf-portfolio-slider-holder.mkdf-ps-dark-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-excerpt,.mkdf-portfolio-slider-holder.mkdf-ps-dark-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-title {
      width:50%
  }
}

.mkdf-portfolio-slider-holder.mkdf-ps-dark-skin .mkdf-portfolio-list-holder .mkdf-pli-text-wrapper .mkdf-pli-text .mkdf-pli-category-holder .mkdf-pli-category {
  font-size: 12px
}

.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder article .mkdf-pli-text {
  padding: 7% 0
}

.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-nav-light-skin .owl-nav .owl-next,.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-nav-light-skin .owl-nav .owl-prev {
  color: #fff
}

.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-nav-light-skin .owl-nav .owl-next:hover,.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-nav-light-skin .owl-nav .owl-prev:hover {
  color: #ff5e14
}

.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-nav-dark-skin .owl-nav .owl-next,.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-nav-dark-skin .owl-nav .owl-prev {
  color: #001659
}

.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-nav-dark-skin .owl-nav .owl-next:hover,.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-nav-dark-skin .owl-nav .owl-prev:hover {
  color: #ff5e14
}

.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pag-light-skin .owl-dots .owl-dot span {
  background-color: rgba(255,255,255,.2)
}

.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pag-light-skin .owl-dots .owl-dot.active span,.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pag-light-skin .owl-dots .owl-dot:hover span {
  background-color: #ff5e14
}

.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pag-dark-skin .owl-dots .owl-dot span {
  background-color: rgba(0,22,89,.2)
}

.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pag-dark-skin .owl-dots .owl-dot.active span,.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pag-dark-skin .owl-dots .owl-dot:hover span {
  background-color: #ff5e14
}

.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pag-on-slider .owl-nav .owl-next,.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pag-on-slider .owl-nav .owl-prev {
  transform: translateY(-50%)
}

.mkdf-portfolio-slider-holder .mkdf-portfolio-list-holder.mkdf-pag-on-slider .owl-dots {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  margin: 0
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider article .mkdf-pl-item-inner,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider article .mkdf-pli-image {
  width: 522px
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider article:hover .mkdf-pli-text .mkdf-btn:after {
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5);
  color: #fff
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider article .mkdf-pli-title:hover+.mkdf-pli-text .mkdf-btn:after {
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5);
  color: #fff
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner {
  padding-left: 190px;
  box-sizing: border-box;
  position: relative
}

@media only screen and (max-width: 680px) {
  .mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner {
      padding-left:15px
  }
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .mkdf-pli-link {
  display: none
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .mkdf-pli-text .mkdf-btn {
  color: #fff
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .mkdf-pli-text .mkdf-btn:after {
  background-color: transparent
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .mkdf-pli-text .mkdf-btn:hover:after {
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5);
  color: #fff
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev {
  left: 0;
  right: auto;
  width: 140px;
  height: 48px;
  line-height: 48px;
  background-color: #09316f;
  color: #fff;
  transform: none;
  transition: background-color .3s ease
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next>span,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev>span {
  line-height: 12px
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next:hover,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev:hover {
  color: #fff
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next .mkdf-alt-prev-icon,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev .mkdf-alt-prev-icon {
  margin-right: 12px
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next .mkdf-alt-next-icon,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev .mkdf-alt-next-icon {
  margin-left: 12px
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next .mkdf-main-icon,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev .mkdf-main-icon {
  display: none
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next .mkdf-alt-next-icon,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next .mkdf-alt-prev-icon,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev .mkdf-alt-next-icon,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev .mkdf-alt-prev-icon {
  display: inline-block;
  font-size: 20px;
  opacity: 1;
  visibility: visible;
  transition: all .3s ease
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next .mkdf-next-label,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next .mkdf-prev-label,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev .mkdf-next-label,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev .mkdf-prev-label {
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  font-size: 16px;
  transition: all .3s ease
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next .mkdf-next-label,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next .mkdf-prev-label,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev .mkdf-next-label,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev .mkdf-prev-label {
  transform: translateX(0);
  font-size: 16px;
  font-family: Yantramanav,sans-serif
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next .mkdf-next-label,.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev .mkdf-next-label {
  margin-left: 1%
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next {
  background-color: #ff5e14
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next:hover {
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5)!important
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev:hover {
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5)
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev:hover+.owl-next {
  box-shadow: none!important
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev {
  top: 30%
}

.mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next {
  top: 18%
}

@media only screen and (max-width: 680px) {
  .mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-prev {
      position:relative;
      display: block
  }

  .mkdf-portfolio-slider-holder.mkdf-portfolio-slider-navigation-left-from-slider .mkdf-pl-inner .owl-nav .owl-next {
      margin-top: 15px;
      position: relative;
      display: block
  }
}

.mkdf-portfolio-vertical-loop-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-portfolio-vertical-loop-holder article {
  position: relative;
  vertical-align: middle;
  z-index: 1;
  margin: 0 0 50px 0
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvl-item-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-portfolio-vertical-loop-holder article.move-up {
  transition: transform 450ms ease 0s
}

.mkdf-portfolio-vertical-loop-holder article.fade-out {
  opacity: 0;
  transform: scale(.8) translate3d(0,-10%,0);
  transition: all 450ms ease 0s
}

.mkdf-portfolio-vertical-loop-holder article.fade-in {
  transition: all 450ms ease 5s;
  opacity: 1;
  transform: scale(1) translate3d(0,0,0)
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-background-text {
  display: none
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-content-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-image-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0 0 55px
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner {
  position: relative;
  height: 100%
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image {
  position: relative;
  height: 100%
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image img {
  display: block
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title .mkdf-pvli-image-title-inner {
  display: block
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title .mkdf-pvli-image-title-inner .mkdf-pvli-title {
  color: #fff;
  text-transform: capitalize;
  font-size: 75px;
  line-height: 1em;
  font-weight: 500
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title .mkdf-pvli-image-title-inner .mkdf-pvli-info {
  margin: 0
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title .mkdf-pvli-image-title-inner .mkdf-pvli-info .mkdf-pvli-category {
  font-size: 18px;
  color: #fff
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title .mkdf-pvli-image-title-inner .mkdf-pvli-info .mkdf-pvli-category:hover {
  color: #ff5e14
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvli-info,.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvli-title {
  display: none
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvl-info-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvl-info-holder .mkdf-pvl-info-item {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0 0 10px
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvl-info-holder .mkdf-pvl-info-item a,.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvl-info-holder .mkdf-pvl-info-item p {
  margin: 0
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvl-info-holder .mkdf-pvl-info-title {
  margin: 0
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvli-excerpt {
  margin: 0 0 50px
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvl-tags {
  margin: 0
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvl-tags a {
  font-size: 19px;
  text-transform: capitalize;
  font-weight: 500
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvl-tags a:after {
  content: ','
}

.mkdf-portfolio-vertical-loop-holder article .mkdf-pvli-content-holder .mkdf-pvli-text .mkdf-pvl-tags a:last-child:after {
  content: ''
}

.mkdf-portfolio-vertical-loop-holder article.next-item {
  margin: 0!important
}

.mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder .mkdf-pvli-background-text {
  position: absolute;
  display: inline-block;
  font-size: 229px;
  font-weight: 700;
  color: rgba(0,22,89,.08);
  line-height: 1em;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
}

.mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder .mkdf-pvli-content-link {
  z-index: 11
}

.touchevents .mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder .mkdf-pvli-content-link {
  cursor: pointer
}

.mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder>.mkdf-pvli-text {
  display: none
}

.mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder .mkdf-pvli-image-holder {
  margin: 0;
  height: 300px;
  background-color: #fff
}

.mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image img {
  display: none
}

.mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: table;
  transition: all .5s ease 0s;
  transform: none
}

.mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title .mkdf-pvli-image-title-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center
}

.mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title .mkdf-pvli-image-title-inner .mkdf-pvli-title {
  color: #000;
  font-size: 35px
}

.mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title .mkdf-pvli-image-title-inner .mkdf-pvli-info {
  margin: 0
}

.mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title .mkdf-pvli-image-title-inner .mkdf-pvli-info .mkdf-pvli-category {
  font-size: 16px;
  color: #565969
}

.mkdf-portfolio-vertical-loop-holder article.next-item .mkdf-pvli-content-holder .mkdf-pvli-image-holder .mkdf-pvli-image-inner .mkdf-pvli-image-title .mkdf-pvli-image-title-inner .mkdf-pvli-info .mkdf-pvli-category:hover {
  color: #ff5e14
}

.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder {
  position: fixed;
  top: 50%;
  left: 0;
  width: 500px;
  transform: rotateZ(-90deg) translateX(-50%);
  transform-origin: 0 0;
  height: 78px;
  z-index: 9
}

.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
  vertical-align: middle;
  padding: 0;
  clear: both;
  box-sizing: border-box
}

.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-back-btn a,.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-next a,.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-prev a {
  font-size: 16px;
  font-weight: 700
}

.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-next,.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-prev {
  position: relative;
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box
}

.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-next a,.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-prev a {
  position: relative;
  display: inline-block;
  vertical-align: middle
}

.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-back-btn {
  display: inline-block;
  vertical-align: middle
}

.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-back-btn a {
  width: 100%;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  cursor: pointer
}

.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-prev {
  display: inline-block
}

.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-prev a:after {
  content: '';
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #001659;
  vertical-align: middle;
  margin: 0 12px 0 16px
}

.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-next {
  display: inline-block
}

.mkdf-portfolio-vertical-loop-holder .mkdf-pvl-navigation-holder .mkdf-pvl-navigation .mkdf-pvl-next a:before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #001659;
  vertical-align: middle;
  margin: 0 12px 0 12px
}

.mkdf-testimonials-holder.mkdf-testimonials-standard {
  text-align: center;
  overflow: hidden
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonials {
  padding: 15px 30px 0;
  box-sizing: border-box
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonials .owl-stage-outer {
  overflow: visible
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active {
  border-color: #00235a;
  box-shadow: 0 10px 20px 0 rgba(34,54,92,.5);
  transition: .7s cubic-bezier(.49,.79,.17,.94)
}

@media only screen and (max-width: 1366px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active {
      box-shadow:0 10px 12px 0 rgba(30,54,92,.5)
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active .mkdf-testimonial-content-inner {
  background-color: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active .mkdf-testimonial-content {
  border-color: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active .mkdf-testimonial-position,.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active .mkdf-testimonial-text,.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active .mkdf-testimonials-author-job,.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active .mkdf-testimonials-author-name {
  color: #fff
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active .mkdf-quote-sign-holder path {
  fill: #ff5e14
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active-hovered {
  box-shadow: none!important
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active-hovered .mkdf-testimonial-content-inner {
  background-color: #fff
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active-hovered .mkdf-testimonial-content {
  border: 1px solid #e8e8e9;
  border-bottom: 4px solid #ff5e14;
  box-sizing: border-box;
  transition: all .3s ease
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active-hovered .mkdf-testimonial-position,.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active-hovered .mkdf-testimonial-text,.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active-hovered .mkdf-testimonials-author-job {
  color: #565969
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active-hovered .mkdf-testimonials-author-name {
  color: #001659
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item.mkdf-first-active-hovered .mkdf-quote-sign-holder path {
  fill: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item:hover {
  border-color: #00235a;
  box-shadow: 0 10px 20px 0 rgba(34,54,92,.5);
  transition: .7s cubic-bezier(.49,.79,.17,.94)
}

@media only screen and (max-width: 680px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item:hover {
      box-shadow:none
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item:hover .mkdf-testimonial-content-inner {
  background-color: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item:hover .mkdf-testimonial-content {
  border-color: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item:hover .mkdf-testimonial-position,.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item:hover .mkdf-testimonial-text,.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item:hover .mkdf-testimonials-author-job,.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item:hover .mkdf-testimonials-author-name {
  color: #fff
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-item:hover .mkdf-quote-sign-holder path {
  fill: #ff5e14
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-image-holder,.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-text-holder {
  float: left
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-text-holder {
  width: 74%;
  text-align: left
}

@media only screen and (max-width: 1439px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-text-holder {
      width:72%
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-text-holder {
      margin-left:10px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-text-holder {
      width:90%
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-image-holder {
  width: 133px
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-image-holder {
      width: 150px
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-content {
  border: 1px solid #e8e8e9;
  border-bottom: 4px solid #ff5e14;
  box-sizing: border-box;
  transition: all .3s ease
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-content .mkdf-testimonial-content-inner {
  background-color: #fff;
  transition: all .3s ease
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-content .mkdf-testimonial-position,.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-content .mkdf-testimonial-text,.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-content .mkdf-testimonials-author-name {
  transition: all .3s ease
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-content .mkdf-testimonials-author-job {
  color: #565969;
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 38px 0 0;
  float: left
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-image img {
  display: block;
  margin: 0 auto;
  margin-left: 29px
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-title {
  margin: 0
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-author {
  margin: 2px 0 0
}

@media only screen and (max-width: 1024px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-author {
      margin:5px 0 0 11px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-author {
      margin:7px 0 13px 14px
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-text {
  margin: 13px 50px 47px 0;
  color: #565969;
  font-size: 18px;
  line-height: 1.5em
}

@media only screen and (max-width: 1024px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-text {
      margin:13px 0 50px 14px
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-position {
  margin: 50px 0 0;
  font-size: 12px
}

@media only screen and (max-width: 1024px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-position {
      margin:55px 0 0 14px
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-position {
      margin:35px 0 6px 14px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-testimonial-position {
      margin:22px 0 0 14px
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-quote-sign-holder {
  width: 35px;
  position: absolute;
  top: 21%;
  right: 8%
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-quote-sign-holder {
      top: 0
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-quote-sign-holder {
      right:58px;
      top: 26%
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-quote-sign-holder {
      right:33px;
      top: 22%
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-quote-sign-holder {
      top:16.5%;
      right: 28px
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .mkdf-quote-sign-holder path {
  fill: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-standard .owl-dots {
  margin: 29px 0 0
}

.mkdf-testimonials-holder.mkdf-testimonials-standard.mkdf-testimonials-light .mkdf-testimonial-author,.mkdf-testimonials-holder.mkdf-testimonials-standard.mkdf-testimonials-light .mkdf-testimonial-text,.mkdf-testimonials-holder.mkdf-testimonials-standard.mkdf-testimonials-light .mkdf-testimonial-title {
  color: #fff
}

.mkdf-testimonials-holder.mkdf-testimonials-standard.mkdf-testimonials-light .owl-dots .owl-dot span {
  border: 2px solid rgba(255,255,255,.5)
}

.mkdf-testimonials-holder.mkdf-testimonials-standard.mkdf-testimonials-light .owl-dots .owl-dot:nth-child(3n+1) span {
  background-color: #00235a;
  border-color: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-standard.mkdf-testimonials-light .owl-dots .owl-dot:nth-child(3n+2) span {
  background-color: #00235a;
  border-color: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-standard.mkdf-testimonials-light .owl-dots .owl-dot:nth-child(3n) span {
  background-color: #00235a;
  border-color: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-standard.mkdf-testimonials-light .owl-dots .owl-dot.active span,.mkdf-testimonials-holder.mkdf-testimonials-standard.mkdf-testimonials-light .owl-dots .owl-dot:hover span {
  background-color: #fff;
  border-color: #fff
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll {
  position: relative
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonials-quote-holder {
  position: absolute;
  left: 11.4%;
  top: -65px;
  z-index: -1
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonials-quote-holder svg path {
  fill: #e8e8e9
}

@media only screen and (max-width: 480px) {
  .mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonials-quote-holder {
      display:none
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-container-vertical {
  height: 240px;
  overflow: hidden
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-container-vertical .swiper-slide {
  box-sizing: border-box;
  opacity: 0;
  transition: .2s
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-container-vertical .swiper-slide.swiper-slide-active {
  opacity: 1
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  width: 193px;
  height: 193px;
  margin: 20px 54px 20px 0
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-image:before {
  content: '';
  position: absolute;
  font-family: Yantramanav,sans-serif;
  font-weight: 900;
  right: -30px;
  top: 19px;
  display: inline-block;
  font-size: 120px;
  letter-spacing: -.04em;
  color: #001659;
  z-index: 40
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-image:after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  box-sizing: border-box
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-image img {
  display: block;
  margin: 0 auto
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-text-holder {
  width: 66%
}

@media only screen and (max-width: 1366px) {
  .mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-text-holder {
      width:67%
  }
}

@media only screen and (max-width: 1280px) {
  .mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-text-holder {
      width:60%
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-text-holder {
      width:100%;
      display: block;
      position: relative
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-text-holder .mkdf-testimonial-text {
  margin: 0 0 15px;
  font-size: 20px;
  line-height: 29px
}

@media only screen and (max-width: 768px) {
  .mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-text-holder .mkdf-testimonial-text {
      margin:0 0 15px 0
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-text-holder .mkdf-testimonial-author {
  margin: 0
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-text-holder .mkdf-testimonial-author .mkdf-testimonials-author-name {
  display: block
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .mkdf-testimonial-text-holder .mkdf-testimonial-author .mkdf-testimonials-author-job {
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-pagination {
  position: absolute;
  margin: 0;
  right: 0;
  bottom: 50%;
  z-index: 100;
  transform: rotate(90deg)
}

@media only screen and (max-width: 768px) {
  .mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-pagination {
      bottom:0;
      left: 50%;
      transform: translateX(-50%);
      right: initial
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-pagination {
      bottom:-20px
  }
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-pagination .swiper-pagination-bullet {
  vertical-align: middle;
  padding: 4px;
  margin: 0 3px;
  width: 7px;
  height: 7px;
  background: 0 0;
  border: 0;
  opacity: 1;
  outline: 0;
  -webkit-appearance: none;
  position: relative;
  display: block;
  float: left;
  border-radius: 50%;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-pagination .swiper-pagination-bullet:after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform-origin: center center;
  transition: all .2s ease-out
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-pagination .swiper-pagination-bullet:nth-child(3n+1):after {
  background-color: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-pagination .swiper-pagination-bullet:nth-child(3n+2):after {
  background-color: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-pagination .swiper-pagination-bullet:nth-child(3n):after {
  background-color: #00235a
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after,.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-pagination .swiper-pagination-bullet:hover:after {
  transform: scale(1.5)
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-navigation {
  font-family: ElegantIcons
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-navigation .swiper-button-prev {
  background-image: none
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-navigation .swiper-button-prev:after {
  content: "\34"
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-navigation .swiper-button-next {
  background-image: none
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-navigation .swiper-button-next:after {
  content: "\35"
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-navigation .swiper-button-next,.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-navigation .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 78px;
  height: 78px;
  line-height: 78px;
  padding: 0;
  margin: 0;
  color: #12192d;
  background: #fff;
  border: 0;
  border-radius: 2px;
  outline: 0;
  -webkit-appearance: none;
  z-index: 3;
  text-align: center;
  font-size: 34px;
  transform: translateY(-50%)
}

.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-navigation .swiper-button-next:hover,.mkdf-testimonials-holder.mkdf-testimonials-vertical-scroll .swiper-navigation .swiper-button-prev:hover {
  background-color: #ff5e14;
  transition: .1s ease-in-out;
  color: #fff
}

.mkdf-testimonials-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-testimonials-holder .mkdf-testimonial-content,.mkdf-testimonials-holder .mkdf-testimonial-text-holder,.mkdf-testimonials-holder .mkdf-testimonials {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-testimonials-holder .mkdf-testimonials {
  padding: 0;
  box-sizing: border-box
}

.mkdf-testimonials-holder .mkdf-testimonial-image img {
  width: auto!important;
  border-radius: 3px
}

.mkdf-accordion-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-accordion-holder.mkdf-ac-with-bg-pattern {
  background-image: url(../../../../plugins/wilmer-core/assets/img/default_pattern.png)
}

.mkdf-accordion-holder .mkdf-accordion-title {
  position: relative;
  cursor: pointer;
  margin: 0;
  box-sizing: border-box;
  transform: translateZ(0);
  transition: .2s
}

.mkdf-accordion-holder .mkdf-accordion-title .mkdf-tab-title {
  display: block;
  line-height: inherit;
  padding-bottom: 13px
}

.mkdf-accordion-holder .mkdf-accordion-title .mkdf-accordion-mark {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin: -1px 0 0;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  transform: translateY(-50%);
  border-radius: 2px
}

.mkdf-accordion-holder .mkdf-accordion-title .mkdf-accordion-mark span {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  transition: opacity .2s ease-out
}

.mkdf-accordion-holder .mkdf-accordion-title .mkdf-accordion-mark span:before {
  display: block;
  line-height: inherit
}

.mkdf-accordion-holder .mkdf-accordion-title .mkdf-accordion-mark span.mkdf_icon_minus {
  opacity: 0
}

.mkdf-accordion-holder .mkdf-accordion-title .mkdf-accordion-mark span.mkdf_icon_plus {
  opacity: 1
}

.mkdf-accordion-holder .mkdf-accordion-title.ui-state-active .mkdf-accordion-mark,.mkdf-accordion-holder .mkdf-accordion-title.ui-state-hover .mkdf-accordion-mark {
  border-radius: 2px
}

.mkdf-accordion-holder .mkdf-accordion-title.ui-state-active .mkdf-accordion-mark span.mkdf_icon_minus,.mkdf-accordion-holder .mkdf-accordion-title.ui-state-hover .mkdf-accordion-mark span.mkdf_icon_minus {
  opacity: 1
}

.mkdf-accordion-holder .mkdf-accordion-title.ui-state-active .mkdf-accordion-mark span.mkdf_icon_plus,.mkdf-accordion-holder .mkdf-accordion-title.ui-state-hover .mkdf-accordion-mark span.mkdf_icon_plus {
  opacity: 0
}

.mkdf-accordion-holder .mkdf-accordion-title.ui-state-active {
  padding: 30px 20px 13px 50px
}

.mkdf-accordion-holder .mkdf-accordion-content {
  margin: 0
}

.mkdf-accordion-holder .mkdf-accordion-content p {
  margin: 0
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-dark-skin .mkdf-accordion-title.ui-state-active {
  background-color: #00235a
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-dark-skin .mkdf-accordion-title.ui-state-active.ui-state-hover {
  background-color: #00235a
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-dark-skin .ui-accordion-content-active {
  background-color: #00235a
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-dark-skin .ui-accordion-content-active:last-child {
  border-bottom: transparent
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-white-skin .mkdf-accordion-content .ui-accordion-content-active:last-child {
  border-bottom: transparent
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-white-skin .mkdf-accordion-title.ui-state-active {
  background-color: #fff
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-boxed.mkdf-white-skin .mkdf-accordion-title.ui-state-active {
      padding:30px 20px 13px 10px
  }
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-white-skin .mkdf-accordion-title.ui-state-active:first-child {
  border-top: none
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-white-skin .mkdf-accordion-title.ui-state-active.ui-state-hover {
  background-color: #fff
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-white-skin .ui-accordion-content-active {
  background-color: #fff
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-white-skin .ui-accordion-content-active:last-child {
  border-bottom: transparent
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-ac-with-order-number .mkdf-accordion-title {
  padding: 30px 20px 18px 109px
}

@media only screen and (max-width: 1366px) {
  .mkdf-accordion-holder.mkdf-ac-boxed.mkdf-ac-with-order-number .mkdf-accordion-title {
      padding:30px 20px 13px 109px
  }
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-ac-with-order-number .mkdf-accordion-title.ui-state-active {
  padding: 30px 20px 0 109px
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-boxed.mkdf-ac-with-order-number .mkdf-accordion-title.ui-state-active {
      padding:30px 80px 13px 0!important
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-boxed.mkdf-ac-with-order-number .mkdf-accordion-title.ui-state-active:after {
      display:none
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-boxed.mkdf-ac-with-order-number .mkdf-accordion-title {
      padding:30px 80px 13px 0
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-boxed.mkdf-ac-with-order-number .mkdf-accordion-title:after {
      display:none
  }
}

.mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-title {
  padding: 30px 20px 18px 50px;
  background-color: transparent;
  border-top: 1px solid #e8e8e9;
  will-change: padding
}

@media only screen and (max-width: 480px) {
  .mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-title {
      padding-left:10px
  }
}

.mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-title:first-child {
  margin: 0;
  border-top: none
}

.mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-title .mkdf-accordion-mark {
  right: 20px;
  top: 45px;
  border-radius: 2px;
  font-size: 20px;
  transition: background-color .5s cubic-bezier(.49,.79,.17,.94),color .5s cubic-bezier(.49,.79,.17,.94),box-shadow .5s 50ms cubic-bezier(.49,.79,.17,.94),-webkit-box-shadow .5s 50ms cubic-bezier(.49,.79,.17,.94)
}

.mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-title.ui-state-active,.mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-title.ui-state-hover {
  color: #001659;
  background-color: #f2f3f5
}

.mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-title.ui-state-active .mkdf-accordion-mark,.mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-title.ui-state-hover .mkdf-accordion-mark {
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5);
  color: #fff
}

.mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-title.ui-state-hover {
  background-color: transparent
}

.mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-title.ui-state-active {
  padding: 30px 20px 0 50px
}

.mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-title.ui-state-active.ui-state-hover {
  background-color: #f2f3f5
}

.mkdf-accordion-holder.mkdf-ac-boxed.mkdf-ac-with-order-number .mkdf-accordion-content {
  padding: 0 60px 31px 109px
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-boxed.mkdf-ac-with-order-number .mkdf-accordion-content {
      padding:0 0 13px 0;
      border-bottom: transparent
  }
}

.mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-content {
  padding: 0 100px 31px 50px;
  background-color: transparent
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-boxed .mkdf-accordion-content {
      padding:0 0 13px 10px
  }
}

.mkdf-accordion-holder.mkdf-ac-boxed .ui-accordion-content-active {
  background-color: #f2f3f5
}

.mkdf-accordion-holder.mkdf-ac-simple {
  border-bottom: 1px solid #e8e8e9
}

.mkdf-accordion-holder.mkdf-ac-simple.mkdf-white-skin .mkdf-accordion-title.ui-state-active {
  padding: 30px 20px 13px 50px;
  background-color: transparent
}

.mkdf-accordion-holder.mkdf-ac-simple.mkdf-white-skin .mkdf-accordion-title.ui-state-active.ui-state-hover {
  background-color: transparent
}

.mkdf-accordion-holder.mkdf-ac-simple.mkdf-white-skin .mkdf-accordion-content.ui-accordion-content-active {
  background-color: transparent;
  border-top: none
}

.mkdf-accordion-holder.mkdf-ac-simple.mkdf-ac-with-order-number .mkdf-accordion-title {
  padding: 30px 20px 18px 109px
}

.mkdf-accordion-holder.mkdf-ac-simple.mkdf-ac-with-order-number .mkdf-accordion-title.ui-state-active {
  padding: 30px 20px 0 109px
}

.mkdf-accordion-holder.mkdf-ac-simple.mkdf-ac-with-order-number .mkdf-accordion-title.ui-state-active .mkdf-accordion-mark {
  top: 64%
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-simple.mkdf-ac-with-order-number .mkdf-accordion-title.ui-state-active {
      padding:30px 80px 13px 0
  }

  .mkdf-accordion-holder.mkdf-ac-simple.mkdf-ac-with-order-number .mkdf-accordion-title.ui-state-active .mkdf-accordion-mark {
      top: 50%
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-simple.mkdf-ac-with-order-number .mkdf-accordion-title.ui-state-active:after {
      display:none
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-simple.mkdf-ac-with-order-number .mkdf-accordion-title {
      padding:30px 80px 13px 0
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-simple.mkdf-ac-with-order-number .mkdf-accordion-title:after {
      display:none
  }
}

.mkdf-accordion-holder.mkdf-ac-simple.mkdf-ac-with-order-number .mkdf-accordion-content {
  border-top: 1px solid transparent;
  background-color: transparent;
  padding: 1px 100px 31px 114px
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-simple.mkdf-ac-with-order-number .mkdf-accordion-content {
      padding:1px 0 31px 0
  }
}

.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-title {
  padding: 17px 0 17px 30px;
  border-top: 1px solid #e8e8e9
}

.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-title .mkdf-accordion-mark {
  right: 20px;
  border-radius: 2px
}

.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-title.ui-state-active,.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-title.ui-state-hover {
  color: #565969;
  background-color: #f2f3f5
}

.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-title.ui-state-active .mkdf-accordion-mark,.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-title.ui-state-hover .mkdf-accordion-mark {
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5);
  transition: .1s ease-in-out;
  color: #fff
}

.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-title.ui-state-hover {
  background-color: transparent
}

.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-title.ui-state-active.ui-state-hover {
  background-color: #f2f3f5
}

.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-content {
  border-top: 1px solid transparent;
  background-color: transparent
}

.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-content.ui-accordion-content-active {
  background-color: #f2f3f5
}

.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-content.ui-accordion-content-active {
  border-color: #e8e8e9
}

.mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-content {
  padding: 30px 100px 31px 54px
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-simple .mkdf-accordion-content {
      padding:21px 60px 16px 20px
  }
}

.mkdf-accordion-holder.last-child {
  border-bottom: transparent
}

.mkdf-accordion-holder.mkdf-ac-with-order-number .mkdf-accordion-title {
  counter-increment: count
}

.mkdf-accordion-holder.mkdf-ac-with-order-number .mkdf-accordion-title:before {
  content: counter(count);
  position: absolute;
  left: 29px
}

@media only screen and (max-width: 680px) {
  .mkdf-accordion-holder.mkdf-ac-with-order-number .mkdf-accordion-title:before {
      display:none
  }
}

.mkdf-accordion-holder.mkdf-ac-with-order-number .mkdf-accordion-title:nth-of-type(-n+9):before {
  content: "0" counter(count)
}

#mkdf-animated-switch-slider {
  position: relative
}

#mkdf-animated-switch-slider .mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon):after {
  background-color: #ff5e14
}

#mkdf-animated-switch-slider img {
  display: block
}

#mkdf-animated-switch-slider .mkdf-switch-slide {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

#mkdf-animated-switch-slider .mkdf-content-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 400
}

#mkdf-animated-switch-slider .mkdf-content-holder .mkdf-item-text-holder {
  position: absolute;
  height: 100%;
  width: 50%;
  display: table;
  z-index: 200
}

#mkdf-animated-switch-slider .mkdf-content-holder .mkdf-item-text-holder .mkdf-item-text-holder-inner {
  display: table-cell;
  vertical-align: top;
  box-sizing: border-box;
  padding: 0 0 0 32%
}

@media only screen and (max-width: 1440px) {
  #mkdf-animated-switch-slider .mkdf-content-holder .mkdf-item-text-holder .mkdf-item-text-holder-inner {
      padding:0 0 0 16.5%
  }
}

@media only screen and (max-width: 680px) {
  #mkdf-animated-switch-slider .mkdf-content-holder .mkdf-item-text-holder .mkdf-item-text-holder-inner {
      padding:0 0 0 8%
  }
}

#mkdf-animated-switch-slider .mkdf-content-holder .mkdf-item-text-holder .mkdf-item-title {
  position: relative;
  padding: 10px 10px 10px 0;
  margin: 0
}

#mkdf-animated-switch-slider .mkdf-content-holder .mkdf-item-text-holder .mkdf-item-title .mkdf-item-title-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100
}

#mkdf-animated-switch-slider .mkdf-content-holder .mkdf-item-text-holder .mkdf-bold-title {
  display: block;
  font-weight: 700;
  font-family: Yantramanav,sans-serif
}

#mkdf-animated-switch-slider .mkdf-content-holder .mkdf-item-text-holder .mkdf-regular-title {
  font-weight: 400;
  font-family: Yantramanav,sans-serif
}

#mkdf-animated-switch-slider .mkdf-content-holder .mkdf-item-text-holder .mkdf-description-holder {
  margin: 10px 0 40px
}

#mkdf-animated-switch-slider .mkdf-item-overlay {
  position: absolute;
  height: 100%;
  width: 50%;
  background-color: #ff5e14;
  z-index: 100
}

#mkdf-animated-switch-slider .mkdf-slide-dark-skin .mkdf-item-lower-title,#mkdf-animated-switch-slider .mkdf-slide-dark-skin .mkdf-upper-title {
  color: #001659
}

#mkdf-animated-switch-slider .mkdf-slide-dark-skin .mkdf-item-lower-subtitle,#mkdf-animated-switch-slider .mkdf-slide-dark-skin .mkdf-upper-subtitle {
  color: #565969
}

#mkdf-animated-switch-slider .mkdf-slide-dark-skin .mkdf-item-background-text .mkdf-background-text-holder,#mkdf-animated-switch-slider .mkdf-slide-dark-skin .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-right {
  color: #001659
}

#mkdf-animated-switch-slider .mkdf-slide-dark-skin .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-right {
  -webkit-text-fill-color: #001659;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #001659
}

#mkdf-animated-switch-slider .mkdf-slide-light-skin .mkdf-item-background-text .mkdf-background-text-holder,#mkdf-animated-switch-slider .mkdf-slide-light-skin .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-right,#mkdf-animated-switch-slider .mkdf-slide-light-skin .mkdf-item-lower-subtitle,#mkdf-animated-switch-slider .mkdf-slide-light-skin .mkdf-item-lower-title,#mkdf-animated-switch-slider .mkdf-slide-light-skin .mkdf-upper-subtitle,#mkdf-animated-switch-slider .mkdf-slide-light-skin .mkdf-upper-title {
  color: #fff
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-default .mkdf-btn {
  color: #fff
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-default .mkdf-btn:after {
  color: #fff
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-default .mkdf-btn:hover {
  color: #fff
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-default .mkdf-btn:hover:after {
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5)
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-light .mkdf-btn {
  color: #fff
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-light .mkdf-btn:after {
  color: #ff5e14;
  background-color: #fff
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-light .mkdf-btn:hover {
  color: #fff
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-light .mkdf-btn:hover:after {
  box-shadow: 0 10px 20px 0 #da4900
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-dark .mkdf-btn {
  color: #001659
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-dark .mkdf-btn:after {
  color: #fff
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-dark .mkdf-btn:hover {
  color: #001659
}

#mkdf-animated-switch-slider .mkdf-btn-holder.mkdf-btn-dark .mkdf-btn:hover:after {
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

#mkdf-animated-switch-slider .mkdf-item-background-text {
  display: block!important;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%,-50%);
  z-index: 9999
}

#mkdf-animated-switch-slider .mkdf-item-background-text .mkdf-background-text-holder {
  font-size: 180px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #d2d2d4
}

@media only screen and (max-width: 1024px) {
  #mkdf-animated-switch-slider .mkdf-item-background-text .mkdf-background-text-holder {
      font-size:130px
  }
}

#mkdf-animated-switch-slider .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-left-outer {
  width: 50%;
  position: relative;
  overflow: hidden;
  display: block
}

#mkdf-animated-switch-slider .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-left {
  transform: translateX(100%);
  display: block;
  transition: .5s 1.2s
}

#mkdf-animated-switch-slider .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-right {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 50%;
  font-size: 180px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  transition: .1s
}

#mkdf-animated-switch-slider .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-right .mkdf-split-text-right-inner {
  display: inline-block;
  transform: translateX(-100%);
  white-space: nowrap;
  overflow: hidden;
  transition: .5s 1.2s!important
}

#mkdf-animated-switch-slider .mkdf-background-images-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

#mkdf-animated-switch-slider .mkdf-background-images-holder .mkdf-item-background-image {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

#mkdf-animated-switch-slider .mkdf-switch-slide {
  pointer-events: none
}

#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-btn-holder,#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-description-holder,#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-item-title-holder,#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-bottom {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden
}

#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-top .mkdf-upper-subtitle {
  margin: 0;
  font-weight: 500
}

@media only screen and (max-width: 680px) {
  #mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-top .mkdf-upper-subtitle {
      display:none
  }
}

#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-top .mkdf-upper-title {
  margin: 0 0 0
}

@media only screen and (max-width: 1366px) {
  #mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-top .mkdf-upper-title {
      font-size:65px
  }
}

@media only screen and (max-width: 1024px) {
  #mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-top .mkdf-upper-title {
      font-size:5vw
  }
}

@media only screen and (max-width: 680px) {
  #mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-top .mkdf-upper-title {
      white-space:nowrap;
      font-size: 6vw
  }
}

#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-top {
  padding-top: 17.6vh
}

@media only screen and (max-width: 1024px) {
  #mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-top {
      padding-top:17.6vh
  }
}

@media only screen and (max-width: 680px) {
  #mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-top {
      padding-top:21.6vh
  }
}

#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-bottom {
  margin: 45vh 0 0
}

@media only screen and (max-width: 1366px) {
  #mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-bottom {
      margin:42vh 0 0
  }
}

#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-bottom .mkdf-item-lower-subtitle {
  margin: 0 0 2px;
  font-size: 12px
}

#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-bottom .mkdf-item-lower-title {
  margin: 0 0 0
}

#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-text-bottom .mkdf-btn-holder {
  white-space: nowrap;
  margin: 13px -20px 0;
  padding: 0 30px 25px 20px
}

#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-item-text-left {
  transform: translate3d(120%,0,0)
}

#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-item-btn,#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-item-lower-subtitle,#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-item-lower-title,#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-item-title {
  transform: translate3d(-120%,0,0)
}

#mkdf-animated-switch-slider .mkdf-switch-slide .mkdf-item-overlay {
  width: 0
}

@-webkit-keyframes mkdfCoverLeft {
  0% {
      transform: translate3d(0,0,0)
  }

  100% {
      transform: translate3d(-120%,0,0)
  }
}

@keyframes mkdfCoverLeft {
  0% {
      transform: translate3d(0,0,0)
  }

  100% {
      transform: translate3d(-120%,0,0)
  }
}

@-webkit-keyframes mkdfCoverRight {
  0% {
      transform: translate3d(0,0,0)
  }

  100% {
      transform: translate3d(120%,0,0)
  }
}

@keyframes mkdfCoverRight {
  0% {
      transform: translate3d(0,0,0)
  }

  100% {
      transform: translate3d(120%,0,0)
  }
}

@-webkit-keyframes mkdfUncoverLeft {
  0% {
      transform: translate3d(120%,0,0)
  }

  100% {
      transform: translate3d(0,0,0)
  }
}

@keyframes mkdfUncoverLeft {
  0% {
      transform: translate3d(120%,0,0)
  }

  100% {
      transform: translate3d(0,0,0)
  }
}

@-webkit-keyframes mkdfUncoverRight {
  0% {
      opacity: 0;
      transform: translate3d(0,-120%,0)
  }

  100% {
      opacity: 1;
      transform: translate3d(0,0,0)
  }
}

@keyframes mkdfUncoverRight {
  0% {
      opacity: 0;
      transform: translate3d(0,-120%,0)
  }

  100% {
      opacity: 1;
      transform: translate3d(0,0,0)
  }
}

@-webkit-keyframes mkdfOverlayHide {
  0% {
      width: 50%;
      transform: translate3d(0,0,0)
  }

  30%,50% {
      width: 100%;
      transform: translate3d(0,0,0)
  }

  100% {
      width: 100%;
      transform: translate3d(100vw,0,0)
  }
}

@keyframes mkdfOverlayHide {
  0% {
      width: 50%;
      transform: translate3d(0,0,0)
  }

  30%,50% {
      width: 100%;
      transform: translate3d(0,0,0)
  }

  100% {
      width: 100%;
      transform: translate3d(100vw,0,0)
  }
}

@-webkit-keyframes mkdfOverlayShow {
  0% {
      width: 0;
      transform: translate3d(0,0,0)
  }

  100% {
      width: 50%;
      transform: translate3d(0,0,0)
  }
}

@keyframes mkdfOverlayShow {
  0% {
      width: 0;
      transform: translate3d(0,0,0)
  }

  100% {
      width: 50%;
      transform: translate3d(0,0,0)
  }
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active {
  pointer-events: auto
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-item-background-text {
  opacity: 1!important
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-split-text-right {
  opacity: 1!important
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-split-text-right-inner {
  transform: translateX(-50%)!important
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-split-text-left {
  transform: translateX(0)!important
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-item-text-left {
  animation: mkdfUncoverLeft .8s cubic-bezier(.215,.61,.355,1) forwards 1.1s
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-item-text-right {
  animation: mkdfUncoverRight .8s cubic-bezier(.215,.61,.355,1) forwards 1.1s
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-item-overlay {
  animation: mkdfOverlayShow 1s cubic-bezier(.86,0,.07,1) .5s forwards
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-item-lower-subtitle,#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-item-lower-title,#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-item-title {
  animation: mkdfUncoverRight .8s cubic-bezier(.19,1,.22,1) forwards 1.3s
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-item-description {
  animation: mkdfUncoverRight .8s cubic-bezier(.19,1,.22,1) forwards 1.5s
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-active .mkdf-item-btn {
  animation: mkdfUncoverRight .8s cubic-bezier(.19,1,.22,1) forwards 1.7s
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-remove .mkdf-item-text-left {
  animation: mkdfCoverRight .7s cubic-bezier(.215,.61,.355,1) forwards
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-remove .mkdf-item-text-right {
  animation: mkdfCoverLeft .7s cubic-bezier(.215,.61,.355,1) forwards
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-remove .mkdf-item-overlay {
  animation: mkdfOverlayHide 1s cubic-bezier(.86,0,.07,1) forwards
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-remove .mkdf-item-lower-subtitle,#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-remove .mkdf-item-lower-title,#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-remove .mkdf-item-title {
  animation: mkdfCoverRight .7s cubic-bezier(.19,1,.22,1) forwards
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-remove .mkdf-item-description {
  animation: mkdfCoverRight .7s cubic-bezier(.19,1,.22,1) forwards
}

#mkdf-animated-switch-slider .mkdf-switch-slide.mkdf-remove .mkdf-item-btn {
  animation: mkdfCoverRight .7s cubic-bezier(.19,1,.22,1) forwards
}

#mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination-holder {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100px;
  background-image: url(../../../../plugins/wilmer-core/assets/img/default_pattern.png);
  z-index: 500
}

@media only screen and (max-width: 1024px) {
  #mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination-holder {
      width:70px
  }
}

@media only screen and (max-width: 480px) {
  #mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination-holder {
      display:none
  }
}

#mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999
}

@media only screen and (max-width: 1024px) {
  #mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination {
      right:30px
  }
}

#mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination .mkdf-animated-ss-button {
  display: block;
  height: 7px;
  width: 7px;
  margin: 0 0 12px 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .3s ease
}

#mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination.mkdf-light-skin .mkdf-animated-ss-button:nth-child(3n+1) {
  background-color: #fff
}

#mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination.mkdf-light-skin .mkdf-animated-ss-button:nth-child(3n+2) {
  background-color: #fff
}

#mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination.mkdf-light-skin .mkdf-animated-ss-button:nth-child(3n) {
  background-color: #fff
}

#mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination.mkdf-light-skin .mkdf-animated-ss-button.mkdf-active {
  transform: scale(1.58);
  pointer-events: none
}

#mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination.mkdf-dark-skin .mkdf-animated-ss-button:nth-child(3n+1) {
  background-color: #00235a
}

#mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination.mkdf-dark-skin .mkdf-animated-ss-button:nth-child(3n+2) {
  background-color: #00235a
}

#mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination.mkdf-dark-skin .mkdf-animated-ss-button:nth-child(3n) {
  background-color: #00235a
}

#mkdf-animated-switch-slider .mkdf-animated-switch-slider-pagination.mkdf-dark-skin .mkdf-animated-ss-button.mkdf-active {
  transform: scale(1.58);
  pointer-events: none
}

.mkdf-banner-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-banner-holder.mkdf-visible-on-default {
  transition: all .1s ease-in-out
}

.mkdf-banner-holder.mkdf-visible-on-default:hover {
  box-shadow: 0 10px 20px 0 rgba(0,35,90,.5)
}

.touchevents .mkdf-banner-holder {
  cursor: pointer
}

.mkdf-banner-holder.mkdf-visible-on-hover:hover .mkdf-banner-text-holder {
  opacity: 1
}

.mkdf-banner-holder.mkdf-visible-on-hover .mkdf-banner-text-holder {
  opacity: 0;
  transition: opacity .2s ease-out
}

.mkdf-banner-holder.mkdf-hover-background-color:hover .mkdf-banner-text-holder {
  background-color: #00235a;
  border-color: #00235a;
  box-shadow: -32px 32px 75px 0 rgba(122,131,153,.6)
}

.mkdf-banner-holder.mkdf-hover-background-color:hover .mkdf-banner-text-holder .mkdf-banner-subtitle,.mkdf-banner-holder.mkdf-hover-background-color:hover .mkdf-banner-text-holder .mkdf-banner-title {
  color: #fff!important
}

.mkdf-banner-holder.mkdf-hover-background-color:hover .mkdf-banner-text-holder .mkdf-btn {
  color: #fff!important
}

.mkdf-banner-holder.mkdf-hover-background-color:hover .mkdf-banner-text-holder .mkdf-btn:after {
  background-color: #ff5e14;
  border-radius: 2px;
  margin-left: 0
}

.mkdf-banner-holder.mkdf-hover-background-color:hover .mkdf-banner-bottom-line {
  background: #00235a!important
}

.mkdf-banner-holder.mkdf-hover-background-color .mkdf-banner-bottom-line {
  width: 100%;
  height: 4px;
  background: #ff5e14;
  position: absolute;
  transition: .4s cubic-bezier(.42,.56,.17,.95)
}

.mkdf-banner-holder.mkdf-hover-background-color .mkdf-banner-text-holder {
  position: relative;
  background-color: #fff;
  border: 1px solid #e8e8e9;
  border-bottom: none;
  padding: 35px 35px 32px;
  transition: background-color .4s cubic-bezier(.42,.56,.17,.95),border .4s cubic-bezier(.42,.56,.17,.95),box-shadow .7s cubic-bezier(.49,.79,.17,.94)
}

.mkdf-banner-holder.mkdf-hover-background-color .mkdf-btn {
  margin-top: 48px;
  margin-left: 29px
}

.mkdf-banner-holder.mkdf-hover-background-color .mkdf-btn-simple:after {
  margin-left: 0;
  padding: 7px 13px
}

.mkdf-banner-holder.mkdf-disabled .mkdf-banner-text-holder {
  display: none
}

.mkdf-banner-holder.mkdf-banner-info-centered .mkdf-banner-text-holder {
  padding: 70px 20px;
  text-align: center
}

.mkdf-banner-holder.mkdf-banner-info-centered .mkdf-banner-subtitle,.mkdf-banner-holder.mkdf-banner-info-centered .mkdf-banner-text-inner,.mkdf-banner-holder.mkdf-banner-info-centered .mkdf-banner-title {
  text-align: center
}

.mkdf-banner-holder .mkdf-banner-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-banner-holder .mkdf-banner-image img {
  display: block
}

.mkdf-banner-holder .mkdf-banner-text-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 35px;
  box-sizing: border-box
}

@media only screen and (max-width: 768px) {
  .mkdf-banner-holder .mkdf-banner-text-holder {
      padding:25px
  }
}

.mkdf-banner-holder .mkdf-banner-text-outer {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%
}

.mkdf-banner-holder .mkdf-banner-text-inner {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  text-align: left
}

.mkdf-banner-holder .mkdf-banner-text-inner .mkdf-btn:after {
  margin-left: 0!important
}

.mkdf-banner-holder .mkdf-banner-subtitle {
  margin: 0 0 4px 32px;
  color: #565969;
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969
}

.mkdf-banner-holder .mkdf-banner-title {
  margin: 0 0 0 32px;
  color: #001659;
  text-align: left
}

.mkdf-banner-holder .mkdf-banner-title .mkdf-banner-title-light {
  font-weight: 400
}

.mkdf-banner-holder .mkdf-banner-link-text {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 11px 0 0;
  color: #fff;
  line-height: 1em;
  z-index: 2;
  transform: translateZ(0)
}

.mkdf-banner-holder .mkdf-banner-link-text:hover .mkdf-banner-link-hover {
  width: 100%
}

.mkdf-banner-holder .mkdf-banner-link-text .mkdf-banner-link-original {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%
}

.mkdf-banner-holder .mkdf-banner-link-text .mkdf-banner-link-original span {
  color: inherit
}

.mkdf-banner-holder .mkdf-banner-link-text .mkdf-banner-link-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: .1%;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  transition: width .4s ease-in-out
}

.mkdf-banner-holder .mkdf-banner-link-text .mkdf-banner-link-hover span {
  color: #ff5e14
}

.mkdf-banner-holder .mkdf-banner-link-text .mkdf-banner-link-icon,.mkdf-banner-holder .mkdf-banner-link-text .mkdf-banner-link-label {
  position: relative;
  display: inline-block;
  vertical-align: top
}

.mkdf-banner-holder .mkdf-banner-link-text .mkdf-banner-link-icon {
  margin: 0 2px 0 0;
  font-size: 15px
}

.mkdf-banner-holder .mkdf-banner-link-text .mkdf-banner-link-label {
  font-size: 14px;
  line-height: inherit
}

.mkdf-banner-holder .mkdf-banner-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1
}

.mkdf-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0;
  font-family: inherit;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: .02em;
  font-weight: 400;
  outline: 0;
  box-sizing: border-box;
  transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out,box-shadow .5s cubic-bezier(.49,.79,.17,.94);
  padding: 7px 38px;
  cursor: pointer
}

.mkdf-btn.mkdf-btn-simple {
  padding: 0!important;
  color: #001659;
  background-color: transparent;
  border: 0;
  vertical-align: middle;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: Yantramanav,sans-serif
}

.mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon):after {
  content: "＋";
  font-size: 20px;
  margin-left: 8px;
  display: inline-block;
  padding: 9px 15px 11px;
  background-color: #fff;
  vertical-align: middle;
  border-radius: 2px;
  transition: background-color .5s cubic-bezier(.49,.79,.17,.94),box-shadow .5s 50ms cubic-bezier(.49,.79,.17,.94)
}

.mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon):hover:after {
  background-color: #ff5e14;
  color: #fff;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

.mkdf-btn.mkdf-btn-simple.mkdf-btn-icon i,.mkdf-btn.mkdf-btn-simple.mkdf-btn-icon span:not(.mkdf-btn-text) {
  font-family: ElegantIcons;
  font-size: 20px;
  margin-left: 8px;
  display: inline-block;
  padding: 10px 15px;
  background-color: #ff5e14;
  vertical-align: middle;
  border-radius: 2px;
  transition: background-color .5s cubic-bezier(.49,.79,.17,.94),box-shadow .5s 50ms cubic-bezier(.49,.79,.17,.94)
}

.mkdf-btn.mkdf-btn-simple.mkdf-btn-icon:hover i,.mkdf-btn.mkdf-btn-simple.mkdf-btn-icon:hover span:not(.mkdf-btn-text) {
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

.mkdf-btn.mkdf-btn-simple.mkdf-orange-button-dark-shadow.mkdf-btn-icon:hover i,.mkdf-btn.mkdf-btn-simple.mkdf-orange-button-dark-shadow.mkdf-btn-icon:hover span:not(.mkdf-btn-text) {
  background-color: #ff5e14;
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5)
}

.mkdf-btn.mkdf-btn-simple .mkdf-btn-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-family: Yantramanav,sans-serif;
  letter-spacing: .02em;
  margin-top: 2px
}

.mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-custom-hover-color):hover {
  color: #001659!important
}

.mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-custom-hover-bg):hover {
  background-color: transparent!important
}

.mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-custom-border-hover):hover {
  border-color: transparent!important
}

.mkdf-btn.mkdf-btn-solid {
  color: #fff;
  background-color: #ff5e14;
  border: 1px solid transparent;
  border-radius: 2px
}

.mkdf-btn.mkdf-btn-solid.mkdf-orange-button-dark-shadow:hover {
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5)!important
}

.mkdf-btn.mkdf-btn-outline {
  color: #ff5e14;
  background-color: transparent;
  border: 1px solid #ff5e14
}

.mkdf-btn.mkdf-btn-outline:not(.mkdf-btn-custom-hover-color):hover {
  color: #fff!important
}

.mkdf-btn.mkdf-btn-outline:not(.mkdf-btn-custom-hover-bg):hover {
  background-color: #ff5e14!important
}

.mkdf-btn.mkdf-btn-outline:not(.mkdf-btn-custom-border-hover):hover {
  border-color: #ff5e14!important
}

.mkdf-btn.mkdf-btn-small {
  padding: 5px 30px
}

.mkdf-btn.mkdf-btn-large {
  padding: 13px 66px
}

.mkdf-btn.mkdf-btn-huge {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 26px
}

.mkdf-btn.mkdf-btn-icon>i,.mkdf-btn.mkdf-btn-icon>span:not(.mkdf-btn-text) {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 4px;
  font-size: 1.142857142857143em;
  line-height: inherit
}

.mkdf-btn.mkdf-btn-icon>i:before,.mkdf-btn.mkdf-btn-icon>span:not(.mkdf-btn-text):before {
  display: block;
  line-height: inherit
}

.mkdf-call-to-action-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-call-to-action-holder .mkdf-cta-button-holder,.mkdf-call-to-action-holder .mkdf-cta-text-holder {
  position: relative;
  display: inline-block;
  vertical-align: middle
}

.mkdf-call-to-action-holder .mkdf-cta-text-holder h1,.mkdf-call-to-action-holder .mkdf-cta-text-holder h2,.mkdf-call-to-action-holder .mkdf-cta-text-holder h3,.mkdf-call-to-action-holder .mkdf-cta-text-holder h4,.mkdf-call-to-action-holder .mkdf-cta-text-holder h5,.mkdf-call-to-action-holder .mkdf-cta-text-holder h6 {
  margin: 0
}

.mkdf-call-to-action-holder .mkdf-cta-button-holder .mkdf-btn {
  white-space: nowrap
}

.mkdf-call-to-action-holder.mkdf-normal-layout .mkdf-cta-inner {
  display: table
}

.mkdf-call-to-action-holder.mkdf-normal-layout:not(.mkdf-content-in-grid) .mkdf-cta-inner {
  width: 100%
}

.mkdf-call-to-action-holder.mkdf-normal-layout .mkdf-cta-button-holder,.mkdf-call-to-action-holder.mkdf-normal-layout .mkdf-cta-text-holder {
  display: table-cell;
  box-sizing: border-box
}

.mkdf-call-to-action-holder.mkdf-normal-layout .mkdf-cta-button-holder {
  text-align: right
}

.mkdf-call-to-action-holder.mkdf-simple-layout .mkdf-cta-inner {
  text-align: center
}

.mkdf-call-to-action-holder.mkdf-simple-layout .mkdf-cta-button-holder,.mkdf-call-to-action-holder.mkdf-simple-layout .mkdf-cta-text-holder {
  width: 100%
}

.mkdf-call-to-action-holder.mkdf-simple-layout .mkdf-cta-button-holder {
  margin: 28px 0 0
}

.mkdf-call-to-action-holder.mkdf-two-halves-columns .mkdf-cta-button-holder,.mkdf-call-to-action-holder.mkdf-two-halves-columns .mkdf-cta-text-holder {
  width: 50%
}

.mkdf-call-to-action-holder.mkdf-two-thirds-columns .mkdf-cta-text-holder {
  width: 66.66666666666667%
}

.mkdf-call-to-action-holder.mkdf-two-thirds-columns .mkdf-cta-button-holder {
  width: 33.33333333333333%
}

.mkdf-call-to-action-holder.mkdf-three-quarters-columns .mkdf-cta-text-holder {
  width: 75%
}

.mkdf-call-to-action-holder.mkdf-three-quarters-columns .mkdf-cta-button-holder {
  width: 25%
}

.mkdf-call-to-action-holder.mkdf-four-fifths-columns .mkdf-cta-text-holder {
  width: 80%
}

.mkdf-call-to-action-holder.mkdf-four-fifths-columns .mkdf-cta-button-holder {
  width: 20%
}

.mkdf-cards-gallery {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 10px 0
}

.mkdf-cards-gallery .mkdf-cg-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-cards-gallery img {
  position: relative;
  display: block;
  box-shadow: 0 0 4.85px .15px rgba(0,0,0,.09)
}

.mkdf-cards-gallery .mkdf-cg-fake-card {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.mkdf-cards-gallery .mkdf-cg-card {
  position: absolute;
  box-sizing: border-box;
  transition: all .15s ease
}

.mkdf-cards-gallery .mkdf-cg-card.mkdf-animating {
  transition: all 1s cubic-bezier(.19,1,.22,1);
  pointer-events: none
}

.mkdf-cards-gallery .mkdf-cg-card.mkdf-animating-siblings {
  transition: all .6s cubic-bezier(0,0,0,1);
  pointer-events: none
}

.mkdf-cards-gallery.mkdf-cg-shuffled-left .mkdf-cg-card {
  left: 0;
  will-change: transform
}

.mkdf-cards-gallery.mkdf-cg-shuffled-left .mkdf-cg-card.mkdf-out {
  transform: translateX(-100%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-left .mkdf-cg-card:nth-last-child(6) {
  transform: scale(.5) translateX(80%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-left .mkdf-cg-card:nth-last-child(5) {
  transform: scale(.6) translateX(54%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-left .mkdf-cg-card:nth-last-child(4) {
  transform: scale(.7) translateX(35%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-left .mkdf-cg-card:nth-last-child(3) {
  transform: scale(.8) translateX(21%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-left .mkdf-cg-card:nth-last-child(2) {
  transform: scale(.9) translateX(9.2%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-left .mkdf-cg-card:not(:last-of-type) {
  cursor: pointer
}

.mkdf-cards-gallery.mkdf-cg-shuffled-left .mkdf-cg-card:not(:last-of-type):not(.active):hover {
  margin-left: 10px!important
}

.mkdf-cards-gallery.mkdf-cg-shuffled-right .mkdf-cg-card {
  right: 0;
  will-change: transform
}

.mkdf-cards-gallery.mkdf-cg-shuffled-right .mkdf-cg-card.mkdf-out {
  transform: translateX(100%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-right .mkdf-cg-card:nth-last-child(6) {
  transform: scale(.5) translateX(-80%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-right .mkdf-cg-card:nth-last-child(5) {
  transform: scale(.6) translateX(-54%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-right .mkdf-cg-card:nth-last-child(4) {
  transform: scale(.7) translateX(-35%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-right .mkdf-cg-card:nth-last-child(3) {
  transform: scale(.8) translateX(-21%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-right .mkdf-cg-card:nth-last-child(2) {
  transform: scale(.9) translateX(-9.2%)
}

.mkdf-cards-gallery.mkdf-cg-shuffled-right .mkdf-cg-card:not(:last-of-type) {
  cursor: pointer
}

.mkdf-cards-gallery.mkdf-cg-shuffled-right .mkdf-cg-card:not(:last-of-type):not(.active):hover {
  margin-right: 10px!important
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation img {
  visibility: hidden
}

@-webkit-keyframes mkdfCardAppearFromRight {
  0% {
      transform: translate3d(100%,0,0);
      opacity: 0;
      visibility: visible
  }

  30% {
      opacity: 1;
      visibility: visible
  }

  100% {
      visibility: visible;
      transform: translate3d(0,0,0)
  }
}

@keyframes mkdfCardAppearFromRight {
  0% {
      transform: translate3d(100%,0,0);
      opacity: 0;
      visibility: visible
  }

  30% {
      opacity: 1;
      visibility: visible
  }

  100% {
      visibility: visible;
      transform: translate3d(0,0,0)
  }
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-right.mkdf-appeared img {
  animation: mkdfCardAppearFromRight 1s cubic-bezier(.19,1,.22,1) forwards
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-right.mkdf-appeared .mkdf-cg-card:nth-child(1) img:not(.mkdf-animation-done) {
  animation-delay: .2s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-right.mkdf-appeared .mkdf-cg-card:nth-child(2) img:not(.mkdf-animation-done) {
  animation-delay: .4s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-right.mkdf-appeared .mkdf-cg-card:nth-child(3) img:not(.mkdf-animation-done) {
  animation-delay: .6s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-right.mkdf-appeared .mkdf-cg-card:nth-child(4) img:not(.mkdf-animation-done) {
  animation-delay: .8s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-right.mkdf-appeared .mkdf-cg-card:nth-child(5) img:not(.mkdf-animation-done) {
  animation-delay: 1s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-right.mkdf-appeared .mkdf-cg-card:nth-child(6) img:not(.mkdf-animation-done) {
  animation-delay: 1.2s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-right.mkdf-appeared .mkdf-cg-card:nth-child(7) img:not(.mkdf-animation-done) {
  animation-delay: 1.4s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-right.mkdf-appeared .mkdf-cg-card:nth-child(8) img:not(.mkdf-animation-done) {
  animation-delay: 1.6s
}

@-webkit-keyframes mkdfCardAppearFromLeft {
  0% {
      visibility: visible;
      opacity: 0;
      transform: translate3d(-100%,0,0)
  }

  30% {
      visibility: visible;
      opacity: 1
  }

  100% {
      visibility: visible;
      transform: translate3d(0,0,0)
  }
}

@keyframes mkdfCardAppearFromLeft {
  0% {
      visibility: visible;
      opacity: 0;
      transform: translate3d(-100%,0,0)
  }

  30% {
      visibility: visible;
      opacity: 1
  }

  100% {
      visibility: visible;
      transform: translate3d(0,0,0)
  }
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-left.mkdf-appeared img {
  animation: mkdfCardAppearFromLeft 1s cubic-bezier(.19,1,.22,1) forwards
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-left.mkdf-appeared .mkdf-cg-card:nth-child(1) img:not(.mkdf-animation-done) {
  animation-delay: .2s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-left.mkdf-appeared .mkdf-cg-card:nth-child(2) img:not(.mkdf-animation-done) {
  animation-delay: .4s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-left.mkdf-appeared .mkdf-cg-card:nth-child(3) img:not(.mkdf-animation-done) {
  animation-delay: .6s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-left.mkdf-appeared .mkdf-cg-card:nth-child(4) img:not(.mkdf-animation-done) {
  animation-delay: .8s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-left.mkdf-appeared .mkdf-cg-card:nth-child(5) img:not(.mkdf-animation-done) {
  animation-delay: 1s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-left.mkdf-appeared .mkdf-cg-card:nth-child(6) img:not(.mkdf-animation-done) {
  animation-delay: 1.2s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-left.mkdf-appeared .mkdf-cg-card:nth-child(7) img:not(.mkdf-animation-done) {
  animation-delay: 1.4s
}

.no-touchevents .mkdf-cards-gallery.mkdf-bundle-animation.mkdf-cg-shuffled-left.mkdf-appeared .mkdf-cg-card:nth-child(8) img:not(.mkdf-animation-done) {
  animation-delay: 1.6s
}

.mkdf-clients-carousel-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-clients-carousel-holder .mkdf-cc-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-clients-carousel-holder .mkdf-cc-item {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.touchevents .mkdf-clients-carousel-holder .mkdf-cc-item {
  cursor: pointer
}

.mkdf-clients-carousel-holder .mkdf-cc-item img {
  display: block
}

.mkdf-clients-carousel-holder .mkdf-cc-link {
  position: relative;
  display: inline-block;
  vertical-align: top
}

.mkdf-cc-hover-switch-images .mkdf-cc-item {
  display: flex;
  align-items: center;
  justify-content: center
}

.mkdf-cc-hover-switch-images .mkdf-cc-item.mkdf-cci-has-link a:hover .mkdf-cc-image {
  opacity: 0
}

.mkdf-cc-hover-switch-images .mkdf-cc-item.mkdf-cci-has-link a:hover .mkdf-cc-hover-image {
  opacity: 1
}

.mkdf-cc-hover-switch-images .mkdf-cc-item.mkdf-cci-no-link:hover .mkdf-cc-image {
  opacity: 0
}

.mkdf-cc-hover-switch-images .mkdf-cc-item.mkdf-cci-no-link:hover .mkdf-cc-hover-image {
  opacity: 1
}

.mkdf-cc-hover-switch-images .mkdf-cc-item.mkdf-cci-no-link .mkdf-cc-hover-image {
  left: 50%;
  transform: translateX(-50%)
}

.mkdf-cc-hover-switch-images .mkdf-cc-item .mkdf-cc-image {
  width: auto;
  opacity: 1;
  will-change: opacity;
  transition: opacity .15s ease-out
}

.mkdf-cc-hover-switch-images .mkdf-cc-item .mkdf-cc-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  opacity: 0;
  will-change: opacity;
  transition: opacity .15s ease-out
}

.mkdf-cc-hover-roll-over .mkdf-cc-item {
  overflow: hidden
}

.mkdf-cc-hover-roll-over .mkdf-cc-item.mkdf-cci-has-link a:hover .mkdf-cc-image {
  transform: translateY(100%)
}

.mkdf-cc-hover-roll-over .mkdf-cc-item.mkdf-cci-has-link a:hover .mkdf-cc-hover-image {
  transform: translate(-50%,0)
}

.mkdf-cc-hover-roll-over .mkdf-cc-item.mkdf-cci-no-link:hover .mkdf-cc-image {
  transform: translateY(100%)
}

.mkdf-cc-hover-roll-over .mkdf-cc-item.mkdf-cci-no-link:hover .mkdf-cc-hover-image {
  transform: translate(-50%,0)
}

.mkdf-cc-hover-roll-over .mkdf-cc-item .mkdf-cc-image {
  position: relative;
  display: block;
  width: auto;
  margin: 0 auto;
  transition: transform .4s ease
}

.mkdf-cc-hover-roll-over .mkdf-cc-item .mkdf-cc-hover-image {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  transform: translate(-50%,-100%);
  transition: transform .4s ease
}

.mkdf-clients-grid-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  text-align: center
}

.mkdf-clients-grid-holder.mkdf-cg-alignment-left {
  text-align: left
}

.mkdf-clients-grid-holder.mkdf-cg-alignment-right {
  text-align: right
}

.mkdf-clients-grid-holder .mkdf-cc-link {
  position: relative;
  display: inline-block;
  vertical-align: top
}

@media only screen and (max-width: 1024px) {
  .mkdf-clients-grid-holder.mkdf-four-columns .mkdf-cg-inner .mkdf-cc-item {
      width:25%
  }

  .mkdf-clients-grid-holder.mkdf-four-columns .mkdf-cg-inner .mkdf-cc-item:nth-child(3n+1) {
      clear: none
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-clients-grid-holder.mkdf-four-columns .mkdf-cg-inner .mkdf-cc-item {
      width:50%
  }
}

@media only screen and (max-width: 480px) {
  .mkdf-clients-grid-holder.mkdf-four-columns .mkdf-cg-inner .mkdf-cc-item {
      width:100%
  }
}

.mkdf-countdown {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-countdown.mkdf-light-skin .countdown-row .countdown-section:nth-child(4) .countdown-amount {
  color: #fff;
  -webkit-text-fill-color: initial;
  -webkit-text-stroke-width: initial;
  -webkit-text-stroke-color: initial
}

.mkdf-countdown.mkdf-light-skin .countdown-row .countdown-section .countdown-amount,.mkdf-countdown.mkdf-light-skin .countdown-row .countdown-section .countdown-period {
  color: #fff
}

.mkdf-countdown.mkdf-light-skin .countdown-row .countdown-section .countdown-amount {
  position: relative;
  display: block;
  font-size: 80px;
  line-height: 1em;
  letter-spacing: -.01em;
  font-weight: 800;
  color: #f5f6f7;
  margin-bottom: 14px;
  -webkit-text-fill-color: initial;
  -webkit-text-stroke-width: initial;
  -webkit-text-stroke-color: initial
}

.mkdf-countdown .countdown-rtl {
  direction: rtl
}

.mkdf-countdown .countdown-row {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  text-align: inherit;
  clear: both
}

.mkdf-countdown .countdown-row.countdown-show1 .countdown-section {
  width: 100%
}

.mkdf-countdown .countdown-row.countdown-show2 .countdown-section {
  width: 50%
}

.mkdf-countdown .countdown-row.countdown-show3 .countdown-section {
  width: 33.33333%
}

.mkdf-countdown .countdown-row.countdown-show4 .countdown-section {
  width: 25%
}

.mkdf-countdown .countdown-row.countdown-show5 .countdown-section {
  width: 20%
}

.mkdf-countdown .countdown-row.countdown-show6 .countdown-section {
  width: 16.66667%
}

.mkdf-countdown .countdown-row .countdown-section {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 0 5px;
  box-sizing: border-box
}

.mkdf-countdown .countdown-row .countdown-section:nth-child(4) .countdown-amount {
  color: #001659
}

.mkdf-countdown .countdown-row .countdown-section .countdown-amount {
  position: relative;
  display: block;
  font-size: 80px;
  line-height: 1em;
  letter-spacing: -.01em;
  font-weight: 800;
  color: #001659;
  margin-bottom: 14px
}

.mkdf-countdown .countdown-row .countdown-section .countdown-period {
  display: block;
  font-size: 26px;
  line-height: 1.15em;
  font-weight: 600;
  color: #001659
}

.mkdf-counter-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  opacity: 0;
  transition: opacity .2s ease-in
}

.mkdf-counter-holder .mkdf-counter-inner {
  position: relative;
  display: inline-block;
  vertical-align: middle
}

.mkdf-counter-holder .mkdf-counter {
  height: 1em;
  display: inline-block!important;
  vertical-align: middle;
  color: inherit;
  line-height: 1em;
  font-weight: 600;
  overflow: hidden
}

.mkdf-counter-holder .mkdf-counter-number {
  position: relative
}

.mkdf-counter-holder .mkdf-counter-number.mkdf-shadow-counter {
  float: left;
  z-index: 1
}

.mkdf-counter-holder .mkdf-counter-content.mkdf-shadow-counter {
  margin: -20px 0 0 -34px;
  z-index: 2
}

.mkdf-counter-holder .mkdf-counter-inner {
  display: flex;
  align-items: center;
  justify-content: center
}

.mkdf-counter-holder.mkdf-counter-centered .mkdf-counter-inner,.mkdf-counter-holder.mkdf-counter-left .mkdf-counter-inner {
  display: block
}

.mkdf-counter-holder.mkdf-shadow-counter .mkdf-counter-inner {
  display: flex
}

.mkdf-counter-holder.mkdf-counter-left .mkdf-counter-number {
  text-align: left
}

.mkdf-counter-holder.mkdf-counter-left .mkdf-counter-content {
  text-align: left
}

.mkdf-counter-holder.mkdf-counter-left .mkdf-counter-content .mkdf-counter-title {
  margin: 0;
  line-height: 2.25em
}

.mkdf-counter-holder .mkdf-counter-title {
  margin: 0 0 0 44px
}

@media only screen and (max-width: 1440px) {
  .mkdf-counter-holder .mkdf-counter-title {
      margin:0 0 0 16px
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-counter-holder .mkdf-counter-title {
      margin:0 0 0 44px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-counter-holder .mkdf-counter-title {
      margin:0 0 0 2px
  }
}

.mkdf-counter-holder .mkdf-counter-text {
  margin: -13px 46px 0;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  line-height: 2.2em;
  text-transform: uppercase
}

@media only screen and (max-width: 1440px) {
  .mkdf-counter-holder .mkdf-counter-text {
      margin:23px 16px 3px
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-counter-holder .mkdf-counter-text {
      margin:0 46px 3px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-counter-holder .mkdf-counter-text {
      margin:23px 46px 3px 5px
  }
}

.mkdf-counter-holder .mkdf-counter.mkdf-shadow-counter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #13192f
}

.mkdf-counter-holder .mkdf-shadow-counter .mkdf-counter-text {
  margin: 0 46px 0 0;
  line-height: 2.3em;
  text-transform: uppercase
}

.mkdf-counter-holder .mkdf-shadow-counter .mkdf-counter-title {
  margin: 0
}

.mkdf-counter-holder .mkdf-counter-background {
  float: left;
  min-width: 186px;
  color: #f5f6f7;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #d2d2d4;
  height: 1em;
  display: inline-block!important;
  vertical-align: middle;
  line-height: 1em;
  font-weight: 600;
  overflow: hidden;
  font-size: 180px
}

.mkdf-counter-holder.mkdf-counter-bold-skin .mkdf-counter-number {
  -webkit-text-fill-color: initial;
  -webkit-text-stroke-width: initial;
  -webkit-text-stroke-color: initial
}

.mkdf-counter-holder .mkdf-counter-content {
  float: left;
  text-align: left
}

@media only screen and (max-width: 680px) {
  .mkdf-counter-holder .mkdf-counter-content {
      float:none
  }
}

.mkdf-counter-holder.mkdf-counter-centered .mkdf-counter-inner {
  width: 100%
}

.mkdf-counter-holder.mkdf-counter-centered .mkdf-counter-number {
  min-width: 100%
}

.mkdf-counter-holder.mkdf-counter-centered .mkdf-counter-number,.mkdf-counter-holder.mkdf-counter-centered .mkdf-counter-text,.mkdf-counter-holder.mkdf-counter-centered .mkdf-counter-title {
  text-align: center
}

.mkdf-counter-holder.mkdf-counter-centered .mkdf-counter-content {
  width: 100%
}

.mkdf-counter-holder.mkdf-counter-centered .mkdf-counter-content .mkdf-counter-title {
  margin: 0
}

.mkdf-crossfade-images {
  display: inline-block;
  position: relative;
  max-width: 100%;
  transition: all .4s
}

.mkdf-crossfade-images:hover {
  box-shadow: -11px 11px 65px 0 rgba(122,131,153,.6)
}

.mkdf-crossfade-images .mkdf-cfi-link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100
}

.mkdf-crossfade-images .mkdf-cfi-img-holder .mkdf-cfi-img-holder-inner {
  position: relative;
  overflow: hidden
}

.mkdf-crossfade-images .mkdf-cfi-img-holder .mkdf-cfi-img-holder-inner img {
  vertical-align: middle;
  transition: all .5s ease
}

.mkdf-crossfade-images .mkdf-cfi-img-holder .mkdf-cfi-img-holder-inner .mkdf-cfi-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all .5s ease
}

.mkdf-crossfade-images .mkdf-cfi-title-holder {
  text-align: center;
  margin: 30px 0
}

.mkdf-crossfade-images .mkdf-cfi-title-holder .mkdf-cfi-title {
  text-transform: none;
  font-weight: 400;
  font-size: 19px
}

.mkdf-crossfade-images:hover .mkdf-cfi-img-holder .mkdf-cfi-img-holder-inner img {
  opacity: 0
}

.mkdf-crossfade-images:hover .mkdf-cfi-img-holder .mkdf-cfi-img-holder-inner .mkdf-cfi-image-hover {
  opacity: 1
}

.mkdf-custom-font-holder .mkdf-cf-typed-wrap {
  width: 0;
  white-space: nowrap
}

.mkdf-custom-font-holder .mkdf-cf-typed {
  display: inline-block
}

.mkdf-custom-font-holder .mkdf-cf-typed span {
  display: none
}

.mkdf-custom-font-holder .mkdf-cf-typed~.typed-cursor {
  display: inline-block;
  opacity: 1;
  -webkit-animation: blink .7s infinite;
  animation: blink .7s infinite
}

@-webkit-keyframes blink {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0
  }

  100% {
      opacity: 1
  }
}

@keyframes blink {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0
  }

  100% {
      opacity: 1
  }
}

.mkdf-dropcaps {
  position: relative;
  display: inline-block;
  vertical-align: top;
  float: left;
  line-height: 42px;
  font-size: 42px;
  color: #999;
  font-weight: 300;
  text-align: center;
  margin: 0 7px 0 0
}

.mkdf-dropcaps.mkdf-circle,.mkdf-dropcaps.mkdf-square {
  font-size: 26px;
  line-height: 1.15em;
  font-weight: 600;
  height: 40px;
  width: 40px;
  font-size: 26px;
  line-height: 41px;
  font-weight: 500;
  color: #fff;
  background-color: #12192d;
  margin: 6px 10px 0 0;
  box-sizing: border-box
}

.mkdf-dropcaps.mkdf-circle {
  border-radius: 50%
}

.mkdf-dropcaps.mkdf-normal {
  font-size: 40px;
  line-height: .75em;
  letter-spacing: 0;
  font-weight: 600;
  position: relative;
  display: inline-block;
  vertical-align: top;
  float: left;
  line-height: 44px;
  font-size: 40px;
  color: #999;
  font-weight: 500;
  margin: 0 24px 0 0
}

.mkdf-elements-holder {
  width: 100%;
  display: table;
  table-layout: fixed
}

.mkdf-elements-holder.mkdf-eh-full-height {
  height: 100%
}

.mkdf-elements-holder.mkdf-ehi-float .mkdf-eh-item {
  float: left
}

.mkdf-elements-holder.mkdf-two-columns .mkdf-eh-item {
  width: 50%
}

.mkdf-elements-holder.mkdf-three-columns .mkdf-eh-item {
  width: 33.33333%
}

.mkdf-elements-holder.mkdf-four-columns .mkdf-eh-item {
  width: 25%
}

.mkdf-elements-holder.mkdf-five-columns .mkdf-eh-item {
  width: 20%
}

.mkdf-elements-holder.mkdf-six-columns .mkdf-eh-item {
  width: 16.66667%
}

.mkdf-elements-holder .mkdf-eh-item {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  background-position: center;
  background-size: cover
}

.mkdf-elements-holder .mkdf-eh-item.mkdf-vertical-alignment-top {
  vertical-align: top
}

.mkdf-elements-holder .mkdf-eh-item.mkdf-vertical-alignment-bottom {
  vertical-align: bottom
}

.mkdf-elements-holder .mkdf-eh-item.mkdf-horizontal-alignment-center {
  text-align: center
}

.mkdf-elements-holder .mkdf-eh-item.mkdf-horizontal-alignment-right {
  text-align: right
}

.mkdf-elements-holder .mkdf-eh-item .mkdf-elements-holder-item-inner {
  width: 100%
}

.mkdf-elements-holder .mkdf-ehi-content {
  padding: 0 20px
}

.mkdf-expanded-gallery {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-expanded-gallery .mkdf-eg-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  text-align: center
}

.mkdf-expanded-gallery .mkdf-eg-image {
  opacity: 0
}

.mkdf-expanded-gallery .mkdf-eg-image.mkdf-eg-middle-item {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  max-width: 70%;
  box-shadow: 0 20px 25px 0 rgba(0,22,89,.13);
  transform: scale(.7);
  transition: all .3s cubic-bezier(.15,.7,.54,.99)
}

.mkdf-expanded-gallery .mkdf-eg-image.mkdf-eg-middle-item.mkdf-eg-show {
  transform: scale(1);
  opacity: 1
}

.mkdf-expanded-gallery .mkdf-eg-image.mkdf-eg-middle-item.mkdf-eg-show:hover {
  transform: scale(.97)
}

.mkdf-expanded-gallery .mkdf-eg-image:not(.mkdf-eg-middle-item) {
  position: absolute;
  top: 50%;
  transform: translate3d(0,-50%,0);
  transition: all .4s cubic-bezier(.15,.7,.54,.99)
}

.mkdf-expanded-gallery .mkdf-eg-image a,.mkdf-expanded-gallery .mkdf-eg-image img {
  display: block
}

.mkdf-expanded-gallery.mkdf-eg-three .mkdf-eg-image:first-child {
  left: 0;
  max-width: 50%;
  transform: translate3d(50%,-50%,0)
}

.mkdf-expanded-gallery.mkdf-eg-three .mkdf-eg-image:last-child {
  right: 0;
  max-width: 50%;
  transform: translate3d(-50%,-50%,0)
}

.mkdf-expanded-gallery.mkdf-eg-three .mkdf-eg-image:nth-child(n+4) {
  display: none
}

.mkdf-expanded-gallery.mkdf-eg-three .mkdf-eg-image.mkdf-eg-show {
  opacity: 1
}

.mkdf-expanded-gallery.mkdf-eg-three .mkdf-eg-image.mkdf-eg-show:not(.mkdf-eg-middle-item) {
  transform: translate3d(0,-50%,0)
}

.mkdf-expanded-gallery.mkdf-eg-three .mkdf-eg-image.mkdf-eg-show:hover:first-child {
  transform: translate3d(-5%,-50%,0)
}

.mkdf-expanded-gallery.mkdf-eg-three .mkdf-eg-image.mkdf-eg-show:hover:last-child {
  transform: translate3d(5%,-50%,0)
}

.mkdf-expanded-gallery.mkdf-eg-five .mkdf-eg-image:first-child {
  left: 0;
  max-width: 30%;
  transform: translate3d(50%,-50%,0)
}

.mkdf-expanded-gallery.mkdf-eg-five .mkdf-eg-image:nth-child(2) {
  left: 7.5%;
  max-width: 50%;
  z-index: 1;
  transform: translate3d(75%,-50%,0)
}

.mkdf-expanded-gallery.mkdf-eg-five .mkdf-eg-image:nth-child(4) {
  right: 7.5%;
  max-width: 50%;
  z-index: 1;
  transform: translate3d(-50%,-50%,0)
}

.mkdf-expanded-gallery.mkdf-eg-five .mkdf-eg-image:last-child {
  right: 0;
  max-width: 30%;
  transform: translate3d(-75%,-50%,0)
}

.mkdf-expanded-gallery.mkdf-eg-five .mkdf-eg-image:nth-child(n+6) {
  display: none
}

.mkdf-expanded-gallery.mkdf-eg-five .mkdf-eg-image.mkdf-eg-show {
  opacity: 1
}

.mkdf-expanded-gallery.mkdf-eg-five .mkdf-eg-image.mkdf-eg-show:not(.mkdf-eg-middle-item) {
  transform: translate3d(0,-50%,0)
}

.mkdf-expanded-gallery.mkdf-eg-five .mkdf-eg-image.mkdf-eg-show:hover:first-child,.mkdf-expanded-gallery.mkdf-eg-five .mkdf-eg-image.mkdf-eg-show:hover:nth-child(2) {
  transform: translate3d(-5%,-50%,0)
}

.mkdf-expanded-gallery.mkdf-eg-five .mkdf-eg-image.mkdf-eg-show:hover:last-child,.mkdf-expanded-gallery.mkdf-eg-five .mkdf-eg-image.mkdf-eg-show:hover:nth-child(4) {
  transform: translate3d(5%,-50%,0)
}

.mkdf-frame-slider-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  text-align: center;
  padding: 50px 0 48px
}

.mkdf-frame-slider-holder .mkdf-fs-phone {
  display: inline-block;
  position: relative;
  z-index: 10
}

.mkdf-frame-slider-holder .mkdf-fs-phone img {
  display: block
}

.mkdf-frame-slider-holder .mkdf-fs-slides {
  position: absolute;
  top: 12.5%;
  left: calc(3% + 1px);
  cursor: -webkit-grab;
  visibility: hidden;
  transform: translateX(-3%)
}

.mkdf-frame-slider-holder .mkdf-fs-slides .mkdf-fs-slide {
  margin: 0 55px;
  position: relative
}

.mkdf-frame-slider-holder .mkdf-fs-slides a,.mkdf-frame-slider-holder .mkdf-fs-slides img {
  display: block
}

.mkdf-frame-slider-holder .mkdf-owl-slider .owl-dots {
  margin: 80px 0 0
}

.mkdf-frame-slider-holder .mkdf-owl-slider .owl-dots .owl-dot {
  margin: 0 14px
}

.mkdf-frame-slider-holder .mkdf-owl-slider .owl-dots .owl-dot span {
  border: none;
  background-color: #a3a3a3;
  width: 8px;
  height: 8px
}

.mkdf-frame-slider-holder .mkdf-owl-slider .owl-dots .owl-dot.active span {
  background-color: #ff5e14;
  border: none
}

.mkdf-full-screen-image-slider {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  opacity: 0
}

.mkdf-full-screen-image-slider.mkdf-fsis-is-init {
  opacity: 1
}

.mkdf-full-screen-image-slider.mkdf-fsis-active .mkdf-fsis-slider .owl-nav .owl-prev {
  left: -100px
}

.mkdf-full-screen-image-slider.mkdf-fsis-active .mkdf-fsis-slider .owl-nav .owl-next {
  right: -100px
}

.mkdf-full-screen-image-slider.mkdf-fsis-active .mkdf-fsis-slider .owl-dots {
  bottom: -30px
}

.mkdf-full-screen-image-slider.mkdf-fsis-active .mkdf-fsis-prev-nav {
  left: -100px
}

.mkdf-full-screen-image-slider.mkdf-fsis-active .mkdf-fsis-next-nav {
  right: -100px
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  height: 100vh;
  z-index: inherit
}

.admin-bar .mkdf-full-screen-image-slider .mkdf-fsis-slider {
  height: calc(100vh - 32px)
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-stage-outer {
  overflow: visible
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-nav .owl-next,.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-nav .owl-prev {
  width: 40px;
  text-align: center;
  transition: left .4s ease,right .4s ease
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-nav .owl-prev {
  left: 25px
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-nav .owl-prev:hover {
  left: 15px
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-nav .owl-next {
  right: 25px
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-nav .owl-next:hover {
  right: 15px
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-dots {
  position: absolute;
  left: 0;
  bottom: calc(8% - 14px);
  width: 100%;
  margin: 0;
  counter-reset: section;
  z-index: 3;
  transition: bottom .4s ease
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-dots .owl-dot {
  margin: 0 14px;
  color: #565969;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-dots .owl-dot.active,.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-dots .owl-dot:hover {
  color: #001659
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-dots .owl-dot span {
  display: none
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider .owl-dots .owl-dot:after {
  counter-increment: section;
  content: "0" counter(section)
}

.mkdf-full-screen-image-slider .mkdf-fsis-thumb-nav {
  position: absolute;
  top: 20%;
  height: 60%;
  width: 100px;
  display: block;
  z-index: 1;
  background-position: 20% 20%
}

.mkdf-full-screen-image-slider .mkdf-fsis-prev-nav {
  left: 0;
  transition: background .3s ease,left .4s ease
}

.mkdf-full-screen-image-slider .mkdf-fsis-next-nav {
  right: 0;
  transition: background .3s ease,right .4s ease
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider-mask {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1
}

.mkdf-full-screen-image-slider .mkdf-fsis-slider-mask.mkdf-drag {
  z-index: 2
}

.mkdf-full-screen-image-slider .mkdf-fsis-item {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  height: 100vh;
  overflow: hidden
}

.admin-bar .mkdf-full-screen-image-slider .mkdf-fsis-item {
  height: calc(100vh - 32px)
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-content-image-init .mkdf-fsis-image-top {
  top: -2%
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-content-image-init .mkdf-fsis-image-left {
  left: 9%
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-content-image-init .mkdf-fsis-image-right {
  right: 14%
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-content-image-init .mkdf-fsis-subtitle,.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-content-image-init .mkdf-fsis-title {
  top: 0;
  opacity: 1
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-image-hover .mkdf-fsis-image-top {
  top: calc(-2% - 10px);
  left: calc(28% - 20px)
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-image-hover .mkdf-fsis-image-left {
  bottom: calc(2% - 20px);
  left: calc(9% - 10px)
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-image-hover .mkdf-fsis-image-right {
  bottom: calc(7% - 20px);
  right: calc(14% - 10px)
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-image-hover .mkdf-fsis-frame-bottom,.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-image-hover .mkdf-fsis-frame-top {
  height: 18%
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-image-hover .mkdf-fsis-frame-left,.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-image-hover .mkdf-fsis-frame-right {
  width: 18%
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-active-image .mkdf-fsis-image-top {
  top: calc(-2% - 25px);
  left: calc(28% - 50px)
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-active-image .mkdf-fsis-image-left {
  bottom: calc(2% - 50px);
  left: calc(9% - 25px)
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-active-image .mkdf-fsis-image-right {
  bottom: calc(7% - 50px);
  right: calc(14% - 25px)
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-active-image .mkdf-fsis-frame-bottom,.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-active-image .mkdf-fsis-frame-top {
  height: 0
}

.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-active-image .mkdf-fsis-frame-left,.mkdf-full-screen-image-slider .mkdf-fsis-item.mkdf-fsis-active-image .mkdf-fsis-frame-right {
  width: 0
}

.mkdf-full-screen-image-slider .mkdf-fsis-image-wrapper {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%
}

.mkdf-full-screen-image-slider .mkdf-fsis-image-inner {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  text-align: center
}

.mkdf-full-screen-image-slider .mkdf-fsis-image {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer
}

.mkdf-full-screen-image-slider .mkdf-fsis-content-image {
  position: absolute
}

.mkdf-full-screen-image-slider .mkdf-fsis-content-image img {
  width: auto;
  max-width: 600px
}

.mkdf-full-screen-image-slider .mkdf-fsis-image-top {
  top: -50%;
  left: 28%;
  transform: rotate(-23deg);
  transition: top .8s ease,left .8s ease
}

.mkdf-full-screen-image-slider .mkdf-fsis-image-left {
  bottom: 2%;
  left: -50%;
  transform: rotate(-10.5deg);
  transition: bottom .8s ease,left .8s ease
}

.mkdf-full-screen-image-slider .mkdf-fsis-image-right {
  bottom: 7%;
  right: -50%;
  transform: rotate(-12deg);
  transition: bottom .8s ease,right .8s ease
}

.mkdf-full-screen-image-slider .mkdf-fsis-title {
  position: relative;
  top: 15px;
  margin: 0;
  padding: 0 12%;
  line-height: 1.2em;
  color: #fff;
  opacity: 0;
  box-sizing: border-box;
  transition: opacity .2s ease-in,top .3s ease-in
}

.mkdf-full-screen-image-slider .mkdf-fsis-subtitle {
  position: relative;
  top: 25px;
  margin: 20px 0 0;
  padding: 0 14%;
  color: #fff;
  opacity: 0;
  box-sizing: border-box;
  transition: opacity .2s ease-in,top .3s ease-in
}

.mkdf-full-screen-image-slider .mkdf-fsis-frame {
  position: fixed;
  background-color: #fff;
  transition: all .6s ease
}

.mkdf-full-screen-image-slider .mkdf-fsis-frame-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 20%
}

.mkdf-full-screen-image-slider .mkdf-fsis-frame-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%
}

.mkdf-full-screen-image-slider .mkdf-fsis-frame-left {
  top: 0;
  left: 0;
  width: 20%;
  height: 100%
}

.mkdf-full-screen-image-slider .mkdf-fsis-frame-right {
  top: 0;
  right: 0;
  width: 20%;
  height: 100%
}

.fp-enabled body,html.fp-enabled {
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent
}

#superContainer {
  height: 100%;
  position: relative;
  -ms-touch-action: none;
  touch-action: none
}

.fp-scrollable {
  overflow: hidden;
  position: relative
}

.fp-scroller {
  overflow: hidden
}

.iScrollIndicator {
  border: 0!important
}

.fp-notransition {
  -webkit-transition: none!important;
  transition: none!important
}

.fp-auto-height .fp-tableCell,.fp-auto-height .mkdf-fss-slide,.fp-auto-height.mkdf-fss-item {
  height: auto!important
}

.fp-responsive .fp-auto-height-responsive .fp-tableCell,.fp-responsive .fp-auto-height-responsive .mkdf-fss-slide,.fp-responsive .fp-auto-height-responsive.mkdf-fss-item {
  height: auto!important
}

#fp-nav {
  position: fixed;
  top: 50%;
  right: 40px;
  margin: -32px 0 0;
  z-index: 1001
}

@media only screen and (max-width: 1024px) {
  #fp-nav {
      right:30px
  }
}

#fp-nav ul {
  margin: 0;
  padding: 0
}

#fp-nav ul li {
  position: relative;
  display: block;
  margin: 10px 0;
  padding: 0
}

#fp-nav ul li a {
  position: relative;
  width: 12px;
  height: 12px;
  display: block;
  background-color: rgba(80,80,80,.3);
  border-radius: 100%;
  z-index: 1;
  transition: background-color .2s ease-in-out
}

#fp-nav ul li a.active,#fp-nav ul li a:hover {
  background-color: rgba(80,80,80,.7)
}

.mkdf-light-header #fp-nav ul li a span {
  background-color: rgba(255,255,255,.3)
}

.mkdf-light-header #fp-nav ul li a.active span,.mkdf-light-header #fp-nav ul li a:hover span {
  background-color: #fff
}

.mkdf-dark-header #fp-nav ul li a span {
  background-color: rgba(0,0,0,.3)
}

.mkdf-dark-header #fp-nav ul li a.active span,.mkdf-dark-header #fp-nav ul li a:hover span {
  background-color: #000
}

#fp-nav ul li a span {
  position: relative;
  height: 100%;
  width: 100%;
  display: block
}

.mkdf-full-screen-sections {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-full-screen-sections .mkdf-fss-wrapper {
  visibility: hidden
}

.mkdf-full-screen-sections .mkdf-fss-item {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
  transition: transform .3s ease
}

.mkdf-full-screen-sections .mkdf-fss-item.active {
  transform: scale(.92)
}

.mkdf-full-screen-sections .mkdf-fss-item.active.fp-completely {
  transform: scale(1)
}

.mkdf-full-screen-sections .mkdf-fss-item.fp-completely:not(.active) {
  transform: scale(.92)
}

.mkdf-full-screen-sections .mkdf-fss-item .fp-scroller>.vc_column_container {
  padding: 0;
  margin: 0
}

.mkdf-full-screen-sections .mkdf-fss-item .fp-scroller>.vc_column_container>.vc_column-inner {
  padding: 0;
  margin: 0
}

.mkdf-full-screen-sections .mkdf-fss-item.mkdf-fss-item-va-top .mkdf-fss-item-inner {
  vertical-align: top
}

.mkdf-full-screen-sections .mkdf-fss-item.mkdf-fss-item-va-bottom .mkdf-fss-item-inner {
  vertical-align: bottom
}

.mkdf-full-screen-sections .mkdf-fss-item.mkdf-fss-item-ha-left .mkdf-fss-item-inner {
  text-align: left
}

.mkdf-full-screen-sections .mkdf-fss-item.mkdf-fss-item-ha-center .mkdf-fss-item-inner {
  text-align: center
}

.mkdf-full-screen-sections .mkdf-fss-item.mkdf-fss-item-ha-right .mkdf-fss-item-inner {
  text-align: right
}

.mkdf-full-screen-sections .mkdf-fss-item.mkdf-fss-item-has-link .mkdf-fss-item-inner a {
  position: relative;
  z-index: 2
}

.mkdf-full-screen-sections .mkdf-fss-item .mkdf-fss-item-inner {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  padding: 5%;
  box-sizing: border-box
}

.mkdf-full-screen-sections .mkdf-fss-item .mkdf-fss-item-inner a {
  position: relative;
  z-index: 2
}

.mkdf-full-screen-sections .mkdf-fss-item .mkdf-fss-item-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1
}

.mkdf-full-screen-sections .mkdf-fss-nav-holder {
  position: fixed;
  bottom: 48px;
  left: 57px;
  display: block;
  width: 55px;
  text-align: center;
  visibility: hidden;
  z-index: 1001
}

.mkdf-full-screen-sections .mkdf-fss-nav-holder a {
  display: block;
  font-size: 55px;
  line-height: .9;
  color: #001659;
  height: auto;
  opacity: 1;
  transition: color .2s ease-out,opacity .25s ease-out
}

.mkdf-full-screen-sections .mkdf-fss-nav-holder a:hover {
  color: rgba(0,22,89,.7)
}

.mkdf-light-header .mkdf-full-screen-sections .mkdf-fss-nav-holder a {
  color: #fff
}

.mkdf-light-header .mkdf-full-screen-sections .mkdf-fss-nav-holder a:hover {
  color: rgba(255,255,255,.7)
}

.mkdf-dark-header .mkdf-full-screen-sections .mkdf-fss-nav-holder a {
  color: #000
}

.mkdf-dark-header .mkdf-full-screen-sections .mkdf-fss-nav-holder a:hover {
  color: rgba(0,0,0,.7)
}

.mkdf-full-screen-sections .mkdf-fss-nav-holder a span {
  display: block;
  line-height: inherit
}

.mkdf-full-screen-sections .mkdf-fss-nav-holder a span:before {
  display: block;
  line-height: inherit
}

@media only screen and (max-width: 1024px) {
  .mkdf-full-screen-sections .mkdf-fss-nav-holder {
      bottom:28px;
      left: 37px
  }
}

.mkdf-gallery-blocks-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-gallery-blocks-holder .mkdf-gb-images .mkdf-gb-image {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  float: left;
  box-sizing: border-box
}

.mkdf-gallery-blocks-holder .mkdf-gb-images .mkdf-gb-image.mkdf-gb-featured-image {
  width: 100%
}

.mkdf-gallery-blocks-holder .mkdf-gb-images a {
  position: relative;
  display: block
}

.mkdf-gallery-blocks-holder .mkdf-gb-images a:hover:after {
  opacity: 1
}

.mkdf-gallery-blocks-holder .mkdf-gb-images a:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(0,22,89,.4);
  opacity: 0;
  transition: opacity .2s ease-in-out
}

.mkdf-gallery-blocks-holder .mkdf-gb-images img {
  display: block
}

.mkdf-google-map-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-google-map-holder .mkdf-google-map-direction {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0 8px;
  font-size: 13px;
  line-height: 24px;
  color: #565969;
  background-color: #fff;
  z-index: 999;
  box-sizing: border-box
}

.mkdf-google-map-holder .mkdf-google-map-direction:hover {
  color: #001659
}

.mkdf-google-map-holder .mkdf-google-map {
  display: block;
  width: 100%;
  height: 300px
}

.mkdf-google-map-holder .mkdf-google-map embed,.mkdf-google-map-holder .mkdf-google-map iframe,.mkdf-google-map-holder .mkdf-google-map object {
  width: 100%;
  display: block
}

.mkdf-google-map-holder .mkdf-google-map img {
  max-width: none
}

.mkdf-google-map-holder .mkdf-snazzy-map {
  display: none
}

.mkdf-google-map-holder .mkdf-google-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000
}

.mkdf-horizontal-timeline {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  opacity: 0;
  transition: opacity .2s
}

.mkdf-horizontal-timeline:before {
  content: 'wilmertop';
  display: none
}

@media only screen and (max-width: 1024px) {
  .mkdf-horizontal-timeline:before {
      content:'mobile'
  }
}

.mkdf-horizontal-timeline.mkdf-loaded {
  opacity: 1
}

.mkdf-horizontal-timeline *,.mkdf-horizontal-timeline :after,.mkdf-horizontal-timeline :before {
  box-sizing: border-box
}

.mkdf-horizontal-timeline ol,.mkdf-horizontal-timeline ul {
  margin: 0;
  padding: 0;
  list-style-type: none
}

.mkdf-horizontal-timeline .mkdf-ht-nav {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top
}

.mkdf-horizontal-timeline .mkdf-ht-nav-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 20px);
  height: 60px;
  margin: 0 10px;
  overflow: hidden
}

.mkdf-horizontal-timeline .mkdf-ht-nav-inner {
  position: absolute;
  bottom: 10px;
  left: 0;
  height: 2px;
  background-color: #cdcdcd;
  transition: transform .4s ease
}

.mkdf-horizontal-timeline .mkdf-ht-nav-inner a {
  position: absolute;
  bottom: 0;
  padding: 0 0 6px;
  color: #bfbfbf;
  font-size: 23px;
  line-height: 34px;
  font-weight: 700;
  text-align: center;
  z-index: 2
}

.mkdf-horizontal-timeline .mkdf-ht-nav-inner a:hover:after {
  background-color: #001659
}

.mkdf-horizontal-timeline .mkdf-ht-nav-inner a.mkdf-selected {
  pointer-events: none;
  color: #001659
}

.mkdf-horizontal-timeline .mkdf-ht-nav-inner a.mkdf-selected:after {
  background-color: #001659
}

.mkdf-horizontal-timeline .mkdf-ht-nav-inner a.mkdf-older-event:after {
  background-color: #001659
}

.mkdf-horizontal-timeline .mkdf-ht-nav-inner a:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: calc(50% - 5px);
  right: auto;
  height: 6px;
  width: 6px;
  background-color: #cdcdcd;
  border: 2px solid #fff;
  border-radius: 100%;
  box-sizing: content-box;
  transition: background-color .3s
}

.mkdf-horizontal-timeline .mkdf-ht-nav-filling-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #001659;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease
}

.mkdf-horizontal-timeline .mkdf-ht-nav-navigation a {
  position: absolute;
  bottom: -1px;
  font-size: 24px;
  line-height: 1;
  z-index: 2
}

.mkdf-horizontal-timeline .mkdf-ht-nav-navigation a:after {
  display: block;
  font-family: ElegantIcons
}

.mkdf-horizontal-timeline .mkdf-ht-nav-navigation a.mkdf-prev {
  left: -8px
}

.mkdf-horizontal-timeline .mkdf-ht-nav-navigation a.mkdf-prev:after {
  content: "\34"
}

.mkdf-horizontal-timeline .mkdf-ht-nav-navigation a.mkdf-next {
  right: -8px
}

.mkdf-horizontal-timeline .mkdf-ht-nav-navigation a.mkdf-next:after {
  content: "\35"
}

.mkdf-horizontal-timeline .mkdf-ht-nav-navigation a.mkdf-inactive {
  cursor: not-allowed
}

.mkdf-horizontal-timeline .mkdf-ht-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-top: 70px;
  overflow: hidden;
  transition: height .4s
}

.mkdf-horizontal-timeline .mkdf-ht-content .mkdf-hti-content-inner {
  margin: 0 -25px
}

.mkdf-horizontal-timeline .mkdf-ht-content .mkdf-hti-content-inner.mkdf-timeline-has-image>* {
  width: 50%;
  float: left
}

.mkdf-horizontal-timeline .mkdf-ht-content .mkdf-hti-content-inner>* {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 0 25px;
  box-sizing: border-box
}

.mkdf-horizontal-timeline .mkdf-ht-content li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation-duration: .4s;
  animation-timing-function: ease-in-out;
  opacity: 0;
  z-index: 1;
  transform: translateX(-100%)
}

.mkdf-horizontal-timeline .mkdf-ht-content li.mkdf-selected {
  position: relative;
  opacity: 1;
  z-index: 2;
  transform: translateX(0)
}

.mkdf-horizontal-timeline .mkdf-ht-content li.mkdf-enter-left,.mkdf-horizontal-timeline .mkdf-ht-content li.mkdf-leave-left {
  animation-name: mkdf-enter-left
}

.mkdf-horizontal-timeline .mkdf-ht-content li.mkdf-enter-right,.mkdf-horizontal-timeline .mkdf-ht-content li.mkdf-leave-right {
  animation-name: mkdf-enter-right
}

.mkdf-horizontal-timeline .mkdf-ht-content li.mkdf-leave-left,.mkdf-horizontal-timeline .mkdf-ht-content li.mkdf-leave-right {
  animation-direction: reverse
}

@-webkit-keyframes mkdf-enter-right {
  0% {
      opacity: 0;
      -webkit-transform: translateX(100%)
  }

  100% {
      opacity: 1;
      -webkit-transform: translateX(0)
  }
}

@-moz-keyframes mkdf-enter-right {
  0% {
      opacity: 0;
      -moz-transform: translateX(100%)
  }

  100% {
      opacity: 1;
      -moz-transform: translateX(0)
  }
}

@keyframes mkdf-enter-right {
  0% {
      opacity: 0;
      transform: translateX(100%)
  }

  100% {
      opacity: 1;
      transform: translateX(0)
  }
}

@-webkit-keyframes mkdf-enter-left {
  0% {
      opacity: 0;
      -webkit-transform: translateX(-100%)
  }

  100% {
      opacity: 1;
      -webkit-transform: translateX(0)
  }
}

@-moz-keyframes mkdf-enter-left {
  0% {
      opacity: 0;
      -moz-transform: translateX(-100%)
  }

  100% {
      opacity: 1;
      -moz-transform: translateX(0)
  }
}

@keyframes mkdf-enter-left {
  0% {
      opacity: 0;
      transform: translateX(-100%)
  }

  100% {
      opacity: 1;
      transform: translateX(0)
  }
}

.mkdf-icon-list-holder {
  position: relative;
  display: table;
  table-layout: fixed;
  height: auto;
  width: 100%;
  margin-bottom: 8px
}

.mkdf-icon-list-holder .mkdf-il-icon-holder,.mkdf-icon-list-holder .mkdf-il-text {
  position: relative;
  display: table-cell;
  vertical-align: top
}

.mkdf-icon-list-holder .mkdf-il-icon-holder {
  width: 1%
}

.mkdf-icon-list-holder .mkdf-il-icon-holder>* {
  position: relative;
  display: inline-block;
  vertical-align: top;
  color: #001659;
  font-size: 17px;
  line-height: inherit
}

.mkdf-icon-list-holder .mkdf-il-icon-holder>:before {
  display: block;
  line-height: inherit
}

.mkdf-icon-list-holder .mkdf-il-text {
  width: 99%;
  padding: 0 0 0 13px;
  box-sizing: border-box
}

.mkdf-iwt {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-iwt .mkdf-iwt-icon a {
  position: relative;
  display: inline-block;
  vertical-align: middle
}

.mkdf-iwt .mkdf-iwt-icon a:hover svg path {
  fill: #ff5e14
}

.mkdf-iwt .mkdf-iwt-icon .mkdf-icon-shortcode {
  line-height: 1
}

.mkdf-iwt .mkdf-iwt-icon .mkdf-icon-shortcode.mkdf-circle,.mkdf-iwt .mkdf-iwt-icon .mkdf-icon-shortcode.mkdf-dropcaps.mkdf-circle,.mkdf-iwt .mkdf-iwt-icon .mkdf-icon-shortcode.mkdf-square {
  line-height: 2
}

.mkdf-iwt .mkdf-iwt-title {
  margin: 0;
  letter-spacing: 0
}

.mkdf-iwt .mkdf-iwt-title a {
  position: relative;
  display: inline-block;
  vertical-align: top
}

.mkdf-iwt .mkdf-iwt-title-text {
  display: block
}

.mkdf-iwt .mkdf-iwt-text {
  margin: 10px 0 0;
  font-size: 18px
}

.mkdf-iwt .mkdf-iwt-text a {
  color: inherit
}

.mkdf-iwt.mkdf-iwt-icon-left {
  width: auto
}

.mkdf-iwt.mkdf-iwt-icon-left .mkdf-iwt-content,.mkdf-iwt.mkdf-iwt-icon-left .mkdf-iwt-icon {
  display: table-cell;
  vertical-align: top
}

.mkdf-iwt.mkdf-iwt-icon-left .mkdf-iwt-icon {
  position: relative;
  top: 1px
}

.mkdf-iwt.mkdf-iwt-icon-left .mkdf-iwt-icon img {
  max-width: none
}

.mkdf-iwt.mkdf-iwt-icon-left .mkdf-iwt-content {
  padding: 0 0 0 24px
}

.mkdf-iwt.mkdf-iwt-icon-left-from-title .mkdf-iwt-icon,.mkdf-iwt.mkdf-iwt-icon-left-from-title .mkdf-iwt-title-text {
  position: relative;
  display: table-cell;
  vertical-align: middle
}

.mkdf-iwt.mkdf-iwt-icon-left-from-title .mkdf-iwt-icon .mkdf-icon-element {
  transition: none
}

.mkdf-iwt.mkdf-iwt-icon-left-from-title .mkdf-iwt-icon img {
  max-width: none
}

.mkdf-iwt.mkdf-iwt-icon-left-from-title .mkdf-iwt-title-text {
  padding: 0 0 0 17px
}

.mkdf-iwt.mkdf-iwt-icon-top {
  text-align: left
}

.mkdf-iwt.mkdf-iwt-icon-top .mkdf-iwt-content {
  padding: 24px 0 0
}

.mkdf-iwt.mkdf-iwt-icon-top-centered {
  text-align: center
}

.mkdf-iwt.mkdf-iwt-icon-top-centered .mkdf-iwt-text {
  margin: 10px 6px 0
}

.mkdf-iwt.mkdf-iwt-icon-top-centered .mkdf-iwt-icon {
  line-height: 1em
}

@media only screen and (max-width: 1440px) {
  .mkdf-iwt.mkdf-iwt-icon-top-centered .mkdf-iwt-text {
      margin:10px 0 0
  }
}

.mkdf-iwt.mkdf-iwt-icon-top-centered .mkdf-iwt-content {
  padding: 19px 0 0
}

.mkdf-iwt.mkdf-iwt-icon-top-centered .mkdf-iwt-caption {
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969;
  display: inline-block;
  margin: 0 0 5px
}

.mkdf-iwt .mkdf-iwt-caption {
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969;
  display: inline-block;
  margin: 0 0 5px
}

.mkdf-iwt.mkdf-iwt-boxed {
  padding: 73px 35px 65px;
  box-sizing: border-box;
  border: 1px solid #e8e8e9;
  border-bottom: 4px solid #ff5e14
}

.mkdf-iwt.mkdf-iwt-boxed:hover .mkdf-iwt-icon {
  transform: translateY(-5px);
  transition: .3s
}

.mkdf-iwt.mkdf-iwt-boxed .mkdf-iwt-icon {
  transition: .3s .3s
}

.mkdf-iwt.mkdf-iwt-boxed.mkdf-iwt-boxed-hovered .mkdf-iwt-icon {
  transform: translateY(-5px);
  transition: .3s
}

@media only screen and (max-width: 1366px) {
  .mkdf-iwt.mkdf-iwt-boxed {
      padding:38px 21px 33px
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-iwt.mkdf-iwt-boxed {
      padding:73px 35px 65px
  }
}

.mkdf-icon-shortcode {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.1em
}

.mkdf-icon-shortcode.mkdf-circle,.mkdf-icon-shortcode.mkdf-dropcaps.mkdf-circle,.mkdf-icon-shortcode.mkdf-square {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  background-color: #ff5e14;
  transition: background-color .15s ease-in-out,border-color .15s ease-in-out
}

.mkdf-icon-shortcode.mkdf-circle a,.mkdf-icon-shortcode.mkdf-dropcaps.mkdf-circle a,.mkdf-icon-shortcode.mkdf-square a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%
}

.mkdf-icon-shortcode.mkdf-circle .mkdf-icon-element,.mkdf-icon-shortcode.mkdf-dropcaps.mkdf-circle .mkdf-icon-element,.mkdf-icon-shortcode.mkdf-square .mkdf-icon-element {
  color: #fff;
  line-height: inherit
}

.mkdf-icon-shortcode.mkdf-circle {
  border-radius: 50%
}

.mkdf-icon-shortcode .mkdf-icon-element {
  display: block;
  line-height: inherit;
  transition: color .15s ease-in-out
}

.mkdf-icon-shortcode .mkdf-icon-element:before {
  display: block;
  line-height: inherit
}

.mkdf-icon-animation-holder {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transform: scale(0);
  transition: transform .15s ease-in-out
}

.mkdf-icon-animation-holder.mkdf-icon-animation-show {
  transform: scale(1)
}

.mkdf-icon-tiny {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%
}

.mkdf-icon-small {
  font-size: 2em
}

.mkdf-icon-medium {
  font-size: 3em
}

.mkdf-icon-large {
  font-size: 4em
}

.mkdf-icon-huge {
  font-size: 5em
}

.mkdf-image-gallery {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-next,.mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-prev {
  width: 70px;
  height: 70px
}

@media only screen and (max-width: 680px) {
  .mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-next,.mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-prev {
      width:55px;
      height: 55px
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-next {
      background-color:#ff5e14
  }

  .mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-prev {
      background-color: #fff
  }

  .mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-prev:hover {
      background-color: #ff5e14
  }

  .mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-prev:hover .owl-next {
      background-color: #fff
  }
}

.mkdf-image-gallery.mkdf-has-shadow .mkdf-ig-image-inner {
  box-shadow: 0 0 4.85px .15px rgba(0,0,0,.09)
}

.mkdf-image-gallery.mkdf-has-shadow.mkdf-ig-carousel-type .owl-stage-outer,.mkdf-image-gallery.mkdf-has-shadow.mkdf-ig-slider-type .owl-stage-outer {
  padding: 0 0 20px
}

.mkdf-image-gallery.mkdf-has-shadow.mkdf-ig-carousel-type .mkdf-ig-image,.mkdf-image-gallery.mkdf-has-shadow.mkdf-ig-slider-type .mkdf-ig-image {
  box-shadow: 0 0 4.85px .15px rgba(0,0,0,.09)
}

.mkdf-image-gallery .mkdf-ig-image a,.mkdf-image-gallery .mkdf-ig-image img {
  position: relative;
  display: block
}

.mkdf-image-gallery .mkdf-ig-image-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-image-gallery .mkdf-ig-slider {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-image-gallery.mkdf-ig-masonry-type .mkdf-ig-image.mkdf-fixed-masonry-item .mkdf-ig-image-inner,.mkdf-image-gallery.mkdf-ig-masonry-type .mkdf-ig-image.mkdf-fixed-masonry-item a {
  height: 100%
}

.mkdf-image-gallery.mkdf-image-behavior-custom-link .mkdf-ig-image a:hover:after {
  opacity: 1
}

.mkdf-image-gallery.mkdf-image-behavior-custom-link .mkdf-ig-image a:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(0,22,89,.4);
  opacity: 0;
  transition: opacity .2s ease-in-out
}

.mkdf-image-gallery.mkdf-image-behavior-lightbox .mkdf-ig-image a:hover:after {
  opacity: 1
}

.mkdf-image-gallery.mkdf-image-behavior-lightbox .mkdf-ig-image a:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(0,22,89,.4);
  opacity: 0;
  transition: opacity .2s ease-in-out
}

.touchevents .mkdf-image-gallery.mkdf-image-behavior-zoom .mkdf-ig-image {
  cursor: pointer
}

.mkdf-image-gallery.mkdf-image-behavior-zoom .mkdf-ig-image:hover img {
  transform: scale(1.04)
}

.mkdf-image-gallery.mkdf-image-behavior-zoom .mkdf-ig-image .mkdf-ig-image-inner {
  overflow: hidden
}

.mkdf-image-gallery.mkdf-image-behavior-zoom .mkdf-ig-image img {
  transform: scale(1);
  transition: transform .3s ease-in-out
}

.mkdf-image-gallery.mkdf-image-behavior-grayscale .mkdf-ig-image {
  overflow: hidden
}

.touchevents .mkdf-image-gallery.mkdf-image-behavior-grayscale .mkdf-ig-image {
  cursor: pointer
}

.mkdf-image-gallery.mkdf-image-behavior-grayscale .mkdf-ig-image:hover img {
  -webkit-filter: grayscale(0);
  filter: none
}

.mkdf-image-gallery.mkdf-image-behavior-grayscale .mkdf-ig-image img {
  filter: url(../../../../plugins/wilmer-core/assets/css/img/desaturate.svg#grayscale);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: gray;
  filter: grayscale(100%);
  transition: all .3s ease-in-out
}

.mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-next,.mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-prev {
  top: initial;
  bottom: 0;
  transform: none;
  border-radius: 0
}

.mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-prev {
  left: 0
}

.mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-next {
  left: 70px;
  right: initial
}

@media only screen and (max-width: 680px) {
  .mkdf-image-gallery .mkdf-owl-slider .owl-nav .owl-next {
      left:55px
  }
}

.mkdf-image-gallery .mkdf-owl-slider.mkdf-slider-has-both-nav .owl-nav .owl-next,.mkdf-image-gallery .mkdf-owl-slider.mkdf-slider-has-both-nav .owl-nav .owl-prev {
  bottom: 46px
}

.mkdf-image-gallery.mkdf-slider-overflow-visible .mkdf-owl-slider .owl-stage-outer {
  overflow: visible
}

.mkdf-image-marquee-holder {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden
}

.mkdf-image-marquee-holder .mkdf-image-marquee {
  position: relative
}

.mkdf-image-marquee-holder .mkdf-image {
  display: inline-block
}

.mkdf-image-marquee-holder .mkdf-image img {
  width: auto;
  max-width: unset;
  vertical-align: middle
}

.mkdf-image-marquee-holder .mkdf-image.mkdf-original {
  position: relative
}

.mkdf-image-marquee-holder .mkdf-image.mkdf-aux {
  position: absolute;
  top: 0
}

.mkdf-image-marquee-holder.mkdf-im-full-height {
  height: 100vh
}

.mkdf-image-marquee-holder.mkdf-im-full-height .mkdf-image {
  height: 100vh
}

.mkdf-image-marquee-holder.mkdf-im-full-height .mkdf-image img {
  height: 100vh;
  width: auto;
  max-width: unset;
  vertical-align: middle
}

.mkdf-image-marquee-holder.mkdf-im-with-content .mkdf-im-content-holder {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0,0,0,.75);
  z-index: 10
}

.mkdf-image-marquee-holder.mkdf-im-with-content .mkdf-im-title {
  color: #fff;
  margin-bottom: 40px
}

.mkdf-image-marquee-holder.mkdf-im-with-content .mkdf-im-title .mkdf-im-bold-title {
  display: block;
  font-weight: 700;
  font-family: Yantramanav,sans-serif
}

.mkdf-image-marquee-holder.mkdf-im-with-content .mkdf-im-title .mkdf-im-regular-title {
  display: block;
  font-weight: 400;
  font-family: Yantramanav,sans-serif
}

.mkdf-image-marquee-holder.mkdf-im-with-content .mkdf-im-btn {
  background-color: #fff;
  color: #ff5e14
}

.mkdf-image-marquee-holder.mkdf-im-with-content .mkdf-im-btn:hover {
  color: #fff!important;
  border-color: #fff!important
}

.mkdf-image-with-text-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-image-with-text-holder:hover .mkdf-btn:not(.mkdf-iwt-custom-link-1):not(.mkdf-iwt-custom-link-2):after {
  background-color: #ff5e14;
  color: #fff
}

.mkdf-image-with-text-holder.mkdf-has-shadow .mkdf-iwt-image a {
  box-shadow: 0 0 4.85px .15px rgba(0,0,0,.09)
}

.mkdf-image-with-text-holder .mkdf-iwt-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-image-with-text-holder .mkdf-iwt-image a {
  transition: .5s
}

.mkdf-image-with-text-holder .mkdf-iwt-image a,.mkdf-image-with-text-holder .mkdf-iwt-image img {
  position: relative;
  display: block
}

.mkdf-image-with-text-holder .mkdf-iwt-text-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  display: block
}

.mkdf-image-with-text-holder.mkdf-type-links-on-hover .mkdf-iwt-text-links-holder {
  position: absolute;
  bottom: -2px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: all .6s cubic-bezier(.41,.24,0,1.03);
  transform: translateY(-30px);
  opacity: 0
}

.mkdf-image-with-text-holder.mkdf-type-links-on-hover .mkdf-iwt-text-links-holder .mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon):after {
  padding: 3px 10px 5px;
  background-color: transparent
}

.mkdf-image-with-text-holder.mkdf-type-links-on-hover .mkdf-iwt-text-links-holder .mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon):hover:after {
  background-color: #ff5e14
}

.mkdf-image-with-text-holder.mkdf-type-links-on-hover.mkdf-image-behavior-custom-link .mkdf-iwt-text-holder {
  margin: 0
}

.mkdf-image-with-text-holder.mkdf-type-links-on-hover.mkdf-image-behavior-custom-link .mkdf-iwt-text-holder .mkdf-iwt-title {
  margin-top: 30px
}

.mkdf-image-with-text-holder.mkdf-type-links-on-hover .mkdf-iwt-text-holder-inner {
  transition: all .6s cubic-bezier(0,.76,0,1.03);
  transition-delay: .1s;
  opacity: 1
}

.mkdf-image-with-text-holder.mkdf-type-links-on-hover:hover .mkdf-iwt-text-holder-inner {
  opacity: 0!important;
  transform: translateY(20px);
  transition-delay: 0s
}

.mkdf-image-with-text-holder.mkdf-type-links-on-hover:hover .mkdf-iwt-text-links-holder {
  transform: translateY(0);
  opacity: 1
}

.mkdf-image-with-text-holder .mkdf-iwt-title {
  margin: 32px 0 0
}

.mkdf-image-with-text-holder .mkdf-iwt-text {
  margin: 14px 0 0
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link .mkdf-iwt-title {
  width: calc(100% - 61px);
  display: inline-block;
  vertical-align: middle;
  margin: 0
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link .mkdf-iwt-image {
  border: none!important;
  transform: translateY(0);
  transition: box-shadow .5s,transform .3s
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link .mkdf-iwt-image a {
  transform: translateY(20px);
  opacity: 1;
  transform-origin: 0 0;
  transition: 1s cubic-bezier(.47,.22,.06,.97)
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link .mkdf-iwt-image a:after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  box-sizing: border-box;
  border: 1px solid #e8e8e9;
  transition: opacity .3s
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link.mkdf-appearing-section-appear .mkdf-iwt-image a {
  opacity: 1;
  transform: translateY(0)
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link.mkdf-appearing-section-appear .mkdf-iwt-text-holder {
  opacity: 1
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link:hover .mkdf-iwt-image {
  transform: translateY(-3px)
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link:hover .mkdf-iwt-image a {
  box-shadow: -18px 18px 65px 0 rgba(122,131,153,.6)
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link:hover .mkdf-iwt-image a:after {
  opacity: 0
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link:hover .mkdf-btn:not(.mkdf-iwt-custom-link-1):not(.mkdf-iwt-custom-link-2):after {
  background-color: #ff5e14;
  color: #fff;
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link .mkdf-iwt-text-holder {
  padding: 0;
  box-sizing: border-box;
  margin: 17px 0 0;
  opacity: 0;
  transition: 1s .2s cubic-bezier(.47,.22,.06,.97)
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link .mkdf-iwt-custom-link {
  display: inline-block;
  margin: 0
}

.mkdf-image-with-text-holder.mkdf-image-behavior-custom-link .mkdf-iwt-custom-link:after {
  margin-left: 0
}

.mkdf-image-with-text-holder.mkdf-image-behavior-lightbox .mkdf-iwt-image a:hover:after {
  opacity: 1
}

.mkdf-image-with-text-holder.mkdf-image-behavior-lightbox .mkdf-iwt-image a:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(0,22,89,.4);
  opacity: 0;
  transition: opacity .2s ease-in-out
}

.mkdf-image-with-text-holder.mkdf-image-behavior-zoom .mkdf-iwt-image {
  overflow: hidden
}

.touchevents .mkdf-image-with-text-holder.mkdf-image-behavior-zoom .mkdf-iwt-image {
  cursor: pointer
}

.mkdf-image-with-text-holder.mkdf-image-behavior-zoom .mkdf-iwt-image:hover img {
  transform: scale(1.04)
}

.mkdf-image-with-text-holder.mkdf-image-behavior-zoom .mkdf-iwt-image img {
  transform: scale(1);
  transition: transform .3s ease-in-out
}

.mkdf-image-with-text-holder.mkdf-image-behavior-grayscale .mkdf-iwt-image {
  overflow: hidden
}

.touchevents .mkdf-image-with-text-holder.mkdf-image-behavior-grayscale .mkdf-iwt-image {
  cursor: pointer
}

.mkdf-image-with-text-holder.mkdf-image-behavior-grayscale .mkdf-iwt-image:hover img {
  -webkit-filter: grayscale(0);
  filter: none
}

.mkdf-image-with-text-holder.mkdf-image-behavior-grayscale .mkdf-iwt-image img {
  filter: url(../../../../plugins/wilmer-core/assets/css/img/desaturate.svg#grayscale);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: gray;
  filter: grayscale(100%);
  transition: all .3s ease-in-out
}

.mkdf-image-with-text-holder.mkdf-with-removed-plus-sign .mkdf-iwt-text-links-holder .mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon):after {
  display: none
}

.mkdf-image-with-text-holder.mkdf-with-removed-plus-sign .mkdf-iwt-text-links-holder .mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon) .mkdf-btn-text {
  position: relative
}

.mkdf-image-with-text-holder.mkdf-with-removed-plus-sign .mkdf-iwt-text-links-holder .mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon) .mkdf-btn-text:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: all .3s ease
}

.mkdf-image-with-text-holder.mkdf-with-removed-plus-sign .mkdf-iwt-text-links-holder .mkdf-btn.mkdf-btn-simple:not(.mkdf-btn-icon):hover .mkdf-btn-text:before {
  width: 100%
}

.mkdf-ils-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  height: 100vh
}

.admin-bar .mkdf-ils-holder {
  height: calc(100vh - 32px)
}

.mkdf-ils-holder.mkdf-ils-skin-light .mkdf-ils-item-link {
  color: #fff
}

.mkdf-ils-holder .mkdf-ils-image-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  height: 100%;
  overflow: hidden
}

.mkdf-ils-holder .mkdf-ils-item-image {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0s .45s
}

.mkdf-ils-holder .mkdf-ils-item-image.mkdf-active {
  z-index: 10;
  opacity: 1;
  transition: opacity .4s cubic-bezier(.215,.61,.355,1)
}

.mkdf-ils-holder .mkdf-ils-item-image img {
  display: none
}

.mkdf-ils-holder .mkdf-ils-content-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100
}

.mkdf-ils-holder .mkdf-ils-content-inner {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%
}

.mkdf-ils-holder .mkdf-ils-item-content {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  padding: 60px 0;
  box-sizing: border-box
}

.mkdf-ils-holder .mkdf-ils-item-link {
  position: relative;
  display: block;
  padding-right: 10%;
  font-size: 100px;
  line-height: 1.2em;
  cursor: default;
  box-sizing: border-box
}

.mkdf-ils-holder .mkdf-ils-item-link.mkdf-active .mkdf-ils-item-title:before {
  width: 84%
}

.mkdf-ils-holder .mkdf-ils-item-title {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: inherit;
  padding-left: 10%;
  cursor: pointer;
  z-index: 2;
  box-sizing: border-box
}

.mkdf-ils-holder .mkdf-ils-item-title:hover:before {
  width: 84%
}

.mkdf-ils-holder .mkdf-ils-item-title:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ff5e14;
  z-index: -1;
  transition: width .5s ease
}

.mkdf-item-showcase-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  text-align: center;
  opacity: 0
}

.mkdf-item-showcase-holder .mkdf-is-image {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  float: left;
  width: 40%;
  margin-top: -100px;
  opacity: 0;
  transform: translateY(70px)
}

.mkdf-item-showcase-holder .mkdf-is-image.mkdf-appeared {
  transition: opacity .55s cubic-bezier(.23,1,.32,1),transform .55s cubic-bezier(.23,1,.32,1);
  opacity: 1;
  transform: translateY(0)
}

.mkdf-item-showcase-holder .mkdf-is-item-holder {
  display: inline-block;
  vertical-align: middle;
  width: 30%
}

.mkdf-item-showcase-holder .mkdf-is-item-holder.mkdf-is-left-holder {
  float: left
}

.mkdf-item-showcase-holder .mkdf-is-item-holder.mkdf-is-right-holder {
  float: right
}

.mkdf-item-showcase-holder .mkdf-is-item-holder .mkdf-is-item:first-child {
  margin: 0
}

.mkdf-item-showcase-holder .mkdf-is-item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 56px 0 0;
  opacity: 0
}

.mkdf-item-showcase-holder .mkdf-is-item.mkdf-is-left {
  text-align: right;
  transform: translateX(-70px)
}

.mkdf-item-showcase-holder .mkdf-is-item.mkdf-is-left .mkdf-is-content {
  padding: 0 20px 0 0
}

.mkdf-item-showcase-holder .mkdf-is-item.mkdf-is-right {
  text-align: left;
  transform: translateX(70px)
}

.mkdf-item-showcase-holder .mkdf-is-item.mkdf-is-right .mkdf-is-content {
  padding: 0 0 0 20px
}

.mkdf-item-showcase-holder .mkdf-is-item.mkdf-appeared {
  transition: opacity .55s cubic-bezier(.23,1,.32,1),transform .55s cubic-bezier(.23,1,.32,1);
  opacity: 1;
  transform: translateX(0)
}

.mkdf-item-showcase-holder .mkdf-is-item .mkdf-is-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box
}

.mkdf-item-showcase-holder .mkdf-is-item .mkdf-is-title {
  margin: 0
}

.mkdf-item-showcase-holder .mkdf-is-item .mkdf-is-text {
  margin: 14px 0 0
}

.mkdf-pie-chart-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  opacity: 0;
  transition: opacity .2s ease-in
}

.mkdf-pie-chart-holder.text-below .mkdf-pc-percentage,.mkdf-pie-chart-holder.text-below .mkdf-pc-text-holder {
  float: initial
}

.mkdf-pie-chart-holder.text-below .mkdf-pc-text-holder {
  margin: 18px 0 0 0;
  width: 100%
}

.mkdf-pie-chart-holder .mkdf-pc-percentage {
  position: relative;
  display: block;
  height: 176px;
  width: 176px;
  line-height: 176px;
  text-align: center;
  float: left
}

.mkdf-pie-chart-holder .mkdf-pc-percentage canvas {
  position: absolute;
  top: 0;
  left: 0
}

.mkdf-pie-chart-holder .mkdf-pc-percentage .mkdf-pc-percent {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #001659;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -.02em;
  font-weight: 600
}

.mkdf-pie-chart-holder .mkdf-pc-percentage .mkdf-pc-percent:after {
  position: relative;
  top: -15px;
  content: '%';
  font-size: 36px
}

.mkdf-pie-chart-holder .mkdf-pc-text-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  text-align: left;
  margin: 20px 0 0 30px;
  width: 50%;
  float: left
}

@media only screen and (max-width: 680px) {
  .mkdf-pie-chart-holder .mkdf-pc-text-holder {
      margin:20px 0 0 0
  }
}

.mkdf-pie-chart-holder .mkdf-pc-text-holder .mkdf-caption-text {
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .1em;
  font-weight: 500;
  font-size: 14px;
  margin: 13px 0 -3px;
  text-transform: uppercase
}

.mkdf-pie-chart-holder .mkdf-pc-text-holder .mkdf-pc-title {
  margin: 0;
  line-height: 1em
}

.mkdf-pie-chart-holder .mkdf-pc-text-holder .mkdf-pc-text {
  margin: 13px 0 0;
  font-size: 18px;
  line-height: 1.4em
}

.mkdf-pie-chart-holder .mkdf-pie-chart-svg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

.mkdf-pie-chart-holder .mkdf-pie-chart-svg path {
  fill: #d2d2d4
}

@media only screen and (max-width: 1440px) {
  .mkdf-pie-chart-holder .mkdf-pc-text-holder {
      width:40%
  }
}

@media only screen and (max-width: 1440px) and (max-width:680px) {
  .mkdf-pie-chart-holder .mkdf-pc-text-holder {
      width:70%
  }
}

.mkdf-pricing-tables {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-pricing-tables.mkdf-three-columns .mkdf-pt-wrapper .mkdf-price-table:nth-child(2n+1) {
  padding: 0 7px;
  width: 32%
}

@media only screen and (max-width: 768px) {
  .mkdf-pricing-tables.mkdf-three-columns .mkdf-pt-wrapper .mkdf-price-table:nth-child(2n+1) {
      width:100%
  }
}

.mkdf-pricing-tables.mkdf-three-columns .mkdf-pt-wrapper .mkdf-price-table:nth-child(2n) {
  width: 35%;
  padding: 0 7px
}

@media only screen and (max-width: 768px) {
  .mkdf-pricing-tables.mkdf-three-columns .mkdf-pt-wrapper .mkdf-price-table:nth-child(2n) {
      width:100%
  }
}

.mkdf-pricing-tables .mkdf-pt-wrapper .mkdf-price-table {
  vertical-align: middle;
  float: none
}

.mkdf-price-table.mkdf-pt-active-item .mkdf-pt-inner.mkdf-pt-title-holder {
  margin-top: 57px
}

.mkdf-price-table .mkdf-pt-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #e8e8e9;
  border-bottom: 4px solid #ff5e14
}

.mkdf-price-table .mkdf-pt-inner ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.mkdf-price-table .mkdf-pt-inner ul li {
  margin: 0;
  padding: 0 30px 0 63px;
  text-align: left;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: 0;
  font-weight: 400
}

.mkdf-price-table .mkdf-pt-inner ul li.mkdf-pt-title-holder {
  position: relative;
  color: #001659;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 14px
}

.mkdf-price-table .mkdf-pt-inner ul li.mkdf-pt-title-holder .mkdf-pt-title {
  margin: 29px 0 0;
  display: block;
  padding: 20px 0 0 16px;
  box-sizing: border-box;
  text-align: left
}

.mkdf-price-table .mkdf-pt-inner ul li.mkdf-pt-prices {
  position: relative;
  padding: 0 25px 10px 73px;
  margin-top: -3px
}

.mkdf-price-table .mkdf-pt-inner ul li.mkdf-pt-prices * {
  float: left
}

.mkdf-price-table .mkdf-pt-inner ul li.mkdf-pt-prices .mkdf-pt-value {
  position: relative;
  vertical-align: super;
  top: -1px;
  font-size: 48px;
  line-height: 1em;
  font-weight: 600;
  color: #001659
}

.mkdf-price-table .mkdf-pt-inner ul li.mkdf-pt-prices .mkdf-pt-price {
  color: #001659;
  font-size: 80px;
  line-height: 1em;
  letter-spacing: -.01em;
  font-weight: 800
}

.mkdf-price-table .mkdf-pt-inner ul li.mkdf-pt-prices .mkdf-pt-mark {
  position: relative;
  display: block;
  margin: 46px 0 0;
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969
}

.mkdf-price-table .mkdf-pt-inner ul li.mkdf-pt-content {
  padding: 0 15px 8px 15px
}

.mkdf-price-table .mkdf-pt-inner ul li.mkdf-pt-content ul li:before {
  font-family: ElegantIcons;
  content: "\4e";
  font-size: 16px;
  margin: 5px 15px 0 0
}

.mkdf-price-table .mkdf-pt-inner ul li.mkdf-pt-button {
  padding: 25px 98px 60px 81px
}

.mkdf-price-table .mkdf-pt-inner ul li.mkdf-pt-button .mkdf-btn {
  background-color: #ff5e14!important;
  padding: 7px 38px;
  font-weight: 500
}

.mkdf-price-table.mkdf-pt-active-item .mkdf-pt-inner {
  background-color: #00235a;
  border: 1px solid #00235a;
  border-bottom: 4px solid #00235a;
  box-shadow: -32px 32px 75px 0 rgba(0,0,0,.3);
  -moz-box-shadow: -32px 32px 75px 0 rgba(0,0,0,.3);
  -webkit-box-shadow: -32px 32px 75px 0 rgba(0,0,0,.3);
  color: #fff
}

.mkdf-price-table.mkdf-pt-active-item .mkdf-pt-inner .mkdf-pt-title {
  color: #fff
}

.mkdf-price-table.mkdf-pt-active-item .mkdf-pt-inner ul li.mkdf-pt-prices .mkdf-pt-mark,.mkdf-price-table.mkdf-pt-active-item .mkdf-pt-inner ul li.mkdf-pt-prices .mkdf-pt-price,.mkdf-price-table.mkdf-pt-active-item .mkdf-pt-inner ul li.mkdf-pt-prices .mkdf-pt-value {
  color: #fff
}

.mkdf-price-table.mkdf-pt-active-item .mkdf-pt-inner ul li.mkdf-pt-button {
  padding: 25px 98px 80px 81px
}

.mkdf-price-table.mkdf-pt-active-item .mkdf-pt-inner ul li.mkdf-pt-button a:hover {
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5)!important
}

.mkdf-price-table.mkdf-pt-active-item .mkdf-pt-inner ul li.mkdf-pt-title-holder {
  margin-top: 50px
}

.mkdf-process-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-process-holder.mkdf-two-columns .mkdf-mark-horizontal-holder .mkdf-process-mark {
  width: 50%
}

.mkdf-process-holder.mkdf-two-columns .mkdf-mark-vertical-holder .mkdf-process-mark {
  height: 50%
}

.mkdf-process-holder.mkdf-two-columns .mkdf-process-item {
  width: 50%
}

.mkdf-process-holder.mkdf-three-columns .mkdf-mark-horizontal-holder .mkdf-process-mark {
  width: 33.33333%
}

.mkdf-process-holder.mkdf-three-columns .mkdf-mark-vertical-holder .mkdf-process-mark {
  height: 33.33333%
}

.mkdf-process-holder.mkdf-three-columns .mkdf-process-item {
  width: 33.33333%
}

.mkdf-process-holder.mkdf-four-columns .mkdf-mark-horizontal-holder .mkdf-process-mark {
  width: 25%
}

.mkdf-process-holder.mkdf-four-columns .mkdf-mark-vertical-holder .mkdf-process-mark {
  height: 25%
}

.mkdf-process-holder.mkdf-four-columns .mkdf-process-item {
  width: 25%
}

.mkdf-process-holder.mkdf-process-appeared .mkdf-process-circle {
  opacity: 1;
  transform: scale(1)
}

.mkdf-process-holder.mkdf-process-appeared .mkdf-mark-horizontal-holder .mkdf-process-line {
  width: 100%
}

.mkdf-process-holder.mkdf-process-appeared .mkdf-mark-vertical-holder .mkdf-process-line {
  height: 100%
}

.mkdf-process-holder.mkdf-process-appeared .mkdf-process-item {
  opacity: 1
}

.mkdf-process-holder .mkdf-mark-horizontal-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  clear: both
}

.mkdf-process-holder .mkdf-mark-horizontal-holder .mkdf-process-mark {
  float: left
}

.mkdf-process-holder .mkdf-mark-horizontal-holder .mkdf-process-line {
  top: 50%;
  left: 50%;
  width: 0;
  height: 1px;
  transition: width .4s ease .1s
}

.mkdf-process-holder .mkdf-mark-vertical-holder {
  position: absolute;
  top: 26px;
  left: 0;
  display: none;
  width: 46px;
  height: 100%
}

.mkdf-process-holder .mkdf-mark-vertical-holder .mkdf-process-line {
  top: 23px;
  left: 50%;
  width: 1px;
  height: 0;
  transition: height .4s ease .1s
}

.mkdf-process-holder .mkdf-process-mark {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center
}

.mkdf-process-holder .mkdf-process-mark:last-child .mkdf-process-line {
  display: none
}

.mkdf-process-holder .mkdf-process-mark:nth-child(2) .mkdf-process-circle {
  transition-delay: .5s
}

.mkdf-process-holder .mkdf-process-mark:nth-child(2) .mkdf-process-line {
  transition-delay: .6s
}

.mkdf-process-holder .mkdf-process-mark:nth-child(3) .mkdf-process-circle {
  transition-delay: 1s
}

.mkdf-process-holder .mkdf-process-mark:nth-child(3) .mkdf-process-line {
  transition-delay: 1.2s
}

.mkdf-process-holder .mkdf-process-mark:nth-child(4) .mkdf-process-circle {
  transition-delay: 1.5s
}

.mkdf-process-holder .mkdf-process-mark:nth-child(4) .mkdf-process-line {
  transition-delay: 1.8s
}

.mkdf-process-holder .mkdf-process-circle {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 46px;
  height: 46px;
  font-size: 18px;
  line-height: 46px;
  font-weight: 700;
  color: #fff;
  background-color: #ff5e14;
  border-radius: 100%;
  opacity: 0;
  transition: opacity .2s ease,transform .3s ease;
  transform: scale(.6)
}

.mkdf-process-holder .mkdf-process-line {
  position: absolute;
  background-color: #ff5e14
}

.mkdf-process-holder .mkdf-process-inner {
  margin: 0 -15px
}

.mkdf-process-holder .mkdf-process-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  float: left;
  padding: 0 15px;
  opacity: 0;
  text-align: center;
  box-sizing: border-box;
  transition: opacity .2s ease
}

.mkdf-process-holder .mkdf-process-item:nth-child(2) {
  transition-delay: .5s
}

.mkdf-process-holder .mkdf-process-item:nth-child(3) {
  transition-delay: 1s
}

.mkdf-process-holder .mkdf-process-item:nth-child(4) {
  transition-delay: 1.5s
}

.mkdf-process-holder .mkdf-pi-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 26px 0 10px
}

.mkdf-process-holder .mkdf-pi-title {
  margin: 0
}

.mkdf-process-holder .mkdf-pi-text {
  margin: 11px 0 0
}

.mkdf-progress-bar {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-progress-bar.mkdf-pb-percent-floating {
  width: 100%;
  height: 100%
}

.mkdf-progress-bar.mkdf-pb-percent-floating .mkdf-pb-percent {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  transform: translateX(-50%)
}

.mkdf-progress-bar .mkdf-pb-title-holder {
  position: relative;
  margin: 10px 0 5px
}

.mkdf-progress-bar .mkdf-pb-title-holder .mkdf-pb-title {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 100
}

.mkdf-progress-bar .mkdf-pb-percent {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  z-index: 10
}

.mkdf-progress-bar .mkdf-pb-percent:after {
  content: '%'
}

.mkdf-progress-bar .mkdf-pb-content-holder {
  position: relative;
  height: 6px;
  overflow: hidden;
  background-color: #ebebeb
}

.mkdf-progress-bar .mkdf-pb-content-holder .mkdf-pb-content {
  height: 6px;
  max-width: 100%;
  overflow: hidden;
  background-color: #ff5e14
}

.mkdf-roadmap {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 200px 0;
  overflow: hidden
}

.mkdf-roadmap .mkdf-roadmap-holder {
  overflow: hidden
}

.mkdf-roadmap .mkdf-roadmap-line {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: #f6f6f6
}

.mkdf-roadmap .mkdf-roadmap-line .mkdf-rl-arrow-left,.mkdf-roadmap .mkdf-roadmap-line .mkdf-rl-arrow-right {
  position: absolute;
  top: 50%;
  font-size: 30px;
  color: #ff5e14;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 50
}

.mkdf-roadmap .mkdf-roadmap-line .mkdf-rl-arrow-left {
  left: 0;
  padding: 10px 10px 10px 0
}

.mkdf-roadmap .mkdf-roadmap-line .mkdf-rl-arrow-left svg {
  transform: rotate(180deg)
}

.mkdf-roadmap .mkdf-roadmap-line .mkdf-rl-arrow-right {
  right: 0;
  padding: 10px 0 10px 10px
}

.mkdf-roadmap .mkdf-roadmap-inner-holder {
  transition: all .2s ease-in-out
}

.mkdf-roadmap .mkdf-roadmap-item {
  position: relative;
  float: left;
  text-align: center;
  transform: translateY(calc(-50% - 2px))
}

.mkdf-roadmap .mkdf-roadmap-item .mkdf-roadmap-item-circle-holder {
  font-size: 0
}

.mkdf-roadmap .mkdf-roadmap-item .mkdf-roadmap-item-after-circle,.mkdf-roadmap .mkdf-roadmap-item .mkdf-roadmap-item-before-circle {
  display: inline-block;
  vertical-align: middle;
  width: calc(50% - 10px);
  height: 3px;
  background-color: #dfdfdf
}

.mkdf-roadmap .mkdf-roadmap-item .mkdf-roadmap-item-circle {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f6f6f6;
  box-shadow: inset 0 0 0 6px #ff5e14
}

.mkdf-roadmap .mkdf-roadmap-item .mkdf-roadmap-item-stage-title-holder {
  position: absolute;
  left: 0;
  width: 100%
}

.mkdf-roadmap .mkdf-roadmap-item .mkdf-roadmap-item-stage-title-holder .mkdf-ris-title {
  color: #001659;
  font-size: 20px;
  font-family: Yantramanav,sans-serif;
  font-weight: 600
}

.mkdf-roadmap .mkdf-roadmap-item .mkdf-roadmap-item-content-holder {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: left;
  padding: 25px 35px;
  box-sizing: border-box;
  border: 1px solid #e8e8e9;
  background-color: #f6f6f6;
  border-radius: 10px;
  z-index: -1
}

.mkdf-roadmap .mkdf-roadmap-item .mkdf-roadmap-item-content-holder .mkdf-ric-title {
  margin: 0 0 14px
}

.mkdf-roadmap .mkdf-roadmap-item .mkdf-roadmap-item-content-holder:after {
  content: '';
  position: absolute;
  left: 50%;
  width: 3px;
  height: 70px;
  background-color: #dfdfdf;
  transform: translateX(-50%);
  z-index: -1
}

.mkdf-roadmap .mkdf-roadmap-item.mkdf-roadmap-item-above .mkdf-roadmap-item-stage-title-holder {
  top: 35px
}

.mkdf-roadmap .mkdf-roadmap-item.mkdf-roadmap-item-above .mkdf-roadmap-item-content-holder {
  bottom: 75px
}

.mkdf-roadmap .mkdf-roadmap-item.mkdf-roadmap-item-above .mkdf-roadmap-item-content-holder:after {
  top: 100%
}

.mkdf-roadmap .mkdf-roadmap-item.mkdf-roadmap-item-below .mkdf-roadmap-item-stage-title-holder {
  bottom: 32px
}

.mkdf-roadmap .mkdf-roadmap-item.mkdf-roadmap-item-below .mkdf-roadmap-item-content-holder {
  top: 75px
}

.mkdf-roadmap .mkdf-roadmap-item.mkdf-roadmap-item-below .mkdf-roadmap-item-content-holder:after {
  bottom: 100%
}

.mkdf-roadmap .mkdf-roadmap-item.mkdf-roadmap-reached-item .mkdf-roadmap-item-before-circle {
  background-color: #ff5e14
}

.mkdf-roadmap .mkdf-roadmap-item.mkdf-roadmap-passed-item .mkdf-roadmap-item-after-circle,.mkdf-roadmap .mkdf-roadmap-item.mkdf-roadmap-passed-item .mkdf-roadmap-item-before-circle {
  background-color: #ff5e14
}

.mkdf-roadmap.mkdf-roadmap-skin-dark .mkdf-roadmap-item-after-circle,.mkdf-roadmap.mkdf-roadmap-skin-dark .mkdf-roadmap-item-before-circle,.mkdf-roadmap.mkdf-roadmap-skin-dark .mkdf-roadmap-item-circle,.mkdf-roadmap.mkdf-roadmap-skin-dark .mkdf-roadmap-item-content-holder:after,.mkdf-roadmap.mkdf-roadmap-skin-dark .mkdf-roadmap-line {
  background-color: #505050
}

.mkdf-roadmap.mkdf-roadmap-skin-dark .mkdf-roadmap-item-stage-title-holder .mkdf-ris-title {
  color: #fff
}

.mkdf-roadmap.mkdf-roadmap-skin-dark .mkdf-ric-title {
  color: #fff;
  margin: 0 0 14px
}

.mkdf-roadmap.mkdf-roadmap-skin-dark .mkdf-roadmap-item-content-holder {
  background-color: #272727
}

.mkdf-roadmap.mkdf-roadmap-skin-light .mkdf-roadmap-item .mkdf-roadmap-item-content-holder {
  background-color: #fff
}

.mkdf-roadmap.mkdf-roadmap-skin-light .mkdf-roadmap-item .mkdf-roadmap-item-circle {
  background-color: #434343
}

.mkdf-roadmap.mkdf-roadmap-skin-light .mkdf-roadmap-line {
  background-color: #dfdfdf
}

.mkdf-section-title-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box
}

.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-tiny-space .mkdf-st-inner {
  margin: 0 -5px
}

.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-tiny-space .mkdf-st-text,.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-tiny-space .mkdf-st-title {
  padding: 0 5px
}

.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-small-space .mkdf-st-inner {
  margin: 0 -10px
}

.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-small-space .mkdf-st-text,.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-small-space .mkdf-st-title {
  padding: 0 10px
}

.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-normal-space .mkdf-st-inner {
  margin: 0 -15px
}

.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-normal-space .mkdf-st-text,.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-normal-space .mkdf-st-title {
  padding: 0 15px
}

.mkdf-section-title-holder.mkdf-st-two-columns .mkdf-st-text,.mkdf-section-title-holder.mkdf-st-two-columns .mkdf-st-title {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  float: left;
  margin: 0;
  box-sizing: border-box
}

.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-title-left .mkdf-st-title {
  text-align: right
}

.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-title-left .mkdf-st-text {
  text-align: left
}

.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-title-right .mkdf-st-title {
  float: right;
  text-align: left
}

.mkdf-section-title-holder.mkdf-st-two-columns.mkdf-st-title-right .mkdf-st-text {
  text-align: right
}

.mkdf-section-title-holder .mkdf-st-intro-title {
  margin: 0 0 2px
}

.mkdf-section-title-holder .mkdf-st-title {
  display: block;
  margin: 0
}

.mkdf-section-title-holder .mkdf-st-title .mkdf-st-title-bold {
  font-weight: 700
}

.mkdf-section-title-holder .mkdf-st-title .mkdf-st-title-light {
  font-weight: 300
}

.mkdf-section-title-holder .mkdf-st-text {
  display: block;
  margin: 14px 0 0
}

.mkdf-separator-holder {
  position: relative;
  height: auto;
  font-size: 0;
  line-height: 1em
}

.mkdf-separator-holder.mkdf-separator-center {
  text-align: center
}

.mkdf-separator-holder.mkdf-separator-left {
  text-align: left
}

.mkdf-separator-holder.mkdf-separator-right {
  text-align: right
}

.mkdf-separator-holder.mkdf-separator-full-width .mkdf-separator {
  width: 100%!important
}

.mkdf-separator {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border-bottom: 1px solid #22365c;
  margin: 10px 0
}

.mkdf-single-image-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-single-image-holder.mkdf-has-shadow .mkdf-si-inner {
  box-shadow: inset 0 0 2px 1px #d2d2d4
}

.mkdf-single-image-holder.mkdf-has-shadow .mkdf-si-inner img {
  z-index: -1
}

.mkdf-single-image-holder .mkdf-si-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-single-image-holder .mkdf-si-inner a,.mkdf-single-image-holder .mkdf-si-inner img {
  position: relative;
  display: block
}

.mkdf-single-image-holder.mkdf-image-behavior-custom-link .mkdf-si-inner a:hover:after {
  opacity: 1
}

.mkdf-single-image-holder.mkdf-image-behavior-custom-link .mkdf-si-inner a:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(0,22,89,.4);
  opacity: 0;
  transition: opacity .2s ease-in-out
}

.mkdf-single-image-holder.mkdf-image-behavior-lightbox .mkdf-si-inner a:hover:after {
  opacity: 1
}

.mkdf-single-image-holder.mkdf-image-behavior-lightbox .mkdf-si-inner a:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(0,22,89,.4);
  opacity: 0;
  transition: opacity .2s ease-in-out
}

.mkdf-single-image-holder.mkdf-image-behavior-zoom .mkdf-si-inner {
  overflow: hidden
}

.touchevents .mkdf-single-image-holder.mkdf-image-behavior-zoom .mkdf-si-inner {
  cursor: pointer
}

.mkdf-single-image-holder.mkdf-image-behavior-zoom .mkdf-si-inner:hover img {
  transform: scale(1.04)
}

.mkdf-single-image-holder.mkdf-image-behavior-zoom .mkdf-si-inner img {
  transform: scale(1);
  transition: transform .3s ease-in-out
}

.mkdf-single-image-holder.mkdf-image-behavior-grayscale .mkdf-si-inner {
  overflow: hidden
}

.touchevents .mkdf-single-image-holder.mkdf-image-behavior-grayscale .mkdf-si-inner {
  cursor: pointer
}

.mkdf-single-image-holder.mkdf-image-behavior-grayscale .mkdf-si-inner:hover img {
  -webkit-filter: grayscale(0);
  filter: none
}

.mkdf-single-image-holder.mkdf-image-behavior-grayscale .mkdf-si-inner img {
  filter: url(../../../../plugins/wilmer-core/assets/css/img/desaturate.svg#grayscale);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: gray;
  filter: grayscale(100%);
  transition: all .3s ease-in-out
}

.mkdf-single-image-holder.mkdf-image-behavior-moving .mkdf-si-inner {
  overflow: hidden;
  padding: 10% 0;
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 120%;
  transition: background .7s ease-out
}

.mkdf-single-image-holder.mkdf-image-behavior-moving .mkdf-si-inner:hover {
  background-position: 90% center
}

.touchevents .mkdf-single-image-holder.mkdf-image-behavior-moving .mkdf-si-inner {
  cursor: pointer
}

.mkdf-single-image-holder.mkdf-image-behavior-moving .mkdf-si-inner img {
  z-index: -1;
  max-width: 80%
}

@media only screen and (max-width: 1024px) {
  .mkdf-single-image-holder.mkdf-image-behavior-moving .mkdf-si-inner {
      padding:0;
      background: 0 0
  }

  .mkdf-single-image-holder.mkdf-image-behavior-moving .mkdf-si-inner img {
      z-index: inherit;
      max-width: 100%
  }
}

.mkdf-social-share-holder {
  position: relative;
  display: inline-block;
  vertical-align: top
}

.mkdf-social-share-holder .mkdf-social-title {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 13px
}

.mkdf-social-share-holder ul {
  position: relative;
  display: inline-block;
  vertical-align: top;
  list-style: none;
  padding: 0;
  margin: 0
}

.mkdf-social-share-holder li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0
}

.mkdf-social-share-holder li a {
  font-size: 14px
}

.mkdf-social-share-holder.mkdf-list li {
  margin-right: 13px
}

.mkdf-social-share-holder.mkdf-list li:last-child {
  margin-right: 0
}

.mkdf-social-share-holder.mkdf-text li {
  margin-right: 13px
}

.mkdf-social-share-holder.mkdf-text li:last-child {
  margin-right: 0
}

.mkdf-social-share-holder.mkdf-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: bottom
}

.mkdf-social-share-holder.mkdf-dropdown:hover .mkdf-social-share-dropdown ul li {
  opacity: 1;
  visibility: visible;
  cursor: pointer
}

.mkdf-social-share-holder.mkdf-dropdown:hover .mkdf-social-share-dropdown ul li:nth-child(2) {
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  transition-delay: .2s
}

.mkdf-social-share-holder.mkdf-dropdown:hover .mkdf-social-share-dropdown ul li:nth-child(3) {
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s
}

.mkdf-social-share-holder.mkdf-dropdown:hover .mkdf-social-share-dropdown ul li:nth-child(4) {
  -webkit-transition-delay: .4s;
  -moz-transition-delay: .4s;
  transition-delay: .4s
}

.mkdf-social-share-holder.mkdf-dropdown:hover .mkdf-social-share-dropdown ul li:nth-child(5) {
  -webkit-transition-delay: .5s;
  -moz-transition-delay: .5s;
  transition-delay: .5s
}

.mkdf-social-share-holder.mkdf-dropdown:hover .mkdf-social-share-dropdown ul li:nth-child(6) {
  -webkit-transition-delay: .6s;
  -moz-transition-delay: .6s;
  transition-delay: .6s
}

.mkdf-social-share-holder.mkdf-dropdown:hover .mkdf-social-share-dropdown ul li:nth-child(7) {
  -webkit-transition-delay: .7s;
  -moz-transition-delay: .7s;
  transition-delay: .7s
}

.mkdf-social-share-holder.mkdf-dropdown .mkdf-social-share-dropdown-opener {
  display: block
}

.mkdf-social-share-holder.mkdf-dropdown .mkdf-social-share-dropdown-opener .mkdf-social-share-title {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px
}

.mkdf-social-share-holder.mkdf-dropdown .mkdf-social-share-dropdown {
  position: absolute;
  visibility: hidden;
  z-index: 950
}

.mkdf-social-share-holder.mkdf-dropdown .mkdf-social-share-dropdown ul {
  position: relative;
  display: block;
  z-index: 990;
  margin: 0;
  padding: 0!important
}

.mkdf-social-share-holder.mkdf-dropdown .mkdf-social-share-dropdown li {
  position: absolute;
  display: block;
  text-align: center;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  box-sizing: border-box;
  transition: opacity .2s ease-out,visibility .2s ease-out
}

.mkdf-social-share-holder.mkdf-dropdown .mkdf-social-share-dropdown li a {
  transition: color .2s ease-out,background-color .2s ease-out
}

.mkdf-social-share-holder.mkdf-dropdown .mkdf-social-share-dropdown li * {
  display: block;
  line-height: inherit
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown {
  bottom: 0;
  left: 0
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li {
  width: 90px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #e8e8e9
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li:not(:first-child) {
  border-top: none
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li.mkdf-facebook-share a:hover {
  background-color: #3b5998;
  color: #fff
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li.mkdf-twitter-share a:hover {
  background-color: #00aced;
  color: #fff
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li.mkdf-google_plus-share a:hover {
  background-color: #dd4b39;
  color: #fff
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li.mkdf-linkedin-share a:hover {
  background-color: #007bb5;
  color: #fff
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li.mkdf-tumblr-share a:hover {
  background-color: #32506d;
  color: #fff
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li.mkdf-pinterest-share a:hover {
  background-color: #cb2027;
  color: #fff
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li.mkdf-vk-share a:hover {
  background-color: #45668e;
  color: #fff
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li a {
  font-size: 12px;
  color: #565969;
  background-color: #fff
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li:nth-child(1) {
  bottom: -30px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li:nth-child(2) {
  bottom: -60px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li:nth-child(3) {
  bottom: -90px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li:nth-child(4) {
  bottom: -120px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li:nth-child(5) {
  bottom: -150px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li:nth-child(6) {
  bottom: -180px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-bottom .mkdf-social-share-dropdown li:nth-child(7) {
  bottom: -210px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-right .mkdf-social-share-dropdown {
  top: 0;
  right: 0
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-right .mkdf-social-share-dropdown li {
  width: calc(90px / 3)
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-right .mkdf-social-share-dropdown li:nth-child(1) {
  left: 5px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-right .mkdf-social-share-dropdown li:nth-child(2) {
  left: 35px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-right .mkdf-social-share-dropdown li:nth-child(3) {
  left: 65px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-right .mkdf-social-share-dropdown li:nth-child(4) {
  left: 95px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-right .mkdf-social-share-dropdown li:nth-child(5) {
  left: 125px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-right .mkdf-social-share-dropdown li:nth-child(6) {
  left: 155px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-right .mkdf-social-share-dropdown li:nth-child(7) {
  left: 185px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-left .mkdf-social-share-dropdown {
  top: 0;
  left: 0
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-left .mkdf-social-share-dropdown li {
  width: calc(90px / 3)
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-left .mkdf-social-share-dropdown li:nth-child(1) {
  right: 5px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-left .mkdf-social-share-dropdown li:nth-child(2) {
  right: 35px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-left .mkdf-social-share-dropdown li:nth-child(3) {
  right: 65px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-left .mkdf-social-share-dropdown li:nth-child(4) {
  right: 95px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-left .mkdf-social-share-dropdown li:nth-child(5) {
  right: 125px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-left .mkdf-social-share-dropdown li:nth-child(6) {
  right: 155px
}

.mkdf-social-share-holder.mkdf-dropdown.mkdf-left .mkdf-social-share-dropdown li:nth-child(7) {
  right: 185px
}

.mkdf-ss-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-ss-holder.mkdf-appearing-section-appear .mkdf-ss-top-content {
  animation: mkdfUncoverRight .8s cubic-bezier(.19,1,.22,1) forwards .3s
}

.mkdf-ss-holder.mkdf-appearing-section-appear .mkdf-ss-bottom-content {
  animation: mkdfUncoverRight .8s cubic-bezier(.19,1,.22,1) forwards .5s
}

.mkdf-ss-holder.mkdf-appearing-section-appear .mkdf-btn {
  animation: mkdfUncoverRight .8s cubic-bezier(.19,1,.22,1) forwards .6s
}

.mkdf-ss-holder.mkdf-appearing-section-appear .mkdf-split-text-left .mkdf-split-text-left-inner {
  transform: translateX(0)
}

.mkdf-ss-holder.mkdf-appearing-section-appear .mkdf-split-text-right-inner {
  transform: translateX(-50%)!important
}

.mkdf-ss-holder.mkdf-appearing-section-appear.mkdf-ss-image-left .mkdf-split-text-right .mkdf-split-text-right-inner {
  transform: translateX(-100%)!important
}

.mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right .mkdf-ss-content {
  padding-left: 10.6%
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right .mkdf-ss-content .mkdf-ss-bottom-content {
      margin:137px 0 0
  }
}

.mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right .mkdf-ss-content .mkdf-ss-top-content .mkdf-ss-upper-subtitle {
  margin-top: 12px
}

@media only screen and (max-width: 1440px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right .mkdf-ss-content {
      padding-left:2.3%
  }
}

@media only screen and (max-width: 1366px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right .mkdf-ss-content {
      padding-left:2.3%;
      overflow: visible
  }
}

@media only screen and (max-width: 1280px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right .mkdf-ss-content {
      padding-left:0
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right .mkdf-ss-content {
      padding-left:2%
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right .mkdf-ss-content {
      padding-left:0
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right .mkdf-ss-content {
      padding-left:0
  }
}

.mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right .mkdf-btn {
  margin-top: 13px
}

@media only screen and (max-width: 1440px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right {
      padding-left:0
  }
}

@media only screen and (max-width: 1366px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right {
      padding-left:0;
      overflow: visible
  }
}

@media only screen and (max-width: 1280px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right {
      padding-left:0
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right {
      padding-left:0
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right {
      padding-left:0
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-right {
      padding-left:0
  }
}

.mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-left .mkdf-ss-content {
  padding-left: 10.6%
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-left .mkdf-ss-content .mkdf-ss-bottom-content {
      margin:137px 0 0
  }
}

@media only screen and (max-width: 1440px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-left .mkdf-ss-content {
      padding-left:2.1%
  }
}

@media only screen and (max-width: 1366px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-left .mkdf-ss-content {
      padding-left:2.6%;
      overflow: visible
  }
}

@media only screen and (max-width: 1280px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-left .mkdf-ss-content {
      padding-left:0;
      overflow: visible
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-left .mkdf-ss-content {
      padding-left:2%
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-left .mkdf-ss-content {
      padding-left:0
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder:not(.mkdf-ss-full-height).mkdf-ss-image-left .mkdf-ss-content .mkdf-ss-bottom-content {
      margin:137px 0 0
  }
}

.mkdf-ss-holder.mkdf-ss-full-height {
  height: 100vh
}

.mkdf-ss-holder.mkdf-ss-full-height .mkdf-ss-content {
  height: 100%;
  display: flex;
  align-items: center
}

.mkdf-ss-holder.mkdf-ss-full-height .mkdf-ss-content .mkdf-ss-top-content .mkdf-ss-upper-subtitle {
  margin-top: 12px
}

.mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-right .mkdf-ss-content {
  padding-left: 10.6%
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-right .mkdf-ss-content .mkdf-ss-bottom-content {
      margin:137px 0 0
  }
}

@media only screen and (max-width: 1440px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-right .mkdf-ss-content {
      padding-left:2.3%
  }
}

@media only screen and (max-width: 1366px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-right .mkdf-ss-content {
      padding-left: 2.3%;
      overflow: visible
  }
}

@media only screen and (max-width: 1280px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-right .mkdf-ss-content {
      padding-left:2.2%
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-right .mkdf-ss-content {
      padding-left:2%
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-right .mkdf-ss-content {
      padding-left:0
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-right .mkdf-ss-content {
      padding-left:0
  }
}

.mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-right .mkdf-btn {
  margin-top: 13px
}

.mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-left .mkdf-ss-content {
  padding-left: 1.3%
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-left .mkdf-ss-content .mkdf-ss-bottom-content {
      margin:137px 0 0
  }
}

@media only screen and (max-width: 1440px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-left .mkdf-ss-content {
      padding-left:2.1%
  }
}

@media only screen and (max-width: 1366px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-left .mkdf-ss-content {
      padding-left:2.6%;
      overflow: visible
  }
}

@media only screen and (max-width: 1280px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-left .mkdf-ss-content {
      padding-left:1.9%
  }
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-left .mkdf-ss-content {
      padding-left:2%
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-left .mkdf-ss-content {
      padding-left:0
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-left .mkdf-ss-content {
      padding-left:0
  }
}

.mkdf-ss-holder.mkdf-ss-full-height.mkdf-ss-image-left .mkdf-btn {
  margin-top: 13px
}

.mkdf-ss-holder.mkdf-ss-light-skin .mkdf-ss-lower-subtitle,.mkdf-ss-holder.mkdf-ss-light-skin .mkdf-ss-lower-title,.mkdf-ss-holder.mkdf-ss-light-skin .mkdf-ss-upper-subtitle,.mkdf-ss-holder.mkdf-ss-light-skin .mkdf-ss-upper-title {
  color: #fff;
  white-space: nowrap
}

.mkdf-ss-holder.mkdf-ss-light-skin .mkdf-btn.mkdf-btn-simple {
  color: #fff
}

.mkdf-ss-holder.mkdf-ss-dark-skin .mkdf-ss-lower-subtitle,.mkdf-ss-holder.mkdf-ss-dark-skin .mkdf-ss-lower-title,.mkdf-ss-holder.mkdf-ss-dark-skin .mkdf-ss-upper-subtitle,.mkdf-ss-holder.mkdf-ss-dark-skin .mkdf-ss-upper-title {
  color: #001659;
  white-space: nowrap
}

.mkdf-ss-holder.mkdf-ss-image-right .mkdf-ss-content {
  left: 0
}

.mkdf-ss-holder .mkdf-ss-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: cover; */
  z-index: 5
}

.mkdf-ss-holder .mkdf-ss-image img {
  display: none
}

.mkdf-ss-holder .mkdf-ss-content-inner {
  padding: 70px 60px;
  overflow: visible
}

@media only screen and (max-width: 680px) {
  .mkdf-ss-holder .mkdf-ss-content-inner {
      padding:70px 30px
  }
}

.mkdf-ss-holder .mkdf-split-text-left {
  width: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden
}

.mkdf-ss-holder .mkdf-split-text-left .mkdf-split-text-left-inner {
  display: block;
  transition: 1s .5s;
  transform: translateX(100%)
}

.mkdf-ss-holder .mkdf-split-text-right-inner {
  transform: translateX(-100%)!important;
  transition: 1s .5s
}

.mkdf-ss-holder .mkdf-ss-content {
  position: relative;
  z-index: 15;
  display: inline-block;
  vertical-align: top;
  left: 50%;
  width: 50%;
  padding: 30px;
  box-sizing: border-box
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn,.mkdf-ss-holder .mkdf-ss-content .mkdf-ss-bottom-content,.mkdf-ss-holder .mkdf-ss-content .mkdf-ss-top-content {
  opacity: 0;
  transform: translate3d(0,-200%,0)
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-ss-upper-subtitle {
  margin: 0
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn.mkdf-ss-link-light {
  color: #fff
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn.mkdf-ss-link-light:after {
  color: #ff5e14;
  background-color: #fff
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn.mkdf-ss-link-light:hover {
  color: #fff!important
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn.mkdf-ss-link-light:hover:after {
  box-shadow: 0 10px 20px 0 #da4900
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn.mkdf-ss-link-dark {
  color: #001659
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn.mkdf-ss-link-dark:after {
  color: #fff;
  background-color: #ff5e14
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn.mkdf-ss-link-dark:hover:after {
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn.mkdf-ss-link-default {
  color: #fff
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn.mkdf-ss-link-default:after {
  color: #fff;
  background-color: #ff5e14
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn.mkdf-ss-link-default:hover {
  color: #fff!important
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-btn.mkdf-ss-link-default:hover:after {
  box-shadow: 0 10px 20px 0 rgba(0,16,42,.5)
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-ss-upper-title {
  margin: 0
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-ss-bottom-content {
  margin: 223px 0 0
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-ss-bottom-content .mkdf-ss-lower-subtitle {
  margin: 0 0 1px
}

.mkdf-ss-holder .mkdf-ss-content .mkdf-ss-bottom-content .mkdf-ss-lower-title {
  margin: 0
}

.mkdf-ss-holder .mkdf-ss-background-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition: all .75s ease;
}

.mkdf-ss-holder .mkdf-ss-background-holder.mkdf-appeared {
  transform: translateX(0)
}

.mkdf-ss-holder.mkdf-ss-image-left .mkdf-split-text-right {
  width: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transform: translate(100%)
}

.mkdf-ss-holder.mkdf-ss-image-left .mkdf-split-text-right .mkdf-split-text-right-inner {
  transform: translateX(-200%)!important;
  transition: 1s .5s;
  display: block
}

.mkdf-ss-holder.mkdf-ss-image-left .mkdf-ss-background-holder {
  transform: translateX(100%)
}

.mkdf-ss-holder.mkdf-ss-image-left .mkdf-ss-background-holder.mkdf-appeared {
  transform: translateX(0)
}

.mkdf-ss-holder.mkdf-ss-image-left .mkdf-btn {
  margin-top: 13px
}

.mkdf-ss-holder .mkdf-ss-title {
  margin: 0
}

.mkdf-ss-holder .mkdf-ss-text {
  margin: 14px 0 0
}

.mkdf-ss-holder .mkdf-ss-link {
  margin: 14px 0 0
}

.mkdf-ss-holder .mkdf-item-background-text {
  position: absolute;
  left: 50%;
  top: 52.5%;
  transform: translate(-50%,-50%);
  z-index: 99;
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder .mkdf-item-background-text {
      top:68%
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-ss-holder .mkdf-item-background-text {
      top:65%
  }
}

.mkdf-ss-holder .mkdf-item-background-text .mkdf-background-text-holder {
  font-size: 140px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  -webkit-text-stroke-color: #d2d2d4
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder .mkdf-item-background-text .mkdf-background-text-holder {
      font-size:140px;
      display: none
  }
}

.mkdf-ss-holder.mkdf-ss-image-right .mkdf-item-background-text .mkdf-background-text-holder {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px
}

.mkdf-ss-holder.mkdf-ss-image-right .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-right {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 50%;
  font-size: 140px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  white-space: nowrap;
  overflow: hidden
}

@media only screen and (max-width: 1024px) {
  .mkdf-ss-holder.mkdf-ss-image-right .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-right {
      font-size:140px;
      display: none
  }
}

.mkdf-ss-holder.mkdf-ss-image-right .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-right .mkdf-split-text-right-inner {
  display: inline-block;
  transform: translateX(-50%);
  white-space: nowrap;
  overflow: hidden
}

.mkdf-ss-holder.mkdf-ss-image-left .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-left {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 50%;
  font-size: 140px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  -webkit-text-stroke-width: 0;
  white-space: nowrap;
  overflow: hidden
}

@media only screen and (max-width: 680px) {
  .mkdf-ss-holder.mkdf-ss-image-left .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-left {
      font-size:150px;
      display: none
  }
}

.mkdf-ss-holder.mkdf-ss-image-left .mkdf-item-background-text .mkdf-background-text-holder .mkdf-split-text-outer .mkdf-split-text-right {
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: inherit;
  white-space: nowrap;
  overflow: hidden
}

.mkdf-stacked-images-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-stacked-images-holder.mkdf-si-position-left .mkdf-si-images {
  margin: 0 35px 50px 0
}

.mkdf-stacked-images-holder.mkdf-si-position-left .mkdf-si-images .mkdf-si-stack-image {
  left: 35px
}

.mkdf-stacked-images-holder.mkdf-si-position-right .mkdf-si-images {
  margin: 0 0 50px 35px
}

.mkdf-stacked-images-holder.mkdf-si-position-right .mkdf-si-images .mkdf-si-stack-image {
  right: 35px
}

.mkdf-stacked-images-holder .mkdf-si-images {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  top: 50px;
  opacity: 0;
  transition: opacity .55s cubic-bezier(.23,1,.32,1),top .55s cubic-bezier(.23,1,.32,1)
}

.mkdf-stacked-images-holder .mkdf-si-images.mkdf-appeared {
  opacity: 1;
  top: 0
}

.mkdf-stacked-images-holder .mkdf-si-images.mkdf-appeared .mkdf-si-stack-image {
  top: 50px
}

.mkdf-stacked-images-holder .mkdf-si-images .mkdf-si-stack-image {
  position: absolute;
  top: 100px;
  display: block;
  transition: top .7s cubic-bezier(.23,1,.32,1)
}

.mkdf-tabs {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-tabs .mkdf-tabs-nav {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  list-style: none
}

.mkdf-tabs .mkdf-tabs-nav li {
  float: left;
  margin: 0;
  padding: 0
}

.mkdf-tabs .mkdf-tabs-nav li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  transition: color .2s ease-out,background-color .2s ease-out,border-color .2s ease-out
}

.mkdf-tabs .mkdf-tab-container {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-tabs .mkdf-tab-container p {
  margin: 0
}

.mkdf-tabs.mkdf-tabs-standard .mkdf-tabs-nav li a {
  letter-spacing: 1px;
  color: #001659;
  background-color: #f6f6f6;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 13px 60px 13px 0;
  font-size: 26px;
  line-height: 1.15em;
  font-weight: 500
}

.mkdf-tabs.mkdf-tabs-standard .mkdf-tabs-nav li.ui-state-active a,.mkdf-tabs.mkdf-tabs-standard .mkdf-tabs-nav li.ui-state-hover a {
  color: #fff;
  background-color: #ff5e14
}

.mkdf-tabs.mkdf-tabs-standard .mkdf-tab-container {
  margin: 25px 0 0
}

.mkdf-tabs.mkdf-tabs-boxed .mkdf-tabs-nav li {
  margin: 0 12px 0 0
}

.mkdf-tabs.mkdf-tabs-boxed .mkdf-tabs-nav li a {
  padding: 7px 26px;
  font-size: 11px;
  line-height: 25px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  background-color: #001659
}

.mkdf-tabs.mkdf-tabs-boxed .mkdf-tabs-nav li.ui-state-active a,.mkdf-tabs.mkdf-tabs-boxed .mkdf-tabs-nav li.ui-state-hover a {
  color: #fff;
  background-color: #ff5e14
}

.mkdf-tabs.mkdf-tabs-boxed .mkdf-tabs-nav li:last-child {
  margin: 0
}

.mkdf-tabs.mkdf-tabs-boxed .mkdf-tab-container {
  margin: 25px 0 0
}

.mkdf-tabs.mkdf-tabs-simple.mkdf-light-skin .mkdf-tabs-nav li a {
  color: #fff
}

.mkdf-tabs.mkdf-tabs-simple.mkdf-light-skin .mkdf-tabs-nav li.ui-state-active a,.mkdf-tabs.mkdf-tabs-simple.mkdf-light-skin .mkdf-tabs-nav li.ui-state-hover a {
  color: #ff5e14;
  background-color: transparent
}

.mkdf-tabs.mkdf-tabs-simple .mkdf-tabs-nav li {
  margin: 0 3px 0 0
}

.mkdf-tabs.mkdf-tabs-simple .mkdf-tabs-nav li a {
  color: #999;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 13px 60px 13px 0;
  font-size: 26px;
  line-height: 1.15em;
  font-weight: 500
}

.mkdf-tabs.mkdf-tabs-simple .mkdf-tabs-nav li.ui-state-active a,.mkdf-tabs.mkdf-tabs-simple .mkdf-tabs-nav li.ui-state-hover a {
  color: #001659
}

.mkdf-tabs.mkdf-tabs-simple .mkdf-tabs-nav li.ui-state-hover a {
  padding: 13px 60px 13px 0
}

@media only screen and (max-width: 680px) {
  .mkdf-tabs.mkdf-tabs-simple .mkdf-tabs-nav li.ui-state-hover a {
      padding:0 60px 0 0
  }
}

.mkdf-tabs.mkdf-tabs-simple .mkdf-tabs-nav li:last-child {
  margin: 0
}

.mkdf-tabs.mkdf-tabs-simple .mkdf-tab-container {
  padding: 11px 0
}

.mkdf-tabs.mkdf-tabs-vertical {
  display: table
}

.mkdf-tabs.mkdf-tabs-vertical .mkdf-tabs-nav {
  display: table-cell;
  vertical-align: top;
  width: 140px;
  height: 100%;
  border-right: 1px solid #e8e8e9;
  box-sizing: border-box
}

.mkdf-tabs.mkdf-tabs-vertical .mkdf-tabs-nav li {
  display: block;
  float: none;
  margin: 0 0 24px
}

.mkdf-tabs.mkdf-tabs-vertical .mkdf-tabs-nav li a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #999
}

.mkdf-tabs.mkdf-tabs-vertical .mkdf-tabs-nav li.ui-state-active a,.mkdf-tabs.mkdf-tabs-vertical .mkdf-tabs-nav li.ui-state-hover a {
  color: #001659
}

.mkdf-tabs.mkdf-tabs-vertical .mkdf-tabs-nav li:last-child {
  margin: 0
}

.mkdf-tabs.mkdf-tabs-vertical .mkdf-tab-container {
  display: table-cell;
  vertical-align: top;
  width: calc(100% - 140px);
  height: 100%;
  padding: 0 0 0 45px;
  box-sizing: border-box
}

.ui-widget-content {
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: 0 0;
  border: 0;
  border-radius: 0
}

.ui-widget-content .ui-widget-header {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: initial;
  background: 0 0;
  border: 0;
  border-radius: 0
}

.ui-widget-content .ui-tabs-nav li {
  position: initial;
  font-weight: inherit;
  color: inherit;
  background: initial;
  border: 0;
  border-radius: 0
}

.ui-widget-content .ui-widget-content {
  color: inherit;
  background: 0 0;
  border: 0;
  border-radius: 0
}

@media only screen and (max-width: 680px) {
  .mkdf-team-carousel-holder .mkdf-owl-slider .owl-nav {
      display:none
  }
}

.mkdf-team-carousel-holder .mkdf-owl-slider .owl-nav .owl-prev {
  left: -50px
}

.mkdf-team-carousel-holder .mkdf-owl-slider .owl-nav .owl-next {
  right: -50px
}

.mkdf-team-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-team-holder:hover .mkdf-team-social-wrapper {
  opacity: 1
}

.touchevents .mkdf-team-holder.mkdf-team-info-on-image {
  cursor: pointer
}

.mkdf-team-holder.mkdf-team-info-on-image:hover .mkdf-team-social-wrapper {
  opacity: 1
}

.mkdf-team-holder.mkdf-team-info-on-image:hover .mkdf-team-social-inner {
  transform: translate3d(0,0,0);
  transition: transform .45s cubic-bezier(.64,.01,.15,1.16),opacity .5s
}

.mkdf-team-holder.mkdf-team-info-on-image:hover .mkdf-team-social-inner .mkdf-team-social-holder .mkdf-team-icon:hover a {
  color: #fff
}

.mkdf-team-holder.mkdf-team-info-on-image:hover .mkdf-team-social-inner .mkdf-team-social-holder .mkdf-team-icon a {
  color: inherit
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder {
  margin: 26px 14px 0;
  position: absolute;
  top: 8px;
  right: 20px;
  width: 48px;
  z-index: 9999
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-social-opener {
  background-color: #ff5e14;
  border-radius: 2px;
  box-shadow: 0 10px 20px 0 transparent;
  transition: background-color .5s cubic-bezier(.49,.79,.17,.94),box-shadow .5s 50ms cubic-bezier(.49,.79,.17,.94)!important;
  margin-bottom: 7px
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-social-opener a {
  color: #fff!important
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-social-opener:hover {
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder:hover .mkdf-team-social-opener {
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder:hover .mkdf-team-icon {
  opacity: 1!important;
  transform: translateX(0)!important;
  pointer-events: auto!important
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon {
  display: block;
  width: 48px;
  float: none
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener) {
  opacity: 0;
  transform: translateX(7px);
  pointer-events: none
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener) a {
  color: inherit;
  transition: .2s
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):hover {
  background-color: transparent;
  box-shadow: none
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):hover a {
  color: #ff5e14!important
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-of-type(2) {
  transition: transform .3s,opacity .3s
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(3) {
  transition: transform .3s .12s,opacity .3s .12s
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(4) {
  transition: transform .3s .16s,opacity .3s .16s
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(5) {
  transition: transform .3s .2s,opacity .3s .2s
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(6) {
  transition: transform .3s .24s,opacity .3s .24s
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(7) {
  transition: transform .3s .28s,opacity .3s .28s
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(8) {
  transition: transform .3s .32s,opacity .3s .32s
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(9) {
  transition: transform .3s .36s,opacity .3s .36s
}

.mkdf-team-holder.mkdf-team-info-on-image .mkdf-team-social-holder .mkdf-team-social-inner {
  padding: 20px 0 43px 25px
}

.mkdf-team-holder .mkdf-team-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-team-holder .mkdf-team-image img {
  display: block
}

.mkdf-team-holder .mkdf-team-info {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 22px 0 0
}

.mkdf-team-holder .mkdf-team-name {
  margin: 0 0 0 8px
}

.mkdf-team-holder .mkdf-team-position {
  margin: 6px 0 2px 10px;
  font-size: 12px;
  font-weight: 500
}

.mkdf-team-holder .mkdf-team-text {
  margin: 10px 0 0
}

.mkdf-team-holder .mkdf-team-social-wrapper {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,35,90,.9);
  z-index: 1;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity .4s;
  box-shadow: -32px 32px 75px 0 rgba(122,131,153,.8);
  overflow: hidden
}

.mkdf-team-holder .mkdf-team-social-outer {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%
}

.mkdf-team-holder .mkdf-team-social-inner {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  padding: 20px 0 27px 25px;
  vertical-align: bottom;
  transition: transform .2s ease
}

@media only screen and (max-width: 1366px) {
  .mkdf-team-holder .mkdf-team-social-inner {
      padding:20px 0 33px 1.8%
  }
}

.mkdf-team-holder .mkdf-team-social-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 13px 0 3px 10px;
  position: absolute;
  top: 8px;
  right: 20px;
  width: 48px;
  z-index: 9999
}

.mkdf-team-holder .mkdf-team-social-holder:hover .mkdf-team-social-opener {
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

.mkdf-team-holder .mkdf-team-social-holder:hover .mkdf-team-icon {
  opacity: 1!important;
  transform: translateX(0)!important;
  pointer-events: auto!important
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon {
  display: block;
  width: 48px;
  float: none
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener) {
  opacity: 0;
  transform: translateX(7px);
  pointer-events: none
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener) a {
  color: inherit;
  transition: .2s
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):hover {
  background-color: transparent;
  box-shadow: none
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):hover a {
  color: #ff5e14!important
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-of-type(2) {
  transition: transform .3s,opacity .3s
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(3) {
  transition: transform .3s .12s,opacity .3s .12s
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(4) {
  transition: transform .3s .16s,opacity .3s .16s
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(5) {
  transition: transform .3s .2s,opacity .3s .2s
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(6) {
  transition: transform .3s .24s,opacity .3s .24s
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(7) {
  transition: transform .3s .28s,opacity .3s .28s
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(8) {
  transition: transform .3s .32s,opacity .3s .32s
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener):nth-child(9) {
  transition: transform .3s .36s,opacity .3s .36s
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-social-opener {
  background-color: #ff5e14;
  border-radius: 2px;
  color: #fff;
  transition: box-shadow .5s cubic-bezier(.49,.79,.17,.94)
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-social-opener a {
  color: #fff!important
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-social-opener:hover {
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon {
  font-size: 15px;
  margin: 0;
  padding: 0;
  display: inline-block;
  height: 100%;
  float: left
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon .mkdf-icon-element {
  font-size: inherit;
  transition: none;
  display: inline-block;
  width: 15px
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon a {
  color: inherit;
  display: block;
  padding: 16px 16px 14px;
  color: #001659
}

.mkdf-team-holder .mkdf-team-social-holder .mkdf-team-icon:last-child .mkdf-icon-element {
  width: 19px
}

.mkdf-team-holder.mkdf-team-info-below-image .mkdf-team-position {
  margin: 2px 0;
  font-size: 12px;
  line-height: 2.33em;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #565969
}

.mkdf-team-holder.mkdf-team-info-below-image .mkdf-team-name {
  margin: 0
}

.mkdf-team-holder.mkdf-team-info-below-image .mkdf-team-social-wrapper {
  box-shadow: none;
  background-color: none
}

.mkdf-team-holder.mkdf-team-info-below-image .mkdf-team-social-holder {
  margin: 21px 9px 0
}

.mkdf-team-holder.mkdf-team-info-below-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener) a {
  color: inherit
}

.mkdf-team-holder.mkdf-team-info-below-image .mkdf-team-social-holder .mkdf-team-icon:not(.mkdf-team-social-opener) a:hover {
  color: #ff5e14
}

.mkdf-team-holder.mkdf-team-info-below-image .mkdf-team-icon {
  display: block;
  width: 48px;
  float: none
}

.mkdf-text-marquee {
  position: relative;
  white-space: nowrap;
  color: #001659;
  font-size: 60px;
  line-height: 1.2em;
  font-weight: 600;
  overflow: hidden
}

.mkdf-text-marquee .mkdf-marquee-element {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 25px;
  box-sizing: border-box
}

.mkdf-text-marquee .mkdf-marquee-element.mkdf-aux-text {
  position: absolute;
  top: 0;
  left: 0
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-c {
  box-shadow: 0 14px 65px 0 rgba(122,131,153,.5)
}

.mkdf-triple-frame-image-highlight {
  position: relative;
  text-align: center;
  visibility: hidden
}

.mkdf-triple-frame-image-highlight .mkdf-tfih-inner {
  position: relative;
  display: inline-block
}

@media only screen and (max-width: 1440px) {
  .mkdf-triple-frame-image-highlight .mkdf-tfih-inner {
      max-width:70%
  }
}

@media only screen and (max-width: 680px) {
  .mkdf-triple-frame-image-highlight .mkdf-tfih-inner {
      max-width:100%
  }
}

.mkdf-triple-frame-image-highlight .mkdf-tfih-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100
}

.mkdf-triple-frame-image-highlight img {
  display: block;
  position: relative;
  z-index: 10
}

.mkdf-triple-frame-image-highlight .mkdf-tfih-left-image-holder,.mkdf-triple-frame-image-highlight .mkdf-tfih-right-image-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: transform 1s cubic-bezier(.19,1,.22,1) .2s,transform-origin 1s cubic-bezier(.19,1,.22,1) .2s,visibility 0s .2s
}

.mkdf-triple-frame-image-highlight .mkdf-tfih-centered-image-holder {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 10;
  transform: scale(.7);
  transition: transform .4s cubic-bezier(.86,0,.07,1)
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-left-trigger,.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-right-trigger,.mkdf-triple-frame-image-highlight .mkdf-tfih-left-trigger,.mkdf-triple-frame-image-highlight .mkdf-tfih-right-trigger {
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 300;
  cursor: pointer
}

.mkdf-triple-frame-image-highlight .mkdf-tfih-left-trigger {
  left: 0
}

.mkdf-triple-frame-image-highlight .mkdf-tfih-right-trigger {
  right: 0
}

.mkdf-triple-frame-image-highlight .mkdf-tfih-frame {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav {
  position: relative;
  text-align: center
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav .mkdf-triple-frame-image-highlight {
  display: inline-block;
  width: 92%
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav .mkdf-tfih-nav {
  position: absolute;
  z-index: 999;
  width: 78px;
  height: 78px;
  line-height: 86px;
  top: 50%;
  border-radius: 2px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 34px;
  text-align: center;
  background-color: #fff;
  color: #000;
  transition: color .3s ease,background-color .3s ease
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav .mkdf-tfih-nav:hover {
  background-color: #ff5e14;
  color: #fff
}

@media only screen and (max-width: 1024px) {
  .mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav .mkdf-tfih-nav {
      height:68px;
      width: 68px;
      line-height: 76px
  }
}

@media only screen and (max-width: 768px) {
  .mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav .mkdf-tfih-nav {
      height:58px;
      width: 58px;
      line-height: 66px
  }
}

@media only screen and (max-width: 480px) {
  .mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav .mkdf-tfih-nav {
      background-color:transparent;
      color: #ff5e14;
      height: 50px;
      width: 50px;
      line-height: 58px
  }

  .mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav .mkdf-tfih-nav:hover {
      background-color: transparent;
      color: #ff5e14
  }
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav .mkdf-tfih-left {
  left: 3.94%
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav .mkdf-tfih-right {
  right: 3.98%
}

.mkdf-triple-frame-image-highlight-holder:not(.mkdf-tfih-with-nav) .mkdf-tfih-inner {
  max-width: 70%
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight {
  position: relative;
  text-align: center;
  visibility: hidden
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-inner {
  position: relative;
  display: inline-block
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight img {
  display: block;
  position: relative;
  z-index: 10
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-left-image-holder,.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-right-image-holder {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: 1s cubic-bezier(.19,1,.22,1) .2s,transform-origin 1s cubic-bezier(.19,1,.22,1) .2s,visibility 0s .2s
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-centered-image-holder {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 10;
  transform: scale(.7);
  transition: transform .4s cubic-bezier(.86,0,.07,1)
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-left-trigger,.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-right-trigger {
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 300;
  cursor: pointer
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-left-trigger {
  left: 0
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-right-trigger {
  right: 0
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-frame {
  position: absolute;
  top: -10%;
  left: 0;
  height: 110%;
  width: 100%;
  background-color: #fff;
  border: 1px solid #e8e8e9;
  border-radius: 8px 8px 2px 2px;
  box-sizing: border-box
}

@media only screen and (max-width: 680px) {
  .mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-frame {
      left:-1px;
      width: calc(100% + 1px)
  }
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-frame img {
  border-radius: 0 0 2px 2px
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(10% - 5px);
  width: 100%
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-top-bar-left,.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-top-bar-right {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-around
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-top-bar-left {
  top: 0;
  height: 100%;
  left: 2%;
  width: 50px
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-top-bar-left>span {
  height: 8px;
  width: 8px;
  border-radius: 8px
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-top-bar-left>span:first-child {
  background-color: #e0e1e3
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-top-bar-left>span:nth-child(2) {
  background-color: #00235a
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-top-bar-left>span:last-child {
  background-color: #ff5e14
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-top-bar-right {
  right: 0;
  height: 60%;
  top: 20%;
  width: 50px;
  flex-direction: column
}

.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight .mkdf-tfih-top-bar-right>span {
  height: 4px;
  width: 4px;
  border-radius: 4px;
  background-color: #232845
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav.mkdf-tfih-with-frame {
  position: relative;
  text-align: center
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav.mkdf-tfih-with-frame .mkdf-triple-frame-image-highlight {
  display: inline-block;
  width: 80%;
  padding-top: 3%
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav.mkdf-tfih-with-frame .mkdf-tfih-inner {
  max-width: 60%
}

@media only screen and (max-width: 680px) {
  .mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav.mkdf-tfih-with-frame .mkdf-tfih-inner {
      max-width:100%
  }
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav.mkdf-tfih-with-frame .mkdf-tfih-nav {
  width: 60px;
  height: 60px;
  line-height: 68px;
  background-color: #00235a;
  color: #fff
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav.mkdf-tfih-with-frame .mkdf-tfih-nav:hover {
  background-color: #ff5e14
}

@media only screen and (max-width: 480px) {
  .mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav.mkdf-tfih-with-frame .mkdf-tfih-nav {
      height:50px;
      width: 50px;
      line-height: 58px
  }
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav.mkdf-tfih-with-frame .mkdf-tfih-left {
  left: 3%
}

.mkdf-triple-frame-image-highlight-holder.mkdf-tfih-with-nav.mkdf-tfih-with-frame .mkdf-tfih-right {
  right: 3%
}

.mkdf-triple-frame-image-highlight-holder:not(.mkdf-tfih-with-nav) .mkdf-tfih-inner {
  max-width: 70%
}

html {
  height: 100%;
  overflow-x: hidden
}

.curtains {
  width: 100%
}

.curtains>li {
  -webkit-transform: translateZ(0);
  background: #fff;
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  z-index: 1
}

.curtains>li.hidden {
  display: none
}

.curtains>li:first-child {
  z-index: 2
}

.mkdf-uncovering-section-on-page:not(.mkdf-header-bottom) .mkdf-page-header {
  position: fixed;
  top: 0;
  left: 0;
  transition: top .6s ease
}

.mkdf-uncovering-section-on-page:not(.mkdf-header-bottom).mkdf-header-top-enabled .mkdf-top-bar {
  position: fixed;
  top: -45px;
  left: 0;
  transition: top .6s ease
}

.mkdf-uncovering-section-on-page:not(.mkdf-header-bottom).mkdf-header-top-enabled:not(.mkdf-sticky-header-appear) .mkdf-top-bar {
  top: 0
}

.mkdf-uncovering-section-on-page:not(.mkdf-header-bottom).mkdf-header-top-enabled:not(.mkdf-sticky-header-appear) .mkdf-page-header {
  top: 45px
}

.mkdf-uncovering-section-on-page footer {
  display: none
}

.mkdf-uncovering-sections {
  transition: opacity .3s ease-out;
  opacity: 0
}

.mkdf-uncovering-sections li,.mkdf-uncovering-sections ul {
  margin: 0;
  padding: 0
}

.mkdf-uncovering-sections.mkdf-loaded {
  opacity: 1
}

.mkdf-uncovering-sections .mkdf-uss-item {
  display: inline-block;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  will-change: transform
}

.mkdf-uncovering-sections .mkdf-uss-item .mkdf-uss-image-holder {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 125%;
  will-change: transform;
  background-position: center;
  background-size: cover
}

.mkdf-uncovering-sections .mkdf-uss-item.mkdf-uss-item-va-top .mkdf-uss-item-inner {
  vertical-align: top
}

.mkdf-uncovering-sections .mkdf-uss-item.mkdf-uss-item-va-bottom .mkdf-uss-item-inner {
  vertical-align: bottom
}

.mkdf-uncovering-sections .mkdf-uss-item.mkdf-uss-item-ha-left .mkdf-uss-item-inner {
  text-align: left
}

.mkdf-uncovering-sections .mkdf-uss-item.mkdf-uss-item-ha-center .mkdf-uss-item-inner {
  text-align: center
}

.mkdf-uncovering-sections .mkdf-uss-item.mkdf-uss-item-ha-right .mkdf-uss-item-inner {
  text-align: right
}

.mkdf-uncovering-sections .mkdf-uss-item.mkdf-uss-item-has-link .mkdf-uss-item-inner a {
  position: relative
}

.mkdf-uncovering-sections .mkdf-uss-item .mkdf-uss-item-outer {
  position: relative;
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%
}

.mkdf-uncovering-sections .mkdf-uss-item .mkdf-uss-item-inner {
  position: relative;
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  padding: 5%;
  box-sizing: border-box
}

.mkdf-uncovering-sections .mkdf-uss-item .mkdf-uss-item-inner a {
  position: relative
}

.mkdf-uncovering-sections .mkdf-uss-item .mkdf-uss-item-link {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1
}

.mkdf-fss-shadow {
  background: #323134;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 19;
  opacity: 0;
  pointer-events: none;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: opacity
}

.mkdf-vss-initialized .mkdf-content .mkdf-content-inner>.mkdf-container>.mkdf-container-inner {
  padding: 0
}

.mkdf-vss-initialized .mkdf-content .mkdf-content-inner>.mkdf-full-width>.mkdf-full-width-inner {
  padding: 0
}

.mkdf-vertical-split-slider {
  position: relative;
  opacity: 0;
  margin: 0 -2px;
  overflow: hidden
}

.mkdf-vertical-split-slider .mkdf-vss-ms-left,.mkdf-vertical-split-slider .mkdf-vss-ms-right {
  position: absolute;
  width: 50%;
  height: 100%;
  box-sizing: border-box
}

.mkdf-vertical-split-slider .mkdf-vss-ms-left {
  top: 0;
  left: 0
}

.mkdf-vertical-split-slider .mkdf-vss-ms-left .mkdf-vss-ms-section {
  background-position: 100% center;
  background-size: cover
}

.mkdf-vertical-split-slider .mkdf-vss-ms-left .mkdf-vss-ms-section.mkdf-vss-ms-section-with-bg-text .mkdf-vss-background-text {
  right: 0
}

.mkdf-vertical-split-slider .mkdf-vss-ms-right {
  top: 10000px;
  right: 0
}

.mkdf-vertical-split-slider .mkdf-vss-ms-right .mkdf-vss-ms-section {
  background-position: 0 center;
  background-size: cover
}

.mkdf-vertical-split-slider .mkdf-vss-ms-right .mkdf-vss-ms-section.mkdf-vss-ms-section-with-bg-text .mkdf-vss-background-text {
  left: 0
}

.mkdf-vertical-split-slider .mkdf-vss-ms-section.ms-table {
  display: table;
  width: 100%;
  table-layout: fixed;
  box-sizing: border-box
}

.mkdf-vertical-split-slider .mkdf-vss-ms-section .ms-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: padding .45s cubic-bezier(.4,0,.2,1)
}

.mkdf-vertical-split-slider .mkdf-vss-ms-section .ms-easing {
  transition: all .7s ease-out
}

.mkdf-vertical-split-slider .mkdf-vss-ms-section.mkdf-vss-ms-section-with-bg-text {
  position: relative
}

.mkdf-vertical-split-slider .mkdf-vss-ms-section.mkdf-vss-ms-section-with-bg-text .mkdf-vss-background-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #f5f6f7
}

.mkdf-vertical-split-slider .mkdf-vss-ms-section.mkdf-vss-ms-section-with-bg-text .mkdf-vss-background-text.mkdf-bg-text-outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #d2d2d4
}

.mkdf-vertical-split-slider.mkdf-vss-scrolled .mkdf-vss-ms-left .mkdf-vss-ms-section .ms-tableCell {
  padding: 7.5rem 0 7.5rem 7.5rem
}

.mkdf-vertical-split-slider.mkdf-vss-scrolled .mkdf-vss-ms-right .mkdf-vss-ms-section .ms-tableCell {
  padding: 7.5rem 7.5rem 7.5rem 0
}

.mkdf-vertical-split-slider.mkdf-vss-scrolled .mkdf-vss-horizontal-mask:after,.mkdf-vertical-split-slider.mkdf-vss-scrolled .mkdf-vss-horizontal-mask:before {
  transform: scaleY(1)
}

.mkdf-vertical-split-slider.mkdf-vss-scrolled .mkdf-vss-vertical-mask:after,.mkdf-vertical-split-slider.mkdf-vss-scrolled .mkdf-vss-vertical-mask:before {
  transform: scaleX(1)
}

.mkdf-vertical-split-slider .mkdf-vss-horizontal-mask:after,.mkdf-vertical-split-slider .mkdf-vss-horizontal-mask:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  background-color: #fff;
  height: 7.5rem;
  z-index: 500;
  transform: scaleY(0);
  transition: transform .45s cubic-bezier(.4,0,.2,1)
}

.mkdf-vertical-split-slider .mkdf-vss-horizontal-mask:before {
  top: 0;
  transform-origin: center top
}

.mkdf-vertical-split-slider .mkdf-vss-horizontal-mask:after {
  bottom: 0;
  transform-origin: center bottom
}

.mkdf-vertical-split-slider .mkdf-vss-vertical-mask:after,.mkdf-vertical-split-slider .mkdf-vss-vertical-mask:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #fff;
  width: 7.5rem;
  z-index: 500;
  transform: scaleX(0);
  transition: transform .45s cubic-bezier(.4,0,.2,1)
}

.mkdf-vertical-split-slider .mkdf-vss-vertical-mask:before {
  left: 0;
  transform-origin: center left
}

.mkdf-vertical-split-slider .mkdf-vss-vertical-mask:after {
  right: 0;
  transform-origin: center right
}

.mkdf-vss-responsive {
  display: none
}

.mkdf-vss-responsive .mkdf-vss-ms-section {
  background-position: center;
  background-size: cover
}

#multiscroll-nav {
  position: fixed;
  top: 50%;
  right: 64px;
  margin-top: -10px;
  opacity: 1;
  z-index: 1000;
  transition: opacity .5s ease-out
}

.mkdf-fullscreen-menu-opened #multiscroll-nav {
  z-index: -1
}

#multiscroll-nav ul {
  margin: 0;
  padding: 0
}

#multiscroll-nav ul li {
  position: relative;
  display: block;
  margin: 12px 3px;
  overflow: hidden
}

#multiscroll-nav ul li a {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  background-color: transparent;
  border: 2px solid rgba(0,22,89,.5);
  border-radius: 50%;
  z-index: 1;
  box-sizing: border-box
}

#multiscroll-nav ul li a.active {
  background-color: #001659;
  border-color: #001659
}

.mkdf-light-header #multiscroll-nav ul li a {
  border-color: #fff
}

.mkdf-light-header #multiscroll-nav ul li a.active {
  background-color: #fff
}

.mkdf-dark-header #multiscroll-nav ul li a {
  border-color: #001659
}

.mkdf-dark-header #multiscroll-nav ul li a.active {
  background-color: #001659
}

#multiscroll-nav ul li a span {
  display: block
}

.mkdf-video-button-holder {
  position: relative;
  display: inline-block;
  vertical-align: middle
}

.mkdf-video-button-holder.mkdf-vb-has-img .mkdf-video-button-play,.mkdf-video-button-holder.mkdf-vb-has-img .mkdf-video-button-play-image {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  width: 64px;
  height: 64px;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%
}

@media only screen and (max-width: 680px) {
  .mkdf-video-button-holder.mkdf-vb-has-img .mkdf-video-button-play,.mkdf-video-button-holder.mkdf-vb-has-img .mkdf-video-button-play-image {
      width:34px;
      height: 34px
  }
}

.mkdf-video-button-holder.mkdf-vb-has-img .mkdf-video-button-play .mkdf-video-button-play-inner,.mkdf-video-button-holder.mkdf-vb-has-img .mkdf-video-button-play-image .mkdf-video-button-play-inner {
  position: relative;
  top: 50%;
  left: 0;
  text-align: center;
  transform: translateY(-50%)
}

.mkdf-video-button-holder .mkdf-video-button-image {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.mkdf-video-button-holder .mkdf-video-button-image img {
  display: block;
  width: 100%
}

.mkdf-video-button-holder .mkdf-video-button-play,.mkdf-video-button-holder .mkdf-video-button-play-image {
  position: relative;
  display: inline-block;
  vertical-align: top;
  z-index: 1
}

.mkdf-video-button-holder .mkdf-video-button-text {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  padding-right: 11px;
  font-size: 16px;
  letter-spacing: .02em;
  font-weight: 500
}

.mkdf-video-button-holder .mkdf-video-button-text-holder:hover+.mkdf-video-button-play {
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

.mkdf-video-button-holder .mkdf-video-button-play {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background-color: #ff5e14;
  font-size: 64px;
  line-height: 1;
  border-radius: 2px;
  padding: 18px;
  box-sizing: border-box;
  transition: background-color .5s cubic-bezier(.49,.79,.17,.94),box-shadow .5s 50ms cubic-bezier(.49,.79,.17,.94)
}

.mkdf-video-button-holder .mkdf-video-button-play svg {
  display: block
}

.mkdf-video-button-holder .mkdf-video-button-play svg polygon {
  fill: #fff
}

.mkdf-video-button-holder .mkdf-video-button-play .arrow_triangle-right:before {
  font-size: 28px
}

.mkdf-video-button-holder .mkdf-video-button-play:hover {
  box-shadow: 0 10px 20px 0 rgba(255,94,20,.5)
}

.mkdf-video-button-holder .mkdf-video-button-play span {
  display: block;
  line-height: inherit
}

.mkdf-video-button-holder .mkdf-video-button-play span:before {
  display: block;
  line-height: inherit
}

.mkdf-video-button-holder .mkdf-video-button-play .mkdf-video-button-play-inner {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center
}

.mkdf-video-button-holder .mkdf-video-button-play-image.mkdf-vb-has-hover-image:hover img:first-child {
  opacity: 0
}

.mkdf-video-button-holder .mkdf-video-button-play-image.mkdf-vb-has-hover-image:hover img:nth-child(2) {
  opacity: 1
}

.mkdf-video-button-holder .mkdf-video-button-play-image img {
  display: block;
  margin: 0 auto;
  transition: opacity .3s ease-in-out
}

.mkdf-video-button-holder .mkdf-video-button-play-image img:first-child {
  position: relative;
  opacity: 1
}

.mkdf-video-button-holder .mkdf-video-button-play-image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) translateZ(0)
}

.rev_slider_wrapper .mkdf-video-button-holder .mkdf-video-button-play-image img:nth-child(2) {
  transform: translateZ(0)
}

.mkdf-workflow {
  margin-top: 50px;
  position: relative
}

.mkdf-workflow .main-line {
  background: #dee0e0;
  left: 50%;
  margin-left: -1px;
  position: absolute;
  right: 50%;
  top: 0;
  height: 100%;
  width: 2px
}

.mkdf-workflow .mkdf-workflow-item {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  position: relative;
  padding-bottom: 60px;
  overflow: hidden
}

.mkdf-workflow .mkdf-workflow-item:nth-of-type(2n) {
  text-align: left
}

.mkdf-workflow .mkdf-workflow-item:nth-of-type(2n) .mkdf-workflow-item-inner .mkdf-workflow-image {
  text-align: right
}

.mkdf-workflow .mkdf-workflow-item:nth-of-type(2n+1) {
  text-align: right
}

.mkdf-workflow .mkdf-workflow-item:nth-of-type(2n+1) .mkdf-workflow-item-inner {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap
}

.mkdf-workflow .mkdf-workflow-item:nth-of-type(2n+1) .mkdf-workflow-item-inner .mkdf-workflow-image {
  text-align: left
}

.mkdf-workflow .mkdf-workflow-item .mkdf-workflow-item-inner {
  display: inline-block;
  position: relative;
  width: 100%;
  vertical-align: middle
}

.mkdf-workflow .mkdf-workflow-item .mkdf-workflow-item-inner .mkdf-workflow-image,.mkdf-workflow .mkdf-workflow-item .mkdf-workflow-item-inner .mkdf-workflow-text {
  float: left;
  margin: 0;
  width: 50%;
  box-sizing: border-box
}

.mkdf-workflow .mkdf-workflow-item .mkdf-workflow-item-inner .mkdf-workflow-image {
  padding: 0 60px
}

.mkdf-workflow .mkdf-workflow-item .mkdf-workflow-item-inner .mkdf-workflow-text {
  padding: 0 60px
}

.mkdf-workflow .mkdf-workflow-item .mkdf-workflow-item-inner .mkdf-workflow-text h4 {
  margin-top: 0;
  margin-bottom: 0
}

.mkdf-workflow .mkdf-workflow-item .mkdf-workflow-item-inner .mkdf-workflow-text p.text {
  margin-top: 20px
}

.mkdf-workflow .mkdf-workflow-item .mkdf-workflow-item-inner .mkdf-workflow-text .circle {
  background: #fff;
  border: 3px solid #dee0e0;
  border-radius: 50%;
  content: "";
  height: 14px;
  left: 50%;
  margin: 0 0 0 -10px;
  position: absolute;
  top: 4px;
  width: 14px
}

.mkdf-workflow .mkdf-workflow-item .line {
  display: none;
  background-color: #fff;
  height: 100%;
  left: 50%;
  margin-left: -1px;
  position: absolute;
  width: 2px
}

.mkdf-workflow .mkdf-workflow-item:first-of-type .line {
  display: block;
  top: 4px;
  transform: translateY(-100%)
}

.mkdf-workflow .mkdf-workflow-item:last-of-type .line {
  display: block;
  top: 24px
}

.mkdf-workflow.mkdf-workflow-animate {
  transform: translateY(100px);
  opacity: 0;
  transition: opacity .55s cubic-bezier(.23,1,.32,1),transform .55s cubic-bezier(.23,1,.32,1)
}

.mkdf-workflow.mkdf-workflow-animate .main-line {
  opacity: 0;
  height: 0;
  transition: opacity .55s cubic-bezier(.23,1,.32,1),height 1.8s ease-out
}

.mkdf-workflow.mkdf-workflow-animate .circle {
  transform: scale(.2);
  transition: transform .6s cubic-bezier(.18,.89,.32,1.68) .5s
}

.mkdf-workflow.mkdf-workflow-animate .mkdf-workflow-item .mkdf-workflow-item-inner .mkdf-workflow-image {
  opacity: 0;
  transform: scale(.6);
  transition: transform .6s cubic-bezier(.18,.89,.32,1),opacity .3s ease-out
}

.mkdf-workflow.mkdf-workflow-animate .mkdf-workflow-item .mkdf-workflow-item-inner .mkdf-workflow-text h4,.mkdf-workflow.mkdf-workflow-animate .mkdf-workflow-item .mkdf-workflow-item-inner .mkdf-workflow-text p {
  opacity: 0;
  transition: opacity .5s cubic-bezier(.22,.61,.36,1) .2s
}

.mkdf-workflow.mkdf-workflow-animate.mkdf-appeared {
  transform: translateY(0);
  opacity: 1
}

.mkdf-workflow.mkdf-workflow-animate.mkdf-appeared .main-line {
  opacity: 1;
  height: 100%
}

.mkdf-workflow.mkdf-workflow-animate.mkdf-appeared .mkdf-workflow-item.mkdf-appeared .mkdf-workflow-image {
  opacity: 1;
  transform: scale(1)
}

.mkdf-workflow.mkdf-workflow-animate.mkdf-appeared .mkdf-workflow-item.mkdf-appeared .mkdf-workflow-text h4,.mkdf-workflow.mkdf-workflow-animate.mkdf-appeared .mkdf-workflow-item.mkdf-appeared .mkdf-workflow-text p {
  opacity: 1
}

.mkdf-workflow.mkdf-workflow-animate.mkdf-appeared .circle {
  transform: scale(1)
}

.mkdf-instagram-list-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  clear: both
}

.mkdf-instagram-list-holder:not(.mkdf-il-one-column) .mkdf-il-item {
  float: left
}

.mkdf-instagram-list-holder .mkdf-instagram-carousel {
  margin: 0!important
}

.mkdf-instagram-list-holder .mkdf-il-item {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box
}

.wpb_widgetised_column .widget.widget_mkdf_instagram_widget .mkdf-widget-title,aside.mkdf-sidebar .widget.widget_mkdf_instagram_widget .mkdf-widget-title {
  margin: 0 0 25px
}

.mkdf-instagram-feed {
  list-style: none;
  padding: 0;
  margin: 0
}

.mkdf-instagram-feed li {
  float: left;
  box-sizing: border-box;
  border: none!important
}

.mkdf-instagram-feed li a {
  position: relative;
  display: block;
  overflow: hidden
}

.mkdf-instagram-feed li a .mkdf-instagram-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #001659;
  opacity: 0;
  z-index: 1;
  transition: opacity .2s ease-in-out;
  transform: translate(-50%,-50%)
}

.mkdf-instagram-feed li a:hover .mkdf-instagram-icon {
  opacity: 1
}

.mkdf-instagram-feed li img {
  width: 100%;
  display: block
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-no-space {
  margin: 0
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-no-space li {
  padding: 0 0;
  margin: 0 0 0
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-tiny-space {
  margin: 0 -5px -10px
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-tiny-space li {
  padding: 0 5px;
  margin: 0 0 10px
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-small-space {
  margin: 0 -10px -20px
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-small-space li {
  padding: 0 10px;
  margin: 0 0 20px
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-normal-space {
  margin: 0 -15px -30px
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-normal-space li {
  padding: 0 15px;
  margin: 0 0 30px
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-col-2 li {
  width: 50%
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-col-3 li {
  width: 33.33333%
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-col-4 li {
  width: 25%
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-col-6 li {
  width: 16.66667%
}

.mkdf-instagram-feed.mkdf-instagram-gallery.mkdf-col-9 li {
  width: 11.11111%
}

.mkdf-instagram-feed.mkdf-instagram-gallery a:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  background-color: rgba(0,35,90,.9);
  opacity: 0;
  transition: opacity .2s ease-in-out
}

.mkdf-instagram-feed.mkdf-instagram-gallery a:hover:after {
  opacity: 1;
  transition: opacity .2s ease-in-out
}

.mkdf-instagram-feed.mkdf-instagram-carousel li {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0
}

.mkdf-instagram-feed.mkdf-instagram-carousel li a {
  position: relative;
  display: block;
  height: 100%
}

.mkdf-twitter-list-holder {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  clear: both
}

.mkdf-twitter-list-holder .mkdf-twitter-list {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  list-style: none;
  margin: 0;
  padding: 0
}

.mkdf-twitter-list-holder .mkdf-tl-item {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  box-sizing: border-box
}

.mkdf-twitter-list-holder .mkdf-tli-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  background-color: #fff;
  transition: all .2s ease-in-out
}

.mkdf-twitter-list-holder .mkdf-tli-inner:hover {
  box-shadow: -2px 4px 13px 0 rgba(81,137,162,.05);
  transform: translateY(-3px)
}

.mkdf-twitter-list-holder .mkdf-tli-content {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 35px 23px;
  border: 1px solid #f2f2f2;
  box-sizing: border-box
}

.mkdf-twitter-list-holder .mkdf-twitter-content-top {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin-bottom: 25px;
  box-sizing: border-box
}

.mkdf-twitter-list-holder .mkdf-twitter-link-over {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1
}

.mkdf-twitter-list-holder .mkdf-twitter-user {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding-right: 30px;
  box-sizing: border-box
}

.mkdf-twitter-list-holder .mkdf-twitter-user .mkdf-twitter-image {
  position: relative;
  display: inline-block;
  vertical-align: top;
  float: left;
  width: 56px;
  height: 56px
}

.mkdf-twitter-list-holder .mkdf-twitter-user .mkdf-twitter-image img {
  border-radius: 50%
}

.mkdf-twitter-list-holder .mkdf-twitter-user .mkdf-twitter-name {
  position: relative;
  display: inline-block;
  vertical-align: top;
  float: left;
  width: calc(100% - 56px);
  padding-left: 15px;
  box-sizing: border-box
}

.mkdf-twitter-list-holder .mkdf-twitter-user .mkdf-twitter-name * {
  margin: 0
}

.mkdf-twitter-list-holder .mkdf-twitter-icon {
  position: absolute;
  top: -7px;
  right: 3px;
  width: 20px;
  display: inline-block;
  vertical-align: top;
  color: #ff5e14;
  font-size: 24px;
  text-align: right
}

.mkdf-twitter-list-holder .mkdf-tweet-text {
  padding-left: 12px;
  box-sizing: border-box
}

.mkdf-twitter-list-holder .mkdf-tweet-text a {
  position: relative;
  color: grey;
  z-index: 2
}

.mkdf-twitter-list-holder .mkdf-tweet-text a:hover {
  color: #ff5e14
}

.mkdf-twitter-list-holder .mkdf-twitter-profile a {
  position: relative;
  color: grey;
  z-index: 2
}

.mkdf-twitter-list-holder .mkdf-twitter-profile a:hover {
  color: #ff5e14
}

.widget.widget_mkdf_twitter_widget {
  margin: 0 0 20px
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  margin: 0
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget li {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget li:not(:last-child) {
  margin: 0 0 22px
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget li .mkdf-twitter-icon {
  font-size: 18px;
  color: #ff5e14
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget li .mkdf-tweet-text {
  position: relative
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget li .mkdf-tweet-text span {
  color: #565969
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget li .mkdf-tweet-text a {
  position: relative;
  color: #565969
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget li .mkdf-tweet-text a:hover {
  color: #ff5e14
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget li .mkdf-tweet-text a.mkdf-tweet-time {
  display: block
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget li .mkdf-tweet-text a.mkdf-tweet-time span {
  margin: 0 2px 0 0
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget.mkdf-twitter-standard li .mkdf-twitter-icon {
  position: absolute;
  top: 2px;
  left: 0
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget.mkdf-twitter-standard li .mkdf-tweet-text {
  padding: 0 0 0 40px
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget.mkdf-twitter-slider {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding: 0 40px;
  text-align: center;
  box-sizing: border-box
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget.mkdf-twitter-slider li {
  overflow: hidden
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget.mkdf-twitter-slider li .mkdf-tweet-text a.mkdf-tweet-time {
  margin: 21px 0 0
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget.mkdf-twitter-slider .owl-nav .owl-prev {
  left: 0
}

.widget.widget_mkdf_twitter_widget .mkdf-twitter-widget.mkdf-twitter-slider .owl-nav .owl-next {
  right: 0
}
.mkdf-split-text-outer{
  font-family: 'Yantramanav', sans-serif;
}
.new-stro-font{
  font-size: 100px !important;
}
.new-stro-font .mkdf-split-text-right{
  font-size: 100px !important;
}
/* paralax section end here */

/* banner animation css start here */

.banner_tilt h1 {
  display: inline-block;
  color: white;
  font-family: "Righteous", serif;
  font-size: 12em;
  text-shadow: 0.03em 0.03em 0 hsla(230, 40%, 50%, 1);
}
.banner_tilt h1:after {
  content: attr(data-shadow);
  position: absolute;
  top: 0.06em;
  left: 0.06em;
  z-index: -1;
  text-shadow: none;
  background-image: linear-gradient(
    45deg,
    transparent 45%,
    hsla(48, 20%, 90%, 1) 45%,
    hsla(48, 20%, 90%, 1) 55%,
    transparent 0
  );
  background-size: 0.05em 0.05em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shad-anim 15s linear infinite;
}

@keyframes shad-anim {
  0% {
    background-position: 0 0;
  }
  0% {
    background-position: 100% -100%;
  }
}
/* banner animation css end here */

.newsletter-area {
    background: linear-gradient(to right, #d39d21 0%, #f5c034 40%, #d39d21 70%, #f5c034 100%);
    padding: 24px 0 23px;
}
.newsletter-title h1 {
    font-size: 34px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: -2px;
}
.newsletter-title p {
  font-size: 15px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 400;
}
.subscribe_form {
    position: relative;
    text-align: right;
}
.subscribe_form input {
  height: 60px;
  background-color: #ffffff;
  outline: 0;
  border: none;
  width: 88%;
  float: right;
  border-radius: 0;
}
.subscribe_form button {
  transition: all 0.4s ease 0s;
  border: medium none;
  background: #171717;
  position: absolute;
  right: 0;
  top: 0px;
  display: inline-block;
  z-index: 1;
  font-size: 17px;
  color: #ffffff;
  font-weight: 500;
  border-radius: 0;
  text-transform: uppercase;
  width: 142px;
  height: 60px;
}
.subscribe_form button.btn:after {
  background: #0163A2;
}

.footer-bottom-area {
  background: #212121;
  padding: 17px 0 15px;
}
.footer-bottom-content-copy p {
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  font-weight: 300;
  margin: 0;
}
.footer-bottom-content.right {
  text-align: right;
}

.pos_relt{
  position: relative;
}

.pos_relt img{
  position: absolute;
}

.grfltr {
  filter: opacity(0.6);
  left: -70px;
}
.nets img {
  right: -80px;
  top: 200px;
  z-index: -9;
  filter: invert(1);
  width: 62%;
}

.netx img{
  left: 0px;
  top: 120px;
}

.netsti img {
    right: -240px;
    top: 80px;
    /* z-index: -9; */
    /* filter: blur(1.5px); */
    width: 25%;
}

.netsftr img {
  right: -55px;
  top: 30px;
  /* z-index: -9; */
  /* filter: blur(1.5px); */
   width: 40%; 
}

.testron {
  right: -170px;
  top: -30px;
  /* z-index: -9; */
  /* filter: blur(1.5px); */
  /* width: 25%; */
}

.netstilef img {
  left: -290px;
  top: -130px;
  /* z-index: -9; */
  /* filter: blur(1.5px); */
  width: 25%;
}
.why-choose-one-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: 0.02;
  z-index: -1;
}
.why-choose-one-shape-3 {
  position: absolute;
  top: -335px;
  right: 309px;
  background-image: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ff4f47 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ff4f47 100%);
  background-image: -ms-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ff4f47 100%);
  opacity: 0.502;
  width: 98px;
  height: 765px;
  transform: rotate(-45deg);
  z-index: 99;
}
.why-choose-one-shape-4 {
  position: absolute;
  top: 0;
  right: -30px;
}

.neswt{
  position: relative;
  z-index: 99;
  background-color: #fff;
}

.fs-28{
  font-size: 28px !important;
}

.nsvioflow{
  margin-left: -90px;
  margin-right: -90px;
  width: 110%;
}
.who-we {
  position: relative;
  margin: 0px 0px 0px;
  padding: 19px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background: url(../images/who-we-are-1.jpg);
}
.who-we:before {
  position: absolute;
  content: '';
  background-color: #f00;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  display: block;
}
.who-we .text2 {
  position: relative;
  color: #fff;
  font-size: 15px;
  line-height: 29px;
  margin-top: 0px;
  font-style: italic;
  outline: 2px dashed #e0ac3c;
  outline-offset: 7px;
}
.prodlef{
  background-image: url(../images/proces.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.healthylife{
  background: #1f4e3d;
  padding: 50px 0px;
  z-index: 9;
}

.healthylife h2{
  background-image: url(../images/3.jpg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: center;
  font-size: 64px;
  line-height: 140px;
  font-weight: 900;
  margin: 0;
  text-transform: capitalize;
  text-align: center;
  position: relative;
  z-index: 99;
}
.shape21{
  position: relative;
}
.shape21 img {
  position: absolute;
  left: -30px;
  top: 320px;
  width: 13%;
  z-index: 99;
  filter: brightness(0.5);
}
.cato{
  background: #2c5848;
  padding: 10px;
  border-radius: 10px;
  display: block;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 99;
}
.cato:hover {
  background: #f7c35f;
  transition: all 0.35s ease-in-out;
}
.cato img{
  margin-bottom: 6px;
}
.cato h5{
  transition: all 0.35s ease-in-out;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.machinery {
  padding: 40px 0px;
}
.machi {
  padding-top: 60px;
}
.machinery .machi h3 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.25;
}
.machinery .machi p{
  font-size: 16px;
}
.machinery .machi .deliv {
    display: flex;
    justify-content: center;
    margin-top: 35px;


    .fstn {
      max-width: 50%;
    }
}
.machinery .machi .deliv .fstn span {
  float: left;
  background: #f7faf1;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  line-height: 50px;
  padding: 5px 8px 5px 15px;
  color: #77a917;
  font-size: 35px;
}

.machinery .machi .deliv .fstn .tesx {
  padding-left: 70px;
}
.machinery .machi .deliv h5 {
  font-size: 18px;
}
.machinery .machi .deliv .fstn .tesx p {
  line-height: 24px;
  font-size: 14px;
  margin-top: 4px;
}

/* recipe section start here */
.about-section {
  position: relative;
  padding: 50px 0px;
}
.about-title-area {
  margin-bottom: 30px;
}
.about-title-area .about-title {
  border-right: 1px solid #dfdddf;
}
.about-title-area .about-title span {
    color: #209e2e;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.about-title-area .about-title h2 {
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
}
.about-title-area .about-text {
  font-size: 16px;
  padding-right: 75px;
}
.about-title-area .about-text p {
  margin-bottom: 0;
}
.about-shape-image {
  position: absolute;
  top: 220px;
  z-index: -1;
}
.about-content-area .about-content {
    margin-top: 20px;
}
.about-content-area .about-content h3 {
  font-size: 25px;
  margin: 0 0 10px 0;
}
.about-content-area .about-content p {
  margin: 0 0 0 0;
  font-size: 16px;
}
.about-content-area .about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 0;
  margin-left: -10px;
  margin-right: -10px;
}
.about-content-area .about-list li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.about-content-area .about-list i {
  display: inline-block;
  height: 25px;
  width: 25px;
  line-height: 25px;
  background-color: #eafef1;
  color: #209e2e;
  border: 1px solid #209e2e;
  border-radius: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-right: 6px;
}
.about-item .about-text {
  padding: 12px;
  background-color: #fdfdfd;
  border-left: 1px dashed #8fe2aa;
  border-right: 1px dashed #8fe2aa;
  border-bottom: 1px dashed #8fe2aa;
  border-radius: 0 0 5px 5px;
  line-height: 1;
}
.about-item .about-text span {
  font-size: 15px;
  color: #209e2e;
  position: relative;
  padding-left: 18px;
}
.about-item .about-text span::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background-color: #209e2e;
  left: 0;
  top: 4px;
  border-radius: 30px;
}
.about-item .about-text h3 {
  font-size: 16px;
  margin: 10px 0 0 0;
  line-height: 22px;
}
.about-slide-image img{
  width: 100%;
}
.special-offer{
  font-size: 60px;
  line-height: 65px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation-name: masked-animation;
  animation-name: masked-animation;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

@keyframes masked-animation {
  0%, 100% {
      background-position: 50% 35%;
  }
  50% {
      background-position: 50% 65%;
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
}

.recipe3 {
  position: absolute;
  top: 0%;
  right: -20%;
}
.recipe3 img {
  width: 30%;
  z-index: 1;
}

.other-address{
  display: flex;
  gap: 20px;
  margin-top: 60px;
}
.other-address li {
  display: inline-block;
  width: 33%;
  margin-bottom: 30px;
}

.other-address .others-add{
  display: flex;
  position: relative;
  padding: 10px 10px 10px 45px;
}
.other-address li .icon {
  position: absolute;
  top: 15px;
  left: 0;
  width: 55px;
  color: var(--thm-base);
  font-size: 35px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.other-address li .text h3 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.other-address li .text p {
  color: #444444;
  font-size: 14px;
  line-height: 26px;
  margin: 0px 0 0px;
}

.other-address .others-add:hover:after {
  width: 100%;
  left: 0;
  right: auto;
  transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -webkit-transform-origin: right;
  -o-transform-origin: right;
}
.other-address .others-add:after {
  content: "";
  height: 100%;
  width: 0;
  background-color: #ebebeb;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -webkit-transform-origin: left;
  -o-transform-origin: left;
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
}
/* recipe section end here */

.recipe-another {
  background: url(../images/img-05.jpg);
  background-size: cover;
  padding: 50px 0px;
  position: relative;
  background-attachment: fixed;
}

.recip {
  position: relative;
  background: #e3e3e3;
  border-radius: 8px;
  padding: 70px 12px 20px 12px;
  text-align: center;
  margin-top: 30%;
  box-shadow: 0px 14px 20px rgba(0,4,94,.04);
}

.recip ul {
  border-top: 1px solid #afafaf;
  border-bottom: 1px solid #afafaf;
  margin: 12px 0px;
}

.recip ul li {
  font-size: 14px;
  padding: 0px 2px;
}

.recip li{
  display: inline-block;
}
.recip li:last-child::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background: #4b8f39;
  display: inline-block;
  margin-right: 10px;
}

.recip h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.recip p{
  font-size: 14px;
}
.recip img {
  position: absolute;
  width: 60%;
  left: 50px;
  top: -70px;
  display: block;
  margin: 0 auto;
}
.recipe-btn {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  background-color: #4b8f39;
  padding: 6px 15px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  margin-top: 10px;
}
.recipe-btn:hover{
  color: #ffffff;
  background-color: var(--thm-base);
}
.anileaf {
  position: absolute;
  top: 65%;
  left: -30px;
}
.anileaf img{
  width: 60%;
}
.oran_1{
  position: absolute;
  right: 0px;
  top: 60%;
}

.oran_2{
  position: absolute;
  right: 0px;
  top: 80%;
}
.tomato {
  position: absolute;
  left: 60px;
  top: 50px;
  width: 12%;
}
.tomato img{
  width: 100%;
}
.new-recip p{
  color: #d3d3d3;
}


/* quality page section css start here */
.new-breadsrum {
  padding: 190px 0px 20px 0px;
  background-size: cover;
  background-position: center;
}

.new-breadsrum.abt {
  background-image: url(../images/abt-bread.png);
}

.new-breadsrum.contact-bread {
  background-image: url(../images/contact-bread.png);
}

.new-breadsrum.quality-bread {
  background-image: url(../images/quality-bread.png);
}
.new-breadsrum.mission-bread {
  background-image: url(../images/mission-bread.png);
}
.new-breadsrum.process-bread {
  background-image: url(../images/process-bread.png);
}


.new-breadsrum h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}
.new-breadsrum p {
  color: #fff;
  font-size: 16px;
}
.features-wrap-one {
    padding: 30px 0px;
    position: relative;
    z-index: 2;
}
.features-item {
  padding-right: 0;
}
.features-item {
  position: relative;
  z-index: 1;
}
.features-item .fill-number {
  position: absolute;
  top: 30px;
  left: 20px;
  font-size: 85px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  font-weight: 800;
  z-index: -1;
  -webkit-text-stroke-color: rgba(44, 44, 44, 0.08);
}
.features-item .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65px;
  flex: 0 0 65px;
  max-width: 65px;
  height: 65px;
  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;
  background-color: #eece38;
  color: #fff;
  font-size: 30px;
  margin-right: 25px;
}
.features-item .text h5 {
  padding-right: 0;
  margin-bottom: 3px;
  font-size: 18px;
}
.features-item .text p{
  font-size: 16px;
}
.features-section{
  background-color: #f8f6ef;
  padding-bottom: 60px;
}

.Provide-One {
  position: relative;
  display: block;
  z-index: 1;
}
.Provide-One__wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.Provide-One__left {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  min-height: 705px;
}
.provide-one__sopport {
  position: absolute;
  max-width: 375px;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 34px 48px 38px;
  border-top-left-radius: 16px;
  background-color: #ffcd1e;
}
.provide-one__support-icon {
  position: relative;
  display: inline-block;
}
.provide-one__support-icon span {
  font-size: 66px;
  color: #000;
}
.provide-one__support-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.04em;
  color: #000;
  margin-left: 17px;
}
.Provide-One__right {
  position: relative;
  display: block;
  float: right;
  width: 50%;
  padding-left: 50px;
  background-color: #1f6306;
  padding-top: 50px;
  padding-bottom: 93px;
  z-index: 1;
}
.provide-one__bg-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.07;
  z-index: -1;
}
.provide-one__bg-shape img {
  width: auto;
}
.Provide-One__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.Provide-One__content {
  position: relative;
  display: block;
  max-width: 580px;
  width: 100%;
}
.Provide-One .section-title {
  margin-bottom: 29px;
}
.Provide-One .section-title__tagline {
  color: #9dbe91;
}
.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  color: #1f6306;
  font-weight: 500;
  z-index: 1;
}
.Provide-One .section-title__title {
  color: #fff;
}
.section-title__title {
  margin: 0;
  color: #000;
  font-size: 50px;
  line-height: 62px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.section-title__icon {
  position: relative;
  display: inline-block;
}
.section-title__icon img {
  width: auto;
}
.Provide-One__text {
  color: #9dbe91;
  padding-bottom: 30px;
  font-size: 16px;
}
.Provide-One__progress-wrap {
  grid-template-columns: repeat(2, 255px);
}
.Provide-One__progress-wrap {
  display: grid;
  grid-template-columns: 1fr;
}
.Provide-One__progress {
  position: relative;
  display: flex;
  align-items: center;
}
.Provide-One__progress-box {
  position: relative;
  display: inline-block;
  top: 10px;
}
.Provide-One__progress-box canvas {
  transform: rotate(90deg);
}
.Provide-One__progress-box span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translateY(-50%) translateX(-50%);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.Provide-One__progress-content h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  margin-left: 20px;
  text-transform: uppercase;
}
.single-service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mb-50 {
  margin-bottom: 50px;
}
.single-service-item .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90px;
  flex: 0 0 90px;
  max-width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #f8f6ef;
  margin-right: 30px;
}

.single-service-item .icon img {
  width: 65%;
  margin: 0 auto;
  display: block;
  padding-top: 15px;
}

.single-service-item .text h3 {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 2px;
}
.single-service-item .text p{
  font-size: 16px;
}
.popular-service{
  padding: 60px 0px;
}

/* quality page section css end here */

/* Product section start here */
.service-box {
  padding: 20px 30px 5px;
  border-radius: 0px;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.service-box .text h3.title {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
}
.service-box .text h3.title a{
  color: #000;
}
.service-box .icon img{
  margin-bottom: 15px;
}
.new_produ{
  padding: 40px 0px;
}
.new_produ ul {
  justify-content: space-between;
  padding-right: 0px;
}
.new_produ li {
  display: flex;
  gap: 20px;
  width: 15%;
}
.new_produ li:last-child{
  margin-right: 0px;
}

.new_produ .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  border: 10px double #fff;
  background-color: transparent;
  background-image: url(https://a-mart.axiomthemes.com/splash/img/selling-bg.jpg);
  background-size: cover;
}
.new_produ .nav-pills .nav-link {
  background: 0 0;
  border: 0;
  border-radius: 0px;
  background: #ffc107;
  border: 10px double #fff;
}
.new_produ .nav-link {
  display: block;
  padding: 0px;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.prodo_img img{
  border: 1px solid #dfdfdf;
  padding: 20px;
}
.prodo_dtl{
  border: 1px solid #dfdfdf;
}
.prodo_dtl:hover{
  border: 1px solid #dc3545;
  transition: all 0.8s ease-in-out 0.1s;
}
.prodo_dtl h4 {
  background: #dfdfdf;
  text-align: center;
  padding: 8px;
  font-weight: 600;
  font-size: 16px;
}
.prodo_content p{
  font-size: 15px;
  margin-bottom: 10px;
}

.prodo_content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
.black2 {
  border: 4px double #d4af37;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.m1234{
  margin-top: 30px;
  font-size: 16px;
  margin-bottom: 130px;
}

.m1234 h3{
  margin-bottom: 10px;
  font-size: 18px;
}
.listted li {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.predu h4{
  font-size: 15px;
  margin-bottom: 5px;
}
.predu p{
  font-size: 15px;
}
/* .grenp{
  background-image: url(https://a-mart.axiomthemes.com/splash/img/selling-bg.jpg);
  background-size: cover;
} */
.greyp{
  background-image: url(https://a-mart.axiomthemes.com/splash/img/blog-layouts-bg.jpg);
  background-size: contain;
}
/* Product section end here */

.disimg img{
  border-radius:5px;
}
.disconti{
  padding: 25px 0px;
}
.disconti h3 {
  margin-top: 0px;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 5px;
}
.disconti p {
  margin: 0;
  font-size: 16px;
}
.chefno {
  margin-top: 30px;
  text-align: center;
  display: flex;
}
.chefno img {
  width: 50%;
  margin: 0 auto;
  display: block;
}
.chefno h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 18px;
}
.chefno p {
  line-height: 22px;
  font-size: 16px;
}
.disconti a {
  margin-top: 40px;
  padding: 6px 22px;
  border-radius: 5px;
  background: #f7c35f;
  color: #fff;
  width: 17%;
  font-size: 16px;
}


/* recipe section inner page css start here */
.project-details h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.project-details p {
  font-size: 16px;
  margin-bottom: 10px;
}
.project-details__check-list li {
  font-size: 18px;
  padding-left: 30px;
}
.project-details__check-list li {
  position: relative;
  padding-left: 0px;
  color: #255946;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 15px;
  font-size: 16px;
}
.project-details__check-list li + li {
  margin-top: 10px;
}
.project-details{
  padding: 40px 0px 130px;
}
.project-details .bottom-content ol {
  padding-left: 15px;
}
.unichef li{
  list-style: disc;
}
.unichef{
  font-size: 16px;
}
.project-details img {
  border-radius: 5px;
}
.mt-50 {
  margin-top: 50px;
}
.floating2 {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.side-contact-btn {
  z-index: 999 !important;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
/* recipe section inner page css end here */

.footer-desc a, .footer-widget-contact a {
  color: #8e939f;
}


.footer-bottom-content-copy p {
  a {
    color: #fff !important;
  }
}


.feature-three {
    position: relative;
    display: block;
    z-index: 1;
    padding:60px 0px;
    overflow: hidden;
}

.feature-three .shape1 {
    position: absolute;
    top: -390px;
    right: -130px;
    z-index: 2;
}


.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.feature-three .shape2 {
    position: absolute;
    top: -200px;
    right: -290px;
    mix-blend-mode: soft-light;
    z-index: 1;
}


.feature-three__bg {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-position: center center;
}


.feature-three__bg::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0.7;
    content: "";
    z-index: -2;
    background: rgb(1, 0, 7);
}


.feature-three__pattern {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-attachment: scroll;
    background-repeat: repeat;
    z-index: -1;
    background-position: center center;
}

.feature-three__inner {
    position: relative;
    display: block;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 10px 60px 0px;
    z-index: 5;
    background: rgb(255, 255, 255);
    padding: 40px 0px 42px;
    overflow: hidden;
    border-radius: 0px 70px 70px;
}

.feature-three__box {
    position: relative;
    display: block;
}


.feature-three__single {
    position: relative;
    display: block;
    width: 100%;
    float: left;
}


.feature-three .owl-nav.disabled {
  display: none !important;
}

.feature-three__single .icon-box {
  
   position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0px auto;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.14);


    &::after {
      content: "";
      background: #ebebeb;
      background-size: 100% 100%;
      position: absolute;
      top: 0px;
      width: 100%;
      height: 100%;
      right: -15px;
      border-radius: 50%;
z-index: -1;
      }

    img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
    }
}

.feature-three__single .icon-box span::before {
    position: relative;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 50px;
    transform: scale(1);
    transition: 500ms linear 0.1s;
}

.feature-three__single .title-box {
    position: relative;
    display: block;
}

.feature-three__single .title-box h2 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 11px;
}

.feature-three__single .title-box h2 a {
    color: #1a1a1a;
    transition: 200ms linear 0.1s;
}


@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
}
50% {
    transform: translateY(-10px);
}
100% {
    transform: translateY(-20px);
}
}


.buy-now {
   position: fixed;
    right: -21px;
    top: 32%;
    z-index: 99999;
    color: #fff;
    padding: 10px 14px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
    width: 80px;

    i {
      font-size: 22px;
    }

  &:hover {
    color: #ed1b23;
  }
}

/*--------------------------------------------------------------
# End Css 
--------------------------------------------------------------*/


.feature-three .title-area {
   margin-bottom: 20px;
}


.new-breadsrum.recipe-bread {
  background-image: url(../images/recipe-bread.png);
}